aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/files/src/components/BreadCrumbs.vue66
-rw-r--r--dist/files-main.js4
-rw-r--r--dist/files-main.js.map2
3 files changed, 57 insertions, 15 deletions
diff --git a/apps/files/src/components/BreadCrumbs.vue b/apps/files/src/components/BreadCrumbs.vue
index e782cf3aaba..89312d8dff3 100644
--- a/apps/files/src/components/BreadCrumbs.vue
+++ b/apps/files/src/components/BreadCrumbs.vue
@@ -1,9 +1,32 @@
+<!--
+ - @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>
+ -
+ - @author John Molakvoæ <skjnldsv@protonmail.com>
+ -
+ - @license AGPL-3.0-or-later
+ -
+ - This program is free software: you can redistribute it and/or modify
+ - it under the terms of the GNU Affero General Public License as
+ - published by the Free Software Foundation, either version 3 of the
+ - License, or (at your option) any later version.
+ -
+ - This program is distributed in the hope that it will be useful,
+ - but WITHOUT ANY WARRANTY; without even the implied warranty of
+ - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ - GNU Affero General Public License for more details.
+ -
+ - You should have received a copy of the GNU Affero General Public License
+ - along with this program. If not, see <http://www.gnu.org/licenses/>.
+ -
+ -->
+
<template>
<NcBreadcrumbs
data-cy-files-content-breadcrumbs
:aria-label="t('files', 'Current directory path')">
<!-- Current path sections -->
<NcBreadcrumb v-for="(section, index) in sections"
+ v-show="shouldShowBreadcrumbs"
:key="section.dir"
v-bind="section"
dir="auto"
@@ -28,11 +51,10 @@
</template>
<script lang="ts">
-import type { Node } from '@nextcloud/files'
+import { Permission, type Node } from '@nextcloud/files'
import { basename } from 'path'
import { defineComponent } from 'vue'
-import { Permission } from '@nextcloud/files'
import { translate as t} from '@nextcloud/l10n'
import HomeSvg from '@mdi/svg/svg/home.svg?raw'
import NcBreadcrumb from '@nextcloud/vue/dist/Components/NcBreadcrumb.js'
@@ -45,6 +67,7 @@ import { useDragAndDropStore } from '../store/dragging.ts'
import { useFilesStore } from '../store/files.ts'
import { usePathsStore } from '../store/paths.ts'
import { useSelectionStore } from '../store/selection.ts'
+import { useUploaderStore } from '../store/uploader.ts'
import filesListWidthMixin from '../mixins/filesListWidth.ts'
import logger from '../logger'
@@ -73,11 +96,14 @@ export default defineComponent({
const filesStore = useFilesStore()
const pathsStore = usePathsStore()
const selectionStore = useSelectionStore()
+ const uploaderStore = useUploaderStore()
+
return {
draggingStore,
filesStore,
pathsStore,
selectionStore,
+ uploaderStore,
}
},
@@ -86,12 +112,12 @@ export default defineComponent({
return this.$navigation.active
},
- dirs() {
- const cumulativePath = (acc) => (value) => (acc += `${value}/`)
+ dirs(): string[] {
+ const cumulativePath = (acc: string) => (value: string) => (acc += `${value}/`)
// Generate a cumulative path for each path segment: ['/', '/foo', '/foo/bar', ...] etc
- const paths = this.path.split('/').filter(Boolean).map(cumulativePath('/'))
+ const paths: string[] = this.path.split('/').filter(Boolean).map(cumulativePath('/'))
// Strip away trailing slash
- return ['/', ...paths.map(path => path.replace(/^(.+)\/$/, '$1'))]
+ return ['/', ...paths.map((path: string) => path.replace(/^(.+)\/$/, '$1'))]
},
sections() {
@@ -109,8 +135,23 @@ export default defineComponent({
})
},
+ isUploadInProgress(): boolean {
+ return this.uploaderStore.queue.length !== 0
+ },
+
+ // Hide breadcrumbs if an upload is ongoing
+ shouldShowBreadcrumbs(): boolean {
+ // If we're uploading files, only show the breadcrumbs
+ // if the files list is greater than 768px wide
+ if (this.isUploadInProgress) {
+ return this.filesListWidth > 768
+ }
+ // If we're not uploading, we have enough space from 400px
+ return this.filesListWidth > 400
+ },
+
// used to show the views icon for the first breadcrumb
- viewIcon() {
+ viewIcon(): string {
return this.currentView?.icon ?? HomeSvg
},
@@ -124,19 +165,19 @@ export default defineComponent({
},
methods: {
- getNodeFromId(id) {
+ getNodeFromId(id: number): Node | undefined {
return this.filesStore.getNode(id)
},
- getFileIdFromPath(path) {
+ getFileIdFromPath(path: string): number | undefined {
return this.pathsStore.getPath(this.currentView?.id, path)
},
- getDirDisplayName(path) {
+ getDirDisplayName(path: string): string {
if (path === '/') {
return this.$navigation?.active?.name || t('files', 'Home')
}
- const fileId = this.getFileIdFromPath(path)
- const node = this.getNodeFromId(fileId)
+ const fileId: number | undefined = this.getFileIdFromPath(path)
+ const node: Node | undefined = (fileId) ? this.getNodeFromId(fileId) : undefined
return node?.attributes?.displayName || basename(path)
},
@@ -243,6 +284,7 @@ export default defineComponent({
// Take as much space as possible
flex: 1 1 100% !important;
width: 100%;
+ margin-inline: 0px 10px 0px 10px;
::v-deep a {
cursor: pointer !important;
diff --git a/dist/files-main.js b/dist/files-main.js
index 2454ef687ae..4dc39009948 100644
--- a/dist/files-main.js
+++ b/dist/files-main.js
@@ -1,3 +1,3 @@
/*! For license information please see files-main.js.LICENSE.txt */
-(()=>{var e,n,s,i={9052:t=>{"use strict";var e=Object.prototype.hasOwnProperty,n="~";function s(){}function i(t,e,n){this.fn=t,this.context=e,this.once=n||!1}function r(t,e,s,r,o){if("function"!=typeof s)throw new TypeError("The listener must be a function");var a=new i(s,r||t,o),l=n?n+e:e;return t._events[l]?t._events[l].fn?t._events[l]=[t._events[l],a]:t._events[l].push(a):(t._events[l]=a,t._eventsCount++),t}function o(t,e){0==--t._eventsCount?t._events=new s:delete t._events[e]}function a(){this._events=new s,this._eventsCount=0}Object.create&&(s.prototype=Object.create(null),(new s).__proto__||(n=!1)),a.prototype.eventNames=function(){var t,s,i=[];if(0===this._eventsCount)return i;for(s in t=this._events)e.call(t,s)&&i.push(n?s.slice(1):s);return Object.getOwnPropertySymbols?i.concat(Object.getOwnPropertySymbols(t)):i},a.prototype.listeners=function(t){var e=n?n+t:t,s=this._events[e];if(!s)return[];if(s.fn)return[s.fn];for(var i=0,r=s.length,o=new Array(r);i<r;i++)o[i]=s[i].fn;return o},a.prototype.listenerCount=function(t){var e=n?n+t:t,s=this._events[e];return s?s.fn?1:s.length:0},a.prototype.emit=function(t,e,s,i,r,o){var a=n?n+t:t;if(!this._events[a])return!1;var l,c,d=this._events[a],u=arguments.length;if(d.fn){switch(d.once&&this.removeListener(t,d.fn,void 0,!0),u){case 1:return d.fn.call(d.context),!0;case 2:return d.fn.call(d.context,e),!0;case 3:return d.fn.call(d.context,e,s),!0;case 4:return d.fn.call(d.context,e,s,i),!0;case 5:return d.fn.call(d.context,e,s,i,r),!0;case 6:return d.fn.call(d.context,e,s,i,r,o),!0}for(c=1,l=new Array(u-1);c<u;c++)l[c-1]=arguments[c];d.fn.apply(d.context,l)}else{var m,p=d.length;for(c=0;c<p;c++)switch(d[c].once&&this.removeListener(t,d[c].fn,void 0,!0),u){case 1:d[c].fn.call(d[c].context);break;case 2:d[c].fn.call(d[c].context,e);break;case 3:d[c].fn.call(d[c].context,e,s);break;case 4:d[c].fn.call(d[c].context,e,s,i);break;default:if(!l)for(m=1,l=new Array(u-1);m<u;m++)l[m-1]=arguments[m];d[c].fn.apply(d[c].context,l)}}return!0},a.prototype.on=function(t,e,n){return r(this,t,e,n,!1)},a.prototype.once=function(t,e,n){return r(this,t,e,n,!0)},a.prototype.removeListener=function(t,e,s,i){var r=n?n+t:t;if(!this._events[r])return this;if(!e)return o(this,r),this;var a=this._events[r];if(a.fn)a.fn!==e||i&&!a.once||s&&a.context!==s||o(this,r);else{for(var l=0,c=[],d=a.length;l<d;l++)(a[l].fn!==e||i&&!a[l].once||s&&a[l].context!==s)&&c.push(a[l]);c.length?this._events[r]=1===c.length?c[0]:c:o(this,r)}return this},a.prototype.removeAllListeners=function(t){var e;return t?(e=n?n+t:t,this._events[e]&&o(this,e)):(this._events=new s,this._eventsCount=0),this},a.prototype.off=a.prototype.removeListener,a.prototype.addListener=a.prototype.on,a.prefixed=n,a.EventEmitter=a,t.exports=a},94782:(e,n,s)=>{"use strict";var i={};s.r(i),s.d(i,{exclude:()=>Pt,extract:()=>Et,parse:()=>St,parseUrl:()=>Nt,pick:()=>Ft,stringify:()=>Lt,stringifyUrl:()=>It});var r=s(85471),o=!0;function a(){return"undefined"!=typeof navigator&&"undefined"!=typeof window?window:"undefined"!=typeof globalThis?globalThis:{}}r.Ay.util.warn;const l="function"==typeof Proxy,c="devtools-plugin:setup";let d,u;class m{constructor(t,e){this.target=null,this.targetQueue=[],this.onQueue=[],this.plugin=t,this.hook=e;const n={};if(t.settings)for(const e in t.settings){const s=t.settings[e];n[e]=s.defaultValue}const s=`__vue-devtools-plugin-settings__${t.id}`;let i=Object.assign({},n);try{const t=localStorage.getItem(s),e=JSON.parse(t);Object.assign(i,e)}catch(t){}this.fallbacks={getSettings:()=>i,setSettings(t){try{localStorage.setItem(s,JSON.stringify(t))}catch(t){}i=t},now:()=>{return void 0!==d||("undefined"!=typeof window&&window.performance?(d=!0,u=window.performance):"undefined"!=typeof globalThis&&(null===(t=globalThis.perf_hooks)||void 0===t?void 0:t.performance)?(d=!0,u=globalThis.perf_hooks.performance):d=!1),d?u.now():Date.now();var t}},e&&e.on("plugin:settings:set",((t,e)=>{t===this.plugin.id&&this.fallbacks.setSettings(e)})),this.proxiedOn=new Proxy({},{get:(t,e)=>this.target?this.target.on[e]:(...t)=>{this.onQueue.push({method:e,args:t})}}),this.proxiedTarget=new Proxy({},{get:(t,e)=>this.target?this.target[e]:"on"===e?this.proxiedOn:Object.keys(this.fallbacks).includes(e)?(...t)=>(this.targetQueue.push({method:e,args:t,resolve:()=>{}}),this.fallbacks[e](...t)):(...t)=>new Promise((n=>{this.targetQueue.push({method:e,args:t,resolve:n})}))})}async setRealTarget(t){this.target=t;for(const t of this.onQueue)this.target.on[t.method](...t.args);for(const t of this.targetQueue)t.resolve(await this.target[t.method](...t.args))}}function p(t,e){const n=t,s=a(),i=a().__VUE_DEVTOOLS_GLOBAL_HOOK__,r=l&&n.enableEarlyProxy;if(!i||!s.__VUE_DEVTOOLS_PLUGIN_API_AVAILABLE__&&r){const t=r?new m(n,i):null;(s.__VUE_DEVTOOLS_PLUGINS__=s.__VUE_DEVTOOLS_PLUGINS__||[]).push({pluginDescriptor:n,setupFn:e,proxy:t}),t&&e(t.proxiedTarget)}else i.emit(c,t,e)}var f=s(96763);let g;const h=t=>g=t,v=Symbol();function A(t){return t&&"object"==typeof t&&"[object Object]"===Object.prototype.toString.call(t)&&"function"!=typeof t.toJSON}var w;!function(t){t.direct="direct",t.patchObject="patch object",t.patchFunction="patch function"}(w||(w={}));const y="undefined"!=typeof window,b="undefined"!=typeof __VUE_PROD_DEVTOOLS__&&__VUE_PROD_DEVTOOLS__&&y,C=(()=>"object"==typeof window&&window.window===window?window:"object"==typeof self&&self.self===self?self:"object"==typeof global&&global.global===global?global:"object"==typeof globalThis?globalThis:{HTMLElement:null})();function x(t,e,n){const s=new XMLHttpRequest;s.open("GET",t),s.responseType="blob",s.onload=function(){S(s.response,e,n)},s.onerror=function(){f.error("could not download file")},s.send()}function _(t){const e=new XMLHttpRequest;e.open("HEAD",t,!1);try{e.send()}catch(t){}return e.status>=200&&e.status<=299}function T(t){try{t.dispatchEvent(new MouseEvent("click"))}catch(e){const n=document.createEvent("MouseEvents");n.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),t.dispatchEvent(n)}}const k="object"==typeof navigator?navigator:{userAgent:""},E=(()=>/Macintosh/.test(k.userAgent)&&/AppleWebKit/.test(k.userAgent)&&!/Safari/.test(k.userAgent))(),S=y?"undefined"!=typeof HTMLAnchorElement&&"download"in HTMLAnchorElement.prototype&&!E?function(t,e="download",n){const s=document.createElement("a");s.download=e,s.rel="noopener","string"==typeof t?(s.href=t,s.origin!==location.origin?_(s.href)?x(t,e,n):(s.target="_blank",T(s)):T(s)):(s.href=URL.createObjectURL(t),setTimeout((function(){URL.revokeObjectURL(s.href)}),4e4),setTimeout((function(){T(s)}),0))}:"msSaveOrOpenBlob"in k?function(t,e="download",n){if("string"==typeof t)if(_(t))x(t,e,n);else{const e=document.createElement("a");e.href=t,e.target="_blank",setTimeout((function(){T(e)}))}else navigator.msSaveOrOpenBlob(function(t,{autoBom:e=!1}={}){return e&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(t.type)?new Blob([String.fromCharCode(65279),t],{type:t.type}):t}(t,n),e)}:function(t,e,n,s){if((s=s||open("","_blank"))&&(s.document.title=s.document.body.innerText="downloading..."),"string"==typeof t)return x(t,e,n);const i="application/octet-stream"===t.type,r=/constructor/i.test(String(C.HTMLElement))||"safari"in C,o=/CriOS\/[\d]+/.test(navigator.userAgent);if((o||i&&r||E)&&"undefined"!=typeof FileReader){const e=new FileReader;e.onloadend=function(){let t=e.result;if("string"!=typeof t)throw s=null,new Error("Wrong reader.result type");t=o?t:t.replace(/^data:[^;]*;/,"data:attachment/file;"),s?s.location.href=t:location.assign(t),s=null},e.readAsDataURL(t)}else{const e=URL.createObjectURL(t);s?s.location.assign(e):location.href=e,s=null,setTimeout((function(){URL.revokeObjectURL(e)}),4e4)}}:()=>{};function L(t,e){const n="🍍 "+t;"function"==typeof __VUE_DEVTOOLS_TOAST__?__VUE_DEVTOOLS_TOAST__(n,e):"error"===e?f.error(n):"warn"===e?f.warn(n):f.log(n)}function N(t){return"_a"in t&&"install"in t}function I(){if(!("clipboard"in navigator))return L("Your browser doesn't support the Clipboard API","error"),!0}function F(t){return!!(t instanceof Error&&t.message.toLowerCase().includes("document is not focused"))&&(L('You need to activate the "Emulate a focused page" setting in the "Rendering" panel of devtools.',"warn"),!0)}let P;function B(t,e){for(const n in e){const s=t.state.value[n];s?Object.assign(s,e[n]):t.state.value[n]=e[n]}}function O(t){return{_custom:{display:t}}}const D="🍍 Pinia (root)",U="_root";function j(t){return N(t)?{id:U,label:D}:{id:t.$id,label:t.$id}}function z(t){return t?Array.isArray(t)?t.reduce(((t,e)=>(t.keys.push(e.key),t.operations.push(e.type),t.oldValue[e.key]=e.oldValue,t.newValue[e.key]=e.newValue,t)),{oldValue:{},keys:[],operations:[],newValue:{}}):{operation:O(t.type),key:O(t.key),oldValue:t.oldValue,newValue:t.newValue}:{}}function M(t){switch(t){case w.direct:return"mutation";case w.patchFunction:case w.patchObject:return"$patch";default:return"unknown"}}let R=!0;const V=[],$="pinia:mutations",q="pinia",{assign:H}=Object,W=t=>"🍍 "+t;function G(t,e){p({id:"dev.esm.pinia",label:"Pinia 🍍",logo:"https://pinia.vuejs.org/logo.svg",packageName:"pinia",homepage:"https://pinia.vuejs.org",componentStateTypes:V,app:t},(n=>{"function"!=typeof n.now&&L("You seem to be using an outdated version of Vue Devtools. Are you still using the Beta release instead of the stable one? You can find the links at https://devtools.vuejs.org/guide/installation.html."),n.addTimelineLayer({id:$,label:"Pinia 🍍",color:15064968}),n.addInspector({id:q,label:"Pinia 🍍",icon:"storage",treeFilterPlaceholder:"Search stores",actions:[{icon:"content_copy",action:()=>{!async function(t){if(!I())try{await navigator.clipboard.writeText(JSON.stringify(t.state.value)),L("Global state copied to clipboard.")}catch(t){if(F(t))return;L("Failed to serialize the state. Check the console for more details.","error"),f.error(t)}}(e)},tooltip:"Serialize and copy the state"},{icon:"content_paste",action:async()=>{await async function(t){if(!I())try{B(t,JSON.parse(await navigator.clipboard.readText())),L("Global state pasted from clipboard.")}catch(t){if(F(t))return;L("Failed to deserialize the state from clipboard. Check the console for more details.","error"),f.error(t)}}(e),n.sendInspectorTree(q),n.sendInspectorState(q)},tooltip:"Replace the state with the content of your clipboard"},{icon:"save",action:()=>{!async function(t){try{S(new Blob([JSON.stringify(t.state.value)],{type:"text/plain;charset=utf-8"}),"pinia-state.json")}catch(t){L("Failed to export the state as JSON. Check the console for more details.","error"),f.error(t)}}(e)},tooltip:"Save the state as a JSON file"},{icon:"folder_open",action:async()=>{await async function(t){try{const e=(P||(P=document.createElement("input"),P.type="file",P.accept=".json"),function(){return new Promise(((t,e)=>{P.onchange=async()=>{const e=P.files;if(!e)return t(null);const n=e.item(0);return t(n?{text:await n.text(),file:n}:null)},P.oncancel=()=>t(null),P.onerror=e,P.click()}))}),n=await e();if(!n)return;const{text:s,file:i}=n;B(t,JSON.parse(s)),L(`Global state imported from "${i.name}".`)}catch(t){L("Failed to import the state from JSON. Check the console for more details.","error"),f.error(t)}}(e),n.sendInspectorTree(q),n.sendInspectorState(q)},tooltip:"Import the state from a JSON file"}],nodeActions:[{icon:"restore",tooltip:'Reset the state (with "$reset")',action:t=>{const n=e._s.get(t);n?"function"!=typeof n.$reset?L(`Cannot reset "${t}" store because it doesn't have a "$reset" method implemented.`,"warn"):(n.$reset(),L(`Store "${t}" reset.`)):L(`Cannot reset "${t}" store because it wasn't found.`,"warn")}}]}),n.on.inspectComponent(((t,e)=>{const n=t.componentInstance&&t.componentInstance.proxy;if(n&&n._pStores){const e=t.componentInstance.proxy._pStores;Object.values(e).forEach((e=>{t.instanceData.state.push({type:W(e.$id),key:"state",editable:!0,value:e._isOptionsAPI?{_custom:{value:(0,r.ux)(e.$state),actions:[{icon:"restore",tooltip:"Reset the state of this store",action:()=>e.$reset()}]}}:Object.keys(e.$state).reduce(((t,n)=>(t[n]=e.$state[n],t)),{})}),e._getters&&e._getters.length&&t.instanceData.state.push({type:W(e.$id),key:"getters",editable:!1,value:e._getters.reduce(((t,n)=>{try{t[n]=e[n]}catch(e){t[n]=e}return t}),{})})}))}})),n.on.getInspectorTree((n=>{if(n.app===t&&n.inspectorId===q){let t=[e];t=t.concat(Array.from(e._s.values())),n.rootNodes=(n.filter?t.filter((t=>"$id"in t?t.$id.toLowerCase().includes(n.filter.toLowerCase()):D.toLowerCase().includes(n.filter.toLowerCase()))):t).map(j)}})),n.on.getInspectorState((n=>{if(n.app===t&&n.inspectorId===q){const t=n.nodeId===U?e:e._s.get(n.nodeId);if(!t)return;t&&(n.state=function(t){if(N(t)){const e=Array.from(t._s.keys()),n=t._s,s={state:e.map((e=>({editable:!0,key:e,value:t.state.value[e]}))),getters:e.filter((t=>n.get(t)._getters)).map((t=>{const e=n.get(t);return{editable:!1,key:t,value:e._getters.reduce(((t,n)=>(t[n]=e[n],t)),{})}}))};return s}const e={state:Object.keys(t.$state).map((e=>({editable:!0,key:e,value:t.$state[e]})))};return t._getters&&t._getters.length&&(e.getters=t._getters.map((e=>({editable:!1,key:e,value:t[e]})))),t._customProperties.size&&(e.customProperties=Array.from(t._customProperties).map((e=>({editable:!0,key:e,value:t[e]})))),e}(t))}})),n.on.editInspectorState(((n,s)=>{if(n.app===t&&n.inspectorId===q){const t=n.nodeId===U?e:e._s.get(n.nodeId);if(!t)return L(`store "${n.nodeId}" not found`,"error");const{path:s}=n;N(t)?s.unshift("state"):1===s.length&&t._customProperties.has(s[0])&&!(s[0]in t.$state)||s.unshift("$state"),R=!1,n.set(t,s,n.state.value),R=!0}})),n.on.editComponentState((t=>{if(t.type.startsWith("🍍")){const n=t.type.replace(/^🍍\s*/,""),s=e._s.get(n);if(!s)return L(`store "${n}" not found`,"error");const{path:i}=t;if("state"!==i[0])return L(`Invalid path for store "${n}":\n${i}\nOnly state can be modified.`);i[0]="$state",R=!1,t.set(s,i,t.state.value),R=!0}}))}))}let Y,K=0;function Q(t,e,n){const s=e.reduce(((e,n)=>(e[n]=(0,r.ux)(t)[n],e)),{});for(const e in s)t[e]=function(){const i=K,r=n?new Proxy(t,{get:(...t)=>(Y=i,Reflect.get(...t)),set:(...t)=>(Y=i,Reflect.set(...t))}):t;Y=i;const o=s[e].apply(r,arguments);return Y=void 0,o}}function X({app:t,store:e,options:n}){if(e.$id.startsWith("__hot:"))return;e._isOptionsAPI=!!n.state,Q(e,Object.keys(n.actions),e._isOptionsAPI);const s=e._hotUpdate;(0,r.ux)(e)._hotUpdate=function(t){s.apply(this,arguments),Q(e,Object.keys(t._hmrPayload.actions),!!e._isOptionsAPI)},function(t,e){V.includes(W(e.$id))||V.push(W(e.$id)),p({id:"dev.esm.pinia",label:"Pinia 🍍",logo:"https://pinia.vuejs.org/logo.svg",packageName:"pinia",homepage:"https://pinia.vuejs.org",componentStateTypes:V,app:t,settings:{logStoreChanges:{label:"Notify about new/deleted stores",type:"boolean",defaultValue:!0}}},(t=>{const n="function"==typeof t.now?t.now.bind(t):Date.now;e.$onAction((({after:s,onError:i,name:r,args:o})=>{const a=K++;t.addTimelineEvent({layerId:$,event:{time:n(),title:"🛫 "+r,subtitle:"start",data:{store:O(e.$id),action:O(r),args:o},groupId:a}}),s((s=>{Y=void 0,t.addTimelineEvent({layerId:$,event:{time:n(),title:"🛬 "+r,subtitle:"end",data:{store:O(e.$id),action:O(r),args:o,result:s},groupId:a}})})),i((s=>{Y=void 0,t.addTimelineEvent({layerId:$,event:{time:n(),logType:"error",title:"💥 "+r,subtitle:"end",data:{store:O(e.$id),action:O(r),args:o,error:s},groupId:a}})}))}),!0),e._customProperties.forEach((s=>{(0,r.wB)((()=>(0,r.R1)(e[s])),((e,i)=>{t.notifyComponentUpdate(),t.sendInspectorState(q),R&&t.addTimelineEvent({layerId:$,event:{time:n(),title:"Change",subtitle:s,data:{newValue:e,oldValue:i},groupId:Y}})}),{deep:!0})})),e.$subscribe((({events:s,type:i},r)=>{if(t.notifyComponentUpdate(),t.sendInspectorState(q),!R)return;const o={time:n(),title:M(i),data:H({store:O(e.$id)},z(s)),groupId:Y};i===w.patchFunction?o.subtitle="⤵️":i===w.patchObject?o.subtitle="🧩":s&&!Array.isArray(s)&&(o.subtitle=s.type),s&&(o.data["rawEvent(s)"]={_custom:{display:"DebuggerEvent",type:"object",tooltip:"raw DebuggerEvent[]",value:s}}),t.addTimelineEvent({layerId:$,event:o})}),{detached:!0,flush:"sync"});const s=e._hotUpdate;e._hotUpdate=(0,r.IG)((i=>{s(i),t.addTimelineEvent({layerId:$,event:{time:n(),title:"🔥 "+e.$id,subtitle:"HMR update",data:{store:O(e.$id),info:O("HMR update")}}}),t.notifyComponentUpdate(),t.sendInspectorTree(q),t.sendInspectorState(q)}));const{$dispose:i}=e;e.$dispose=()=>{i(),t.notifyComponentUpdate(),t.sendInspectorTree(q),t.sendInspectorState(q),t.getSettings().logStoreChanges&&L(`Disposed "${e.$id}" store 🗑`)},t.notifyComponentUpdate(),t.sendInspectorTree(q),t.sendInspectorState(q),t.getSettings().logStoreChanges&&L(`"${e.$id}" store installed 🆕`)}))}(t,e)}const J=()=>{};function Z(t,e,n,s=J){t.push(e);const i=()=>{const n=t.indexOf(e);n>-1&&(t.splice(n,1),s())};return!n&&(0,r.o5)()&&(0,r.jr)(i),i}function tt(t,...e){t.slice().forEach((t=>{t(...e)}))}const et=t=>t();function nt(t,e){t instanceof Map&&e instanceof Map&&e.forEach(((e,n)=>t.set(n,e))),t instanceof Set&&e instanceof Set&&e.forEach(t.add,t);for(const n in e){if(!e.hasOwnProperty(n))continue;const s=e[n],i=t[n];A(i)&&A(s)&&t.hasOwnProperty(n)&&!(0,r.i9)(s)&&!(0,r.g8)(s)?t[n]=nt(i,s):t[n]=s}return t}const st=Symbol(),it=new WeakMap,{assign:rt}=Object;function ot(t,e,n={},s,i,a){let l;const c=rt({actions:{}},n),d={deep:!0};let u,m,p,f=[],g=[];const v=s.state.value[t];a||v||(o?(0,r.hZ)(s.state.value,t,{}):s.state.value[t]={});const y=(0,r.KR)({});let C;function x(e){let n;u=m=!1,"function"==typeof e?(e(s.state.value[t]),n={type:w.patchFunction,storeId:t,events:p}):(nt(s.state.value[t],e),n={type:w.patchObject,payload:e,storeId:t,events:p});const i=C=Symbol();(0,r.dY)().then((()=>{C===i&&(u=!0)})),m=!0,tt(f,n,s.state.value[t])}const _=a?function(){const{state:t}=n,e=t?t():{};this.$patch((t=>{rt(t,e)}))}:J;function T(e,n){return function(){h(s);const i=Array.from(arguments),r=[],o=[];let a;tt(g,{args:i,name:e,store:S,after:function(t){r.push(t)},onError:function(t){o.push(t)}});try{a=n.apply(this&&this.$id===t?this:S,i)}catch(t){throw tt(o,t),t}return a instanceof Promise?a.then((t=>(tt(r,t),t))).catch((t=>(tt(o,t),Promise.reject(t)))):(tt(r,a),a)}}const k=(0,r.IG)({actions:{},getters:{},state:[],hotState:y}),E={_p:s,$id:t,$onAction:Z.bind(null,g),$patch:x,$reset:_,$subscribe(e,n={}){const i=Z(f,e,n.detached,(()=>o())),o=l.run((()=>(0,r.wB)((()=>s.state.value[t]),(s=>{("sync"===n.flush?m:u)&&e({storeId:t,type:w.direct,events:p},s)}),rt({},d,n))));return i},$dispose:function(){l.stop(),f=[],g=[],s._s.delete(t)}};o&&(E._r=!1);const S=(0,r.Kh)(b?rt({_hmrPayload:k,_customProperties:(0,r.IG)(new Set)},E):E);s._s.set(t,S);const L=(s._a&&s._a.runWithContext||et)((()=>s._e.run((()=>(l=(0,r.uY)()).run(e)))));for(const e in L){const n=L[e];if((0,r.i9)(n)&&(I=n,!(0,r.i9)(I)||!I.effect)||(0,r.g8)(n))a||(!v||(N=n,o?it.has(N):A(N)&&N.hasOwnProperty(st))||((0,r.i9)(n)?n.value=v[e]:nt(n,v[e])),o?(0,r.hZ)(s.state.value[t],e,n):s.state.value[t][e]=n);else if("function"==typeof n){const t=T(e,n);o?(0,r.hZ)(L,e,t):L[e]=t,c.actions[e]=n}}var N,I;if(o?Object.keys(L).forEach((t=>{(0,r.hZ)(S,t,L[t])})):(rt(S,L),rt((0,r.ux)(S),L)),Object.defineProperty(S,"$state",{get:()=>s.state.value[t],set:t=>{x((e=>{rt(e,t)}))}}),b){const t={writable:!0,configurable:!0,enumerable:!1};["_p","_hmrPayload","_getters","_customProperties"].forEach((e=>{Object.defineProperty(S,e,rt({value:S[e]},t))}))}return o&&(S._r=!0),s._p.forEach((t=>{if(b){const e=l.run((()=>t({store:S,app:s._a,pinia:s,options:c})));Object.keys(e||{}).forEach((t=>S._customProperties.add(t))),rt(S,e)}else rt(S,l.run((()=>t({store:S,app:s._a,pinia:s,options:c}))))})),v&&a&&n.hydrate&&n.hydrate(S.$state,v),u=!0,m=!0,S}function at(t,e,n){let s,i;const a="function"==typeof e;function l(t,n){const l=!!(0,r.nI)();return(t=t||(l?(0,r.WQ)(v,null):null))&&h(t),(t=g)._s.has(s)||(a?ot(s,e,i,t):function(t,e,n,s){const{state:i,actions:a,getters:l}=e,c=n.state.value[t];let d;d=ot(t,(function(){c||(o?(0,r.hZ)(n.state.value,t,i?i():{}):n.state.value[t]=i?i():{});const e=(0,r.QW)(n.state.value[t]);return rt(e,a,Object.keys(l||{}).reduce(((e,s)=>(e[s]=(0,r.IG)((0,r.EW)((()=>{h(n);const e=n._s.get(t);if(!o||e._r)return l[s].call(e,e)}))),e)),{}))}),e,n,0,!0)}(s,i,t)),t._s.get(s)}return"string"==typeof t?(s=t,i=a?n:e):(i=t,s=t.id),l.$id=s,l}var lt=s(35810),ct=s(92457),dt=s(99498);const ut="%[a-f0-9]{2}",mt=new RegExp("("+ut+")|([^%]+?)","gi"),pt=new RegExp("("+ut+")+","gi");function ft(t,e){try{return[decodeURIComponent(t.join(""))]}catch{}if(1===t.length)return t;e=e||1;const n=t.slice(0,e),s=t.slice(e);return Array.prototype.concat.call([],ft(n),ft(s))}function gt(t){try{return decodeURIComponent(t)}catch{let e=t.match(mt)||[];for(let n=1;n<e.length;n++)e=(t=ft(e,n).join("")).match(mt)||[];return t}}function ht(t,e){if("string"!=typeof t||"string"!=typeof e)throw new TypeError("Expected the arguments to be of type `string`");if(""===t||""===e)return[];const n=t.indexOf(e);return-1===n?[]:[t.slice(0,n),t.slice(n+e.length)]}function vt(t,e){const n={};if(Array.isArray(e))for(const s of e){const e=Object.getOwnPropertyDescriptor(t,s);e?.enumerable&&Object.defineProperty(n,s,e)}else for(const s of Reflect.ownKeys(t)){const i=Object.getOwnPropertyDescriptor(t,s);i.enumerable&&e(s,t[s],t)&&Object.defineProperty(n,s,i)}return n}const At=t=>null==t,wt=t=>encodeURIComponent(t).replace(/[!'()*]/g,(t=>`%${t.charCodeAt(0).toString(16).toUpperCase()}`)),yt=Symbol("encodeFragmentIdentifier");function bt(t){if("string"!=typeof t||1!==t.length)throw new TypeError("arrayFormatSeparator must be single character string")}function Ct(t,e){return e.encode?e.strict?wt(t):encodeURIComponent(t):t}function xt(t,e){return e.decode?function(t){if("string"!=typeof t)throw new TypeError("Expected `encodedURI` to be of type `string`, got `"+typeof t+"`");try{return decodeURIComponent(t)}catch{return function(t){const e={"%FE%FF":"��","%FF%FE":"��"};let n=pt.exec(t);for(;n;){try{e[n[0]]=decodeURIComponent(n[0])}catch{const t=gt(n[0]);t!==n[0]&&(e[n[0]]=t)}n=pt.exec(t)}e["%C2"]="�";const s=Object.keys(e);for(const n of s)t=t.replace(new RegExp(n,"g"),e[n]);return t}(t)}}(t):t}function _t(t){return Array.isArray(t)?t.sort():"object"==typeof t?_t(Object.keys(t)).sort(((t,e)=>Number(t)-Number(e))).map((e=>t[e])):t}function Tt(t){const e=t.indexOf("#");return-1!==e&&(t=t.slice(0,e)),t}function kt(t,e){return e.parseNumbers&&!Number.isNaN(Number(t))&&"string"==typeof t&&""!==t.trim()?t=Number(t):!e.parseBooleans||null===t||"true"!==t.toLowerCase()&&"false"!==t.toLowerCase()||(t="true"===t.toLowerCase()),t}function Et(t){const e=(t=Tt(t)).indexOf("?");return-1===e?"":t.slice(e+1)}function St(t,e){bt((e={decode:!0,sort:!0,arrayFormat:"none",arrayFormatSeparator:",",parseNumbers:!1,parseBooleans:!1,...e}).arrayFormatSeparator);const n=function(t){let e;switch(t.arrayFormat){case"index":return(t,n,s)=>{e=/\[(\d*)]$/.exec(t),t=t.replace(/\[\d*]$/,""),e?(void 0===s[t]&&(s[t]={}),s[t][e[1]]=n):s[t]=n};case"bracket":return(t,n,s)=>{e=/(\[])$/.exec(t),t=t.replace(/\[]$/,""),e?void 0!==s[t]?s[t]=[...s[t],n]:s[t]=[n]:s[t]=n};case"colon-list-separator":return(t,n,s)=>{e=/(:list)$/.exec(t),t=t.replace(/:list$/,""),e?void 0!==s[t]?s[t]=[...s[t],n]:s[t]=[n]:s[t]=n};case"comma":case"separator":return(e,n,s)=>{const i="string"==typeof n&&n.includes(t.arrayFormatSeparator),r="string"==typeof n&&!i&&xt(n,t).includes(t.arrayFormatSeparator);n=r?xt(n,t):n;const o=i||r?n.split(t.arrayFormatSeparator).map((e=>xt(e,t))):null===n?n:xt(n,t);s[e]=o};case"bracket-separator":return(e,n,s)=>{const i=/(\[])$/.test(e);if(e=e.replace(/\[]$/,""),!i)return void(s[e]=n?xt(n,t):n);const r=null===n?[]:n.split(t.arrayFormatSeparator).map((e=>xt(e,t)));void 0!==s[e]?s[e]=[...s[e],...r]:s[e]=r};default:return(t,e,n)=>{void 0!==n[t]?n[t]=[...[n[t]].flat(),e]:n[t]=e}}}(e),s=Object.create(null);if("string"!=typeof t)return s;if(!(t=t.trim().replace(/^[?#&]/,"")))return s;for(const i of t.split("&")){if(""===i)continue;const t=e.decode?i.replace(/\+/g," "):i;let[r,o]=ht(t,"=");void 0===r&&(r=t),o=void 0===o?null:["comma","separator","bracket-separator"].includes(e.arrayFormat)?o:xt(o,e),n(xt(r,e),o,s)}for(const[t,n]of Object.entries(s))if("object"==typeof n&&null!==n)for(const[t,s]of Object.entries(n))n[t]=kt(s,e);else s[t]=kt(n,e);return!1===e.sort?s:(!0===e.sort?Object.keys(s).sort():Object.keys(s).sort(e.sort)).reduce(((t,e)=>{const n=s[e];return t[e]=Boolean(n)&&"object"==typeof n&&!Array.isArray(n)?_t(n):n,t}),Object.create(null))}function Lt(t,e){if(!t)return"";bt((e={encode:!0,strict:!0,arrayFormat:"none",arrayFormatSeparator:",",...e}).arrayFormatSeparator);const n=n=>e.skipNull&&At(t[n])||e.skipEmptyString&&""===t[n],s=function(t){switch(t.arrayFormat){case"index":return e=>(n,s)=>{const i=n.length;return void 0===s||t.skipNull&&null===s||t.skipEmptyString&&""===s?n:null===s?[...n,[Ct(e,t),"[",i,"]"].join("")]:[...n,[Ct(e,t),"[",Ct(i,t),"]=",Ct(s,t)].join("")]};case"bracket":return e=>(n,s)=>void 0===s||t.skipNull&&null===s||t.skipEmptyString&&""===s?n:null===s?[...n,[Ct(e,t),"[]"].join("")]:[...n,[Ct(e,t),"[]=",Ct(s,t)].join("")];case"colon-list-separator":return e=>(n,s)=>void 0===s||t.skipNull&&null===s||t.skipEmptyString&&""===s?n:null===s?[...n,[Ct(e,t),":list="].join("")]:[...n,[Ct(e,t),":list=",Ct(s,t)].join("")];case"comma":case"separator":case"bracket-separator":{const e="bracket-separator"===t.arrayFormat?"[]=":"=";return n=>(s,i)=>void 0===i||t.skipNull&&null===i||t.skipEmptyString&&""===i?s:(i=null===i?"":i,0===s.length?[[Ct(n,t),e,Ct(i,t)].join("")]:[[s,Ct(i,t)].join(t.arrayFormatSeparator)])}default:return e=>(n,s)=>void 0===s||t.skipNull&&null===s||t.skipEmptyString&&""===s?n:null===s?[...n,Ct(e,t)]:[...n,[Ct(e,t),"=",Ct(s,t)].join("")]}}(e),i={};for(const[e,s]of Object.entries(t))n(e)||(i[e]=s);const r=Object.keys(i);return!1!==e.sort&&r.sort(e.sort),r.map((n=>{const i=t[n];return void 0===i?"":null===i?Ct(n,e):Array.isArray(i)?0===i.length&&"bracket-separator"===e.arrayFormat?Ct(n,e)+"[]":i.reduce(s(n),[]).join("&"):Ct(n,e)+"="+Ct(i,e)})).filter((t=>t.length>0)).join("&")}function Nt(t,e){e={decode:!0,...e};let[n,s]=ht(t,"#");return void 0===n&&(n=t),{url:n?.split("?")?.[0]??"",query:St(Et(t),e),...e&&e.parseFragmentIdentifier&&s?{fragmentIdentifier:xt(s,e)}:{}}}function It(t,e){e={encode:!0,strict:!0,[yt]:!0,...e};const n=Tt(t.url).split("?")[0]||"";let s=Lt({...St(Et(t.url),{sort:!1}),...t.query},e);s&&(s=`?${s}`);let i=function(t){let e="";const n=t.indexOf("#");return-1!==n&&(e=t.slice(n)),e}(t.url);if(t.fragmentIdentifier){const s=new URL(n);s.hash=t.fragmentIdentifier,i=e[yt]?s.hash:`#${t.fragmentIdentifier}`}return`${n}${s}${i}`}function Ft(t,e,n){n={parseFragmentIdentifier:!0,[yt]:!1,...n};const{url:s,query:i,fragmentIdentifier:r}=Nt(t,n);return It({url:s,query:vt(i,e),fragmentIdentifier:r},n)}function Pt(t,e,n){return Ft(t,Array.isArray(e)?t=>!e.includes(t):(t,n)=>!e(t,n),n)}const Bt=i;var Ot=s(96763);function Dt(t,e){for(var n in e)t[n]=e[n];return t}var Ut=/[!'()*]/g,jt=function(t){return"%"+t.charCodeAt(0).toString(16)},zt=/%2C/g,Mt=function(t){return encodeURIComponent(t).replace(Ut,jt).replace(zt,",")};function Rt(t){try{return decodeURIComponent(t)}catch(t){}return t}var Vt=function(t){return null==t||"object"==typeof t?t:String(t)};function $t(t){var e={};return(t=t.trim().replace(/^(\?|#|&)/,""))?(t.split("&").forEach((function(t){var n=t.replace(/\+/g," ").split("="),s=Rt(n.shift()),i=n.length>0?Rt(n.join("=")):null;void 0===e[s]?e[s]=i:Array.isArray(e[s])?e[s].push(i):e[s]=[e[s],i]})),e):e}function qt(t){var e=t?Object.keys(t).map((function(e){var n=t[e];if(void 0===n)return"";if(null===n)return Mt(e);if(Array.isArray(n)){var s=[];return n.forEach((function(t){void 0!==t&&(null===t?s.push(Mt(e)):s.push(Mt(e)+"="+Mt(t)))})),s.join("&")}return Mt(e)+"="+Mt(n)})).filter((function(t){return t.length>0})).join("&"):null;return e?"?"+e:""}var Ht=/\/?$/;function Wt(t,e,n,s){var i=s&&s.options.stringifyQuery,r=e.query||{};try{r=Gt(r)}catch(t){}var o={name:e.name||t&&t.name,meta:t&&t.meta||{},path:e.path||"/",hash:e.hash||"",query:r,params:e.params||{},fullPath:Qt(e,i),matched:t?Kt(t):[]};return n&&(o.redirectedFrom=Qt(n,i)),Object.freeze(o)}function Gt(t){if(Array.isArray(t))return t.map(Gt);if(t&&"object"==typeof t){var e={};for(var n in t)e[n]=Gt(t[n]);return e}return t}var Yt=Wt(null,{path:"/"});function Kt(t){for(var e=[];t;)e.unshift(t),t=t.parent;return e}function Qt(t,e){var n=t.path,s=t.query;void 0===s&&(s={});var i=t.hash;return void 0===i&&(i=""),(n||"/")+(e||qt)(s)+i}function Xt(t,e,n){return e===Yt?t===e:!!e&&(t.path&&e.path?t.path.replace(Ht,"")===e.path.replace(Ht,"")&&(n||t.hash===e.hash&&Jt(t.query,e.query)):!(!t.name||!e.name)&&t.name===e.name&&(n||t.hash===e.hash&&Jt(t.query,e.query)&&Jt(t.params,e.params)))}function Jt(t,e){if(void 0===t&&(t={}),void 0===e&&(e={}),!t||!e)return t===e;var n=Object.keys(t).sort(),s=Object.keys(e).sort();return n.length===s.length&&n.every((function(n,i){var r=t[n];if(s[i]!==n)return!1;var o=e[n];return null==r||null==o?r===o:"object"==typeof r&&"object"==typeof o?Jt(r,o):String(r)===String(o)}))}function Zt(t){for(var e=0;e<t.matched.length;e++){var n=t.matched[e];for(var s in n.instances){var i=n.instances[s],r=n.enteredCbs[s];if(i&&r){delete n.enteredCbs[s];for(var o=0;o<r.length;o++)i._isBeingDestroyed||r[o](i)}}}}var te={name:"RouterView",functional:!0,props:{name:{type:String,default:"default"}},render:function(t,e){var n=e.props,s=e.children,i=e.parent,r=e.data;r.routerView=!0;for(var o=i.$createElement,a=n.name,l=i.$route,c=i._routerViewCache||(i._routerViewCache={}),d=0,u=!1;i&&i._routerRoot!==i;){var m=i.$vnode?i.$vnode.data:{};m.routerView&&d++,m.keepAlive&&i._directInactive&&i._inactive&&(u=!0),i=i.$parent}if(r.routerViewDepth=d,u){var p=c[a],f=p&&p.component;return f?(p.configProps&&ee(f,r,p.route,p.configProps),o(f,r,s)):o()}var g=l.matched[d],h=g&&g.components[a];if(!g||!h)return c[a]=null,o();c[a]={component:h},r.registerRouteInstance=function(t,e){var n=g.instances[a];(e&&n!==t||!e&&n===t)&&(g.instances[a]=e)},(r.hook||(r.hook={})).prepatch=function(t,e){g.instances[a]=e.componentInstance},r.hook.init=function(t){t.data.keepAlive&&t.componentInstance&&t.componentInstance!==g.instances[a]&&(g.instances[a]=t.componentInstance),Zt(l)};var v=g.props&&g.props[a];return v&&(Dt(c[a],{route:l,configProps:v}),ee(h,r,l,v)),o(h,r,s)}};function ee(t,e,n,s){var i=e.props=function(t,e){switch(typeof e){case"undefined":return;case"object":return e;case"function":return e(t);case"boolean":return e?t.params:void 0}}(n,s);if(i){i=e.props=Dt({},i);var r=e.attrs=e.attrs||{};for(var o in i)t.props&&o in t.props||(r[o]=i[o],delete i[o])}}function ne(t,e,n){var s=t.charAt(0);if("/"===s)return t;if("?"===s||"#"===s)return e+t;var i=e.split("/");n&&i[i.length-1]||i.pop();for(var r=t.replace(/^\//,"").split("/"),o=0;o<r.length;o++){var a=r[o];".."===a?i.pop():"."!==a&&i.push(a)}return""!==i[0]&&i.unshift(""),i.join("/")}function se(t){return t.replace(/\/(?:\s*\/)+/g,"/")}var ie=Array.isArray||function(t){return"[object Array]"==Object.prototype.toString.call(t)},re=function t(e,n,s){return ie(n)||(s=n||s,n=[]),s=s||{},e instanceof RegExp?function(t,e){var n=t.source.match(/\((?!\?)/g);if(n)for(var s=0;s<n.length;s++)e.push({name:s,prefix:null,delimiter:null,optional:!1,repeat:!1,partial:!1,asterisk:!1,pattern:null});return ge(t,e)}(e,n):ie(e)?function(e,n,s){for(var i=[],r=0;r<e.length;r++)i.push(t(e[r],n,s).source);return ge(new RegExp("(?:"+i.join("|")+")",he(s)),n)}(e,n,s):function(t,e,n){return ve(de(t,n),e,n)}(e,n,s)},oe=de,ae=me,le=ve,ce=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function de(t,e){for(var n,s=[],i=0,r=0,o="",a=e&&e.delimiter||"/";null!=(n=ce.exec(t));){var l=n[0],c=n[1],d=n.index;if(o+=t.slice(r,d),r=d+l.length,c)o+=c[1];else{var u=t[r],m=n[2],p=n[3],f=n[4],g=n[5],h=n[6],v=n[7];o&&(s.push(o),o="");var A=null!=m&&null!=u&&u!==m,w="+"===h||"*"===h,y="?"===h||"*"===h,b=n[2]||a,C=f||g;s.push({name:p||i++,prefix:m||"",delimiter:b,optional:y,repeat:w,partial:A,asterisk:!!v,pattern:C?fe(C):v?".*":"[^"+pe(b)+"]+?"})}}return r<t.length&&(o+=t.substr(r)),o&&s.push(o),s}function ue(t){return encodeURI(t).replace(/[\/?#]/g,(function(t){return"%"+t.charCodeAt(0).toString(16).toUpperCase()}))}function me(t,e){for(var n=new Array(t.length),s=0;s<t.length;s++)"object"==typeof t[s]&&(n[s]=new RegExp("^(?:"+t[s].pattern+")$",he(e)));return function(e,s){for(var i="",r=e||{},o=(s||{}).pretty?ue:encodeURIComponent,a=0;a<t.length;a++){var l=t[a];if("string"!=typeof l){var c,d=r[l.name];if(null==d){if(l.optional){l.partial&&(i+=l.prefix);continue}throw new TypeError('Expected "'+l.name+'" to be defined')}if(ie(d)){if(!l.repeat)throw new TypeError('Expected "'+l.name+'" to not repeat, but received `'+JSON.stringify(d)+"`");if(0===d.length){if(l.optional)continue;throw new TypeError('Expected "'+l.name+'" to not be empty')}for(var u=0;u<d.length;u++){if(c=o(d[u]),!n[a].test(c))throw new TypeError('Expected all "'+l.name+'" to match "'+l.pattern+'", but received `'+JSON.stringify(c)+"`");i+=(0===u?l.prefix:l.delimiter)+c}}else{if(c=l.asterisk?encodeURI(d).replace(/[?#]/g,(function(t){return"%"+t.charCodeAt(0).toString(16).toUpperCase()})):o(d),!n[a].test(c))throw new TypeError('Expected "'+l.name+'" to match "'+l.pattern+'", but received "'+c+'"');i+=l.prefix+c}}else i+=l}return i}}function pe(t){return t.replace(/([.+*?=^!:${}()[\]|\/\\])/g,"\\$1")}function fe(t){return t.replace(/([=!:$\/()])/g,"\\$1")}function ge(t,e){return t.keys=e,t}function he(t){return t&&t.sensitive?"":"i"}function ve(t,e,n){ie(e)||(n=e||n,e=[]);for(var s=(n=n||{}).strict,i=!1!==n.end,r="",o=0;o<t.length;o++){var a=t[o];if("string"==typeof a)r+=pe(a);else{var l=pe(a.prefix),c="(?:"+a.pattern+")";e.push(a),a.repeat&&(c+="(?:"+l+c+")*"),r+=c=a.optional?a.partial?l+"("+c+")?":"(?:"+l+"("+c+"))?":l+"("+c+")"}}var d=pe(n.delimiter||"/"),u=r.slice(-d.length)===d;return s||(r=(u?r.slice(0,-d.length):r)+"(?:"+d+"(?=$))?"),r+=i?"$":s&&u?"":"(?="+d+"|$)",ge(new RegExp("^"+r,he(n)),e)}re.parse=oe,re.compile=function(t,e){return me(de(t,e),e)},re.tokensToFunction=ae,re.tokensToRegExp=le;var Ae=Object.create(null);function we(t,e,n){e=e||{};try{var s=Ae[t]||(Ae[t]=re.compile(t));return"string"==typeof e.pathMatch&&(e[0]=e.pathMatch),s(e,{pretty:!0})}catch(t){return""}finally{delete e[0]}}function ye(t,e,n,s){var i="string"==typeof t?{path:t}:t;if(i._normalized)return i;if(i.name){var r=(i=Dt({},t)).params;return r&&"object"==typeof r&&(i.params=Dt({},r)),i}if(!i.path&&i.params&&e){(i=Dt({},i))._normalized=!0;var o=Dt(Dt({},e.params),i.params);if(e.name)i.name=e.name,i.params=o;else if(e.matched.length){var a=e.matched[e.matched.length-1].path;i.path=we(a,o,e.path)}return i}var l=function(t){var e="",n="",s=t.indexOf("#");s>=0&&(e=t.slice(s),t=t.slice(0,s));var i=t.indexOf("?");return i>=0&&(n=t.slice(i+1),t=t.slice(0,i)),{path:t,query:n,hash:e}}(i.path||""),c=e&&e.path||"/",d=l.path?ne(l.path,c,n||i.append):c,u=function(t,e,n){void 0===e&&(e={});var s,i=n||$t;try{s=i(t||"")}catch(t){s={}}for(var r in e){var o=e[r];s[r]=Array.isArray(o)?o.map(Vt):Vt(o)}return s}(l.query,i.query,s&&s.options.parseQuery),m=i.hash||l.hash;return m&&"#"!==m.charAt(0)&&(m="#"+m),{_normalized:!0,path:d,query:u,hash:m}}var be,Ce=function(){},xe={name:"RouterLink",props:{to:{type:[String,Object],required:!0},tag:{type:String,default:"a"},custom:Boolean,exact:Boolean,exactPath:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,ariaCurrentValue:{type:String,default:"page"},event:{type:[String,Array],default:"click"}},render:function(t){var e=this,n=this.$router,s=this.$route,i=n.resolve(this.to,s,this.append),r=i.location,o=i.route,a=i.href,l={},c=n.options.linkActiveClass,d=n.options.linkExactActiveClass,u=null==c?"router-link-active":c,m=null==d?"router-link-exact-active":d,p=null==this.activeClass?u:this.activeClass,f=null==this.exactActiveClass?m:this.exactActiveClass,g=o.redirectedFrom?Wt(null,ye(o.redirectedFrom),null,n):o;l[f]=Xt(s,g,this.exactPath),l[p]=this.exact||this.exactPath?l[f]:function(t,e){return 0===t.path.replace(Ht,"/").indexOf(e.path.replace(Ht,"/"))&&(!e.hash||t.hash===e.hash)&&function(t,e){for(var n in e)if(!(n in t))return!1;return!0}(t.query,e.query)}(s,g);var h=l[f]?this.ariaCurrentValue:null,v=function(t){_e(t)&&(e.replace?n.replace(r,Ce):n.push(r,Ce))},A={click:_e};Array.isArray(this.event)?this.event.forEach((function(t){A[t]=v})):A[this.event]=v;var w={class:l},y=!this.$scopedSlots.$hasNormal&&this.$scopedSlots.default&&this.$scopedSlots.default({href:a,route:o,navigate:v,isActive:l[p],isExactActive:l[f]});if(y){if(1===y.length)return y[0];if(y.length>1||!y.length)return 0===y.length?t():t("span",{},y)}if("a"===this.tag)w.on=A,w.attrs={href:a,"aria-current":h};else{var b=Te(this.$slots.default);if(b){b.isStatic=!1;var C=b.data=Dt({},b.data);for(var x in C.on=C.on||{},C.on){var _=C.on[x];x in A&&(C.on[x]=Array.isArray(_)?_:[_])}for(var T in A)T in C.on?C.on[T].push(A[T]):C.on[T]=v;var k=b.data.attrs=Dt({},b.data.attrs);k.href=a,k["aria-current"]=h}else w.on=A}return t(this.tag,w,this.$slots.default)}};function _e(t){if(!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey||t.defaultPrevented||void 0!==t.button&&0!==t.button)){if(t.currentTarget&&t.currentTarget.getAttribute){var e=t.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(e))return}return t.preventDefault&&t.preventDefault(),!0}}function Te(t){if(t)for(var e,n=0;n<t.length;n++){if("a"===(e=t[n]).tag)return e;if(e.children&&(e=Te(e.children)))return e}}var ke="undefined"!=typeof window;function Ee(t,e,n,s,i){var r=e||[],o=n||Object.create(null),a=s||Object.create(null);t.forEach((function(t){Se(r,o,a,t,i)}));for(var l=0,c=r.length;l<c;l++)"*"===r[l]&&(r.push(r.splice(l,1)[0]),c--,l--);return{pathList:r,pathMap:o,nameMap:a}}function Se(t,e,n,s,i,r){var o=s.path,a=s.name,l=s.pathToRegexpOptions||{},c=function(t,e,n){return n||(t=t.replace(/\/$/,"")),"/"===t[0]||null==e?t:se(e.path+"/"+t)}(o,i,l.strict);"boolean"==typeof s.caseSensitive&&(l.sensitive=s.caseSensitive);var d={path:c,regex:Le(c,l),components:s.components||{default:s.component},alias:s.alias?"string"==typeof s.alias?[s.alias]:s.alias:[],instances:{},enteredCbs:{},name:a,parent:i,matchAs:r,redirect:s.redirect,beforeEnter:s.beforeEnter,meta:s.meta||{},props:null==s.props?{}:s.components?s.props:{default:s.props}};if(s.children&&s.children.forEach((function(s){var i=r?se(r+"/"+s.path):void 0;Se(t,e,n,s,d,i)})),e[d.path]||(t.push(d.path),e[d.path]=d),void 0!==s.alias)for(var u=Array.isArray(s.alias)?s.alias:[s.alias],m=0;m<u.length;++m){var p={path:u[m],children:s.children};Se(t,e,n,p,i,d.path||"/")}a&&(n[a]||(n[a]=d))}function Le(t,e){return re(t,[],e)}function Ne(t,e){var n=Ee(t),s=n.pathList,i=n.pathMap,r=n.nameMap;function o(t,n,o){var l=ye(t,n,!1,e),c=l.name;if(c){var d=r[c];if(!d)return a(null,l);var u=d.regex.keys.filter((function(t){return!t.optional})).map((function(t){return t.name}));if("object"!=typeof l.params&&(l.params={}),n&&"object"==typeof n.params)for(var m in n.params)!(m in l.params)&&u.indexOf(m)>-1&&(l.params[m]=n.params[m]);return l.path=we(d.path,l.params),a(d,l,o)}if(l.path){l.params={};for(var p=0;p<s.length;p++){var f=s[p],g=i[f];if(Ie(g.regex,l.path,l.params))return a(g,l,o)}}return a(null,l)}function a(t,n,s){return t&&t.redirect?function(t,n){var s=t.redirect,i="function"==typeof s?s(Wt(t,n,null,e)):s;if("string"==typeof i&&(i={path:i}),!i||"object"!=typeof i)return a(null,n);var l=i,c=l.name,d=l.path,u=n.query,m=n.hash,p=n.params;if(u=l.hasOwnProperty("query")?l.query:u,m=l.hasOwnProperty("hash")?l.hash:m,p=l.hasOwnProperty("params")?l.params:p,c)return r[c],o({_normalized:!0,name:c,query:u,hash:m,params:p},void 0,n);if(d){var f=function(t,e){return ne(t,e.parent?e.parent.path:"/",!0)}(d,t);return o({_normalized:!0,path:we(f,p),query:u,hash:m},void 0,n)}return a(null,n)}(t,s||n):t&&t.matchAs?function(t,e,n){var s=o({_normalized:!0,path:we(n,e.params)});if(s){var i=s.matched,r=i[i.length-1];return e.params=s.params,a(r,e)}return a(null,e)}(0,n,t.matchAs):Wt(t,n,s,e)}return{match:o,addRoute:function(t,e){var n="object"!=typeof t?r[t]:void 0;Ee([e||t],s,i,r,n),n&&n.alias.length&&Ee(n.alias.map((function(t){return{path:t,children:[e]}})),s,i,r,n)},getRoutes:function(){return s.map((function(t){return i[t]}))},addRoutes:function(t){Ee(t,s,i,r)}}}function Ie(t,e,n){var s=e.match(t);if(!s)return!1;if(!n)return!0;for(var i=1,r=s.length;i<r;++i){var o=t.keys[i-1];o&&(n[o.name||"pathMatch"]="string"==typeof s[i]?Rt(s[i]):s[i])}return!0}var Fe=ke&&window.performance&&window.performance.now?window.performance:Date;function Pe(){return Fe.now().toFixed(3)}var Be=Pe();function Oe(){return Be}function De(t){return Be=t}var Ue=Object.create(null);function je(){"scrollRestoration"in window.history&&(window.history.scrollRestoration="manual");var t=window.location.protocol+"//"+window.location.host,e=window.location.href.replace(t,""),n=Dt({},window.history.state);return n.key=Oe(),window.history.replaceState(n,"",e),window.addEventListener("popstate",Re),function(){window.removeEventListener("popstate",Re)}}function ze(t,e,n,s){if(t.app){var i=t.options.scrollBehavior;i&&t.app.$nextTick((function(){var r=function(){var t=Oe();if(t)return Ue[t]}(),o=i.call(t,e,n,s?r:null);o&&("function"==typeof o.then?o.then((function(t){We(t,r)})).catch((function(t){})):We(o,r))}))}}function Me(){var t=Oe();t&&(Ue[t]={x:window.pageXOffset,y:window.pageYOffset})}function Re(t){Me(),t.state&&t.state.key&&De(t.state.key)}function Ve(t){return qe(t.x)||qe(t.y)}function $e(t){return{x:qe(t.x)?t.x:window.pageXOffset,y:qe(t.y)?t.y:window.pageYOffset}}function qe(t){return"number"==typeof t}var He=/^#\d/;function We(t,e){var n,s="object"==typeof t;if(s&&"string"==typeof t.selector){var i=He.test(t.selector)?document.getElementById(t.selector.slice(1)):document.querySelector(t.selector);if(i){var r=t.offset&&"object"==typeof t.offset?t.offset:{};e=function(t,e){var n=document.documentElement.getBoundingClientRect(),s=t.getBoundingClientRect();return{x:s.left-n.left-e.x,y:s.top-n.top-e.y}}(i,r={x:qe((n=r).x)?n.x:0,y:qe(n.y)?n.y:0})}else Ve(t)&&(e=$e(t))}else s&&Ve(t)&&(e=$e(t));e&&("scrollBehavior"in document.documentElement.style?window.scrollTo({left:e.x,top:e.y,behavior:t.behavior}):window.scrollTo(e.x,e.y))}var Ge,Ye=ke&&(-1===(Ge=window.navigator.userAgent).indexOf("Android 2.")&&-1===Ge.indexOf("Android 4.0")||-1===Ge.indexOf("Mobile Safari")||-1!==Ge.indexOf("Chrome")||-1!==Ge.indexOf("Windows Phone"))&&window.history&&"function"==typeof window.history.pushState;function Ke(t,e){Me();var n=window.history;try{if(e){var s=Dt({},n.state);s.key=Oe(),n.replaceState(s,"",t)}else n.pushState({key:De(Pe())},"",t)}catch(n){window.location[e?"replace":"assign"](t)}}function Qe(t){Ke(t,!0)}var Xe={redirected:2,aborted:4,cancelled:8,duplicated:16};function Je(t,e){return Ze(t,e,Xe.cancelled,'Navigation cancelled from "'+t.fullPath+'" to "'+e.fullPath+'" with a new navigation.')}function Ze(t,e,n,s){var i=new Error(s);return i._isRouter=!0,i.from=t,i.to=e,i.type=n,i}var tn=["params","query","hash"];function en(t){return Object.prototype.toString.call(t).indexOf("Error")>-1}function nn(t,e){return en(t)&&t._isRouter&&(null==e||t.type===e)}function sn(t,e,n){var s=function(i){i>=t.length?n():t[i]?e(t[i],(function(){s(i+1)})):s(i+1)};s(0)}function rn(t,e){return on(t.map((function(t){return Object.keys(t.components).map((function(n){return e(t.components[n],t.instances[n],t,n)}))})))}function on(t){return Array.prototype.concat.apply([],t)}var an="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;function ln(t){var e=!1;return function(){for(var n=[],s=arguments.length;s--;)n[s]=arguments[s];if(!e)return e=!0,t.apply(this,n)}}var cn=function(t,e){this.router=t,this.base=function(t){if(!t)if(ke){var e=document.querySelector("base");t=(t=e&&e.getAttribute("href")||"/").replace(/^https?:\/\/[^\/]+/,"")}else t="/";return"/"!==t.charAt(0)&&(t="/"+t),t.replace(/\/$/,"")}(e),this.current=Yt,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[],this.listeners=[]};function dn(t,e,n,s){var i=rn(t,(function(t,s,i,r){var o=function(t,e){return"function"!=typeof t&&(t=be.extend(t)),t.options[e]}(t,e);if(o)return Array.isArray(o)?o.map((function(t){return n(t,s,i,r)})):n(o,s,i,r)}));return on(s?i.reverse():i)}function un(t,e){if(e)return function(){return t.apply(e,arguments)}}cn.prototype.listen=function(t){this.cb=t},cn.prototype.onReady=function(t,e){this.ready?t():(this.readyCbs.push(t),e&&this.readyErrorCbs.push(e))},cn.prototype.onError=function(t){this.errorCbs.push(t)},cn.prototype.transitionTo=function(t,e,n){var s,i=this;try{s=this.router.match(t,this.current)}catch(t){throw this.errorCbs.forEach((function(e){e(t)})),t}var r=this.current;this.confirmTransition(s,(function(){i.updateRoute(s),e&&e(s),i.ensureURL(),i.router.afterHooks.forEach((function(t){t&&t(s,r)})),i.ready||(i.ready=!0,i.readyCbs.forEach((function(t){t(s)})))}),(function(t){n&&n(t),t&&!i.ready&&(nn(t,Xe.redirected)&&r===Yt||(i.ready=!0,i.readyErrorCbs.forEach((function(e){e(t)}))))}))},cn.prototype.confirmTransition=function(t,e,n){var s=this,i=this.current;this.pending=t;var r,o,a=function(t){!nn(t)&&en(t)&&(s.errorCbs.length?s.errorCbs.forEach((function(e){e(t)})):Ot.error(t)),n&&n(t)},l=t.matched.length-1,c=i.matched.length-1;if(Xt(t,i)&&l===c&&t.matched[l]===i.matched[c])return this.ensureURL(),t.hash&&ze(this.router,i,t,!1),a(((o=Ze(r=i,t,Xe.duplicated,'Avoided redundant navigation to current location: "'+r.fullPath+'".')).name="NavigationDuplicated",o));var d,u=function(t,e){var n,s=Math.max(t.length,e.length);for(n=0;n<s&&t[n]===e[n];n++);return{updated:e.slice(0,n),activated:e.slice(n),deactivated:t.slice(n)}}(this.current.matched,t.matched),m=u.updated,p=u.deactivated,f=u.activated,g=[].concat(function(t){return dn(t,"beforeRouteLeave",un,!0)}(p),this.router.beforeHooks,function(t){return dn(t,"beforeRouteUpdate",un)}(m),f.map((function(t){return t.beforeEnter})),(d=f,function(t,e,n){var s=!1,i=0,r=null;rn(d,(function(t,e,o,a){if("function"==typeof t&&void 0===t.cid){s=!0,i++;var l,c=ln((function(e){var s;((s=e).__esModule||an&&"Module"===s[Symbol.toStringTag])&&(e=e.default),t.resolved="function"==typeof e?e:be.extend(e),o.components[a]=e,--i<=0&&n()})),d=ln((function(t){var e="Failed to resolve async component "+a+": "+t;r||(r=en(t)?t:new Error(e),n(r))}));try{l=t(c,d)}catch(t){d(t)}if(l)if("function"==typeof l.then)l.then(c,d);else{var u=l.component;u&&"function"==typeof u.then&&u.then(c,d)}}})),s||n()})),h=function(e,n){if(s.pending!==t)return a(Je(i,t));try{e(t,i,(function(e){!1===e?(s.ensureURL(!0),a(function(t,e){return Ze(t,e,Xe.aborted,'Navigation aborted from "'+t.fullPath+'" to "'+e.fullPath+'" via a navigation guard.')}(i,t))):en(e)?(s.ensureURL(!0),a(e)):"string"==typeof e||"object"==typeof e&&("string"==typeof e.path||"string"==typeof e.name)?(a(function(t,e){return Ze(t,e,Xe.redirected,'Redirected when going from "'+t.fullPath+'" to "'+function(t){if("string"==typeof t)return t;if("path"in t)return t.path;var e={};return tn.forEach((function(n){n in t&&(e[n]=t[n])})),JSON.stringify(e,null,2)}(e)+'" via a navigation guard.')}(i,t)),"object"==typeof e&&e.replace?s.replace(e):s.push(e)):n(e)}))}catch(t){a(t)}};sn(g,h,(function(){var n=function(t){return dn(t,"beforeRouteEnter",(function(t,e,n,s){return function(t,e,n){return function(s,i,r){return t(s,i,(function(t){"function"==typeof t&&(e.enteredCbs[n]||(e.enteredCbs[n]=[]),e.enteredCbs[n].push(t)),r(t)}))}}(t,n,s)}))}(f);sn(n.concat(s.router.resolveHooks),h,(function(){if(s.pending!==t)return a(Je(i,t));s.pending=null,e(t),s.router.app&&s.router.app.$nextTick((function(){Zt(t)}))}))}))},cn.prototype.updateRoute=function(t){this.current=t,this.cb&&this.cb(t)},cn.prototype.setupListeners=function(){},cn.prototype.teardown=function(){this.listeners.forEach((function(t){t()})),this.listeners=[],this.current=Yt,this.pending=null};var mn=function(t){function e(e,n){t.call(this,e,n),this._startLocation=pn(this.base)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setupListeners=function(){var t=this;if(!(this.listeners.length>0)){var e=this.router,n=e.options.scrollBehavior,s=Ye&&n;s&&this.listeners.push(je());var i=function(){var n=t.current,i=pn(t.base);t.current===Yt&&i===t._startLocation||t.transitionTo(i,(function(t){s&&ze(e,t,n,!0)}))};window.addEventListener("popstate",i),this.listeners.push((function(){window.removeEventListener("popstate",i)}))}},e.prototype.go=function(t){window.history.go(t)},e.prototype.push=function(t,e,n){var s=this,i=this.current;this.transitionTo(t,(function(t){Ke(se(s.base+t.fullPath)),ze(s.router,t,i,!1),e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var s=this,i=this.current;this.transitionTo(t,(function(t){Qe(se(s.base+t.fullPath)),ze(s.router,t,i,!1),e&&e(t)}),n)},e.prototype.ensureURL=function(t){if(pn(this.base)!==this.current.fullPath){var e=se(this.base+this.current.fullPath);t?Ke(e):Qe(e)}},e.prototype.getCurrentLocation=function(){return pn(this.base)},e}(cn);function pn(t){var e=window.location.pathname,n=e.toLowerCase(),s=t.toLowerCase();return!t||n!==s&&0!==n.indexOf(se(s+"/"))||(e=e.slice(t.length)),(e||"/")+window.location.search+window.location.hash}var fn=function(t){function e(e,n,s){t.call(this,e,n),s&&function(t){var e=pn(t);if(!/^\/#/.test(e))return window.location.replace(se(t+"/#"+e)),!0}(this.base)||gn()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setupListeners=function(){var t=this;if(!(this.listeners.length>0)){var e=this.router.options.scrollBehavior,n=Ye&&e;n&&this.listeners.push(je());var s=function(){var e=t.current;gn()&&t.transitionTo(hn(),(function(s){n&&ze(t.router,s,e,!0),Ye||wn(s.fullPath)}))},i=Ye?"popstate":"hashchange";window.addEventListener(i,s),this.listeners.push((function(){window.removeEventListener(i,s)}))}},e.prototype.push=function(t,e,n){var s=this,i=this.current;this.transitionTo(t,(function(t){An(t.fullPath),ze(s.router,t,i,!1),e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var s=this,i=this.current;this.transitionTo(t,(function(t){wn(t.fullPath),ze(s.router,t,i,!1),e&&e(t)}),n)},e.prototype.go=function(t){window.history.go(t)},e.prototype.ensureURL=function(t){var e=this.current.fullPath;hn()!==e&&(t?An(e):wn(e))},e.prototype.getCurrentLocation=function(){return hn()},e}(cn);function gn(){var t=hn();return"/"===t.charAt(0)||(wn("/"+t),!1)}function hn(){var t=window.location.href,e=t.indexOf("#");return e<0?"":t=t.slice(e+1)}function vn(t){var e=window.location.href,n=e.indexOf("#");return(n>=0?e.slice(0,n):e)+"#"+t}function An(t){Ye?Ke(vn(t)):window.location.hash=t}function wn(t){Ye?Qe(vn(t)):window.location.replace(vn(t))}var yn=function(t){function e(e,n){t.call(this,e,n),this.stack=[],this.index=-1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.push=function(t,e,n){var s=this;this.transitionTo(t,(function(t){s.stack=s.stack.slice(0,s.index+1).concat(t),s.index++,e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var s=this;this.transitionTo(t,(function(t){s.stack=s.stack.slice(0,s.index).concat(t),e&&e(t)}),n)},e.prototype.go=function(t){var e=this,n=this.index+t;if(!(n<0||n>=this.stack.length)){var s=this.stack[n];this.confirmTransition(s,(function(){var t=e.current;e.index=n,e.updateRoute(s),e.router.afterHooks.forEach((function(e){e&&e(s,t)}))}),(function(t){nn(t,Xe.duplicated)&&(e.index=n)}))}},e.prototype.getCurrentLocation=function(){var t=this.stack[this.stack.length-1];return t?t.fullPath:"/"},e.prototype.ensureURL=function(){},e}(cn),bn=function(t){void 0===t&&(t={}),this.app=null,this.apps=[],this.options=t,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=Ne(t.routes||[],this);var e=t.mode||"hash";switch(this.fallback="history"===e&&!Ye&&!1!==t.fallback,this.fallback&&(e="hash"),ke||(e="abstract"),this.mode=e,e){case"history":this.history=new mn(this,t.base);break;case"hash":this.history=new fn(this,t.base,this.fallback);break;case"abstract":this.history=new yn(this,t.base)}},Cn={currentRoute:{configurable:!0}};bn.prototype.match=function(t,e,n){return this.matcher.match(t,e,n)},Cn.currentRoute.get=function(){return this.history&&this.history.current},bn.prototype.init=function(t){var e=this;if(this.apps.push(t),t.$once("hook:destroyed",(function(){var n=e.apps.indexOf(t);n>-1&&e.apps.splice(n,1),e.app===t&&(e.app=e.apps[0]||null),e.app||e.history.teardown()})),!this.app){this.app=t;var n=this.history;if(n instanceof mn||n instanceof fn){var s=function(t){n.setupListeners(),function(t){var s=n.current,i=e.options.scrollBehavior;Ye&&i&&"fullPath"in t&&ze(e,t,s,!1)}(t)};n.transitionTo(n.getCurrentLocation(),s,s)}n.listen((function(t){e.apps.forEach((function(e){e._route=t}))}))}},bn.prototype.beforeEach=function(t){return _n(this.beforeHooks,t)},bn.prototype.beforeResolve=function(t){return _n(this.resolveHooks,t)},bn.prototype.afterEach=function(t){return _n(this.afterHooks,t)},bn.prototype.onReady=function(t,e){this.history.onReady(t,e)},bn.prototype.onError=function(t){this.history.onError(t)},bn.prototype.push=function(t,e,n){var s=this;if(!e&&!n&&"undefined"!=typeof Promise)return new Promise((function(e,n){s.history.push(t,e,n)}));this.history.push(t,e,n)},bn.prototype.replace=function(t,e,n){var s=this;if(!e&&!n&&"undefined"!=typeof Promise)return new Promise((function(e,n){s.history.replace(t,e,n)}));this.history.replace(t,e,n)},bn.prototype.go=function(t){this.history.go(t)},bn.prototype.back=function(){this.go(-1)},bn.prototype.forward=function(){this.go(1)},bn.prototype.getMatchedComponents=function(t){var e=t?t.matched?t:this.resolve(t).route:this.currentRoute;return e?[].concat.apply([],e.matched.map((function(t){return Object.keys(t.components).map((function(e){return t.components[e]}))}))):[]},bn.prototype.resolve=function(t,e,n){var s=ye(t,e=e||this.history.current,n,this),i=this.match(s,e),r=i.redirectedFrom||i.fullPath,o=function(t,e,n){var s="hash"===n?"#"+e:e;return t?se(t+"/"+s):s}(this.history.base,r,this.mode);return{location:s,route:i,href:o,normalizedTo:s,resolved:i}},bn.prototype.getRoutes=function(){return this.matcher.getRoutes()},bn.prototype.addRoute=function(t,e){this.matcher.addRoute(t,e),this.history.current!==Yt&&this.history.transitionTo(this.history.getCurrentLocation())},bn.prototype.addRoutes=function(t){this.matcher.addRoutes(t),this.history.current!==Yt&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(bn.prototype,Cn);var xn=bn;function _n(t,e){return t.push(e),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}bn.install=function t(e){if(!t.installed||be!==e){t.installed=!0,be=e;var n=function(t){return void 0!==t},s=function(t,e){var s=t.$options._parentVnode;n(s)&&n(s=s.data)&&n(s=s.registerRouteInstance)&&s(t,e)};e.mixin({beforeCreate:function(){n(this.$options.router)?(this._routerRoot=this,this._router=this.$options.router,this._router.init(this),e.util.defineReactive(this,"_route",this._router.history.current)):this._routerRoot=this.$parent&&this.$parent._routerRoot||this,s(this,this)},destroyed:function(){s(this)}}),Object.defineProperty(e.prototype,"$router",{get:function(){return this._routerRoot._router}}),Object.defineProperty(e.prototype,"$route",{get:function(){return this._routerRoot._route}}),e.component("RouterView",te),e.component("RouterLink",xe);var i=e.config.optionMergeStrategies;i.beforeRouteEnter=i.beforeRouteLeave=i.beforeRouteUpdate=i.created}},bn.version="3.6.5",bn.isNavigationFailure=nn,bn.NavigationFailureType=Xe,bn.START_LOCATION=Yt,ke&&window.Vue&&window.Vue.use(bn),r.Ay.use(xn);const Tn=xn.prototype.push;xn.prototype.push=function(t,e,n){return e||n?Tn.call(this,t,e,n):Tn.call(this,t).catch((t=>t))};const kn=new xn({mode:"history",base:(0,dt.Jv)("/apps/files"),linkActiveClass:"active",routes:[{path:"/",redirect:{name:"filelist",params:{view:"files"}}},{path:"/:view/:fileid(\\d+)?",name:"filelist",props:!0}],stringifyQuery(t){const e=Bt.stringify(t).replace(/%2F/gim,"/");return e?"?"+e:""}});function En(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var s=n.call(t,"string");if("object"!=typeof s)return s;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==typeof e?e:e+""}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var Sn=s(96763);var Ln=s(22378),Nn=s(61338),In=s(53334);const Fn={name:"CogIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}};var Pn=s(14486);const Bn=(0,Pn.A)(Fn,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon cog-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M12,15.5A3.5,3.5 0 0,1 8.5,12A3.5,3.5 0 0,1 12,8.5A3.5,3.5 0 0,1 15.5,12A3.5,3.5 0 0,1 12,15.5M19.43,12.97C19.47,12.65 19.5,12.33 19.5,12C19.5,11.67 19.47,11.34 19.43,11L21.54,9.37C21.73,9.22 21.78,8.95 21.66,8.73L19.66,5.27C19.54,5.05 19.27,4.96 19.05,5.05L16.56,6.05C16.04,5.66 15.5,5.32 14.87,5.07L14.5,2.42C14.46,2.18 14.25,2 14,2H10C9.75,2 9.54,2.18 9.5,2.42L9.13,5.07C8.5,5.32 7.96,5.66 7.44,6.05L4.95,5.05C4.73,4.96 4.46,5.05 4.34,5.27L2.34,8.73C2.21,8.95 2.27,9.22 2.46,9.37L4.57,11C4.53,11.34 4.5,11.67 4.5,12C4.5,12.33 4.53,12.65 4.57,12.97L2.46,14.63C2.27,14.78 2.21,15.05 2.34,15.27L4.34,18.73C4.46,18.95 4.73,19.03 4.95,18.95L7.44,17.94C7.96,18.34 8.5,18.68 9.13,18.93L9.5,21.58C9.54,21.82 9.75,22 10,22H14C14.25,22 14.46,21.82 14.5,21.58L14.87,18.93C15.5,18.67 16.04,18.34 16.56,17.94L19.05,18.95C19.27,19.03 19.54,18.95 19.66,18.73L21.66,15.27C21.78,15.05 21.73,14.78 21.54,14.63L19.43,12.97Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports;var On=s(42530),Dn=s(52439),Un=s(6695),jn=s(38613),zn=s(26287);const Mn=(0,jn.C)("files","viewConfigs",{}),Rn=function(){const t=at("viewconfig",{state:()=>({viewConfig:Mn}),getters:{getConfig:t=>e=>t.viewConfig[e]||{}},actions:{onUpdate(t,e,n){this.viewConfig[t]||r.Ay.set(this.viewConfig,t,{}),r.Ay.set(this.viewConfig[t],e,n)},async update(t,e,n){zn.A.put((0,dt.Jv)("/apps/files/api/v1/views/".concat(t,"/").concat(e)),{value:n}),(0,Nn.Ic)("files:viewconfig:updated",{view:t,key:e,value:n})},setSortingBy(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"basename",e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"files";this.update(e,"sorting_mode",t),this.update(e,"sorting_direction","asc")},toggleSortingDirection(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"files";const e="asc"===(this.getConfig(t)||{sorting_direction:"asc"}).sorting_direction?"desc":"asc";this.update(t,"sorting_direction",e)}}}),e=t(...arguments);return e._initialized||((0,Nn.B1)("files:viewconfig:updated",(function(t){let{view:n,key:s,value:i}=t;e.onUpdate(n,s,i)})),e._initialized=!0),e},Vn=(0,s(53529).YK)().setApp("files").detectUser().build();function $n(t,e,n){var s,i=n||{},r=i.noTrailing,o=void 0!==r&&r,a=i.noLeading,l=void 0!==a&&a,c=i.debounceMode,d=void 0===c?void 0:c,u=!1,m=0;function p(){s&&clearTimeout(s)}function f(){for(var n=arguments.length,i=new Array(n),r=0;r<n;r++)i[r]=arguments[r];var a=this,c=Date.now()-m;function f(){m=Date.now(),e.apply(a,i)}function g(){s=void 0}u||(l||!d||s||f(),p(),void 0===d&&c>t?l?(m=Date.now(),o||(s=setTimeout(d?g:f,t))):f():!0!==o&&(s=setTimeout(d?g:f,void 0===d?t-c:t)))}return f.cancel=function(t){var e=(t||{}).upcomingOnly,n=void 0!==e&&e;p(),u=!n},f}var qn=s(85168);const Hn={name:"ChartPieIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Wn=(0,Pn.A)(Hn,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon chart-pie-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M11,2V22C5.9,21.5 2,17.2 2,12C2,6.8 5.9,2.5 11,2M13,2V11H22C21.5,6.2 17.8,2.5 13,2M13,13V22C17.7,21.5 21.5,17.8 22,13H13Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports;var Gn=s(95101);const Yn={name:"NavigationQuota",components:{ChartPie:Wn,NcAppNavigationItem:Dn.A,NcProgressBar:Gn.A},data:()=>({loadingStorageStats:!1,storageStats:(0,jn.C)("files","storageStats",null)}),computed:{storageStatsTitle(){var t,e,n;const s=(0,lt.v7)(null===(t=this.storageStats)||void 0===t?void 0:t.used,!1,!1),i=(0,lt.v7)(null===(e=this.storageStats)||void 0===e?void 0:e.quota,!1,!1);return(null===(n=this.storageStats)||void 0===n?void 0:n.quota)<0?this.t("files","{usedQuotaByte} used",{usedQuotaByte:s}):this.t("files","{used} of {quota} used",{used:s,quota:i})},storageStatsTooltip(){return this.storageStats.relative?this.t("files","{relative}% used",this.storageStats):""}},beforeMount(){setInterval(this.throttleUpdateStorageStats,6e4),(0,Nn.B1)("files:node:created",this.throttleUpdateStorageStats),(0,Nn.B1)("files:node:deleted",this.throttleUpdateStorageStats),(0,Nn.B1)("files:node:moved",this.throttleUpdateStorageStats),(0,Nn.B1)("files:node:updated",this.throttleUpdateStorageStats)},mounted(){var t,e;(null===(t=this.storageStats)||void 0===t?void 0:t.quota)>0&&(null===(e=this.storageStats)||void 0===e?void 0:e.free)<=0&&this.showStorageFullWarning()},methods:{debounceUpdateStorageStats:(Kn={}.atBegin,$n(200,(function(t){this.updateStorageStats(t)}),{debounceMode:!1!==(void 0!==Kn&&Kn)})),throttleUpdateStorageStats:$n(1e3,(function(t){this.updateStorageStats(t)})),async updateStorageStats(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;if(!this.loadingStorageStats){this.loadingStorageStats=!0;try{var n,s,i,r;const t=await zn.A.get((0,dt.Jv)("/apps/files/api/v1/stats"));if(null==t||null===(n=t.data)||void 0===n||!n.data)throw new Error("Invalid storage stats");(null===(s=this.storageStats)||void 0===s?void 0:s.free)>0&&(null===(i=t.data.data)||void 0===i?void 0:i.free)<=0&&(null===(r=t.data.data)||void 0===r?void 0:r.quota)>0&&this.showStorageFullWarning(),this.storageStats=t.data.data}catch(n){Vn.error("Could not refresh storage stats",{error:n}),e&&(0,qn.Qg)(t("files","Could not refresh storage stats"))}finally{this.loadingStorageStats=!1}}},showStorageFullWarning(){(0,qn.Qg)(this.t("files","Your storage is full, files can not be updated or synced anymore!"))},t:In.Tl}};var Kn,Qn=s(85072),Xn=s.n(Qn),Jn=s(97825),Zn=s.n(Jn),ts=s(77659),es=s.n(ts),ns=s(55056),ss=s.n(ns),is=s(10540),rs=s.n(is),os=s(41113),as=s.n(os),ls=s(33149),cs={};cs.styleTagTransform=as(),cs.setAttributes=ss(),cs.insert=es().bind(null,"head"),cs.domAPI=Zn(),cs.insertStyleElement=rs(),Xn()(ls.A,cs),ls.A&&ls.A.locals&&ls.A.locals;const ds=(0,Pn.A)(Yn,(function(){var t=this,e=t._self._c;return t.storageStats?e("NcAppNavigationItem",{staticClass:"app-navigation-entry__settings-quota",class:{"app-navigation-entry__settings-quota--not-unlimited":t.storageStats.quota>=0},attrs:{"aria-label":t.t("files","Storage informations"),loading:t.loadingStorageStats,name:t.storageStatsTitle,title:t.storageStatsTooltip,"data-cy-files-navigation-settings-quota":""},on:{click:function(e){return e.stopPropagation(),e.preventDefault(),t.debounceUpdateStorageStats.apply(null,arguments)}}},[e("ChartPie",{attrs:{slot:"icon",size:20},slot:"icon"}),t._v(" "),t.storageStats.quota>=0?e("NcProgressBar",{attrs:{slot:"extra",error:t.storageStats.relative>80,value:Math.min(t.storageStats.relative,100)},slot:"extra"}):t._e()],1):t._e()}),[],!1,null,"063ed938",null).exports;var us=s(85517),ms=s(947),ps=s(32073);const fs={name:"ClipboardIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},gs=(0,Pn.A)(fs,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon clipboard-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19,3H14.82C14.4,1.84 13.3,1 12,1C10.7,1 9.6,1.84 9.18,3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5A2,2 0 0,0 19,3M12,3A1,1 0 0,1 13,4A1,1 0 0,1 12,5A1,1 0 0,1 11,4A1,1 0 0,1 12,3"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports;var hs=s(44492);const vs={name:"Setting",props:{el:{type:Function,required:!0}},mounted(){this.$el.appendChild(this.el())}},As=(0,Pn.A)(vs,(function(){return(0,this._self._c)("div")}),[],!1,null,null,null).exports,ws=(0,jn.C)("files","config",{show_hidden:!1,crop_image_previews:!0,sort_favorites_first:!0,sort_folders_first:!0,grid_view:!1}),ys=function(){const t=at("userconfig",{state:()=>({userConfig:ws}),actions:{onUpdate(t,e){r.Ay.set(this.userConfig,t,e)},async update(t,e){await zn.A.put((0,dt.Jv)("/apps/files/api/v1/config/"+t),{value:e}),(0,Nn.Ic)("files:config:updated",{key:t,value:e})}}})(...arguments);return t._initialized||((0,Nn.B1)("files:config:updated",(function(e){let{key:n,value:s}=e;t.onUpdate(n,s)})),t._initialized=!0),t},bs={name:"Settings",components:{Clipboard:gs,NcAppSettingsDialog:us.N,NcAppSettingsSection:ms.A,NcCheckboxRadioSwitch:ps.A,NcInputField:hs.A,Setting:As},props:{open:{type:Boolean,default:!1}},setup:()=>({userConfigStore:ys()}),data(){var t,e,n;return{settings:(null===(t=window.OCA)||void 0===t||null===(t=t.Files)||void 0===t||null===(t=t.Settings)||void 0===t?void 0:t.settings)||[],webdavUrl:(0,dt.dC)("dav/files/"+encodeURIComponent(null===(e=(0,ct.HW)())||void 0===e?void 0:e.uid)),webdavDocs:"https://docs.nextcloud.com/server/stable/go.php?to=user-webdav",appPasswordUrl:(0,dt.Jv)("/settings/user/security#generate-app-token-section"),webdavUrlCopied:!1,enableGridView:null===(n=(0,jn.C)("core","config",[])["enable_non-accessible_features"])||void 0===n||n}},computed:{userConfig(){return this.userConfigStore.userConfig}},beforeMount(){this.settings.forEach((t=>t.open()))},beforeDestroy(){this.settings.forEach((t=>t.close()))},methods:{onClose(){this.$emit("close")},setConfig(t,e){this.userConfigStore.update(t,e)},async copyCloudId(){document.querySelector("input#webdav-url-input").select(),navigator.clipboard?(await navigator.clipboard.writeText(this.webdavUrl),this.webdavUrlCopied=!0,(0,qn.Te)(t("files","WebDAV URL copied to clipboard")),setTimeout((()=>{this.webdavUrlCopied=!1}),5e3)):(0,qn.Qg)(t("files","Clipboard is not available"))},t:In.Tl}},Cs=bs;var xs=s(73309),_s={};_s.styleTagTransform=as(),_s.setAttributes=ss(),_s.insert=es().bind(null,"head"),_s.domAPI=Zn(),_s.insertStyleElement=rs(),Xn()(xs.A,_s),xs.A&&xs.A.locals&&xs.A.locals;const Ts=(0,Pn.A)(Cs,(function(){var t=this,e=t._self._c;return e("NcAppSettingsDialog",{attrs:{open:t.open,"show-navigation":!0,name:t.t("files","Files settings")},on:{"update:open":t.onClose}},[e("NcAppSettingsSection",{attrs:{id:"settings",name:t.t("files","Files settings")}},[e("NcCheckboxRadioSwitch",{attrs:{checked:t.userConfig.sort_favorites_first},on:{"update:checked":function(e){return t.setConfig("sort_favorites_first",e)}}},[t._v("\n\t\t\t"+t._s(t.t("files","Sort favorites first"))+"\n\t\t")]),t._v(" "),e("NcCheckboxRadioSwitch",{attrs:{checked:t.userConfig.sort_folders_first},on:{"update:checked":function(e){return t.setConfig("sort_folders_first",e)}}},[t._v("\n\t\t\t"+t._s(t.t("files","Sort folders before files"))+"\n\t\t")]),t._v(" "),e("NcCheckboxRadioSwitch",{attrs:{checked:t.userConfig.show_hidden},on:{"update:checked":function(e){return t.setConfig("show_hidden",e)}}},[t._v("\n\t\t\t"+t._s(t.t("files","Show hidden files"))+"\n\t\t")]),t._v(" "),e("NcCheckboxRadioSwitch",{attrs:{checked:t.userConfig.crop_image_previews},on:{"update:checked":function(e){return t.setConfig("crop_image_previews",e)}}},[t._v("\n\t\t\t"+t._s(t.t("files","Crop image previews"))+"\n\t\t")]),t._v(" "),t.enableGridView?e("NcCheckboxRadioSwitch",{attrs:{checked:t.userConfig.grid_view},on:{"update:checked":function(e){return t.setConfig("grid_view",e)}}},[t._v("\n\t\t\t"+t._s(t.t("files","Enable the grid view"))+"\n\t\t")]):t._e()],1),t._v(" "),0!==t.settings.length?e("NcAppSettingsSection",{attrs:{id:"more-settings",name:t.t("files","Additional settings")}},[t._l(t.settings,(function(t){return[e("Setting",{key:t.name,attrs:{el:t.el}})]}))],2):t._e(),t._v(" "),e("NcAppSettingsSection",{attrs:{id:"webdav",name:t.t("files","WebDAV")}},[e("NcInputField",{attrs:{id:"webdav-url-input",label:t.t("files","WebDAV URL"),"show-trailing-button":!0,success:t.webdavUrlCopied,"trailing-button-label":t.t("files","Copy to clipboard"),value:t.webdavUrl,readonly:"readonly",type:"url"},on:{focus:function(t){return t.target.select()},"trailing-button-click":t.copyCloudId},scopedSlots:t._u([{key:"trailing-button-icon",fn:function(){return[e("Clipboard",{attrs:{size:20}})]},proxy:!0}])}),t._v(" "),e("em",[e("a",{staticClass:"setting-link",attrs:{href:t.webdavDocs,target:"_blank",rel:"noreferrer noopener"}},[t._v("\n\t\t\t\t"+t._s(t.t("files","Use this address to access your Files via WebDAV"))+" ↗\n\t\t\t")])]),t._v(" "),e("br"),t._v(" "),e("em",[e("a",{staticClass:"setting-link",attrs:{href:t.appPasswordUrl}},[t._v("\n\t\t\t\t"+t._s(t.t("files","If you have enabled 2FA, you must create and use a new app password by clicking here."))+" ↗\n\t\t\t")])])],1)],1)}),[],!1,null,"6d63c120",null).exports,ks={name:"Navigation",components:{Cog:Bn,NavigationQuota:ds,NcAppNavigation:On.A,NcAppNavigationItem:Dn.A,NcIconSvgWrapper:Un.A,SettingsModal:Ts},setup:()=>({viewConfigStore:Rn()}),data:()=>({settingsOpened:!1}),computed:{currentViewId(){var t;return(null===(t=this.$route)||void 0===t||null===(t=t.params)||void 0===t?void 0:t.view)||"files"},currentView(){return this.views.find((t=>t.id===this.currentViewId))},views(){return this.$navigation.views},parentViews(){return this.views.filter((t=>!t.parent)).sort(((t,e)=>t.order-e.order))},childViews(){return this.views.filter((t=>!!t.parent)).reduce(((t,e)=>(t[e.parent]=[...t[e.parent]||[],e],t[e.parent].sort(((t,e)=>t.order-e.order)),t)),{})}},watch:{currentView(t,e){t.id!==(null==e?void 0:e.id)&&(this.$navigation.setActive(t),Vn.debug("Navigation changed",{id:t.id,view:t}),this.showView(t))}},beforeMount(){this.currentView&&(Vn.debug("Navigation mounted. Showing requested view",{view:this.currentView}),this.showView(this.currentView))},methods:{useExactRouteMatching(t){var e;return(null===(e=this.childViews[t.id])||void 0===e?void 0:e.length)>0},showView(t){var e,n;null===(e=window)||void 0===e||null===(e=e.OCA)||void 0===e||null===(e=e.Files)||void 0===e||null===(e=e.Sidebar)||void 0===e||null===(n=e.close)||void 0===n||n.call(e),this.$navigation.setActive(t),(0,Nn.Ic)("files:navigation:changed",t)},onToggleExpand(t){const e=this.isExpanded(t);t.expanded=!e,this.viewConfigStore.update(t.id,"expanded",!e)},isExpanded(t){var e;return"boolean"==typeof(null===(e=this.viewConfigStore.getConfig(t.id))||void 0===e?void 0:e.expanded)?!0===this.viewConfigStore.getConfig(t.id).expanded:!0===t.expanded},generateToNavigation(t){if(t.params){const{dir:e}=t.params;return{name:"filelist",params:t.params,query:{dir:e}}}return{name:"filelist",params:{view:t.id}}},openSettings(){this.settingsOpened=!0},onSettingsClose(){this.settingsOpened=!1},t:In.Tl}};var Es=s(59062),Ss={};Ss.styleTagTransform=as(),Ss.setAttributes=ss(),Ss.insert=es().bind(null,"head"),Ss.domAPI=Zn(),Ss.insertStyleElement=rs(),Xn()(Es.A,Ss),Es.A&&Es.A.locals&&Es.A.locals;const Ls=(0,Pn.A)(ks,(function(){var t=this,e=t._self._c;return e("NcAppNavigation",{attrs:{"data-cy-files-navigation":"","aria-label":t.t("files","Files")},scopedSlots:t._u([{key:"list",fn:function(){return t._l(t.parentViews,(function(n){return e("NcAppNavigationItem",{key:n.id,attrs:{"allow-collapse":!0,"data-cy-files-navigation-item":n.id,exact:t.useExactRouteMatching(n),icon:n.iconClass,name:n.name,open:t.isExpanded(n),pinned:n.sticky,to:t.generateToNavigation(n)},on:{"update:open":function(e){return t.onToggleExpand(n)}}},[n.icon?e("NcIconSvgWrapper",{attrs:{slot:"icon",svg:n.icon},slot:"icon"}):t._e(),t._v(" "),t._l(t.childViews[n.id],(function(n){return e("NcAppNavigationItem",{key:n.id,attrs:{"data-cy-files-navigation-item":n.id,"exact-path":!0,icon:n.iconClass,name:n.name,to:t.generateToNavigation(n)}},[n.icon?e("NcIconSvgWrapper",{attrs:{slot:"icon",svg:n.icon},slot:"icon"}):t._e()],1)}))],2)}))},proxy:!0},{key:"footer",fn:function(){return[e("ul",{staticClass:"app-navigation-entry__settings"},[e("NavigationQuota"),t._v(" "),e("NcAppNavigationItem",{attrs:{"aria-label":t.t("files","Open the files app settings"),name:t.t("files","Files settings"),"data-cy-files-navigation-settings-button":""},on:{click:function(e){return e.preventDefault(),e.stopPropagation(),t.openSettings.apply(null,arguments)}}},[e("Cog",{attrs:{slot:"icon",size:20},slot:"icon"})],1)],1)]},proxy:!0}])},[t._v(" "),t._v(" "),e("SettingsModal",{attrs:{open:t.settingsOpened,"data-cy-files-navigation-settings":""},on:{close:t.onSettingsClose}})],1)}),[],!1,null,"8291caa8",null).exports;var Ns=s(22843),Is=s(43627),Fs=function(t,e){return t<e?-1:t>e?1:0},Ps=function(t,e){var n=t.localeCompare(e);return n?n/Math.abs(n):0},Bs=/(^0x[\da-fA-F]+$|^([+-]?(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?(?!\.\d+)(?=\D|\s|$))|\d+)/g,Os=/^\s+|\s+$/g,Ds=/\s+/g,Us=/^[+-]?(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?$/,js=/(^([\w ]+,?[\w ]+)?[\w ]+,?[\w ]+\d+:\d+(:\d+)?[\w ]?|^\d{1,4}[/-]\d{1,4}[/-]\d{1,4}|^\w+, \w+ \d+, \d{4})/,zs=/^0+[1-9]{1}[0-9]*$/,Ms=/[^\x00-\x80]/,Rs=function(t,e){return t<e?-1:t>e?1:0},Vs=function(t){return t.replace(Ds," ").replace(Os,"")},$s=function(t){if(0!==t.length){var e=Number(t);if(!Number.isNaN(e))return e}},qs=function(t,e,n){if(Us.test(t)&&(!zs.test(t)||0===e||"."!==n[e-1]))return $s(t)||0},Hs=function(t,e,n){return{parsedNumber:qs(t,e,n),normalizedString:Vs(t)}},Ws=function(t){var e=function(t){return t.replace(Bs,"\0$1\0").replace(/\0$/,"").replace(/^\0/,"").split("\0")}(t).map(Hs);return e},Gs=function(t){return"function"==typeof t},Ys=function(t){return Number.isNaN(t)||t instanceof Number&&Number.isNaN(t.valueOf())},Ks=function(t){return null===t},Qs=function(t){return!(null===t||"object"!=typeof t||Array.isArray(t)||t instanceof Number||t instanceof String||t instanceof Boolean||t instanceof Date)},Xs=function(t){return"symbol"==typeof t},Js=function(t){return void 0===t},Zs=function(t){if("string"==typeof t||t instanceof String||("number"==typeof t||t instanceof Number)&&!Ys(t)||"boolean"==typeof t||t instanceof Boolean||t instanceof Date){var e=function(t){return"boolean"==typeof t||t instanceof Boolean?Number(t).toString():"number"==typeof t||t instanceof Number?t.toString():t instanceof Date?t.getTime().toString():"string"==typeof t||t instanceof String?t.toLowerCase().replace(Os,""):""}(t),n=function(t){var e=$s(t);return void 0!==e?e:function(t){try{var e=Date.parse(t);return!Number.isNaN(e)&&js.test(t)?e:void 0}catch(t){return}}(t)}(e);return{parsedNumber:n,chunks:Ws(n?""+n:e),value:t}}return{isArray:Array.isArray(t),isFunction:Gs(t),isNaN:Ys(t),isNull:Ks(t),isObject:Qs(t),isSymbol:Xs(t),isUndefined:Js(t),value:t}},ti=function(t){return"function"==typeof t?t:function(e){if(Array.isArray(e)){var n=Number(t);if(Number.isInteger(n))return e[n]}else if(e&&"object"==typeof e){var s=Object.getOwnPropertyDescriptor(e,t);return null==s?void 0:s.value}return e}};function ei(t,e,n){if(!t||!Array.isArray(t))return[];var s=function(t){if(!t)return[];var e=Array.isArray(t)?[].concat(t):[t];return e.some((function(t){return"string"!=typeof t&&"number"!=typeof t&&"function"!=typeof t}))?[]:e}(e),i=function(t){if(!t)return[];var e=Array.isArray(t)?[].concat(t):[t];return e.some((function(t){return"asc"!==t&&"desc"!==t&&"function"!=typeof t}))?[]:e}(n);return function(t,e,n){var s=e.length?e.map(ti):[function(t){return t}],i=t.map((function(t,e){return{index:e,values:s.map((function(e){return e(t)})).map(Zs)}}));return i.sort((function(t,e){return function(t,e,n){for(var s=t.index,i=t.values,r=e.index,o=e.values,a=i.length,l=n.length,c=0;c<a;c++){var d=c<l?n[c]:null;if(d&&"function"==typeof d){var u=d(i[c].value,o[c].value);if(u)return u}else{var m=(p=i[c],f=o[c],p.value===f.value?0:void 0!==p.parsedNumber&&void 0!==f.parsedNumber?Fs(p.parsedNumber,f.parsedNumber):p.chunks&&f.chunks?function(t,e){for(var n=t.length,s=e.length,i=Math.min(n,s),r=0;r<i;r++){var o=t[r],a=e[r];if(o.normalizedString!==a.normalizedString){if(""===o.normalizedString!=(""===a.normalizedString))return""===o.normalizedString?-1:1;if(void 0!==o.parsedNumber&&void 0!==a.parsedNumber){var l=Fs(o.parsedNumber,a.parsedNumber);return 0===l?Rs(o.normalizedString,a.normalizedString):l}return void 0!==o.parsedNumber||void 0!==a.parsedNumber?void 0!==o.parsedNumber?-1:1:Ms.test(o.normalizedString+a.normalizedString)?Ps(o.normalizedString,a.normalizedString):Rs(o.normalizedString,a.normalizedString)}}return n>i||s>i?n<=i?-1:1:0}(p.chunks,f.chunks):function(t,e){return(t.chunks?!e.chunks:e.chunks)?t.chunks?-1:1:(t.isNaN?!e.isNaN:e.isNaN)?t.isNaN?-1:1:(t.isSymbol?!e.isSymbol:e.isSymbol)?t.isSymbol?-1:1:(t.isObject?!e.isObject:e.isObject)?t.isObject?-1:1:(t.isArray?!e.isArray:e.isArray)?t.isArray?-1:1:(t.isFunction?!e.isFunction:e.isFunction)?t.isFunction?-1:1:(t.isNull?!e.isNull:e.isNull)?t.isNull?-1:1:0}(p,f));if(m)return m*("desc"===d?-1:1)}}var p,f;return s-r}(t,e,n)})),i.map((function(e){return function(t,e){return t[e]}(t,e.index)}))}(t,s,i)}var ni=s(38805),si=s(52129),ii=s(82606),ri=s(89979);const oi={name:"FormatListBulletedSquareIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},ai=(0,Pn.A)(oi,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon format-list-bulleted-square-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3,4H7V8H3V4M9,5V7H21V5H9M3,10H7V14H3V10M9,11V13H21V11H9M3,16H7V20H3V16M9,17V19H21V17H9"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports;var li=s(18195),ci=s(9518),di=s(10833),ui=s(46222),mi=s(27577);const pi={name:"AccountPlusIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},fi=(0,Pn.A)(pi,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon account-plus-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M15,14C12.33,14 7,15.33 7,18V20H23V18C23,15.33 17.67,14 15,14M6,10V7H4V10H1V12H4V15H6V12H9V10M15,12A4,4 0 0,0 19,8A4,4 0 0,0 15,4A4,4 0 0,0 11,8A4,4 0 0,0 15,12Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,gi={name:"ViewGridIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},hi=(0,Pn.A)(gi,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon view-grid-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3,11H11V3H3M3,21H11V13H3M13,21H21V13H13M13,3V11H21V3"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports;var vi=s(49981);const Ai=new lt.hY({id:"details",displayName:()=>(0,In.Tl)("files","Open details"),iconSvgInline:()=>vi,enabled:t=>{var e,n,s;return 1===t.length&&!!t[0]&&!(null===(e=window)||void 0===e||null===(e=e.OCA)||void 0===e||null===(e=e.Files)||void 0===e||!e.Sidebar)&&null!==(n=(null===(s=t[0].root)||void 0===s?void 0:s.startsWith("/files/"))&&t[0].permissions!==lt.aX.NONE)&&void 0!==n&&n},async exec(t,e,n){try{return await window.OCA.Files.Sidebar.open(t.path),window.OCP.Files.Router.goToRoute(null,{view:e.id,fileid:t.fileid},{dir:n},!0),null}catch(t){return Vn.error("Error while opening sidebar",{error:t}),!1}},order:-50}),wi=function(){const t=at("files",{state:()=>({files:{},roots:{}}),getters:{getNode:t=>e=>t.files[e],getNodes:t=>e=>e.map((e=>t.files[e])).filter(Boolean),getRoot:t=>e=>t.roots[e]},actions:{updateNodes(t){const e=t.reduce(((t,e)=>e.fileid?(t[e.fileid]=e,t):(Vn.error("Trying to update/set a node without fileid",e),t)),{});r.Ay.set(this,"files",{...this.files,...e})},deleteNodes(t){t.forEach((t=>{t.fileid&&r.Ay.delete(this.files,t.fileid)}))},setRoot(t){let{service:e,root:n}=t;r.Ay.set(this.roots,e,n)},onDeletedNode(t){this.deleteNodes([t])},onCreatedNode(t){this.updateNodes([t])},onUpdatedNode(t){this.updateNodes([t])}}})(...arguments);return t._initialized||((0,Nn.B1)("files:node:created",t.onCreatedNode),(0,Nn.B1)("files:node:deleted",t.onDeletedNode),(0,Nn.B1)("files:node:updated",t.onUpdatedNode),t._initialized=!0),t},yi=function(){const t=wi(),e=at("paths",{state:()=>({paths:{}}),getters:{getPath:t=>(e,n)=>{if(t.paths[e])return t.paths[e][n]}},actions:{addPath(t){this.paths[t.service]||r.Ay.set(this.paths,t.service,{}),r.Ay.set(this.paths[t.service],t.path,t.fileid)},onCreatedNode(e){var n;const s=(null===(n=(0,lt.bh)())||void 0===n||null===(n=n.active)||void 0===n?void 0:n.id)||"files";if(e.fileid){if(e.type===lt.pt.Folder&&this.addPath({service:s,path:e.path,fileid:e.fileid}),"/"===e.dirname){const n=t.getRoot(s);return n._children||r.Ay.set(n,"_children",[]),void n._children.push(e.fileid)}if(this.paths[s][e.dirname]){const n=this.paths[s][e.dirname],i=t.getNode(n);return Vn.debug("Path already exists, updating children",{parentFolder:i,node:e}),i?(i._children||r.Ay.set(i,"_children",[]),void i._children.push(e.fileid)):void Vn.error("Parent folder not found",{parentId:n})}Vn.debug("Parent path does not exists, skipping children update",{node:e})}else Vn.error("Node has no fileid",{node:e})}}})(...arguments);return e._initialized||((0,Nn.B1)("files:node:created",e.onCreatedNode),e._initialized=!0),e},bi=at("selection",{state:()=>({selected:[],lastSelection:[],lastSelectedIndex:null}),actions:{set(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];r.Ay.set(this,"selected",[...new Set(t)])},setLastIndex(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;r.Ay.set(this,"lastSelection",t?this.selected:[]),r.Ay.set(this,"lastSelectedIndex",t)},reset(){r.Ay.set(this,"selected",[]),r.Ay.set(this,"lastSelection",[]),r.Ay.set(this,"lastSelectedIndex",null)}}});let Ci;var xi=s(37215),_i=s(42937),Ti=s(71089),ki=s(96763);class Ei extends File{constructor(t){let e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];var n,s,i;super([],t,{type:"httpd/unix-directory"}),n=this,i=void 0,(s=function(t){var e=function(t,e){if("object"!=typeof t||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var s=n.call(t,"string");if("object"!=typeof s)return s;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==typeof e?e:e+""}(s="_contents"))in n?Object.defineProperty(n,s,{value:i,enumerable:!0,configurable:!0,writable:!0}):n[s]=i,this._contents=e}set contents(t){this._contents=t}get contents(){return this._contents}get size(){return this._computeDirectorySize(this)}get lastModified(){return 0===this._contents.length?Date.now():this._computeDirectoryMtime(this)}_computeDirectoryMtime(t){return t.contents.reduce(((t,e)=>e.lastModified>t?e.lastModified:t),0)}_computeDirectorySize(t){return t.contents.reduce(((t,e)=>t+e.size),0)}}const Si=async t=>{if(t.isFile)return new Promise(((e,n)=>{t.file(e,n)}));Vn.debug("Handling recursive file tree",{entry:t.name});const e=t,n=await Li(e),s=(await Promise.all(n.map(Si))).flat();return new Ei(e.name,s)},Li=t=>{const e=t.createReader();return new Promise(((t,n)=>{const s=[],i=()=>{e.readEntries((e=>{e.length?(s.push(...e),i()):t(s)}),(t=>{n(t)}))};i()}))},Ni=async t=>{const e=(0,lt.H4)();if(!await e.exists(t)){Vn.debug("Directory does not exist, creating it",{absolutePath:t}),await e.createDirectory(t,{recursive:!0});const n=await e.stat(t,{details:!0,data:(0,lt.VL)()});(0,Nn.Ic)("files:node:created",(0,lt.Al)(n.data))}},Ii=async(t,e,n)=>{try{const s=t.filter((t=>n.find((e=>e.basename===(t instanceof File?t.name:t.basename))))).filter(Boolean),i=t.filter((t=>!s.includes(t))),{selected:r,renamed:o}=await(0,ii.o)(e.path,s,n);return Vn.debug("Conflict resolution",{uploads:i,selected:r,renamed:o}),0===r.length&&0===o.length?((0,qn.cf)((0,In.Tl)("files","Conflicts resolution skipped")),Vn.info("User skipped the conflict resolution"),[]):[...i,...r,...o]}catch(t){ki.error(t),(0,qn.Qg)((0,In.Tl)("files","Upload cancelled")),Vn.error("User cancelled the upload")}return[]};var Fi=s(14456),Pi={};Pi.styleTagTransform=as(),Pi.setAttributes=ss(),Pi.insert=es().bind(null,"head"),Pi.domAPI=Zn(),Pi.insertStyleElement=rs(),Xn()(Fi.A,Pi),Fi.A&&Fi.A.locals&&Fi.A.locals;var Bi=s(53110),Oi=s(36882),Di=s(39285),Ui=s(49264);let ji;const zi=()=>(ji||(ji=new Ui.A({concurrency:3})),ji);var Mi;!function(t){t.MOVE="Move",t.COPY="Copy",t.MOVE_OR_COPY="move-or-copy"}(Mi||(Mi={}));const Ri=t=>!!(t.reduce(((t,e)=>Math.min(t,e.permissions)),lt.aX.ALL)&lt.aX.UPDATE),Vi=t=>(t=>t.every((t=>{var e,n;return!JSON.parse(null!==(e=null===(n=t.attributes)||void 0===n?void 0:n["share-attributes"])&&void 0!==e?e:"[]").some((t=>"permissions"===t.scope&&!1===t.enabled&&"download"===t.key))})))(t);var $i,qi=s(36117),Hi=s(44719),Wi=s(34515);const Gi="/files/".concat(null===($i=(0,ct.HW)())||void 0===$i?void 0:$i.uid),Yi=(0,dt.dC)("dav"+Gi),Ki=function(t){return t.split("").reduce((function(t,e){return 0|(t<<5)-t+e.charCodeAt(0)}),0)},Qi=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Yi;const e=(0,Hi.UU)(t,{headers:{requesttoken:(0,ct.do)()||""}});return(0,Hi.Gu)().patch("request",(t=>{var e;return null!==(e=t.headers)&&void 0!==e&&e.method&&(t.method=t.headers.method,delete t.headers.method),(0,Wi.E)(t)})),e}(),Xi=function(t){var e;const n=null===(e=(0,ct.HW)())||void 0===e?void 0:e.uid;if(!n)throw new Error("No user id found");const s=t.props,i=(0,lt.vb)(null==s?void 0:s.permissions),r=(s["owner-id"]||n).toString(),o=(0,dt.dC)("dav"+Gi+t.filename),a={id:(null==s?void 0:s.fileid)<0?Ki(o):(null==s?void 0:s.fileid)||0,source:o,mtime:new Date(t.lastmod),mime:t.mime||"application/octet-stream",size:(null==s?void 0:s.size)||0,permissions:i,owner:r,root:Gi,attributes:{...t,...s,hasPreview:null==s?void 0:s["has-preview"],failed:(null==s?void 0:s.fileid)<0}};return delete a.attributes.props,"file"===t.type?new lt.ZH(a):new lt.vd(a)},Ji=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"/";const e=new AbortController,n=(0,lt.VL)();return new qi.CancelablePromise((async(s,i,r)=>{r((()=>e.abort()));try{const i=await Qi.getDirectoryContents(t,{details:!0,data:n,includeSelf:!0,signal:e.signal}),r=i.data[0],o=i.data.slice(1);if(r.filename!==t)throw new Error("Root node does not match requested path");s({folder:Xi(r),contents:o.map((t=>{try{return Xi(t)}catch(e){return Vn.error("Invalid node detected '".concat(t.basename,"'"),{error:e}),null}})).filter(Boolean)})}catch(t){i(t)}}))},Zi=t=>{const e=t.filter((t=>t.type===lt.pt.File)).length,n=t.filter((t=>t.type===lt.pt.Folder)).length;return 0===e?(0,In.zw)("files","{folderCount} folder","{folderCount} folders",n,{folderCount:n}):0===n?(0,In.zw)("files","{fileCount} file","{fileCount} files",e,{fileCount:e}):1===e?(0,In.zw)("files","1 file and {folderCount} folder","1 file and {folderCount} folders",n,{folderCount:n}):1===n?(0,In.zw)("files","{fileCount} file and 1 folder","{fileCount} files and 1 folder",e,{fileCount:e}):(0,In.Tl)("files","{fileCount} files and {folderCount} folders",{fileCount:e,folderCount:n})},tr=t=>Ri(t)?Vi(t)?Mi.MOVE_OR_COPY:Mi.MOVE:Mi.COPY,er=async function(t,e,n){let s=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if(!e)return;if(e.type!==lt.pt.Folder)throw new Error((0,In.Tl)("files","Destination is not a folder"));if(n===Mi.MOVE&&t.dirname===e.path)throw new Error((0,In.Tl)("files","This file/folder is already in that directory"));if("".concat(e.path,"/").startsWith("".concat(t.path,"/")))throw new Error((0,In.Tl)("files","You cannot move a file/folder onto itself or into a subfolder of itself"));r.Ay.set(t,"status",lt.zI.LOADING);const i=zi();return await i.add((async()=>{const i=t=>1===t?(0,In.Tl)("files","(copy)"):(0,In.Tl)("files","(copy %n)",void 0,t);try{const r=(0,lt.H4)(),o=(0,Is.join)(lt.lJ,t.path),a=(0,Is.join)(lt.lJ,e.path);if(n===Mi.COPY){let n=t.basename;if(!s){const e=await r.getDirectoryContents(a);n=function(t,e){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:t=>"(".concat(t,")"),s=t,i=1;for(;e.includes(s);){const e=(0,Is.extname)(t);s="".concat((0,Is.basename)(t,e)," ").concat(n(i++)).concat(e)}return s}(t.basename,e.map((t=>t.basename)),i)}if(await r.copyFile(o,(0,Is.join)(a,n)),t.dirname===e.path){const{data:t}=await r.stat((0,Is.join)(a,n),{details:!0,data:(0,lt.VL)()});(0,Nn.Ic)("files:node:created",(0,lt.Al)(t))}}else{const n=await Ji(e.path);if((0,ii.h)([t],n.contents))try{const{selected:s,renamed:i}=await(0,ii.o)(e.path,[t],n.contents);if(!s.length&&!i.length)return await r.deleteFile(o),void(0,Nn.Ic)("files:node:deleted",t)}catch(t){return void(0,qn.Qg)((0,In.Tl)("files","Move cancelled"))}await r.moveFile(o,(0,Is.join)(a,t.basename)),(0,Nn.Ic)("files:node:deleted",t)}}catch(t){if(t instanceof Bi.pe){var o,a,l;if(412===(null==t||null===(o=t.response)||void 0===o?void 0:o.status))throw new Error((0,In.Tl)("files","A file or folder with that name already exists in this folder"));if(423===(null==t||null===(a=t.response)||void 0===a?void 0:a.status))throw new Error((0,In.Tl)("files","The files is locked"));if(404===(null==t||null===(l=t.response)||void 0===l?void 0:l.status))throw new Error((0,In.Tl)("files","The file does not exist anymore"));if(t.message)throw new Error(t.message)}throw Vn.debug(t),new Error}finally{r.Ay.set(t,"status",void 0)}}))},nr=async function(t){let e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"/",n=arguments.length>2?arguments[2]:void 0;const s=n.map((t=>t.fileid)).filter(Boolean),i=(0,qn.a1)((0,In.Tl)("files","Choose destination")).allowDirectories(!0).setFilter((t=>!!(t.permissions&lt.aX.CREATE)&&!s.includes(t.fileid))).setMimeTypeFilter([]).setMultiSelect(!1).startAt(e);return new Promise(((e,s)=>{i.setButtonFactory(((s,i)=>{const r=[],o=(0,Is.basename)(i),a=n.map((t=>t.dirname)),l=n.map((t=>t.path));return t!==Mi.COPY&&t!==Mi.MOVE_OR_COPY||r.push({label:o?(0,In.Tl)("files","Copy to {target}",{target:o}):(0,In.Tl)("files","Copy"),type:"primary",icon:Oi,async callback(t){e({destination:t[0],action:Mi.COPY})}}),a.includes(i)||l.includes(i)||t!==Mi.MOVE&&t!==Mi.MOVE_OR_COPY||r.push({label:o?(0,In.Tl)("files","Move to {target}",{target:o}):(0,In.Tl)("files","Move"),type:t===Mi.MOVE?"primary":"secondary",icon:Di,async callback(t){e({destination:t[0],action:Mi.MOVE})}}),r})),i.build().pick().catch((t=>{Vn.debug(t),t instanceof qn.vT?s(new Error((0,In.Tl)("files","Cancelled move or copy operation"))):s(new Error((0,In.Tl)("files","Move or copy operation failed")))}))}))};new lt.hY({id:"move-copy",displayName(t){switch(tr(t)){case Mi.MOVE:return(0,In.Tl)("files","Move");case Mi.COPY:return(0,In.Tl)("files","Copy");case Mi.MOVE_OR_COPY:return(0,In.Tl)("files","Move or copy")}},iconSvgInline:()=>Di,enabled:t=>!!t.every((t=>{var e;return null===(e=t.root)||void 0===e?void 0:e.startsWith("/files/")}))&&t.length>0&&(Ri(t)||Vi(t)),async exec(t,e,n){const s=tr([t]);let i;try{i=await nr(s,n,[t])}catch(t){return Vn.error(t),!1}try{return await er(t,i.destination,i.action),!0}catch(t){return!!(t instanceof Error&&t.message)&&((0,qn.Qg)(t.message),null)}},async execBatch(t,e,n){const s=tr(t),i=await nr(s,n,t),r=t.map((async t=>{try{return await er(t,i.destination,i.action),!0}catch(e){return Vn.error("Failed to ".concat(i.action," node"),{node:t,error:e}),!1}}));return await Promise.all(r)},order:15});var sr=s(96763);const ir=async t=>{const e=t.filter((t=>"file"===t.kind||(Vn.debug("Skipping dropped item",{kind:t.kind,type:t.type}),!1))).map((t=>{var e,n,s,i;return null!==(e=null!==(n=null==t||null===(s=t.getAsEntry)||void 0===s?void 0:s.call(t))&&void 0!==n?n:null==t||null===(i=t.webkitGetAsEntry)||void 0===i?void 0:i.call(t))&&void 0!==e?e:t}));let n=!1;const s=new Ei("root");for(const t of e)if(t instanceof DataTransferItem){Vn.warn("Could not get FilesystemEntry of item, falling back to file");const e=t.getAsFile();if(null===e){Vn.warn("Could not process DataTransferItem",{type:t.type,kind:t.kind}),(0,qn.Qg)((0,In.Tl)("files","One of the dropped files could not be processed"));continue}if("httpd/unix-directory"===e.type||!e.type){n||(Vn.warn("Browser does not support Filesystem API. Directories will not be uploaded"),(0,qn.I9)((0,In.Tl)("files","Your browser does not support the Filesystem API. Directories will not be uploaded")),n=!0);continue}s.contents.push(e)}else try{s.contents.push(await Si(t))}catch(t){Vn.error("Error while traversing file tree",{error:t})}return s},rr=async(t,e,n)=>{const s=(0,ii.g)();if(await(0,ii.h)(t.contents,n)&&(t.contents=await Ii(t.contents,e,n)),0===t.contents.length)return Vn.info("No files to upload",{root:t}),(0,qn.cf)((0,In.Tl)("files","No files to upload")),[];Vn.debug("Uploading files to ".concat(e.path),{root:t,contents:t.contents});const i=[],r=async(t,n)=>{for(const o of t.contents){const t=(0,Is.join)(n,o.name);if(o instanceof Ei){const n=(0,Ti.HS)(lt.lJ,e.path,t);try{sr.debug("Processing directory",{relativePath:t}),await Ni(n),await r(o,t)}catch(t){(0,qn.Qg)((0,In.Tl)("files","Unable to create the directory {directory}",{directory:o.name})),Vn.error("",{error:t,absolutePath:n,directory:o})}}else Vn.debug("Uploading file to "+(0,Is.join)(e.path,t),{file:o}),i.push(s.upload(t,o,e.source))}};s.pause(),await r(t,"/"),s.start();const o=(await Promise.allSettled(i)).filter((t=>"rejected"===t.status));return o.length>0?(Vn.error("Error while uploading files",{errors:o}),(0,qn.Qg)((0,In.Tl)("files","Some files could not be uploaded")),[]):(Vn.debug("Files uploaded successfully"),(0,qn.Te)((0,In.Tl)("files","Files uploaded successfully")),Promise.all(i))},or=async function(t,e,n){let s=arguments.length>3&&void 0!==arguments[3]&&arguments[3];const i=[];if(await(0,ii.h)(t,n)&&(t=await Ii(t,e,n)),0===t.length)return Vn.info("No files to process",{nodes:t}),void(0,qn.cf)((0,In.Tl)("files","No files to process"));for(const n of t)r.Ay.set(n,"status",lt.zI.LOADING),i.push(er(n,e,s?Mi.COPY:Mi.MOVE));const o=await Promise.allSettled(i);t.forEach((t=>r.Ay.set(t,"status",void 0)));const a=o.filter((t=>"rejected"===t.status));if(a.length>0)return Vn.error("Error while copying or moving files",{errors:a}),void(0,qn.Qg)(s?(0,In.Tl)("files","Some files could not be copied"):(0,In.Tl)("files","Some files could not be moved"));Vn.debug("Files copy/move successful"),(0,qn.Te)(s?(0,In.Tl)("files","Files copied successfully"):(0,In.Tl)("files","Files moved successfully"))},ar=at("dragging",{state:()=>({dragging:[]}),actions:{set(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];r.Ay.set(this,"dragging",t)},reset(){r.Ay.set(this,"dragging",[])}}}),lr=r.Ay.extend({data:()=>({filesListWidth:null}),mounted(){var t;const e=document.querySelector("#app-content-vue");this.filesListWidth=null!==(t=null==e?void 0:e.clientWidth)&&void 0!==t?t:null,this.$resizeObserver=new ResizeObserver((t=>{t.length>0&&t[0].target===e&&(this.filesListWidth=t[0].contentRect.width)})),this.$resizeObserver.observe(e)},beforeDestroy(){this.$resizeObserver.disconnect()}}),cr=(0,r.pM)({name:"BreadCrumbs",components:{NcBreadcrumbs:_i.N,NcBreadcrumb:xi.N,NcIconSvgWrapper:Un.A},mixins:[lr],props:{path:{type:String,default:"/"}},setup:()=>({draggingStore:ar(),filesStore:wi(),pathsStore:yi(),selectionStore:bi()}),computed:{currentView(){return this.$navigation.active},dirs(){var t;return["/",...this.path.split("/").filter(Boolean).map((t="/",e=>t+="".concat(e,"/"))).map((t=>t.replace(/^(.+)\/$/,"$1")))]},sections(){return this.dirs.map(((t,e)=>{const n=this.getFileIdFromPath(t),s={...this.$route,params:{fileid:n},query:{dir:t}};return{dir:t,exact:!0,name:this.getDirDisplayName(t),to:s,disableDrop:e===this.dirs.length-1}}))},viewIcon(){var t,e;return null!==(t=null===(e=this.currentView)||void 0===e?void 0:e.icon)&&void 0!==t?t:'<svg xmlns="http://www.w3.org/2000/svg" id="mdi-home" viewBox="0 0 24 24"><path d="M10,20V14H14V20H19V12H22L12,3L2,12H5V20H10Z" /></svg>'},selectedFiles(){return this.selectionStore.selected},draggingFiles(){return this.draggingStore.dragging}},methods:{getNodeFromId(t){return this.filesStore.getNode(t)},getFileIdFromPath(t){var e;return this.pathsStore.getPath(null===(e=this.currentView)||void 0===e?void 0:e.id,t)},getDirDisplayName(t){var e,n;if("/"===t)return(null===(n=this.$navigation)||void 0===n||null===(n=n.active)||void 0===n?void 0:n.name)||(0,In.Tl)("files","Home");const s=this.getFileIdFromPath(t),i=this.getNodeFromId(s);return(null==i||null===(e=i.attributes)||void 0===e?void 0:e.displayName)||(0,Is.basename)(t)},onClick(t){var e;(null==t||null===(e=t.query)||void 0===e?void 0:e.dir)===this.$route.query.dir&&this.$emit("reload")},onDragOver(t,e){e!==this.dirs[this.dirs.length-1]?t.ctrlKey?t.dataTransfer.dropEffect="copy":t.dataTransfer.dropEffect="move":t.dataTransfer.dropEffect="none"},async onDrop(t,e){var n,s,i;if(!(this.draggingFiles||null!==(n=t.dataTransfer)&&void 0!==n&&null!==(n=n.items)&&void 0!==n&&n.length))return;t.preventDefault();const r=this.draggingFiles,o=[...(null===(s=t.dataTransfer)||void 0===s?void 0:s.items)||[]],a=await ir(o),l=await(null===(i=this.currentView)||void 0===i?void 0:i.getContents(e)),c=null==l?void 0:l.folder;if(!c)return void(0,qn.Qg)(this.t("files","Target folder does not exist any more"));const d=!!(c.permissions&lt.aX.CREATE),u=t.ctrlKey;if(!d||0!==t.button)return;if(Vn.debug("Dropped",{event:t,folder:c,selection:r,fileTree:a}),a.contents.length>0)return void await rr(a,c,l.contents);const m=r.map((t=>this.filesStore.getNode(t)));await or(m,c,l.contents,u),r.some((t=>this.selectedFiles.includes(t)))&&(Vn.debug("Dropped selection, resetting select store..."),this.selectionStore.reset())},titleForSection(t,e){var n;return(null==e||null===(n=e.to)||void 0===n||null===(n=n.query)||void 0===n?void 0:n.dir)===this.$route.query.dir?(0,In.Tl)("files","Reload current directory"):0===t?(0,In.Tl)("files",'Go to the "{dir}" directory',e):null},ariaForSection(t){var e;return(null==t||null===(e=t.to)||void 0===e||null===(e=e.query)||void 0===e?void 0:e.dir)===this.$route.query.dir?(0,In.Tl)("files","Reload current directory"):null},t:In.Tl}});var dr=s(98518),ur={};ur.styleTagTransform=as(),ur.setAttributes=ss(),ur.insert=es().bind(null,"head"),ur.domAPI=Zn(),ur.insertStyleElement=rs(),Xn()(dr.A,ur),dr.A&&dr.A.locals&&dr.A.locals;const mr=(0,Pn.A)(cr,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("NcBreadcrumbs",{attrs:{"data-cy-files-content-breadcrumbs":"","aria-label":t.t("files","Current directory path")},scopedSlots:t._u([{key:"actions",fn:function(){return[t._t("actions")]},proxy:!0}],null,!0)},t._l(t.sections,(function(n,s){return e("NcBreadcrumb",t._b({key:n.dir,attrs:{dir:"auto",to:n.to,"force-icon-text":!0,title:t.titleForSection(s,n),"aria-description":t.ariaForSection(n)},on:{drop:function(e){return t.onDrop(e,n.dir)}},nativeOn:{click:function(e){return t.onClick(n.to)},dragover:function(e){return t.onDragOver(e,n.dir)}},scopedSlots:t._u([0===s?{key:"icon",fn:function(){return[e("NcIconSvgWrapper",{attrs:{size:20,svg:t.viewIcon}})]},proxy:!0}:null],null,!0)},"NcBreadcrumb",n,!1))})),1)}),[],!1,null,"159e0cca",null).exports;var pr=s(51651);const fr=at("actionsmenu",{state:()=>({opened:null})}),gr=function(){const t=at("renaming",{state:()=>({renamingNode:void 0,newName:""})})(...arguments);return t._initialized||((0,Nn.B1)("files:node:rename",(function(e){t.renamingNode=e,t.newName=e.basename})),t._initialized=!0),t};var hr=s(55042);const vr={name:"FileMultipleIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Ar=(0,Pn.A)(vr,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon file-multiple-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M15,7H20.5L15,1.5V7M8,0H16L22,6V18A2,2 0 0,1 20,20H8C6.89,20 6,19.1 6,18V2A2,2 0 0,1 8,0M4,4V22H20V24H4A2,2 0 0,1 2,22V4H4Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,wr={name:"FolderIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},yr=(0,Pn.A)(wr,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon folder-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6H12L10,4Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,br=r.Ay.extend({name:"DragAndDropPreview",components:{FileMultipleIcon:Ar,FolderIcon:yr},data:()=>({nodes:[]}),computed:{isSingleNode(){return 1===this.nodes.length},isSingleFolder(){return this.isSingleNode&&this.nodes[0].type===lt.pt.Folder},name(){return this.size?"".concat(this.summary," – ").concat(this.size):this.summary},size(){const t=this.nodes.reduce(((t,e)=>t+e.size||0),0),e=parseInt(t,10)||0;return"number"!=typeof e||e<0?null:(0,lt.v7)(e,!0)},summary(){if(this.isSingleNode){var t;const e=this.nodes[0];return(null===(t=e.attributes)||void 0===t?void 0:t.displayName)||e.basename}return Zi(this.nodes)}},methods:{update(t){this.nodes=t,this.$refs.previewImg.replaceChildren(),t.slice(0,3).forEach((t=>{const e=document.querySelector('[data-cy-files-list-row-fileid="'.concat(t.fileid,'"] .files-list__row-icon img'));e&&this.$refs.previewImg.appendChild(e.parentNode.cloneNode(!0))})),this.$nextTick((()=>{this.$emit("loaded",this.$el)}))}}}),Cr=br;var xr=s(52608),_r={};_r.styleTagTransform=as(),_r.setAttributes=ss(),_r.insert=es().bind(null,"head"),_r.domAPI=Zn(),_r.insertStyleElement=rs(),Xn()(xr.A,_r),xr.A&&xr.A.locals&&xr.A.locals;const Tr=(0,Pn.A)(Cr,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("div",{staticClass:"files-list-drag-image"},[e("span",{staticClass:"files-list-drag-image__icon"},[e("span",{ref:"previewImg"}),t._v(" "),t.isSingleFolder?e("FolderIcon"):e("FileMultipleIcon")],1),t._v(" "),e("span",{staticClass:"files-list-drag-image__name"},[t._v(t._s(t.name))])])}),[],!1,null,null,null).exports,kr=r.Ay.extend(Tr);let Er;r.Ay.directive("onClickOutside",hr.z0);const Sr=(0,r.pM)({props:{source:{type:[lt.vd,lt.ZH,lt.bP],required:!0},nodes:{type:Array,required:!0},filesListWidth:{type:Number,default:0}},data:()=>({loading:"",dragover:!1,gridMode:!1}),computed:{currentView(){return this.$navigation.active},currentDir(){var t;return((null===(t=this.$route)||void 0===t||null===(t=t.query)||void 0===t||null===(t=t.dir)||void 0===t?void 0:t.toString())||"/").replace(/^(.+)\/$/,"$1")},currentFileId(){var t,e;return(null===(t=this.$route.params)||void 0===t?void 0:t.fileid)||(null===(e=this.$route.query)||void 0===e?void 0:e.fileid)||null},fileid(){var t;return null===(t=this.source)||void 0===t?void 0:t.fileid},uniqueId(){return Ki(this.source.source)},isLoading(){return this.source.status===lt.zI.LOADING},extension(){var t;return null!==(t=this.source.attributes)&&void 0!==t&&t.displayName?(0,Is.extname)(this.source.attributes.displayName):this.source.extension||""},displayName(){const t=this.extension,e=this.source.attributes.displayName||this.source.basename;return t?e.slice(0,0-t.length):e},draggingFiles(){return this.draggingStore.dragging},selectedFiles(){return this.selectionStore.selected},isSelected(){return this.fileid&&this.selectedFiles.includes(this.fileid)},isRenaming(){return this.renamingStore.renamingNode===this.source},isRenamingSmallScreen(){return this.isRenaming&&this.filesListWidth<512},isActive(){var t,e,n,s;return(null===(t=this.fileid)||void 0===t||null===(e=t.toString)||void 0===e?void 0:e.call(t))===(null===(n=this.currentFileId)||void 0===n||null===(s=n.toString)||void 0===s?void 0:s.call(n))},canDrag(){if(this.isRenaming)return!1;const t=t=>!!((null==t?void 0:t.permissions)&lt.aX.UPDATE);return this.selectedFiles.length>0?this.selectedFiles.map((t=>this.filesStore.getNode(t))).every(t):t(this.source)},canDrop(){return!(this.source.type!==lt.pt.Folder||this.fileid&&this.draggingFiles.includes(this.fileid)||!(this.source.permissions&lt.aX.CREATE))},openedMenu:{get(){return this.actionsMenuStore.opened===this.uniqueId.toString()},set(t){if(t){var e;const t=null===(e=this.$el)||void 0===e?void 0:e.closest("main.app-content");t.style.removeProperty("--mouse-pos-x"),t.style.removeProperty("--mouse-pos-y")}this.actionsMenuStore.opened=t?this.uniqueId.toString():null}}},watch:{source(){this.resetState()}},beforeDestroy(){this.resetState()},methods:{resetState(){this.loading="",this.$refs.preview.reset(),this.openedMenu=!1},onRightClick(t){if(this.openedMenu)return;if(!this.gridMode){var e;const n=null===(e=this.$el)||void 0===e?void 0:e.closest("main.app-content"),s=n.getBoundingClientRect();n.style.setProperty("--mouse-pos-x",Math.max(0,t.clientX-s.left-200)+"px"),n.style.setProperty("--mouse-pos-y",Math.max(0,t.clientY-s.top)+"px")}const n=this.selectedFiles.length>1;this.actionsMenuStore.opened=this.isSelected&&n?"global":this.uniqueId.toString(),t.preventDefault(),t.stopPropagation()},execDefaultAction(t){if(t.ctrlKey||t.metaKey)return t.preventDefault(),window.open((0,dt.Jv)("/f/{fileId}",{fileId:this.fileid})),!1;this.$refs.actions.execDefaultAction(t)},openDetailsIfAvailable(t){var e;t.preventDefault(),t.stopPropagation(),null!=Ai&&null!==(e=Ai.enabled)&&void 0!==e&&e.call(Ai,[this.source],this.currentView)&&Ai.exec(this.source,this.currentView,this.currentDir)},onDragOver(t){this.dragover=this.canDrop,this.canDrop?t.ctrlKey?t.dataTransfer.dropEffect="copy":t.dataTransfer.dropEffect="move":t.dataTransfer.dropEffect="none"},onDragLeave(t){const e=t.currentTarget;null!=e&&e.contains(t.relatedTarget)||(this.dragover=!1)},async onDragStart(t){var e,n,s;if(t.stopPropagation(),!this.canDrag||!this.fileid)return t.preventDefault(),void t.stopPropagation();Vn.debug("Drag started",{event:t}),null===(e=t.dataTransfer)||void 0===e||null===(n=e.clearData)||void 0===n||n.call(e),this.renamingStore.$reset(),this.selectedFiles.includes(this.fileid)?this.draggingStore.set(this.selectedFiles):this.draggingStore.set([this.fileid]);const i=this.draggingStore.dragging.map((t=>this.filesStore.getNode(t))),r=await(async t=>new Promise((e=>{Er||(Er=(new kr).$mount(),document.body.appendChild(Er.$el)),Er.update(t),Er.$on("loaded",(()=>{e(Er.$el),Er.$off("loaded")}))})))(i);null===(s=t.dataTransfer)||void 0===s||s.setDragImage(r,-10,-10)},onDragEnd(){this.draggingStore.reset(),this.dragover=!1,Vn.debug("Drag ended")},async onDrop(t){var e,n,s;if(!(this.draggingFiles||null!==(e=t.dataTransfer)&&void 0!==e&&null!==(e=e.items)&&void 0!==e&&e.length))return;t.preventDefault(),t.stopPropagation();const i=this.draggingFiles,r=[...(null===(n=t.dataTransfer)||void 0===n?void 0:n.items)||[]],o=await ir(r),a=await(null===(s=this.currentView)||void 0===s?void 0:s.getContents(this.source.path)),l=null==a?void 0:a.folder;if(!l)return void(0,qn.Qg)(this.t("files","Target folder does not exist any more"));if(!this.canDrop||t.button)return;const c=t.ctrlKey;if(this.dragover=!1,Vn.debug("Dropped",{event:t,folder:l,selection:i,fileTree:o}),o.contents.length>0)return void await rr(o,l,a.contents);const d=i.map((t=>this.filesStore.getNode(t)));await or(d,l,a.contents,c),i.some((t=>this.selectedFiles.includes(t)))&&(Vn.debug("Dropped selection, resetting select store..."),this.selectionStore.reset())},t:In.Tl}});var Lr=s(4604);const Nr={name:"CustomElementRender",props:{source:{type:Object,required:!0},currentView:{type:Object,required:!0},render:{type:Function,required:!0}},watch:{source(){this.updateRootElement()},currentView(){this.updateRootElement()}},mounted(){this.updateRootElement()},methods:{async updateRootElement(){const t=await this.render(this.source,this.currentView);t?this.$el.replaceChildren(t):this.$el.replaceChildren()}}},Ir=(0,Pn.A)(Nr,(function(){return(0,this._self._c)("span")}),[],!1,null,null,null).exports,Fr={name:"ArrowLeftIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Pr=(0,Pn.A)(Fr,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon arrow-left-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,Br={name:"ChevronRightIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Or=(0,Pn.A)(Br,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon chevron-right-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports;var Dr=s(63420),Ur=s(24764),jr=s(10501);const zr=(0,lt.qK)(),Mr=r.Ay.extend({name:"FileEntryActions",components:{ArrowLeftIcon:Pr,ChevronRightIcon:Or,CustomElementRender:Ir,NcActionButton:Dr.A,NcActions:Ur.A,NcActionSeparator:jr.A,NcIconSvgWrapper:Un.A,NcLoadingIcon:ui.A},props:{filesListWidth:{type:Number,required:!0},loading:{type:String,required:!0},opened:{type:Boolean,default:!1},source:{type:Object,required:!0},gridMode:{type:Boolean,default:!1}},data:()=>({openedSubmenu:null}),computed:{currentDir(){var t;return((null===(t=this.$route)||void 0===t||null===(t=t.query)||void 0===t||null===(t=t.dir)||void 0===t?void 0:t.toString())||"/").replace(/^(.+)\/$/,"$1")},currentView(){return this.$navigation.active},isLoading(){return this.source.status===lt.zI.LOADING},enabledActions(){return this.source.attributes.failed?[]:zr.filter((t=>!t.enabled||t.enabled([this.source],this.currentView))).sort(((t,e)=>(t.order||0)-(e.order||0)))},enabledInlineActions(){return this.filesListWidth<768||this.gridMode?[]:this.enabledActions.filter((t=>{var e;return null==t||null===(e=t.inline)||void 0===e?void 0:e.call(t,this.source,this.currentView)}))},enabledRenderActions(){return this.gridMode?[]:this.enabledActions.filter((t=>"function"==typeof t.renderInline))},enabledDefaultActions(){return this.enabledActions.filter((t=>!(null==t||!t.default)))},enabledMenuActions(){if(this.openedSubmenu)return this.enabledInlineActions;const t=[...this.enabledInlineActions,...this.enabledActions.filter((t=>t.default!==lt.m9.HIDDEN&&"function"!=typeof t.renderInline))].filter(((t,e,n)=>e===n.findIndex((e=>e.id===t.id)))),e=t.filter((t=>!t.parent)).map((t=>t.id));return t.filter((t=>!(t.parent&&e.includes(t.parent))))},enabledSubmenuActions(){return this.enabledActions.filter((t=>t.parent)).reduce(((t,e)=>(t[e.parent]||(t[e.parent]=[]),t[e.parent].push(e),t)),{})},openedMenu:{get(){return this.opened},set(t){this.$emit("update:opened",t)}},getBoundariesElement:()=>document.querySelector(".app-content > .files-list"),mountType(){return this.source._attributes["mount-type"]}},methods:{actionDisplayName(t){if((this.gridMode||this.filesListWidth<768&&t.inline)&&"function"==typeof t.title){const e=t.title([this.source],this.currentView);if(e)return e}return t.displayName([this.source],this.currentView)},async onActionClick(t){let e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(this.isLoading||""!==this.loading)return;if(this.enabledSubmenuActions[t.id])return void(this.openedSubmenu=t);const n=t.displayName([this.source],this.currentView);try{this.$emit("update:loading",t.id),r.Ay.set(this.source,"status",lt.zI.LOADING);const e=await t.exec(this.source,this.currentView,this.currentDir);if(null==e)return;if(e)return void(0,qn.Te)((0,In.Tl)("files",'"{displayName}" action executed successfully',{displayName:n}));(0,qn.Qg)((0,In.Tl)("files",'"{displayName}" action failed',{displayName:n}))}catch(e){Vn.error("Error while executing action",{action:t,e}),(0,qn.Qg)((0,In.Tl)("files",'"{displayName}" action failed',{displayName:n}))}finally{this.$emit("update:loading",""),r.Ay.set(this.source,"status",void 0),e&&(this.openedSubmenu=null)}},execDefaultAction(t){this.enabledDefaultActions.length>0&&(t.preventDefault(),t.stopPropagation(),this.enabledDefaultActions[0].exec(this.source,this.currentView,this.currentDir))},isMenu(t){var e;return(null===(e=this.enabledSubmenuActions[t])||void 0===e?void 0:e.length)>0},async onBackToMenuClick(t){this.openedSubmenu=null,await this.$nextTick(),this.$nextTick((()=>{const e=this.$refs["action-".concat(t.id)][0];var n;e&&(null===(n=e.$el.querySelector("button"))||void 0===n||n.focus())}))},t:In.Tl}}),Rr=Mr;var Vr=s(91613),$r={};$r.styleTagTransform=as(),$r.setAttributes=ss(),$r.insert=es().bind(null,"head"),$r.domAPI=Zn(),$r.insertStyleElement=rs(),Xn()(Vr.A,$r),Vr.A&&Vr.A.locals&&Vr.A.locals;var qr=s(63337),Hr={};Hr.styleTagTransform=as(),Hr.setAttributes=ss(),Hr.insert=es().bind(null,"head"),Hr.domAPI=Zn(),Hr.insertStyleElement=rs(),Xn()(qr.A,Hr),qr.A&&qr.A.locals&&qr.A.locals;var Wr=(0,Pn.A)(Rr,(function(){var t,e,n=this,s=n._self._c;return n._self._setupProxy,s("td",{staticClass:"files-list__row-actions",attrs:{"data-cy-files-list-row-actions":""}},[n._l(n.enabledRenderActions,(function(t){return s("CustomElementRender",{key:t.id,staticClass:"files-list__row-action--inline",class:"files-list__row-action-"+t.id,attrs:{"current-view":n.currentView,render:t.renderInline,source:n.source}})})),n._v(" "),s("NcActions",{ref:"actionsMenu",attrs:{"boundaries-element":n.getBoundariesElement,container:n.getBoundariesElement,"force-name":!0,type:"tertiary","force-menu":0===n.enabledInlineActions.length,inline:n.enabledInlineActions.length,open:n.openedMenu},on:{"update:open":function(t){n.openedMenu=t},close:function(t){n.openedSubmenu=null}}},[n._l(n.enabledMenuActions,(function(t){var e;return s("NcActionButton",{key:t.id,ref:"action-".concat(t.id),refInFor:!0,class:{["files-list__row-action-".concat(t.id)]:!0,"files-list__row-action--menu":n.isMenu(t.id)},attrs:{"close-after-click":!n.isMenu(t.id),"data-cy-files-list-row-action":t.id,"is-menu":n.isMenu(t.id),title:null===(e=t.title)||void 0===e?void 0:e.call(t,[n.source],n.currentView)},on:{click:function(e){return n.onActionClick(t)}},scopedSlots:n._u([{key:"icon",fn:function(){return[n.loading===t.id?s("NcLoadingIcon",{attrs:{size:18}}):s("NcIconSvgWrapper",{attrs:{svg:t.iconSvgInline([n.source],n.currentView)}})]},proxy:!0}],null,!0)},[n._v("\n\t\t\t"+n._s("shared"===n.mountType&&"sharing-status"===t.id?"":n.actionDisplayName(t))+"\n\t\t")])})),n._v(" "),n.openedSubmenu&&n.enabledSubmenuActions[null===(t=n.openedSubmenu)||void 0===t?void 0:t.id]?[s("NcActionButton",{staticClass:"files-list__row-action-back",on:{click:function(t){return n.onBackToMenuClick(n.openedSubmenu)}},scopedSlots:n._u([{key:"icon",fn:function(){return[s("ArrowLeftIcon")]},proxy:!0}],null,!1,3001860362)},[n._v("\n\t\t\t\t"+n._s(n.actionDisplayName(n.openedSubmenu))+"\n\t\t\t")]),n._v(" "),s("NcActionSeparator"),n._v(" "),n._l(n.enabledSubmenuActions[null===(e=n.openedSubmenu)||void 0===e?void 0:e.id],(function(t){var e;return s("NcActionButton",{key:t.id,staticClass:"files-list__row-action--submenu",class:"files-list__row-action-".concat(t.id),attrs:{"close-after-click":!1,"data-cy-files-list-row-action":t.id,title:null===(e=t.title)||void 0===e?void 0:e.call(t,[n.source],n.currentView)},on:{click:function(e){return n.onActionClick(t)}},scopedSlots:n._u([{key:"icon",fn:function(){return[n.loading===t.id?s("NcLoadingIcon",{attrs:{size:18}}):s("NcIconSvgWrapper",{attrs:{svg:t.iconSvgInline([n.source],n.currentView)}})]},proxy:!0}],null,!0)},[n._v("\n\t\t\t\t"+n._s(n.actionDisplayName(t))+"\n\t\t\t")])}))]:n._e()],2)],2)}),[],!1,null,"6168180a",null);const Gr=Wr.exports,Yr=(0,r.pM)({name:"FileEntryCheckbox",components:{NcCheckboxRadioSwitch:ps.A,NcLoadingIcon:ui.A},props:{fileid:{type:Number,required:!0},isLoading:{type:Boolean,default:!1},nodes:{type:Array,required:!0},source:{type:Object,required:!0}},setup(){const t=bi(),e=function(){const t=at("keyboard",{state:()=>({altKey:!1,ctrlKey:!1,metaKey:!1,shiftKey:!1}),actions:{onEvent(t){t||(t=window.event),r.Ay.set(this,"altKey",!!t.altKey),r.Ay.set(this,"ctrlKey",!!t.ctrlKey),r.Ay.set(this,"metaKey",!!t.metaKey),r.Ay.set(this,"shiftKey",!!t.shiftKey)}}})(...arguments);return t._initialized||(window.addEventListener("keydown",t.onEvent),window.addEventListener("keyup",t.onEvent),window.addEventListener("mousemove",t.onEvent),t._initialized=!0),t}();return{keyboardStore:e,selectionStore:t}},computed:{selectedFiles(){return this.selectionStore.selected},isSelected(){return this.selectedFiles.includes(this.fileid)},index(){return this.nodes.findIndex((t=>t.fileid===this.fileid))},isFile(){return this.source.type===lt.pt.File},ariaLabel(){return this.isFile?(0,In.Tl)("files",'Toggle selection for file "{displayName}"',{displayName:this.source.basename}):(0,In.Tl)("files",'Toggle selection for folder "{displayName}"',{displayName:this.source.basename})}},methods:{onSelectionChange(t){var e;const n=this.index,s=this.selectionStore.lastSelectedIndex;if(null!==(e=this.keyboardStore)&&void 0!==e&&e.shiftKey&&null!==s){const t=this.selectedFiles.includes(this.fileid),e=Math.min(n,s),i=Math.max(s,n),r=this.selectionStore.lastSelection,o=this.nodes.map((t=>t.fileid)).slice(e,i+1).filter(Boolean),a=[...r,...o].filter((e=>!t||e!==this.fileid));return Vn.debug("Shift key pressed, selecting all files in between",{start:e,end:i,filesToSelect:o,isAlreadySelected:t}),void this.selectionStore.set(a)}const i=t?[...this.selectedFiles,this.fileid]:this.selectedFiles.filter((t=>t!==this.fileid));Vn.debug("Updating selection",{selection:i}),this.selectionStore.set(i),this.selectionStore.setLastIndex(n)},resetSelection(){this.selectionStore.reset()},t:In.Tl}}),Kr=(0,Pn.A)(Yr,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("td",{staticClass:"files-list__row-checkbox",on:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"])||e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:t.resetSelection.apply(null,arguments)}}},[t.isLoading?e("NcLoadingIcon"):e("NcCheckboxRadioSwitch",{attrs:{"aria-label":t.ariaLabel,checked:t.isSelected},on:{"update:checked":t.onSelectionChange}})],1)}),[],!1,null,null,null).exports;var Qr=s(82182);const Xr=(0,jn.C)("files","forbiddenCharacters",""),Jr=r.Ay.extend({name:"FileEntryName",components:{NcTextField:Qr.A},props:{displayName:{type:String,required:!0},extension:{type:String,required:!0},filesListWidth:{type:Number,required:!0},nodes:{type:Array,required:!0},source:{type:Object,required:!0},gridMode:{type:Boolean,default:!1}},setup:()=>({renamingStore:gr()}),computed:{isRenaming(){return this.renamingStore.renamingNode===this.source},isRenamingSmallScreen(){return this.isRenaming&&this.filesListWidth<512},newName:{get(){return this.renamingStore.newName},set(t){this.renamingStore.newName=t}},renameLabel(){return{[lt.pt.File]:(0,In.Tl)("files","File name"),[lt.pt.Folder]:(0,In.Tl)("files","Folder name")}[this.source.type]},linkTo(){var t,e;if(this.source.attributes.failed)return{is:"span",params:{title:(0,In.Tl)("files","This node is unavailable")}};const n=null===(t=this.$parent)||void 0===t||null===(t=t.$refs)||void 0===t||null===(t=t.actions)||void 0===t?void 0:t.enabledDefaultActions;return(null==n?void 0:n.length)>0?{is:"a",params:{title:n[0].displayName([this.source],this.currentView),role:"button",tabindex:"0"}}:(null===(e=this.source)||void 0===e?void 0:e.permissions)&lt.aX.READ?{is:"a",params:{download:this.source.basename,href:this.source.source,title:(0,In.Tl)("files","Download file {name}",{name:this.displayName}),tabindex:"0"}}:{is:"span"}}},watch:{isRenaming:{immediate:!0,handler(t){t&&this.startRenaming()}}},methods:{checkInputValidity(t){var e,n;const s=t.target,i=(null===(e=(n=this.newName).trim)||void 0===e?void 0:e.call(n))||"";Vn.debug("Checking input validity",{newName:i});try{this.isFileNameValid(i),s.setCustomValidity(""),s.title=""}catch(t){s.setCustomValidity(t.message),s.title=t.message}finally{s.reportValidity()}},isFileNameValid(t){const e=t.trim();if("."===e||".."===e)throw new Error((0,In.Tl)("files",'"{name}" is an invalid file name.',{name:t}));if(0===e.length)throw new Error((0,In.Tl)("files","File name cannot be empty."));if(-1!==e.indexOf("/"))throw new Error((0,In.Tl)("files",'"/" is not allowed inside a file name.'));if(e.match(OC.config.blacklist_files_regex))throw new Error((0,In.Tl)("files",'"{name}" is not an allowed filetype.',{name:t}));if(this.checkIfNodeExists(t))throw new Error((0,In.Tl)("files","{newName} already exists.",{newName:t}));return e.split("").forEach((t=>{if(-1!==Xr.indexOf(t))throw new Error(this.t("files",'"{char}" is not allowed inside a file name.',{char:t}))})),!0},checkIfNodeExists(t){return this.nodes.find((e=>e.basename===t&&e!==this.source))},startRenaming(){this.$nextTick((()=>{var t;const e=(this.source.extension||"").split("").length,n=this.source.basename.split("").length-e,s=null===(t=this.$refs.renameInput)||void 0===t||null===(t=t.$refs)||void 0===t||null===(t=t.inputField)||void 0===t||null===(t=t.$refs)||void 0===t?void 0:t.input;s?(s.setSelectionRange(0,n),s.focus(),s.dispatchEvent(new Event("keyup"))):Vn.error("Could not find the rename input")}))},stopRenaming(){this.isRenaming&&this.renamingStore.$reset()},async onRename(){var t,e;const n=this.source.basename,s=this.source.encodedSource,i=(null===(t=(e=this.newName).trim)||void 0===t?void 0:t.call(e))||"";if(""!==i)if(n!==i)if(this.checkIfNodeExists(i))(0,qn.Qg)((0,In.Tl)("files","Another entry with the same name already exists"));else{this.loading="renaming",r.Ay.set(this.source,"status",lt.zI.LOADING),this.source.rename(i),Vn.debug("Moving file to",{destination:this.source.encodedSource,oldEncodedSource:s});try{await(0,zn.A)({method:"MOVE",url:s,headers:{Destination:this.source.encodedSource,Overwrite:"F"}}),(0,Nn.Ic)("files:node:updated",this.source),(0,Nn.Ic)("files:node:renamed",this.source),(0,qn.Te)((0,In.Tl)("files",'Renamed "{oldName}" to "{newName}"',{oldName:n,newName:i})),this.stopRenaming(),this.$nextTick((()=>{this.$refs.basename.focus()}))}catch(t){var o,a;if(Vn.error("Error while renaming file",{error:t}),this.source.rename(n),this.$refs.renameInput.focus(),404===(null==t||null===(o=t.response)||void 0===o?void 0:o.status))return void(0,qn.Qg)((0,In.Tl)("files",'Could not rename "{oldName}", it does not exist any more',{oldName:n}));if(412===(null==t||null===(a=t.response)||void 0===a?void 0:a.status))return void(0,qn.Qg)((0,In.Tl)("files",'The name "{newName}" is already used in the folder "{dir}". Please choose a different name.',{newName:i,dir:this.currentDir}));(0,qn.Qg)((0,In.Tl)("files",'Could not rename "{oldName}"',{oldName:n}))}finally{this.loading=!1,r.Ay.set(this.source,"status",void 0)}}else this.stopRenaming();else(0,qn.Qg)((0,In.Tl)("files","Name cannot be empty"))},t:In.Tl}}),Zr=(0,Pn.A)(Jr,(function(){var t=this,e=t._self._c;return t._self._setupProxy,t.isRenaming?e("form",{directives:[{name:"on-click-outside",rawName:"v-on-click-outside",value:t.stopRenaming,expression:"stopRenaming"}],staticClass:"files-list__row-rename",attrs:{"aria-label":t.t("files","Rename file")},on:{submit:function(e){return e.preventDefault(),e.stopPropagation(),t.onRename.apply(null,arguments)}}},[e("NcTextField",{ref:"renameInput",attrs:{label:t.renameLabel,autofocus:!0,minlength:1,required:!0,value:t.newName,enterkeyhint:"done"},on:{"update:value":function(e){t.newName=e},keyup:[t.checkInputValidity,function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"])?null:t.stopRenaming.apply(null,arguments)}]}})],1):e(t.linkTo.is,t._b({ref:"basename",tag:"component",staticClass:"files-list__row-name-link",attrs:{"aria-hidden":t.isRenaming,"data-cy-files-list-row-name-link":""},on:{click:function(e){return t.$emit("click",e)}}},"component",t.linkTo.params,!1),[e("span",{staticClass:"files-list__row-name-text"},[e("span",{staticClass:"files-list__row-name-",domProps:{textContent:t._s(t.displayName)}}),t._v(" "),e("span",{staticClass:"files-list__row-name-ext",domProps:{textContent:t._s(t.extension)}})])])}),[],!1,null,null,null).exports;var to=s(72755);const eo={name:"FileIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},no=(0,Pn.A)(eo,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon file-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M13,9V3.5L18.5,9M6,2C4.89,2 4,2.89 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2H6Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,so={name:"FolderOpenIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},io=(0,Pn.A)(so,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon folder-open-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19,20H4C2.89,20 2,19.1 2,18V6C2,4.89 2.89,4 4,4H10L12,6H19A2,2 0 0,1 21,8H21L4,8V18L6.14,10H23.21L20.93,18.5C20.7,19.37 19.92,20 19,20Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,ro={name:"KeyIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},oo=(0,Pn.A)(ro,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon key-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7 14C5.9 14 5 13.1 5 12S5.9 10 7 10 9 10.9 9 12 8.1 14 7 14M12.6 10C11.8 7.7 9.6 6 7 6C3.7 6 1 8.7 1 12S3.7 18 7 18C9.6 18 11.8 16.3 12.6 14H16V18H20V14H23V10H12.6Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,ao={name:"NetworkIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},lo=(0,Pn.A)(ao,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon network-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M17,3A2,2 0 0,1 19,5V15A2,2 0 0,1 17,17H13V19H14A1,1 0 0,1 15,20H22V22H15A1,1 0 0,1 14,23H10A1,1 0 0,1 9,22H2V20H9A1,1 0 0,1 10,19H11V17H7C5.89,17 5,16.1 5,15V5A2,2 0 0,1 7,3H17Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,co={name:"TagIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},uo=(0,Pn.A)(co,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon tag-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M5.5,7A1.5,1.5 0 0,1 4,5.5A1.5,1.5 0 0,1 5.5,4A1.5,1.5 0 0,1 7,5.5A1.5,1.5 0 0,1 5.5,7M21.41,11.58L12.41,2.58C12.05,2.22 11.55,2 11,2H4C2.89,2 2,2.89 2,4V11C2,11.55 2.22,12.05 2.59,12.41L11.58,21.41C11.95,21.77 12.45,22 13,22C13.55,22 14.05,21.77 14.41,21.41L21.41,14.41C21.78,14.05 22,13.55 22,13C22,12.44 21.77,11.94 21.41,11.58Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,mo={name:"PlayCircleIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},po=(0,Pn.A)(mo,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon play-circle-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M10,16.5V7.5L16,12M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,fo={name:"CollectivesIcon",props:{title:{type:String,default:""},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},go=(0,Pn.A)(fo,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon collectives-icon",attrs:{"aria-hidden":!t.title,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 16 16"}},[e("path",{attrs:{d:"M2.9,8.8c0-1.2,0.4-2.4,1.2-3.3L0.3,6c-0.2,0-0.3,0.3-0.1,0.4l2.7,2.6C2.9,9,2.9,8.9,2.9,8.8z"}}),t._v(" "),e("path",{attrs:{d:"M8,3.7c0.7,0,1.3,0.1,1.9,0.4L8.2,0.6c-0.1-0.2-0.3-0.2-0.4,0L6.1,4C6.7,3.8,7.3,3.7,8,3.7z"}}),t._v(" "),e("path",{attrs:{d:"M3.7,11.5L3,15.2c0,0.2,0.2,0.4,0.4,0.3l3.3-1.7C5.4,13.4,4.4,12.6,3.7,11.5z"}}),t._v(" "),e("path",{attrs:{d:"M15.7,6l-3.7-0.5c0.7,0.9,1.2,2,1.2,3.3c0,0.1,0,0.2,0,0.3l2.7-2.6C15.9,6.3,15.9,6.1,15.7,6z"}}),t._v(" "),e("path",{attrs:{d:"M12.3,11.5c-0.7,1.1-1.8,1.9-3,2.2l3.3,1.7c0.2,0.1,0.4-0.1,0.4-0.3L12.3,11.5z"}}),t._v(" "),e("path",{attrs:{d:"M9.6,10.1c-0.4,0.5-1,0.8-1.6,0.8c-1.1,0-2-0.9-2.1-2C5.9,7.7,6.8,6.7,8,6.7c0.6,0,1.1,0.3,1.5,0.7 c0.1,0.1,0.1,0.1,0.2,0.1h1.4c0.2,0,0.4-0.2,0.3-0.5c-0.7-1.3-2.1-2.2-3.8-2.1C5.8,5,4.3,6.6,4.1,8.5C4,10.8,5.8,12.7,8,12.7 c1.6,0,2.9-0.9,3.5-2.3c0.1-0.2-0.1-0.4-0.3-0.4H9.9C9.8,10,9.7,10,9.6,10.1z"}})])])}),[],!1,null,null,null).exports,ho=(0,r.pM)({name:"FavoriteIcon",components:{NcIconSvgWrapper:Un.A},data:()=>({StarSvg:'<svg xmlns="http://www.w3.org/2000/svg" id="mdi-star" viewBox="0 0 24 24"><path d="M12,17.27L18.18,21L16.54,13.97L22,9.24L14.81,8.62L12,2L9.19,8.62L2,9.24L7.45,13.97L5.82,21L12,17.27Z" /></svg>'}),async mounted(){var t;await this.$nextTick();const e=this.$el.querySelector("svg");null==e||null===(t=e.setAttribute)||void 0===t||t.call(e,"viewBox","-4 -4 30 30")},methods:{t:In.Tl}});var vo=s(55559),Ao={};Ao.styleTagTransform=as(),Ao.setAttributes=ss(),Ao.insert=es().bind(null,"head"),Ao.domAPI=Zn(),Ao.insertStyleElement=rs(),Xn()(vo.A,Ao),vo.A&&vo.A.locals&&vo.A.locals;const wo=(0,Pn.A)(ho,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("NcIconSvgWrapper",{staticClass:"favorite-marker-icon",attrs:{name:t.t("files","Favorite"),svg:t.StarSvg}})}),[],!1,null,"04e52abc",null).exports,yo=r.Ay.extend({name:"FileEntryPreview",components:{AccountGroupIcon:to.A,AccountPlusIcon:fi,CollectivesIcon:go,FavoriteIcon:wo,FileIcon:no,FolderIcon:yr,FolderOpenIcon:io,KeyIcon:oo,LinkIcon:ri.A,NetworkIcon:lo,TagIcon:uo},props:{source:{type:Object,required:!0},dragover:{type:Boolean,default:!1},gridMode:{type:Boolean,default:!1}},setup:()=>({userConfigStore:ys()}),data:()=>({backgroundFailed:void 0}),computed:{fileid(){var t,e;return null===(t=this.source)||void 0===t||null===(t=t.fileid)||void 0===t||null===(e=t.toString)||void 0===e?void 0:e.call(t)},isFavorite(){return 1===this.source.attributes.favorite},userConfig(){return this.userConfigStore.userConfig},cropPreviews(){return!0===this.userConfig.crop_image_previews},previewUrl(){if(this.source.type===lt.pt.Folder)return null;if(!0===this.backgroundFailed)return null;try{const t=this.source.attributes.previewUrl||(0,dt.Jv)("/core/preview?fileId={fileid}",{fileid:this.fileid}),e=new URL(window.location.origin+t);return e.searchParams.set("x",this.gridMode?"128":"32"),e.searchParams.set("y",this.gridMode?"128":"32"),e.searchParams.set("mimeFallback","true"),e.searchParams.set("a",!0===this.cropPreviews?"0":"1"),e.href}catch(t){return null}},fileOverlay(){return void 0!==this.source.attributes["metadata-files-live-photo"]?po:null},folderOverlay(){var t,e,n,s;if(this.source.type!==lt.pt.Folder)return null;if(1===(null===(t=this.source)||void 0===t||null===(t=t.attributes)||void 0===t?void 0:t["is-encrypted"]))return oo;if(null!==(e=this.source)&&void 0!==e&&null!==(e=e.attributes)&&void 0!==e&&e["is-tag"])return uo;const i=Object.values((null===(n=this.source)||void 0===n||null===(n=n.attributes)||void 0===n?void 0:n["share-types"])||{}).flat();if(i.some((t=>t===si.Z.SHARE_TYPE_LINK||t===si.Z.SHARE_TYPE_EMAIL)))return ri.A;if(i.length>0)return fi;switch(null===(s=this.source)||void 0===s||null===(s=s.attributes)||void 0===s?void 0:s["mount-type"]){case"external":case"external-session":return lo;case"group":return to.A;case"collective":return go}return null}},methods:{reset(){!0===this.backgroundFailed&&this.$refs.previewImg&&(this.$refs.previewImg.src=""),this.backgroundFailed=void 0},t:In.Tl}}),bo=(0,Pn.A)(yo,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("span",{staticClass:"files-list__row-icon"},["folder"===t.source.type?[t.dragover?t._m(0):[t._m(1),t._v(" "),t.folderOverlay?e(t.folderOverlay,{tag:"OverlayIcon",staticClass:"files-list__row-icon-overlay"}):t._e()]]:t.previewUrl&&!0!==t.backgroundFailed?e("img",{ref:"previewImg",staticClass:"files-list__row-icon-preview",class:{"files-list__row-icon-preview--loaded":!1===t.backgroundFailed},attrs:{alt:"",loading:"lazy",src:t.previewUrl},on:{error:function(e){t.backgroundFailed=!0},load:function(e){t.backgroundFailed=!1}}}):t._m(2),t._v(" "),t.isFavorite?e("span",{staticClass:"files-list__row-icon-favorite"},[t._m(3)],1):t._e(),t._v(" "),t.fileOverlay?e(t.fileOverlay,{tag:"OverlayIcon",staticClass:"files-list__row-icon-overlay files-list__row-icon-overlay--file"}):t._e()],2)}),[function(){var t=this._self._c;return this._self._setupProxy,t("FolderOpenIcon")},function(){var t=this._self._c;return this._self._setupProxy,t("FolderIcon")},function(){var t=this._self._c;return this._self._setupProxy,t("FileIcon")},function(){var t=this._self._c;return this._self._setupProxy,t("FavoriteIcon")}],!1,null,null,null).exports,Co=(0,r.pM)({name:"FileEntry",components:{CustomElementRender:Ir,FileEntryActions:Gr,FileEntryCheckbox:Kr,FileEntryName:Zr,FileEntryPreview:bo,NcDateTime:Lr.A},mixins:[Sr],props:{isMtimeAvailable:{type:Boolean,default:!1},isSizeAvailable:{type:Boolean,default:!1},compact:{type:Boolean,default:!1}},setup:()=>({actionsMenuStore:fr(),draggingStore:ar(),filesStore:wi(),renamingStore:gr(),selectionStore:bi()}),computed:{rowListeners(){return{...this.isRenaming?{}:{dragstart:this.onDragStart,dragover:this.onDragOver},contextmenu:this.onRightClick,dragleave:this.onDragLeave,dragend:this.onDragEnd,drop:this.onDrop}},columns(){var t;return this.filesListWidth<512||this.compact?[]:(null===(t=this.currentView)||void 0===t?void 0:t.columns)||[]},size(){const t=parseInt(this.source.size,10)||0;return"number"!=typeof t||t<0?this.t("files","Pending"):(0,lt.v7)(t,!0)},sizeOpacity(){const t=parseInt(this.source.size,10)||0;if(!t||t<0)return{};const e=Math.round(Math.min(100,100*Math.pow(this.source.size/10485760,2)));return{color:"color-mix(in srgb, var(--color-main-text) ".concat(e,"%, var(--color-text-maxcontrast))")}},mtimeOpacity(){var t,e;const n=26784e5,s=null===(t=this.source.mtime)||void 0===t||null===(e=t.getTime)||void 0===e?void 0:e.call(t);if(!s)return{};const i=Math.round(Math.min(100,100*(n-(Date.now()-s))/n));return i<0?{}:{color:"color-mix(in srgb, var(--color-main-text) ".concat(i,"%, var(--color-text-maxcontrast))")}},mtimeTitle(){return this.source.mtime?(0,pr.A)(this.source.mtime).format("LLL"):""},isActive(){var t,e;return this.fileid===(null===(t=this.currentFileId)||void 0===t||null===(e=t.toString)||void 0===e?void 0:e.call(t))}},methods:{formatFileSize:lt.v7}}),xo=(0,Pn.A)(Co,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("tr",t._g({staticClass:"files-list__row",class:{"files-list__row--dragover":t.dragover,"files-list__row--loading":t.isLoading,"files-list__row--active":t.isActive},attrs:{"data-cy-files-list-row":"","data-cy-files-list-row-fileid":t.fileid,"data-cy-files-list-row-name":t.source.basename,draggable:t.canDrag}},t.rowListeners),[t.source.attributes.failed?e("span",{staticClass:"files-list__row--failed"}):t._e(),t._v(" "),e("FileEntryCheckbox",{attrs:{fileid:t.fileid,"is-loading":t.isLoading,nodes:t.nodes,source:t.source}}),t._v(" "),e("td",{staticClass:"files-list__row-name",attrs:{"data-cy-files-list-row-name":""}},[e("FileEntryPreview",{ref:"preview",attrs:{source:t.source,dragover:t.dragover},nativeOn:{click:function(e){return t.execDefaultAction.apply(null,arguments)}}}),t._v(" "),e("FileEntryName",{ref:"name",attrs:{"display-name":t.displayName,extension:t.extension,"files-list-width":t.filesListWidth,nodes:t.nodes,source:t.source},on:{click:t.execDefaultAction}})],1),t._v(" "),e("FileEntryActions",{directives:[{name:"show",rawName:"v-show",value:!t.isRenamingSmallScreen,expression:"!isRenamingSmallScreen"}],ref:"actions",class:"files-list__row-actions-".concat(t.uniqueId),attrs:{"files-list-width":t.filesListWidth,loading:t.loading,opened:t.openedMenu,source:t.source},on:{"update:loading":function(e){t.loading=e},"update:opened":function(e){t.openedMenu=e}}}),t._v(" "),!t.compact&&t.isSizeAvailable?e("td",{staticClass:"files-list__row-size",style:t.sizeOpacity,attrs:{"data-cy-files-list-row-size":""},on:{click:t.openDetailsIfAvailable}},[e("span",[t._v(t._s(t.size))])]):t._e(),t._v(" "),!t.compact&&t.isMtimeAvailable?e("td",{staticClass:"files-list__row-mtime",style:t.mtimeOpacity,attrs:{"data-cy-files-list-row-mtime":""},on:{click:t.openDetailsIfAvailable}},[e("NcDateTime",{attrs:{timestamp:t.source.mtime,"ignore-seconds":!0}})],1):t._e(),t._v(" "),t._l(t.columns,(function(n){var s;return e("td",{key:n.id,staticClass:"files-list__row-column-custom",class:"files-list__row-".concat(null===(s=t.currentView)||void 0===s?void 0:s.id,"-").concat(n.id),attrs:{"data-cy-files-list-row-column-custom":n.id},on:{click:t.openDetailsIfAvailable}},[e("CustomElementRender",{attrs:{"current-view":t.currentView,render:n.render,source:t.source}})],1)}))],2)}),[],!1,null,null,null).exports,_o=(0,r.pM)({name:"FileEntryGrid",components:{FileEntryActions:Gr,FileEntryCheckbox:Kr,FileEntryName:Zr,FileEntryPreview:bo},mixins:[Sr],inheritAttrs:!1,setup:()=>({actionsMenuStore:fr(),draggingStore:ar(),filesStore:wi(),renamingStore:gr(),selectionStore:bi()}),data:()=>({gridMode:!0})}),To=(0,Pn.A)(_o,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("tr",{staticClass:"files-list__row",class:{"files-list__row--active":t.isActive,"files-list__row--dragover":t.dragover,"files-list__row--loading":t.isLoading},attrs:{"data-cy-files-list-row":"","data-cy-files-list-row-fileid":t.fileid,"data-cy-files-list-row-name":t.source.basename,draggable:t.canDrag},on:{contextmenu:t.onRightClick,dragover:t.onDragOver,dragleave:t.onDragLeave,dragstart:t.onDragStart,dragend:t.onDragEnd,drop:t.onDrop}},[t.source.attributes.failed?e("span",{staticClass:"files-list__row--failed"}):t._e(),t._v(" "),e("FileEntryCheckbox",{attrs:{fileid:t.fileid,"is-loading":t.isLoading,nodes:t.nodes,source:t.source}}),t._v(" "),e("td",{staticClass:"files-list__row-name",attrs:{"data-cy-files-list-row-name":""}},[e("FileEntryPreview",{ref:"preview",attrs:{dragover:t.dragover,"grid-mode":!0,source:t.source},nativeOn:{click:function(e){return t.execDefaultAction.apply(null,arguments)}}}),t._v(" "),e("FileEntryName",{ref:"name",attrs:{"display-name":t.displayName,extension:t.extension,"files-list-width":t.filesListWidth,"grid-mode":!0,nodes:t.nodes,source:t.source},on:{click:t.execDefaultAction}})],1),t._v(" "),e("FileEntryActions",{ref:"actions",class:"files-list__row-actions-".concat(t.uniqueId),attrs:{"files-list-width":t.filesListWidth,"grid-mode":!0,loading:t.loading,opened:t.openedMenu,source:t.source},on:{"update:loading":function(e){t.loading=e},"update:opened":function(e){t.openedMenu=e}}})],1)}),[],!1,null,null,null).exports;var ko=s(96763);const Eo={name:"FilesListHeader",props:{header:{type:Object,required:!0},currentFolder:{type:Object,required:!0},currentView:{type:Object,required:!0}},computed:{enabled(){return this.header.enabled(this.currentFolder,this.currentView)}},watch:{enabled(t){t&&this.header.updated(this.currentFolder,this.currentView)},currentFolder(){this.header.updated(this.currentFolder,this.currentView)}},mounted(){ko.debug("Mounted",this.header.id),this.header.render(this.$refs.mount,this.currentFolder,this.currentView)}},So=(0,Pn.A)(Eo,(function(){var t=this,e=t._self._c;return e("div",{directives:[{name:"show",rawName:"v-show",value:t.enabled,expression:"enabled"}],class:"files-list__header-".concat(t.header.id)},[e("span",{ref:"mount"})])}),[],!1,null,null,null).exports,Lo=r.Ay.extend({name:"FilesListTableFooter",components:{},props:{isMtimeAvailable:{type:Boolean,default:!1},isSizeAvailable:{type:Boolean,default:!1},nodes:{type:Array,required:!0},summary:{type:String,default:""},filesListWidth:{type:Number,default:0}},setup(){const t=yi();return{filesStore:wi(),pathsStore:t}},computed:{currentView(){return this.$navigation.active},dir(){var t;return((null===(t=this.$route)||void 0===t||null===(t=t.query)||void 0===t?void 0:t.dir)||"/").replace(/^(.+)\/$/,"$1")},currentFolder(){var t;if(null===(t=this.currentView)||void 0===t||!t.id)return;if("/"===this.dir)return this.filesStore.getRoot(this.currentView.id);const e=this.pathsStore.getPath(this.currentView.id,this.dir);return this.filesStore.getNode(e)},columns(){var t;return this.filesListWidth<512?[]:(null===(t=this.currentView)||void 0===t?void 0:t.columns)||[]},totalSize(){var t;return null!==(t=this.currentFolder)&&void 0!==t&&t.size?(0,lt.v7)(this.currentFolder.size,!0):(0,lt.v7)(this.nodes.reduce(((t,e)=>t+e.size||0),0),!0)}},methods:{classForColumn(t){return{"files-list__row-column-custom":!0,["files-list__row-".concat(this.currentView.id,"-").concat(t.id)]:!0}},t:In.Tl}});var No=s(31840),Io={};Io.styleTagTransform=as(),Io.setAttributes=ss(),Io.insert=es().bind(null,"head"),Io.domAPI=Zn(),Io.insertStyleElement=rs(),Xn()(No.A,Io),No.A&&No.A.locals&&No.A.locals;const Fo=(0,Pn.A)(Lo,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("tr",[e("th",{staticClass:"files-list__row-checkbox"},[e("span",{staticClass:"hidden-visually"},[t._v(t._s(t.t("files","Total rows summary")))])]),t._v(" "),e("td",{staticClass:"files-list__row-name"},[e("span",{staticClass:"files-list__row-icon"}),t._v(" "),e("span",[t._v(t._s(t.summary))])]),t._v(" "),e("td",{staticClass:"files-list__row-actions"}),t._v(" "),t.isSizeAvailable?e("td",{staticClass:"files-list__column files-list__row-size"},[e("span",[t._v(t._s(t.totalSize))])]):t._e(),t._v(" "),t.isMtimeAvailable?e("td",{staticClass:"files-list__column files-list__row-mtime"}):t._e(),t._v(" "),t._l(t.columns,(function(n){var s;return e("th",{key:n.id,class:t.classForColumn(n)},[e("span",[t._v(t._s(null===(s=n.summary)||void 0===s?void 0:s.call(n,t.nodes,t.currentView)))])])}))],2)}),[],!1,null,"a85bde20",null).exports;var Po=s(1795),Bo=s(33017);const Oo=r.Ay.extend({computed:{...(Uo=Rn,jo=["getConfig","setSortingBy","toggleSortingDirection"],Array.isArray(jo)?jo.reduce(((t,e)=>(t[e]=function(){return Uo(this.$pinia)[e]},t)),{}):Object.keys(jo).reduce(((t,e)=>(t[e]=function(){const t=Uo(this.$pinia),n=jo[e];return"function"==typeof n?n.call(this,t):t[n]},t)),{})),currentView(){return this.$navigation.active},sortingMode(){var t,e;return(null===(t=this.getConfig(this.currentView.id))||void 0===t?void 0:t.sorting_mode)||(null===(e=this.currentView)||void 0===e?void 0:e.defaultSortKey)||"basename"},isAscSorting(){var t;return"desc"!==(null===(t=this.getConfig(this.currentView.id))||void 0===t?void 0:t.sorting_direction)}},methods:{toggleSortBy(t){this.sortingMode!==t?this.setSortingBy(t,this.currentView.id):this.toggleSortingDirection(this.currentView.id)}}}),Do=(0,r.pM)({name:"FilesListTableHeaderButton",components:{MenuDown:Po.A,MenuUp:Bo.A,NcButton:ci.A},mixins:[Oo],props:{name:{type:String,required:!0},mode:{type:String,required:!0}},methods:{t:In.Tl}});var Uo,jo,zo=s(75290),Mo={};Mo.styleTagTransform=as(),Mo.setAttributes=ss(),Mo.insert=es().bind(null,"head"),Mo.domAPI=Zn(),Mo.insertStyleElement=rs(),Xn()(zo.A,Mo),zo.A&&zo.A.locals&&zo.A.locals;const Ro=(0,Pn.A)(Do,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("NcButton",{class:["files-list__column-sort-button",{"files-list__column-sort-button--active":t.sortingMode===t.mode,"files-list__column-sort-button--size":"size"===t.sortingMode}],attrs:{alignment:"size"===t.mode?"end":"start-reverse",type:"tertiary"},on:{click:function(e){return t.toggleSortBy(t.mode)}},scopedSlots:t._u([{key:"icon",fn:function(){return[t.sortingMode!==t.mode||t.isAscSorting?e("MenuUp",{staticClass:"files-list__column-sort-button-icon"}):e("MenuDown",{staticClass:"files-list__column-sort-button-icon"})]},proxy:!0}])},[t._v(" "),e("span",{staticClass:"files-list__column-sort-button-text"},[t._v(t._s(t.name))])])}),[],!1,null,"097f69d4",null).exports,Vo=(0,r.pM)({name:"FilesListTableHeader",components:{FilesListTableHeaderButton:Ro,NcCheckboxRadioSwitch:ps.A},mixins:[Oo],props:{isMtimeAvailable:{type:Boolean,default:!1},isSizeAvailable:{type:Boolean,default:!1},nodes:{type:Array,required:!0},filesListWidth:{type:Number,default:0}},setup:()=>({filesStore:wi(),selectionStore:bi()}),computed:{currentView(){return this.$navigation.active},columns(){var t;return this.filesListWidth<512?[]:(null===(t=this.currentView)||void 0===t?void 0:t.columns)||[]},dir(){var t;return((null===(t=this.$route)||void 0===t||null===(t=t.query)||void 0===t?void 0:t.dir)||"/").replace(/^(.+)\/$/,"$1")},selectAllBind(){const t=(0,In.Tl)("files","Toggle selection for all files and folders");return{"aria-label":t,checked:this.isAllSelected,indeterminate:this.isSomeSelected,title:t}},selectedNodes(){return this.selectionStore.selected},isAllSelected(){return this.selectedNodes.length===this.nodes.length},isNoneSelected(){return 0===this.selectedNodes.length},isSomeSelected(){return!this.isAllSelected&&!this.isNoneSelected}},methods:{ariaSortForMode(t){return this.sortingMode===t?this.isAscSorting?"ascending":"descending":null},classForColumn(t){var e;return{"files-list__column":!0,"files-list__column--sortable":!!t.sort,"files-list__row-column-custom":!0,["files-list__row-".concat(null===(e=this.currentView)||void 0===e?void 0:e.id,"-").concat(t.id)]:!0}},onToggleAll(t){if(t){const t=this.nodes.map((t=>t.fileid)).filter(Boolean);Vn.debug("Added all nodes to selection",{selection:t}),this.selectionStore.setLastIndex(null),this.selectionStore.set(t)}else Vn.debug("Cleared selection"),this.selectionStore.reset()},resetSelection(){this.selectionStore.reset()},t:In.Tl}});var $o=s(60799),qo={};qo.styleTagTransform=as(),qo.setAttributes=ss(),qo.insert=es().bind(null,"head"),qo.domAPI=Zn(),qo.insertStyleElement=rs(),Xn()($o.A,qo),$o.A&&$o.A.locals&&$o.A.locals;const Ho=(0,Pn.A)(Vo,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("tr",{staticClass:"files-list__row-head"},[e("th",{staticClass:"files-list__column files-list__row-checkbox",on:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"])||e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:t.resetSelection.apply(null,arguments)}}},[e("NcCheckboxRadioSwitch",t._b({on:{"update:checked":t.onToggleAll}},"NcCheckboxRadioSwitch",t.selectAllBind,!1))],1),t._v(" "),e("th",{staticClass:"files-list__column files-list__row-name files-list__column--sortable",attrs:{"aria-sort":t.ariaSortForMode("basename")}},[e("span",{staticClass:"files-list__row-icon"}),t._v(" "),e("FilesListTableHeaderButton",{attrs:{name:t.t("files","Name"),mode:"basename"}})],1),t._v(" "),e("th",{staticClass:"files-list__row-actions"}),t._v(" "),t.isSizeAvailable?e("th",{staticClass:"files-list__column files-list__row-size",class:{"files-list__column--sortable":t.isSizeAvailable},attrs:{"aria-sort":t.ariaSortForMode("size")}},[e("FilesListTableHeaderButton",{attrs:{name:t.t("files","Size"),mode:"size"}})],1):t._e(),t._v(" "),t.isMtimeAvailable?e("th",{staticClass:"files-list__column files-list__row-mtime",class:{"files-list__column--sortable":t.isMtimeAvailable},attrs:{"aria-sort":t.ariaSortForMode("mtime")}},[e("FilesListTableHeaderButton",{attrs:{name:t.t("files","Modified"),mode:"mtime"}})],1):t._e(),t._v(" "),t._l(t.columns,(function(n){return e("th",{key:n.id,class:t.classForColumn(n),attrs:{"aria-sort":t.ariaSortForMode(n.id)}},[n.sort?e("FilesListTableHeaderButton",{attrs:{name:n.title,mode:n.id}}):e("span",[t._v("\n\t\t\t"+t._s(n.title)+"\n\t\t")])],1)}))],2)}),[],!1,null,"952162c2",null).exports;var Wo=s(17334),Go=s.n(Wo),Yo=s(96763);const Ko=r.Ay.extend({name:"VirtualList",mixins:[lr],props:{dataComponent:{type:[Object,Function],required:!0},dataKey:{type:String,required:!0},dataSources:{type:Array,required:!0},extraProps:{type:Object,default:()=>({})},scrollToIndex:{type:Number,default:0},gridMode:{type:Boolean,default:!1},caption:{type:String,default:""}},data(){return{index:this.scrollToIndex,beforeHeight:0,headerHeight:0,tableHeight:0,resizeObserver:null}},computed:{isReady(){return this.tableHeight>0},bufferItems(){return this.gridMode?this.columnCount:3},itemHeight(){return this.gridMode?197:55},itemWidth:()=>175,rowCount(){return Math.ceil((this.tableHeight-this.headerHeight)/this.itemHeight)+this.bufferItems/this.columnCount*2+1},columnCount(){return this.gridMode?Math.floor(this.filesListWidth/this.itemWidth):1},startIndex(){return Math.max(0,this.index-this.bufferItems)},shownItems(){return this.gridMode?this.rowCount*this.columnCount:this.rowCount},renderedItems(){if(!this.isReady)return[];const t=this.dataSources.slice(this.startIndex,this.startIndex+this.shownItems),e=t.filter((t=>Object.values(this.$_recycledPool).includes(t[this.dataKey]))).map((t=>t[this.dataKey])),n=Object.keys(this.$_recycledPool).filter((t=>!e.includes(this.$_recycledPool[t])));return t.map((t=>{const e=Object.values(this.$_recycledPool).indexOf(t[this.dataKey]);if(-1!==e)return{key:Object.keys(this.$_recycledPool)[e],item:t};const s=n.pop()||Math.random().toString(36).substr(2);return this.$_recycledPool[s]=t[this.dataKey],{key:s,item:t}}))},tbodyStyle(){const t=this.startIndex+this.rowCount>this.dataSources.length,e=this.dataSources.length-this.startIndex-this.shownItems,n=Math.floor(Math.min(this.dataSources.length-this.startIndex,e)/this.columnCount);return{paddingTop:"".concat(Math.floor(this.startIndex/this.columnCount)*this.itemHeight,"px"),paddingBottom:t?0:"".concat(n*this.itemHeight,"px")}}},watch:{scrollToIndex(t){this.scrollTo(t)},columnCount(t,e){0!==e?this.scrollTo(this.index):Yo.debug("VirtualList: columnCount is 0, skipping scroll")}},mounted(){var t,e;const n=null===(t=this.$refs)||void 0===t?void 0:t.before,s=this.$el,i=null===(e=this.$refs)||void 0===e?void 0:e.thead;this.resizeObserver=new ResizeObserver((0,Wo.debounce)((()=>{var t,e,r;this.beforeHeight=null!==(t=null==n?void 0:n.clientHeight)&&void 0!==t?t:0,this.headerHeight=null!==(e=null==i?void 0:i.clientHeight)&&void 0!==e?e:0,this.tableHeight=null!==(r=null==s?void 0:s.clientHeight)&&void 0!==r?r:0,Vn.debug("VirtualList: resizeObserver updated"),this.onScroll()}),100,!1)),this.resizeObserver.observe(n),this.resizeObserver.observe(s),this.resizeObserver.observe(i),this.scrollToIndex&&this.scrollTo(this.scrollToIndex),this.$el.addEventListener("scroll",this.onScroll,{passive:!0}),this.$_recycledPool={}},beforeDestroy(){this.resizeObserver&&this.resizeObserver.disconnect()},methods:{scrollTo(t){const e=Math.ceil(this.dataSources.length/this.columnCount);if(e<this.rowCount)return void Vn.debug("VirtualList: Skip scrolling. nothing to scroll",{index:t,targetRow:e,rowCount:this.rowCount});this.index=t;const n=(Math.floor(t/this.columnCount)-.5)*this.itemHeight+this.beforeHeight;Vn.debug("VirtualList: scrolling to index "+t,{scrollTop:n,columnCount:this.columnCount}),this.$el.scrollTop=n},onScroll(){var t;null!==(t=this._onScrollHandle)&&void 0!==t||(this._onScrollHandle=requestAnimationFrame((()=>{this._onScrollHandle=null;const t=this.$el.scrollTop-this.beforeHeight,e=Math.floor(t/this.itemHeight)*this.columnCount;this.index=Math.max(0,e),this.$emit("scroll")})))}}}),Qo=(0,Pn.A)(Ko,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("div",{staticClass:"files-list",attrs:{"data-cy-files-list":""}},[e("div",{ref:"before",staticClass:"files-list__before"},[t._t("before")],2),t._v(" "),t.$scopedSlots["header-overlay"]?e("div",{staticClass:"files-list__thead-overlay"},[t._t("header-overlay")],2):t._e(),t._v(" "),e("table",{staticClass:"files-list__table",class:{"files-list__table--with-thead-overlay":!!t.$scopedSlots["header-overlay"]}},[t.caption?e("caption",{staticClass:"hidden-visually"},[t._v("\n\t\t\t"+t._s(t.caption)+"\n\t\t")]):t._e(),t._v(" "),e("thead",{ref:"thead",staticClass:"files-list__thead",attrs:{"data-cy-files-list-thead":""}},[t._t("header")],2),t._v(" "),e("tbody",{staticClass:"files-list__tbody",class:t.gridMode?"files-list__tbody--grid":"files-list__tbody--list",style:t.tbodyStyle,attrs:{"data-cy-files-list-tbody":""}},t._l(t.renderedItems,(function(n,s){let{key:i,item:r}=n;return e(t.dataComponent,t._b({key:i,tag:"component",attrs:{source:r,index:s}},"component",t.extraProps,!1))})),1),t._v(" "),e("tfoot",{directives:[{name:"show",rawName:"v-show",value:t.isReady,expression:"isReady"}],staticClass:"files-list__tfoot",attrs:{"data-cy-files-list-tfoot":""}},[t._t("footer")],2)])])}),[],!1,null,null,null).exports,Xo=(0,lt.qK)(),Jo=(0,r.pM)({name:"FilesListTableHeaderActions",components:{NcActions:Ur.A,NcActionButton:Dr.A,NcIconSvgWrapper:Un.A,NcLoadingIcon:ui.A},mixins:[lr],props:{currentView:{type:Object,required:!0},selectedNodes:{type:Array,default:()=>[]}},setup:()=>({actionsMenuStore:fr(),filesStore:wi(),selectionStore:bi()}),data:()=>({loading:null}),computed:{dir(){var t;return((null===(t=this.$route)||void 0===t||null===(t=t.query)||void 0===t?void 0:t.dir)||"/").replace(/^(.+)\/$/,"$1")},enabledActions(){return Xo.filter((t=>t.execBatch)).filter((t=>!t.enabled||t.enabled(this.nodes,this.currentView))).sort(((t,e)=>(t.order||0)-(e.order||0)))},nodes(){return this.selectedNodes.map((t=>this.getNode(t))).filter(Boolean)},areSomeNodesLoading(){return this.nodes.some((t=>t.status===lt.zI.LOADING))},openedMenu:{get(){return"global"===this.actionsMenuStore.opened},set(t){this.actionsMenuStore.opened=t?"global":null}},inlineActions(){return this.filesListWidth<512?0:this.filesListWidth<768?1:this.filesListWidth<1024?2:3}},methods:{getNode(t){return this.filesStore.getNode(t)},async onActionClick(t){const e=t.displayName(this.nodes,this.currentView),n=this.selectedNodes;try{this.loading=t.id,this.nodes.forEach((t=>{r.Ay.set(t,"status",lt.zI.LOADING)}));const s=await t.execBatch(this.nodes,this.currentView,this.dir);if(!s.some((t=>null!==t)))return void this.selectionStore.reset();if(s.some((t=>!1===t))){const t=n.filter(((t,e)=>!1===s[e]));if(this.selectionStore.set(t),s.some((t=>null===t)))return;return void(0,qn.Qg)(this.t("files",'"{displayName}" failed on some elements ',{displayName:e}))}(0,qn.Te)(this.t("files",'"{displayName}" batch action executed successfully',{displayName:e})),this.selectionStore.reset()}catch(n){Vn.error("Error while executing action",{action:t,e:n}),(0,qn.Qg)(this.t("files",'"{displayName}" action failed',{displayName:e}))}finally{this.loading=null,this.nodes.forEach((t=>{r.Ay.set(t,"status",void 0)}))}},t:In.Tl}}),Zo=Jo;var ta=s(58017),ea={};ea.styleTagTransform=as(),ea.setAttributes=ss(),ea.insert=es().bind(null,"head"),ea.domAPI=Zn(),ea.insertStyleElement=rs(),Xn()(ta.A,ea),ta.A&&ta.A.locals&&ta.A.locals;var na=(0,Pn.A)(Zo,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("div",{staticClass:"files-list__column files-list__row-actions-batch"},[e("NcActions",{ref:"actionsMenu",attrs:{disabled:!!t.loading||t.areSomeNodesLoading,"force-name":!0,inline:t.inlineActions,"menu-name":t.inlineActions<=1?t.t("files","Actions"):null,open:t.openedMenu},on:{"update:open":function(e){t.openedMenu=e}}},t._l(t.enabledActions,(function(n){return e("NcActionButton",{key:n.id,class:"files-list__row-actions-batch-"+n.id,on:{click:function(e){return t.onActionClick(n)}},scopedSlots:t._u([{key:"icon",fn:function(){return[t.loading===n.id?e("NcLoadingIcon",{attrs:{size:18}}):e("NcIconSvgWrapper",{attrs:{svg:n.iconSvgInline(t.nodes,t.currentView)}})]},proxy:!0}],null,!0)},[t._v("\n\t\t\t"+t._s(n.displayName(t.nodes,t.currentView))+"\n\t\t")])})),1)],1)}),[],!1,null,"d939292c",null);const sa=na.exports,ia=(0,r.pM)({name:"FilesListVirtual",components:{FilesListHeader:So,FilesListTableFooter:Fo,FilesListTableHeader:Ho,VirtualList:Qo,FilesListTableHeaderActions:sa},mixins:[lr],props:{currentView:{type:lt.Ss,required:!0},currentFolder:{type:lt.vd,required:!0},nodes:{type:Array,required:!0}},setup:()=>({userConfigStore:ys(),selectionStore:bi()}),data:()=>({FileEntry:xo,FileEntryGrid:To,headers:(0,lt.By)(),scrollToIndex:0,openFileId:null}),computed:{userConfig(){return this.userConfigStore.userConfig},fileId(){return parseInt(this.$route.params.fileid)||null},openFile(){return!!this.$route.query.openfile},summary(){return Zi(this.nodes)},isMtimeAvailable(){return!(this.filesListWidth<768)&&this.nodes.some((t=>void 0!==t.mtime))},isSizeAvailable(){return!(this.filesListWidth<768)&&this.nodes.some((t=>void 0!==t.attributes.size))},sortedHeaders(){return this.currentFolder&&this.currentView?[...this.headers].sort(((t,e)=>t.order-e.order)):[]},caption(){const t=(0,In.Tl)("files","List of files and folders."),e=this.currentView.caption||t,n=(0,In.Tl)("files","Column headers with buttons are sortable."),s=(0,In.Tl)("files","This list is not fully rendered for performance reasons. The files will be rendered as you navigate through the list.");return"".concat(e,"\n").concat(n,"\n").concat(s)},selectedNodes(){return this.selectionStore.selected},isNoneSelected(){return 0===this.selectedNodes.length}},watch:{fileId(t){this.scrollToFile(t,!1)},openFile(t){t&&this.$nextTick((()=>this.handleOpenFile(this.fileId)))}},mounted(){window.document.querySelector("main.app-content").addEventListener("dragover",this.onDragOver);const{id:t}=(0,jn.C)("files","openFileInfo",{});this.scrollToFile(null!=t?t:this.fileId),this.openSidebarForFile(null!=t?t:this.fileId),this.handleOpenFile(null!=t?t:null)},beforeDestroy(){window.document.querySelector("main.app-content").removeEventListener("dragover",this.onDragOver)},methods:{openSidebarForFile(t){if(document.documentElement.clientWidth>1024&&this.currentFolder.fileid!==t){var e;const n=this.nodes.find((e=>e.fileid===t));n&&null!=Ai&&null!==(e=Ai.enabled)&&void 0!==e&&e.call(Ai,[n],this.currentView)&&(Vn.debug("Opening sidebar on file "+n.path,{node:n}),Ai.exec(n,this.currentView,this.currentFolder.path))}},scrollToFile(t){let e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];if(t){const n=this.nodes.findIndex((e=>e.fileid===t));e&&-1===n&&t!==this.currentFolder.fileid&&(0,qn.Qg)(this.t("files","File not found")),this.scrollToIndex=Math.max(0,n)}},handleOpenFile(t){if(null===t||this.openFileId===t)return;const e=this.nodes.find((e=>e.fileid===t));void 0!==e&&e.type!==lt.pt.Folder&&(Vn.debug("Opening file "+e.path,{node:e}),this.openFileId=t,(0,lt.qK)().filter((t=>!t.enabled||t.enabled([e],this.currentView))).sort(((t,e)=>(t.order||0)-(e.order||0))).filter((t=>!(null==t||!t.default)))[0].exec(e,this.currentView,this.currentFolder.path))},getFileId:t=>t.fileid,onDragOver(t){var e;if(null===(e=t.dataTransfer)||void 0===e?void 0:e.types.includes("Files"))return;t.preventDefault(),t.stopPropagation();const n=this.$refs.table.$el.getBoundingClientRect().top,s=n+this.$refs.table.$el.getBoundingClientRect().height;t.clientY<n+100?this.$refs.table.$el.scrollTop=this.$refs.table.$el.scrollTop-25:t.clientY>s-50&&(this.$refs.table.$el.scrollTop=this.$refs.table.$el.scrollTop+25)},t:In.Tl}});var ra=s(8524),oa={};oa.styleTagTransform=as(),oa.setAttributes=ss(),oa.insert=es().bind(null,"head"),oa.domAPI=Zn(),oa.insertStyleElement=rs(),Xn()(ra.A,oa),ra.A&&ra.A.locals&&ra.A.locals;var aa=s(66936),la={};la.styleTagTransform=as(),la.setAttributes=ss(),la.insert=es().bind(null,"head"),la.domAPI=Zn(),la.insertStyleElement=rs(),Xn()(aa.A,la),aa.A&&aa.A.locals&&aa.A.locals;const ca=(0,Pn.A)(ia,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("VirtualList",{ref:"table",attrs:{"data-component":t.userConfig.grid_view?t.FileEntryGrid:t.FileEntry,"data-key":"source","data-sources":t.nodes,"grid-mode":t.userConfig.grid_view,"extra-props":{isMtimeAvailable:t.isMtimeAvailable,isSizeAvailable:t.isSizeAvailable,nodes:t.nodes,filesListWidth:t.filesListWidth},"scroll-to-index":t.scrollToIndex,caption:t.caption},scopedSlots:t._u([t.isNoneSelected?null:{key:"header-overlay",fn:function(){return[e("FilesListTableHeaderActions",{attrs:{"current-view":t.currentView,"selected-nodes":t.selectedNodes}})]},proxy:!0},{key:"before",fn:function(){return t._l(t.sortedHeaders,(function(n){return e("FilesListHeader",{key:n.id,attrs:{"current-folder":t.currentFolder,"current-view":t.currentView,header:n}})}))},proxy:!0},{key:"header",fn:function(){return[e("FilesListTableHeader",{ref:"thead",attrs:{"files-list-width":t.filesListWidth,"is-mtime-available":t.isMtimeAvailable,"is-size-available":t.isSizeAvailable,nodes:t.nodes}})]},proxy:!0},{key:"footer",fn:function(){return[e("FilesListTableFooter",{attrs:{"files-list-width":t.filesListWidth,"is-mtime-available":t.isMtimeAvailable,"is-size-available":t.isSizeAvailable,nodes:t.nodes,summary:t.summary}})]},proxy:!0}],null,!0)})}),[],!1,null,"2bbbfb12",null).exports,da={name:"TrayArrowDownIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},ua=(0,Pn.A)(da,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon tray-arrow-down-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M2 12H4V17H20V12H22V17C22 18.11 21.11 19 20 19H4C2.9 19 2 18.11 2 17V12M12 15L17.55 9.54L16.13 8.13L13 11.25V2H11V11.25L7.88 8.13L6.46 9.55L12 15Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,ma=(0,r.pM)({name:"DragAndDropNotice",components:{TrayArrowDownIcon:ua},props:{currentFolder:{type:lt.vd,required:!0}},data:()=>({dragover:!1}),computed:{currentView(){return this.$navigation.active},canUpload(){return this.currentFolder&&!!(this.currentFolder.permissions&lt.aX.CREATE)},isQuotaExceeded(){var t;return 0===(null===(t=this.currentFolder)||void 0===t||null===(t=t.attributes)||void 0===t?void 0:t["quota-available-bytes"])},cantUploadLabel(){return this.isQuotaExceeded?this.t("files","Your have used your space quota and cannot upload files anymore"):this.canUpload?null:this.t("files","You don’t have permission to upload or create files here")}},mounted(){const t=window.document.querySelector("main.app-content");t.addEventListener("dragover",this.onDragOver),t.addEventListener("dragleave",this.onDragLeave),t.addEventListener("drop",this.onContentDrop)},beforeDestroy(){const t=window.document.querySelector("main.app-content");t.removeEventListener("dragover",this.onDragOver),t.removeEventListener("dragleave",this.onDragLeave),t.removeEventListener("drop",this.onContentDrop)},methods:{onDragOver(t){var e;t.preventDefault(),(null===(e=t.dataTransfer)||void 0===e?void 0:e.types.includes("Files"))&&(this.dragover=!0)},onDragLeave(t){var e;const n=t.currentTarget;null!=n&&n.contains(null!==(e=t.relatedTarget)&&void 0!==e?e:t.target)||this.dragover&&(this.dragover=!1)},onContentDrop(t){Vn.debug("Drag and drop cancelled, dropped on empty space",{event:t}),t.preventDefault(),this.dragover&&(this.dragover=!1)},async onDrop(t){var e,n,s;if(this.cantUploadLabel)return void(0,qn.Qg)(this.cantUploadLabel);if(null!==(e=this.$el.querySelector("tbody"))&&void 0!==e&&e.contains(t.target))return;t.preventDefault(),t.stopPropagation();const i=[...(null===(n=t.dataTransfer)||void 0===n?void 0:n.items)||[]],r=await ir(i),o=await(null===(s=this.currentView)||void 0===s?void 0:s.getContents(this.currentFolder.path)),a=null==o?void 0:o.folder;if(!a)return void(0,qn.Qg)(this.t("files","Target folder does not exist any more"));if(t.button)return;Vn.debug("Dropped",{event:t,folder:a,fileTree:r});const l=(await rr(r,a,o.contents)).findLast((t=>{var e;return t.status!==ii.c.FAILED&&!t.file.webkitRelativePath.includes("/")&&(null===(e=t.response)||void 0===e||null===(e=e.headers)||void 0===e?void 0:e["oc-fileid"])&&2===t.source.replace(a.source,"").split("/").length}));var c,d;void 0!==l&&(Vn.debug("Scrolling to last upload in current folder",{lastUpload:l}),this.$router.push({...this.$route,params:{view:null!==(c=null===(d=this.$route.params)||void 0===d?void 0:d.view)&&void 0!==c?c:"files",fileid:parseInt(l.response.headers["oc-fileid"])}})),this.dragover=!1},t:In.Tl}});var pa=s(82915),fa={};fa.styleTagTransform=as(),fa.setAttributes=ss(),fa.insert=es().bind(null,"head"),fa.domAPI=Zn(),fa.insertStyleElement=rs(),Xn()(pa.A,fa),pa.A&&pa.A.locals&&pa.A.locals;const ga=(0,Pn.A)(ma,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("div",{directives:[{name:"show",rawName:"v-show",value:t.dragover,expression:"dragover"}],staticClass:"files-list__drag-drop-notice",attrs:{"data-cy-files-drag-drop-area":""},on:{drop:t.onDrop}},[e("div",{staticClass:"files-list__drag-drop-notice-wrapper"},[t.canUpload&&!t.isQuotaExceeded?[e("TrayArrowDownIcon",{attrs:{size:48}}),t._v(" "),e("h3",{staticClass:"files-list-drag-drop-notice__title"},[t._v("\n\t\t\t\t"+t._s(t.t("files","Drag and drop files here to upload"))+"\n\t\t\t")])]:[e("h3",{staticClass:"files-list-drag-drop-notice__title"},[t._v("\n\t\t\t\t"+t._s(t.cantUploadLabel)+"\n\t\t\t")])]],2)])}),[],!1,null,"02c943a6",null).exports;var ha,va=s(96763);const Aa=void 0!==(null===(ha=(0,Ns.F)())||void 0===ha?void 0:ha.files_sharing),wa=(0,r.pM)({name:"FilesList",components:{BreadCrumbs:mr,DragAndDropNotice:ga,FilesListVirtual:ca,LinkIcon:ri.A,ListViewIcon:ai,NcAppContent:li.A,NcButton:ci.A,NcEmptyContent:di.A,NcIconSvgWrapper:Un.A,NcLoadingIcon:ui.A,PlusIcon:mi.A,AccountPlusIcon:fi,UploadPicker:ii.U,ViewGridIcon:hi},mixins:[lr,Oo],setup(){var t;const e=wi(),n=yi(),s=bi(),i=function(){return Ci=(0,ii.g)(),at("uploader",{state:()=>({queue:Ci.queue})})(...arguments)}();return{filesStore:e,pathsStore:n,selectionStore:s,uploaderStore:i,userConfigStore:ys(),viewConfigStore:Rn(),enableGridView:null===(t=(0,jn.C)("core","config",[])["enable_non-accessible_features"])||void 0===t||t}},data:()=>({filterText:"",loading:!0,promise:null,Type:si.Z}),computed:{userConfig(){return this.userConfigStore.userConfig},currentView(){return this.$navigation.active||this.$navigation.views.find((t=>{var e,n;return t.id===(null!==(e=null===(n=this.$route.params)||void 0===n?void 0:n.view)&&void 0!==e?e:"files")}))},pageHeading(){var t,e;return null!==(t=null===(e=this.currentView)||void 0===e?void 0:e.name)&&void 0!==t?t:this.t("files","Files")},dir(){var t;return((null===(t=this.$route)||void 0===t||null===(t=t.query)||void 0===t||null===(t=t.dir)||void 0===t?void 0:t.toString())||"/").replace(/^(.+)\/$/,"$1")},currentFolder(){var t;if(null===(t=this.currentView)||void 0===t||!t.id)return;if("/"===this.dir)return this.filesStore.getRoot(this.currentView.id);const e=this.pathsStore.getPath(this.currentView.id,this.dir);return this.filesStore.getNode(e)},sortingParameters(){return[[...this.userConfig.sort_favorites_first?[t=>{var e;return 1!==(null===(e=t.attributes)||void 0===e?void 0:e.favorite)}]:[],...this.userConfig.sort_folders_first?[t=>"folder"!==t.type]:[],..."basename"!==this.sortingMode?[t=>t[this.sortingMode]]:[],t=>{var e;return(null===(e=t.attributes)||void 0===e?void 0:e.displayName)||t.basename},t=>t.basename],[...this.userConfig.sort_favorites_first?["asc"]:[],...this.userConfig.sort_folders_first?["asc"]:[],..."mtime"===this.sortingMode?[this.isAscSorting?"desc":"asc"]:[],..."mtime"!==this.sortingMode&&"basename"!==this.sortingMode?[this.isAscSorting?"asc":"desc"]:[],this.isAscSorting?"asc":"desc",this.isAscSorting?"asc":"desc"]]},dirContentsSorted(){var t;if(!this.currentView)return[];let e=[...this.dirContents];this.filterText&&(e=e.filter((t=>t.attributes.basename.toLowerCase().includes(this.filterText.toLowerCase()))),va.debug("Files view filtered",e));const n=((null===(t=this.currentView)||void 0===t?void 0:t.columns)||[]).find((t=>t.id===this.sortingMode));if(null!=n&&n.sort&&"function"==typeof n.sort){const t=[...this.dirContents].sort(n.sort);return this.isAscSorting?t:t.reverse()}return ei(e,...this.sortingParameters)},dirContents(){var t,e;const n=null===(t=this.userConfigStore)||void 0===t?void 0:t.userConfig.show_hidden;return((null===(e=this.currentFolder)||void 0===e?void 0:e._children)||[]).map(this.getNode).filter((t=>{var e;return n?!!t:t&&!0!==(null==t||null===(e=t.attributes)||void 0===e?void 0:e.hidden)&&!(null!=t&&t.basename.startsWith("."))}))},isEmptyDir(){return 0===this.dirContents.length},isRefreshing(){return void 0!==this.currentFolder&&!this.isEmptyDir&&this.loading},toPreviousDir(){const t=this.dir.split("/").slice(0,-1).join("/")||"/";return{...this.$route,query:{dir:t}}},shareAttributes(){var t,e;if(null!==(t=this.currentFolder)&&void 0!==t&&null!==(t=t.attributes)&&void 0!==t&&t["share-types"])return Object.values((null===(e=this.currentFolder)||void 0===e||null===(e=e.attributes)||void 0===e?void 0:e["share-types"])||{}).flat()},shareButtonLabel(){return this.shareAttributes?this.shareButtonType===si.Z.SHARE_TYPE_LINK?this.t("files","Shared by link"):this.t("files","Shared"):this.t("files","Share")},shareButtonType(){return this.shareAttributes?this.shareAttributes.some((t=>t===si.Z.SHARE_TYPE_LINK))?si.Z.SHARE_TYPE_LINK:si.Z.SHARE_TYPE_USER:null},gridViewButtonLabel(){return this.userConfig.grid_view?this.t("files","Switch to list view"):this.t("files","Switch to grid view")},canUpload(){return this.currentFolder&&!!(this.currentFolder.permissions&lt.aX.CREATE)},isQuotaExceeded(){var t;return 0===(null===(t=this.currentFolder)||void 0===t||null===(t=t.attributes)||void 0===t?void 0:t["quota-available-bytes"])},cantUploadLabel(){return this.isQuotaExceeded?this.t("files","Your have used your space quota and cannot upload files anymore"):this.t("files","You don’t have permission to upload or create files here")},canShare(){return Aa&&this.currentFolder&&!!(this.currentFolder.permissions&lt.aX.SHARE)}},watch:{currentView(t,e){(null==t?void 0:t.id)!==(null==e?void 0:e.id)&&(Vn.debug("View changed",{newView:t,oldView:e}),this.selectionStore.reset(),this.fetchContent())},dir(t,e){var n;Vn.debug("Directory changed",{newDir:t,oldDir:e}),this.selectionStore.reset(),this.fetchContent(),null!==(n=this.$refs)&&void 0!==n&&null!==(n=n.filesListVirtual)&&void 0!==n&&n.$el&&(this.$refs.filesListVirtual.$el.scrollTop=0)},dirContents(t){Vn.debug("Directory contents changed",{view:this.currentView,folder:this.currentFolder,contents:t}),(0,Nn.Ic)("files:list:updated",{view:this.currentView,folder:this.currentFolder,contents:t})}},mounted(){this.fetchContent(),(0,Nn.B1)("files:node:updated",this.onUpdatedNode),(0,Nn.B1)("nextcloud:unified-search.search",this.onSearch),(0,Nn.B1)("nextcloud:unified-search.reset",this.onSearch)},unmounted(){(0,Nn.al)("files:node:updated",this.onUpdatedNode)},methods:{async fetchContent(){var t;this.loading=!0;const e=this.dir,n=this.currentView;if(n){"function"==typeof(null===(t=this.promise)||void 0===t?void 0:t.cancel)&&(this.promise.cancel(),Vn.debug("Cancelled previous ongoing fetch")),this.promise=n.getContents(e);try{const{folder:t,contents:s}=await this.promise;Vn.debug("Fetched contents",{dir:e,folder:t,contents:s}),this.filesStore.updateNodes(s),this.$set(t,"_children",s.map((t=>t.fileid))),"/"===e?this.filesStore.setRoot({service:n.id,root:t}):t.fileid?(this.filesStore.updateNodes([t]),this.pathsStore.addPath({service:n.id,fileid:t.fileid,path:e})):Vn.error("Invalid root folder returned",{dir:e,folder:t,currentView:n}),s.filter((t=>"folder"===t.type)).forEach((t=>{this.pathsStore.addPath({service:n.id,fileid:t.fileid,path:(0,Is.join)(e,t.basename)})}))}catch(t){Vn.error("Error while fetching content",{error:t})}finally{this.loading=!1}}else Vn.debug("The current view doesn't exists or is not ready.",{currentView:n})},getNode(t){return this.filesStore.getNode(t)},onUpload(t){var e;(0,Is.dirname)(t.source)===(null===(e=this.currentFolder)||void 0===e?void 0:e.source)&&this.fetchContent()},async onUploadFail(t){var e;const n=(null===(e=t.response)||void 0===e?void 0:e.status)||0;if(507!==n)if(404!==n&&409!==n)if(403!==n){try{var s;const e=new ni.Parser({trim:!0,explicitRoot:!1}),n=(await e.parseStringPromise(null===(s=t.response)||void 0===s?void 0:s.data))["s:message"][0];if("string"==typeof n&&""!==n.trim())return void(0,qn.Qg)(this.t("files","Error during upload: {message}",{message:n}))}catch(t){Vn.error("Error while parsing",{error:t})}0===n?(0,qn.Qg)(this.t("files","Unknown error during upload")):(0,qn.Qg)(this.t("files","Error during upload, status code {status}",{status:n}))}else(0,qn.Qg)(this.t("files","Operation is blocked by access control"));else(0,qn.Qg)(this.t("files","Target folder does not exist any more"));else(0,qn.Qg)(this.t("files","Not enough free space"))},onUpdatedNode(t){var e;(null==t?void 0:t.fileid)===(null===(e=this.currentFolder)||void 0===e?void 0:e.fileid)&&this.fetchContent()},onSearch:Go()((function(t){va.debug("Files app handling search event from unified search...",t),this.filterText=t.query}),500),openSharingSidebar(){var t;this.currentFolder?(null!==(t=window)&&void 0!==t&&null!==(t=t.OCA)&&void 0!==t&&null!==(t=t.Files)&&void 0!==t&&null!==(t=t.Sidebar)&&void 0!==t&&t.setActiveTab&&window.OCA.Files.Sidebar.setActiveTab("sharing"),Ai.exec(this.currentFolder,this.currentView,this.currentFolder.path)):Vn.debug("No current folder found for opening sharing sidebar")},toggleGridView(){this.userConfigStore.update("grid_view",!this.userConfig.grid_view)},t:In.Tl,n:In.zw}});var ya=s(60912),ba={};ba.styleTagTransform=as(),ba.setAttributes=ss(),ba.insert=es().bind(null,"head"),ba.domAPI=Zn(),ba.insertStyleElement=rs(),Xn()(ya.A,ba),ya.A&&ya.A.locals&&ya.A.locals;const Ca=(0,Pn.A)(wa,(function(){var t,e,n=this,s=n._self._c;return n._self._setupProxy,s("NcAppContent",{attrs:{"page-heading":n.pageHeading,"data-cy-files-content":""}},[s("div",{staticClass:"files-list__header"},[s("BreadCrumbs",{attrs:{path:n.dir},on:{reload:n.fetchContent},scopedSlots:n._u([{key:"actions",fn:function(){return[n.canShare&&n.filesListWidth>=512?s("NcButton",{staticClass:"files-list__header-share-button",class:{"files-list__header-share-button--shared":n.shareButtonType},attrs:{"aria-label":n.shareButtonLabel,title:n.shareButtonLabel,type:"tertiary"},on:{click:n.openSharingSidebar},scopedSlots:n._u([{key:"icon",fn:function(){return[n.shareButtonType===n.Type.SHARE_TYPE_LINK?s("LinkIcon"):s("AccountPlusIcon",{attrs:{size:20}})]},proxy:!0}],null,!1,2969853559)}):n._e(),n._v(" "),!n.canUpload||n.isQuotaExceeded?s("NcButton",{staticClass:"files-list__header-upload-button--disabled",attrs:{"aria-label":n.cantUploadLabel,title:n.cantUploadLabel,disabled:!0,type:"secondary"},scopedSlots:n._u([{key:"icon",fn:function(){return[s("PlusIcon",{attrs:{size:20}})]},proxy:!0}],null,!1,2953566425)},[n._v("\n\t\t\t\t\t"+n._s(n.t("files","New"))+"\n\t\t\t\t")]):n.currentFolder?s("UploadPicker",{staticClass:"files-list__header-upload-button",attrs:{content:n.dirContents,destination:n.currentFolder,multiple:!0},on:{failed:n.onUploadFail,uploaded:n.onUpload}}):n._e()]},proxy:!0}])}),n._v(" "),n.filesListWidth>=512&&n.enableGridView?s("NcButton",{staticClass:"files-list__header-grid-button",attrs:{"aria-label":n.gridViewButtonLabel,title:n.gridViewButtonLabel,type:"tertiary"},on:{click:n.toggleGridView},scopedSlots:n._u([{key:"icon",fn:function(){return[n.userConfig.grid_view?s("ListViewIcon"):s("ViewGridIcon")]},proxy:!0}],null,!1,1682960703)}):n._e(),n._v(" "),n.isRefreshing?s("NcLoadingIcon",{staticClass:"files-list__refresh-icon"}):n._e()],1),n._v(" "),!n.loading&&n.canUpload?s("DragAndDropNotice",{attrs:{"current-folder":n.currentFolder}}):n._e(),n._v(" "),n.loading&&!n.isRefreshing?s("NcLoadingIcon",{staticClass:"files-list__loading-icon",attrs:{size:38,name:n.t("files","Loading current folder")}}):!n.loading&&n.isEmptyDir?s("NcEmptyContent",{attrs:{name:(null===(t=n.currentView)||void 0===t?void 0:t.emptyTitle)||n.t("files","No files in here"),description:(null===(e=n.currentView)||void 0===e?void 0:e.emptyCaption)||n.t("files","Upload some content or sync with your devices!"),"data-cy-files-content-empty":""},scopedSlots:n._u([{key:"action",fn:function(){return["/"!==n.dir?s("NcButton",{attrs:{"aria-label":n.t("files","Go to the previous folder"),type:"primary",to:n.toPreviousDir}},[n._v("\n\t\t\t\t"+n._s(n.t("files","Go back"))+"\n\t\t\t")]):n._e()]},proxy:!0},{key:"icon",fn:function(){return[s("NcIconSvgWrapper",{attrs:{svg:n.currentView.icon}})]},proxy:!0}])}):s("FilesListVirtual",{ref:"filesListVirtual",attrs:{"current-folder":n.currentFolder,"current-view":n.currentView,nodes:n.dirContentsSorted}})],1)}),[],!1,null,"1b7c1ce0",null).exports,xa=(0,r.pM)({name:"FilesApp",components:{NcContent:Ln.A,FilesList:Ca,Navigation:Ls}}),_a=(0,Pn.A)(xa,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("NcContent",{attrs:{"app-name":"files"}},[e("Navigation"),t._v(" "),e("FilesList")],1)}),[],!1,null,null,null).exports;var Ta,ka;s.nc=btoa((0,ct.do)()),window.OCA.Files=null!==(Ta=window.OCA.Files)&&void 0!==Ta?Ta:{},window.OCP.Files=null!==(ka=window.OCP.Files)&&void 0!==ka?ka:{};const Ea=new class{constructor(t){var e,n,s;e=this,s=void 0,(n=function(t){var e=function(t,e){if("object"!=typeof t||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var s=n.call(t,"string");if("object"!=typeof s)return s;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==typeof e?e:e+""}(n="_router"))in e?Object.defineProperty(e,n,{value:s,enumerable:!0,configurable:!0,writable:!0}):e[n]=s,this._router=t}get name(){return this._router.currentRoute.name}get query(){return this._router.currentRoute.query||{}}get params(){return this._router.currentRoute.params||{}}goTo(t){let e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return this._router.push({path:t,replace:e})}goToRoute(t,e,n,s){return this._router.push({name:t,query:n,params:e,replace:s})}}(kn);Object.assign(window.OCP.Files,{Router:Ea}),r.Ay.use((function(t){t.mixin({beforeCreate(){const t=this.$options;if(t.pinia){const e=t.pinia;if(!this._provided){const t={};Object.defineProperty(this,"_provided",{get:()=>t,set:e=>Object.assign(t,e)})}this._provided[v]=e,this.$pinia||(this.$pinia=e),e._a=this,y&&h(e),b&&G(e._a,e)}else!this.$pinia&&t.parent&&t.parent.$pinia&&(this.$pinia=t.parent.$pinia)},destroyed(){delete this._pStores}})}));const Sa=function(){const t=(0,r.uY)(!0),e=t.run((()=>(0,r.KR)({})));let n=[],s=[];const i=(0,r.IG)({install(t){h(i),o||(i._a=t,t.provide(v,i),t.config.globalProperties.$pinia=i,b&&G(t,i),s.forEach((t=>n.push(t))),s=[])},use(t){return this._a||o?n.push(t):s.push(t),this},_p:n,_a:null,_e:t,_s:new Map,state:e});return b&&"undefined"!=typeof Proxy&&i.use(X),i}(),La=r.Ay.observable((0,lt.bh)());r.Ay.prototype.$navigation=La;const Na=new class{constructor(){var t,e,n;t=this,n=void 0,(e=function(t){var e=function(t,e){if("object"!=typeof t||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var s=n.call(t,"string");if("object"!=typeof s)return s;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==typeof e?e:e+""}(e="_settings"))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,this._settings=[],Sn.debug("OCA.Files.Settings initialized")}register(t){return this._settings.filter((e=>e.name===t.name)).length>0?(Sn.error("A setting with the same name is already registered"),!1):(this._settings.push(t),!0)}get settings(){return this._settings}};Object.assign(window.OCA.Files,{Settings:Na}),Object.assign(window.OCA.Files.Settings,{Setting:class{constructor(t,e){let{el:n,open:s,close:i}=e;En(this,"_close",void 0),En(this,"_el",void 0),En(this,"_name",void 0),En(this,"_open",void 0),this._name=t,this._el=n,this._open=s,this._close=i,"function"!=typeof this._open&&(this._open=()=>{}),"function"!=typeof this._close&&(this._close=()=>{})}get name(){return this._name}get el(){return this._el}get open(){return this._open}get close(){return this._close}}}),new(r.Ay.extend(_a))({router:kn,pinia:Sa}).$mount("#content")},36117:function(t,e,n){var s,i,r=n(96763);function o(t){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},o(t)}"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,s=function(t){"use strict";function e(t,n){return e=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},e(t,n)}function n(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=s(t);if(e){var r=s(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return function(t,e){if(e&&("object"===o(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,n)}}function s(t){return s=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},s(t)}function i(t,e){var n="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!n){if(Array.isArray(t)||(n=function(t,e){if(t){if("string"==typeof t)return a(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(t):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?a(t,e):void 0}}(t))||e&&t&&"number"==typeof t.length){n&&(t=n);var s=0,i=function(){};return{s:i,n:function(){return s>=t.length?{done:!0}:{done:!1,value:t[s++]}},e:function(t){throw t},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var r,o=!0,l=!1;return{s:function(){n=n.call(t)},n:function(){var t=n.next();return o=t.done,t},e:function(t){l=!0,r=t},f:function(){try{o||null==n.return||n.return()}finally{if(l)throw r}}}}function a(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,s=new Array(e);n<e;n++)s[n]=t[n];return s}function l(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function c(t,e){for(var n=0;n<e.length;n++){var s=e[n];s.enumerable=s.enumerable||!1,s.configurable=!0,"value"in s&&(s.writable=!0),Object.defineProperty(t,s.key,s)}}function d(t,e,n){return e&&c(t.prototype,e),n&&c(t,n),Object.defineProperty(t,"prototype",{writable:!1}),t}function u(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function m(t,e,n){(function(t,e){if(e.has(t))throw new TypeError("Cannot initialize the same private elements twice on an object")})(t,e),e.set(t,n)}function p(t,e){return function(t,e){return e.get?e.get.call(t):e.value}(t,g(t,e,"get"))}function f(t,e,n){return function(t,e,n){if(e.set)e.set.call(t,n);else{if(!e.writable)throw new TypeError("attempted to set read only private field");e.value=n}}(t,g(t,e,"set"),n),n}function g(t,e,n){if(!e.has(t))throw new TypeError("attempted to "+n+" private field on non-instance");return e.get(t)}Object.defineProperty(t,"__esModule",{value:!0}),t.CancelablePromise=void 0,t.cancelable=C,t.default=void 0,t.isCancelablePromise=x;var h="undefined"!=typeof Symbol?Symbol.toStringTag:"@@toStringTag",v=new WeakMap,A=new WeakMap,w=function(){function t(e){var n=e.executor,s=void 0===n?function(){}:n,i=e.internals,r=void 0===i?{isCanceled:!1,onCancelList:[]}:i,o=e.promise,a=void 0===o?new Promise((function(t,e){return s(t,e,(function(t){r.onCancelList.push(t)}))})):o;l(this,t),m(this,v,{writable:!0,value:void 0}),m(this,A,{writable:!0,value:void 0}),u(this,h,"CancelablePromise"),this.cancel=this.cancel.bind(this),f(this,v,r),f(this,A,a||new Promise((function(t,e){return s(t,e,(function(t){r.onCancelList.push(t)}))})))}return d(t,[{key:"then",value:function(t,e){return T(p(this,A).then(_(t,p(this,v)),_(e,p(this,v))),p(this,v))}},{key:"catch",value:function(t){return T(p(this,A).catch(_(t,p(this,v))),p(this,v))}},{key:"finally",value:function(t,e){var n=this;return e&&p(this,v).onCancelList.push(t),T(p(this,A).finally(_((function(){if(t)return e&&(p(n,v).onCancelList=p(n,v).onCancelList.filter((function(e){return e!==t}))),t()}),p(this,v))),p(this,v))}},{key:"cancel",value:function(){p(this,v).isCanceled=!0;var t=p(this,v).onCancelList;p(this,v).onCancelList=[];var e,n=i(t);try{for(n.s();!(e=n.n()).done;){var s=e.value;if("function"==typeof s)try{s()}catch(t){r.error(t)}}}catch(t){n.e(t)}finally{n.f()}}},{key:"isCanceled",value:function(){return!0===p(this,v).isCanceled}}]),t}(),y=function(t){!function(t,n){if("function"!=typeof n&&null!==n)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(n&&n.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),n&&e(t,n)}(i,t);var s=n(i);function i(t){return l(this,i),s.call(this,{executor:t})}return d(i)}(w);t.CancelablePromise=y,u(y,"all",(function(t){return k(t,Promise.all(t))})),u(y,"allSettled",(function(t){return k(t,Promise.allSettled(t))})),u(y,"any",(function(t){return k(t,Promise.any(t))})),u(y,"race",(function(t){return k(t,Promise.race(t))})),u(y,"resolve",(function(t){return C(Promise.resolve(t))})),u(y,"reject",(function(t){return C(Promise.reject(t))})),u(y,"isCancelable",x);var b=y;function C(t){return T(t,{isCanceled:!1,onCancelList:[]})}function x(t){return t instanceof y||t instanceof w}function _(t,e){if(t)return function(n){if(!e.isCanceled){var s=t(n);return x(s)&&e.onCancelList.push(s.cancel),s}return n}}function T(t,e){return new w({internals:e,promise:t})}function k(t,e){var n={isCanceled:!1,onCancelList:[]};return n.onCancelList.push((function(){var e,n=i(t);try{for(n.s();!(e=n.n()).done;){var s=e.value;x(s)&&s.cancel()}}catch(t){n.e(t)}finally{n.f()}})),new w({internals:n,promise:e})}t.default=b},void 0===(i=s.apply(e,[e]))||(t.exports=i)},14456:(t,e,n)=>{"use strict";n.d(e,{A:()=>f});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r),a=n(4417),l=n.n(a),c=new URL(n(57273),n.b),d=new URL(n(63710),n.b),u=o()(i()),m=l()(c),p=l()(d);u.push([t.id,`@charset "UTF-8";\n/**\n * @copyright Copyright (c) 2019 Julius Härtl <jus@bitgrid.net>\n *\n * @author Julius Härtl <jus@bitgrid.net>\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n */\n.toastify.dialogs {\n min-width: 200px;\n background: none;\n background-color: var(--color-main-background);\n color: var(--color-main-text);\n box-shadow: 0 0 6px 0 var(--color-box-shadow);\n padding: 0 12px;\n margin-top: 45px;\n position: fixed;\n z-index: 10100;\n border-radius: var(--border-radius);\n display: flex;\n align-items: center;\n}\n.toastify.dialogs .toast-undo-container {\n display: flex;\n align-items: center;\n}\n.toastify.dialogs .toast-undo-button,\n.toastify.dialogs .toast-close {\n position: static;\n overflow: hidden;\n box-sizing: border-box;\n min-width: 44px;\n height: 100%;\n padding: 12px;\n white-space: nowrap;\n background-repeat: no-repeat;\n background-position: center;\n background-color: transparent;\n min-height: 0;\n}\n.toastify.dialogs .toast-undo-button.toast-close,\n.toastify.dialogs .toast-close.toast-close {\n text-indent: 0;\n opacity: .4;\n border: none;\n min-height: 44px;\n margin-left: 10px;\n font-size: 0;\n}\n.toastify.dialogs .toast-undo-button.toast-close:before,\n.toastify.dialogs .toast-close.toast-close:before {\n background-image: url(${m});\n content: " ";\n filter: var(--background-invert-if-dark);\n display: inline-block;\n width: 16px;\n height: 16px;\n}\n.toastify.dialogs .toast-undo-button.toast-undo-button,\n.toastify.dialogs .toast-close.toast-undo-button {\n height: calc(100% - 6px);\n margin: 3px 3px 3px 12px;\n}\n.toastify.dialogs .toast-undo-button:hover,\n.toastify.dialogs .toast-undo-button:focus,\n.toastify.dialogs .toast-undo-button:active,\n.toastify.dialogs .toast-close:hover,\n.toastify.dialogs .toast-close:focus,\n.toastify.dialogs .toast-close:active {\n cursor: pointer;\n opacity: 1;\n}\n.toastify.dialogs.toastify-top {\n right: 10px;\n}\n.toastify.dialogs.toast-with-click {\n cursor: pointer;\n}\n.toastify.dialogs.toast-error {\n border-left: 3px solid var(--color-error);\n}\n.toastify.dialogs.toast-info {\n border-left: 3px solid var(--color-primary);\n}\n.toastify.dialogs.toast-warning {\n border-left: 3px solid var(--color-warning);\n}\n.toastify.dialogs.toast-success,\n.toastify.dialogs.toast-undo {\n border-left: 3px solid var(--color-success);\n}\n.theme--dark .toastify.dialogs .toast-close.toast-close:before {\n background-image: url(${p});\n}\n._file-picker__file-icon_1vgv4_5 {\n width: 32px;\n height: 32px;\n min-width: 32px;\n min-height: 32px;\n background-repeat: no-repeat;\n background-size: contain;\n display: flex;\n justify-content: center;\n}\ntr.file-picker__row[data-v-6aded0d9] {\n height: var(--row-height, 50px);\n}\ntr.file-picker__row td[data-v-6aded0d9] {\n cursor: pointer;\n overflow: hidden;\n text-overflow: ellipsis;\n border-bottom: none;\n}\ntr.file-picker__row td.row-checkbox[data-v-6aded0d9] {\n padding: 0 2px;\n}\ntr.file-picker__row td[data-v-6aded0d9]:not(.row-checkbox) {\n padding-inline: 14px 0;\n}\ntr.file-picker__row td.row-size[data-v-6aded0d9] {\n text-align: end;\n padding-inline: 0 14px;\n}\ntr.file-picker__row td.row-name[data-v-6aded0d9] {\n padding-inline: 2px 0;\n}\n@keyframes gradient-6aded0d9 {\n 0% {\n background-position: 0% 50%;\n }\n 50% {\n background-position: 100% 50%;\n }\n to {\n background-position: 0% 50%;\n }\n}\n.loading-row .row-checkbox[data-v-6aded0d9] {\n text-align: center !important;\n}\n.loading-row span[data-v-6aded0d9] {\n display: inline-block;\n height: 24px;\n background: linear-gradient(to right, var(--color-background-darker), var(--color-text-maxcontrast), var(--color-background-darker));\n background-size: 600px 100%;\n border-radius: var(--border-radius);\n animation: gradient-6aded0d9 12s ease infinite;\n}\n.loading-row .row-wrapper[data-v-6aded0d9] {\n display: inline-flex;\n align-items: center;\n}\n.loading-row .row-checkbox span[data-v-6aded0d9] {\n width: 24px;\n}\n.loading-row .row-name span[data-v-6aded0d9]:last-of-type {\n margin-inline-start: 6px;\n width: 130px;\n}\n.loading-row .row-size span[data-v-6aded0d9] {\n width: 80px;\n}\n.loading-row .row-modified span[data-v-6aded0d9] {\n width: 90px;\n}\ntr.file-picker__row[data-v-48df4f27] {\n height: var(--row-height, 50px);\n}\ntr.file-picker__row td[data-v-48df4f27] {\n cursor: pointer;\n overflow: hidden;\n text-overflow: ellipsis;\n border-bottom: none;\n}\ntr.file-picker__row td.row-checkbox[data-v-48df4f27] {\n padding: 0 2px;\n}\ntr.file-picker__row td[data-v-48df4f27]:not(.row-checkbox) {\n padding-inline: 14px 0;\n}\ntr.file-picker__row td.row-size[data-v-48df4f27] {\n text-align: end;\n padding-inline: 0 14px;\n}\ntr.file-picker__row td.row-name[data-v-48df4f27] {\n padding-inline: 2px 0;\n}\n.file-picker__row--selected[data-v-48df4f27] {\n background-color: var(--color-background-dark);\n}\n.file-picker__row[data-v-48df4f27]:hover {\n background-color: var(--color-background-hover);\n}\n.file-picker__name-container[data-v-48df4f27] {\n display: flex;\n justify-content: start;\n align-items: center;\n height: 100%;\n}\n.file-picker__file-name[data-v-48df4f27] {\n padding-inline-start: 6px;\n min-width: 0;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.file-picker__file-extension[data-v-48df4f27] {\n color: var(--color-text-maxcontrast);\n min-width: fit-content;\n}\n.file-picker__header-preview[data-v-d3c94818] {\n width: 22px;\n height: 32px;\n flex: 0 0 auto;\n}\n.file-picker__files[data-v-d3c94818] {\n margin: 2px;\n margin-inline-start: 12px;\n overflow: scroll auto;\n}\n.file-picker__files table[data-v-d3c94818] {\n width: 100%;\n max-height: 100%;\n table-layout: fixed;\n}\n.file-picker__files th[data-v-d3c94818] {\n position: sticky;\n z-index: 1;\n top: 0;\n background-color: var(--color-main-background);\n padding: 2px;\n}\n.file-picker__files th .header-wrapper[data-v-d3c94818] {\n display: flex;\n}\n.file-picker__files th.row-checkbox[data-v-d3c94818] {\n width: 44px;\n}\n.file-picker__files th.row-name[data-v-d3c94818] {\n width: 230px;\n}\n.file-picker__files th.row-size[data-v-d3c94818] {\n width: 100px;\n}\n.file-picker__files th.row-modified[data-v-d3c94818] {\n width: 120px;\n}\n.file-picker__files th[data-v-d3c94818]:not(.row-size) .button-vue__wrapper {\n justify-content: start;\n flex-direction: row-reverse;\n}\n.file-picker__files th[data-v-d3c94818]:not(.row-size) .button-vue {\n padding-inline: 16px 4px;\n}\n.file-picker__files th.row-size[data-v-d3c94818] .button-vue__wrapper {\n justify-content: end;\n}\n.file-picker__files th[data-v-d3c94818] .button-vue__wrapper {\n color: var(--color-text-maxcontrast);\n}\n.file-picker__files th[data-v-d3c94818] .button-vue__wrapper .button-vue__text {\n font-weight: 400;\n}\n.file-picker__breadcrumbs[data-v-a25a2652] {\n flex-grow: 0 !important;\n}\n.file-picker__side[data-v-a06474d4] {\n display: flex;\n flex-direction: column;\n align-items: stretch;\n gap: .5rem;\n min-width: 200px;\n padding: 2px;\n margin-block-start: 7px;\n overflow: auto;\n}\n.file-picker__side[data-v-a06474d4] .button-vue__wrapper {\n justify-content: start;\n}\n.file-picker__filter-input[data-v-a06474d4] {\n margin-block: 7px;\n max-width: 260px;\n}\n@media (max-width: 736px) {\n .file-picker__side[data-v-a06474d4] {\n flex-direction: row;\n min-width: unset;\n }\n}\n@media (max-width: 512px) {\n .file-picker__side[data-v-a06474d4] {\n flex-direction: row;\n min-width: unset;\n }\n .file-picker__filter-input[data-v-a06474d4] {\n max-width: unset;\n }\n}\n.file-picker__navigation {\n padding-inline: 8px 2px;\n}\n.file-picker__navigation,\n.file-picker__navigation * {\n box-sizing: border-box;\n}\n.file-picker__navigation .v-select.select {\n min-width: 220px;\n}\n@media (min-width: 513px) and (max-width: 736px) {\n .file-picker__navigation {\n gap: 11px;\n }\n}\n@media (max-width: 512px) {\n .file-picker__navigation {\n flex-direction: column-reverse !important;\n }\n}\n.file-picker__view[data-v-9def3ca4] {\n height: 50px;\n display: flex;\n justify-content: start;\n align-items: center;\n}\n.file-picker__view h3[data-v-9def3ca4] {\n font-weight: 700;\n height: fit-content;\n margin: 0;\n}\n.file-picker__main[data-v-9def3ca4] {\n box-sizing: border-box;\n width: 100%;\n display: flex;\n flex-direction: column;\n min-height: 0;\n flex: 1;\n padding-inline: 2px;\n}\n.file-picker__main *[data-v-9def3ca4] {\n box-sizing: border-box;\n}\n[data-v-9def3ca4] .file-picker {\n height: min(80vh, 800px) !important;\n}\n@media (max-width: 512px) {\n [data-v-9def3ca4] .file-picker {\n height: calc(100% - 16px - var(--default-clickable-area)) !important;\n }\n}\n[data-v-9def3ca4] .file-picker__content {\n display: flex;\n flex-direction: column;\n overflow: hidden;\n}\n`,"",{version:3,sources:["webpack://./node_modules/@nextcloud/dialogs/dist/style.css"],names:[],mappings:"AAAA,gBAAgB;AAChB;;;;;;;;;;;;;;;;;;;;EAoBE;AACF;EACE,gBAAgB;EAChB,gBAAgB;EAChB,8CAA8C;EAC9C,6BAA6B;EAC7B,6CAA6C;EAC7C,eAAe;EACf,gBAAgB;EAChB,eAAe;EACf,cAAc;EACd,mCAAmC;EACnC,aAAa;EACb,mBAAmB;AACrB;AACA;EACE,aAAa;EACb,mBAAmB;AACrB;AACA;;EAEE,gBAAgB;EAChB,gBAAgB;EAChB,sBAAsB;EACtB,eAAe;EACf,YAAY;EACZ,aAAa;EACb,mBAAmB;EACnB,4BAA4B;EAC5B,2BAA2B;EAC3B,6BAA6B;EAC7B,aAAa;AACf;AACA;;EAEE,cAAc;EACd,WAAW;EACX,YAAY;EACZ,gBAAgB;EAChB,iBAAiB;EACjB,YAAY;AACd;AACA;;EAEE,yDAA8Q;EAC9Q,YAAY;EACZ,wCAAwC;EACxC,qBAAqB;EACrB,WAAW;EACX,YAAY;AACd;AACA;;EAEE,wBAAwB;EACxB,wBAAwB;AAC1B;AACA;;;;;;EAME,eAAe;EACf,UAAU;AACZ;AACA;EACE,WAAW;AACb;AACA;EACE,eAAe;AACjB;AACA;EACE,yCAAyC;AAC3C;AACA;EACE,2CAA2C;AAC7C;AACA;EACE,2CAA2C;AAC7C;AACA;;EAEE,2CAA2C;AAC7C;AACA;EACE,yDAAsT;AACxT;AACA;EACE,WAAW;EACX,YAAY;EACZ,eAAe;EACf,gBAAgB;EAChB,4BAA4B;EAC5B,wBAAwB;EACxB,aAAa;EACb,uBAAuB;AACzB;AACA;EACE,+BAA+B;AACjC;AACA;EACE,eAAe;EACf,gBAAgB;EAChB,uBAAuB;EACvB,mBAAmB;AACrB;AACA;EACE,cAAc;AAChB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,eAAe;EACf,sBAAsB;AACxB;AACA;EACE,qBAAqB;AACvB;AACA;EACE;IACE,2BAA2B;EAC7B;EACA;IACE,6BAA6B;EAC/B;EACA;IACE,2BAA2B;EAC7B;AACF;AACA;EACE,6BAA6B;AAC/B;AACA;EACE,qBAAqB;EACrB,YAAY;EACZ,oIAAoI;EACpI,2BAA2B;EAC3B,mCAAmC;EACnC,8CAA8C;AAChD;AACA;EACE,oBAAoB;EACpB,mBAAmB;AACrB;AACA;EACE,WAAW;AACb;AACA;EACE,wBAAwB;EACxB,YAAY;AACd;AACA;EACE,WAAW;AACb;AACA;EACE,WAAW;AACb;AACA;EACE,+BAA+B;AACjC;AACA;EACE,eAAe;EACf,gBAAgB;EAChB,uBAAuB;EACvB,mBAAmB;AACrB;AACA;EACE,cAAc;AAChB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,eAAe;EACf,sBAAsB;AACxB;AACA;EACE,qBAAqB;AACvB;AACA;EACE,8CAA8C;AAChD;AACA;EACE,+CAA+C;AACjD;AACA;EACE,aAAa;EACb,sBAAsB;EACtB,mBAAmB;EACnB,YAAY;AACd;AACA;EACE,yBAAyB;EACzB,YAAY;EACZ,gBAAgB;EAChB,uBAAuB;AACzB;AACA;EACE,oCAAoC;EACpC,sBAAsB;AACxB;AACA;EACE,WAAW;EACX,YAAY;EACZ,cAAc;AAChB;AACA;EACE,WAAW;EACX,yBAAyB;EACzB,qBAAqB;AACvB;AACA;EACE,WAAW;EACX,gBAAgB;EAChB,mBAAmB;AACrB;AACA;EACE,gBAAgB;EAChB,UAAU;EACV,MAAM;EACN,8CAA8C;EAC9C,YAAY;AACd;AACA;EACE,aAAa;AACf;AACA;EACE,WAAW;AACb;AACA;EACE,YAAY;AACd;AACA;EACE,YAAY;AACd;AACA;EACE,YAAY;AACd;AACA;EACE,sBAAsB;EACtB,2BAA2B;AAC7B;AACA;EACE,wBAAwB;AAC1B;AACA;EACE,oBAAoB;AACtB;AACA;EACE,oCAAoC;AACtC;AACA;EACE,gBAAgB;AAClB;AACA;EACE,uBAAuB;AACzB;AACA;EACE,aAAa;EACb,sBAAsB;EACtB,oBAAoB;EACpB,UAAU;EACV,gBAAgB;EAChB,YAAY;EACZ,uBAAuB;EACvB,cAAc;AAChB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,iBAAiB;EACjB,gBAAgB;AAClB;AACA;EACE;IACE,mBAAmB;IACnB,gBAAgB;EAClB;AACF;AACA;EACE;IACE,mBAAmB;IACnB,gBAAgB;EAClB;EACA;IACE,gBAAgB;EAClB;AACF;AACA;EACE,uBAAuB;AACzB;AACA;;EAEE,sBAAsB;AACxB;AACA;EACE,gBAAgB;AAClB;AACA;EACE;IACE,SAAS;EACX;AACF;AACA;EACE;IACE,yCAAyC;EAC3C;AACF;AACA;EACE,YAAY;EACZ,aAAa;EACb,sBAAsB;EACtB,mBAAmB;AACrB;AACA;EACE,gBAAgB;EAChB,mBAAmB;EACnB,SAAS;AACX;AACA;EACE,sBAAsB;EACtB,WAAW;EACX,aAAa;EACb,sBAAsB;EACtB,aAAa;EACb,OAAO;EACP,mBAAmB;AACrB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,mCAAmC;AACrC;AACA;EACE;IACE,oEAAoE;EACtE;AACF;AACA;EACE,aAAa;EACb,sBAAsB;EACtB,gBAAgB;AAClB",sourcesContent:["@charset \"UTF-8\";\n/**\n * @copyright Copyright (c) 2019 Julius Härtl <jus@bitgrid.net>\n *\n * @author Julius Härtl <jus@bitgrid.net>\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n */\n.toastify.dialogs {\n min-width: 200px;\n background: none;\n background-color: var(--color-main-background);\n color: var(--color-main-text);\n box-shadow: 0 0 6px 0 var(--color-box-shadow);\n padding: 0 12px;\n margin-top: 45px;\n position: fixed;\n z-index: 10100;\n border-radius: var(--border-radius);\n display: flex;\n align-items: center;\n}\n.toastify.dialogs .toast-undo-container {\n display: flex;\n align-items: center;\n}\n.toastify.dialogs .toast-undo-button,\n.toastify.dialogs .toast-close {\n position: static;\n overflow: hidden;\n box-sizing: border-box;\n min-width: 44px;\n height: 100%;\n padding: 12px;\n white-space: nowrap;\n background-repeat: no-repeat;\n background-position: center;\n background-color: transparent;\n min-height: 0;\n}\n.toastify.dialogs .toast-undo-button.toast-close,\n.toastify.dialogs .toast-close.toast-close {\n text-indent: 0;\n opacity: .4;\n border: none;\n min-height: 44px;\n margin-left: 10px;\n font-size: 0;\n}\n.toastify.dialogs .toast-undo-button.toast-close:before,\n.toastify.dialogs .toast-close.toast-close:before {\n background-image: url(\"data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20height='16'%20width='16'%3e%3cpath%20d='M14%2012.3L12.3%2014%208%209.7%203.7%2014%202%2012.3%206.3%208%202%203.7%203.7%202%208%206.3%2012.3%202%2014%203.7%209.7%208z'/%3e%3c/svg%3e\");\n content: \" \";\n filter: var(--background-invert-if-dark);\n display: inline-block;\n width: 16px;\n height: 16px;\n}\n.toastify.dialogs .toast-undo-button.toast-undo-button,\n.toastify.dialogs .toast-close.toast-undo-button {\n height: calc(100% - 6px);\n margin: 3px 3px 3px 12px;\n}\n.toastify.dialogs .toast-undo-button:hover,\n.toastify.dialogs .toast-undo-button:focus,\n.toastify.dialogs .toast-undo-button:active,\n.toastify.dialogs .toast-close:hover,\n.toastify.dialogs .toast-close:focus,\n.toastify.dialogs .toast-close:active {\n cursor: pointer;\n opacity: 1;\n}\n.toastify.dialogs.toastify-top {\n right: 10px;\n}\n.toastify.dialogs.toast-with-click {\n cursor: pointer;\n}\n.toastify.dialogs.toast-error {\n border-left: 3px solid var(--color-error);\n}\n.toastify.dialogs.toast-info {\n border-left: 3px solid var(--color-primary);\n}\n.toastify.dialogs.toast-warning {\n border-left: 3px solid var(--color-warning);\n}\n.toastify.dialogs.toast-success,\n.toastify.dialogs.toast-undo {\n border-left: 3px solid var(--color-success);\n}\n.theme--dark .toastify.dialogs .toast-close.toast-close:before {\n background-image: url(\"data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20height='16'%20width='16'%3e%3cpath%20d='M14%2012.3L12.3%2014%208%209.7%203.7%2014%202%2012.3%206.3%208%202%203.7%203.7%202%208%206.3%2012.3%202%2014%203.7%209.7%208z'%20style='fill-opacity:1;fill:%23ffffff'/%3e%3c/svg%3e\");\n}\n._file-picker__file-icon_1vgv4_5 {\n width: 32px;\n height: 32px;\n min-width: 32px;\n min-height: 32px;\n background-repeat: no-repeat;\n background-size: contain;\n display: flex;\n justify-content: center;\n}\ntr.file-picker__row[data-v-6aded0d9] {\n height: var(--row-height, 50px);\n}\ntr.file-picker__row td[data-v-6aded0d9] {\n cursor: pointer;\n overflow: hidden;\n text-overflow: ellipsis;\n border-bottom: none;\n}\ntr.file-picker__row td.row-checkbox[data-v-6aded0d9] {\n padding: 0 2px;\n}\ntr.file-picker__row td[data-v-6aded0d9]:not(.row-checkbox) {\n padding-inline: 14px 0;\n}\ntr.file-picker__row td.row-size[data-v-6aded0d9] {\n text-align: end;\n padding-inline: 0 14px;\n}\ntr.file-picker__row td.row-name[data-v-6aded0d9] {\n padding-inline: 2px 0;\n}\n@keyframes gradient-6aded0d9 {\n 0% {\n background-position: 0% 50%;\n }\n 50% {\n background-position: 100% 50%;\n }\n to {\n background-position: 0% 50%;\n }\n}\n.loading-row .row-checkbox[data-v-6aded0d9] {\n text-align: center !important;\n}\n.loading-row span[data-v-6aded0d9] {\n display: inline-block;\n height: 24px;\n background: linear-gradient(to right, var(--color-background-darker), var(--color-text-maxcontrast), var(--color-background-darker));\n background-size: 600px 100%;\n border-radius: var(--border-radius);\n animation: gradient-6aded0d9 12s ease infinite;\n}\n.loading-row .row-wrapper[data-v-6aded0d9] {\n display: inline-flex;\n align-items: center;\n}\n.loading-row .row-checkbox span[data-v-6aded0d9] {\n width: 24px;\n}\n.loading-row .row-name span[data-v-6aded0d9]:last-of-type {\n margin-inline-start: 6px;\n width: 130px;\n}\n.loading-row .row-size span[data-v-6aded0d9] {\n width: 80px;\n}\n.loading-row .row-modified span[data-v-6aded0d9] {\n width: 90px;\n}\ntr.file-picker__row[data-v-48df4f27] {\n height: var(--row-height, 50px);\n}\ntr.file-picker__row td[data-v-48df4f27] {\n cursor: pointer;\n overflow: hidden;\n text-overflow: ellipsis;\n border-bottom: none;\n}\ntr.file-picker__row td.row-checkbox[data-v-48df4f27] {\n padding: 0 2px;\n}\ntr.file-picker__row td[data-v-48df4f27]:not(.row-checkbox) {\n padding-inline: 14px 0;\n}\ntr.file-picker__row td.row-size[data-v-48df4f27] {\n text-align: end;\n padding-inline: 0 14px;\n}\ntr.file-picker__row td.row-name[data-v-48df4f27] {\n padding-inline: 2px 0;\n}\n.file-picker__row--selected[data-v-48df4f27] {\n background-color: var(--color-background-dark);\n}\n.file-picker__row[data-v-48df4f27]:hover {\n background-color: var(--color-background-hover);\n}\n.file-picker__name-container[data-v-48df4f27] {\n display: flex;\n justify-content: start;\n align-items: center;\n height: 100%;\n}\n.file-picker__file-name[data-v-48df4f27] {\n padding-inline-start: 6px;\n min-width: 0;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.file-picker__file-extension[data-v-48df4f27] {\n color: var(--color-text-maxcontrast);\n min-width: fit-content;\n}\n.file-picker__header-preview[data-v-d3c94818] {\n width: 22px;\n height: 32px;\n flex: 0 0 auto;\n}\n.file-picker__files[data-v-d3c94818] {\n margin: 2px;\n margin-inline-start: 12px;\n overflow: scroll auto;\n}\n.file-picker__files table[data-v-d3c94818] {\n width: 100%;\n max-height: 100%;\n table-layout: fixed;\n}\n.file-picker__files th[data-v-d3c94818] {\n position: sticky;\n z-index: 1;\n top: 0;\n background-color: var(--color-main-background);\n padding: 2px;\n}\n.file-picker__files th .header-wrapper[data-v-d3c94818] {\n display: flex;\n}\n.file-picker__files th.row-checkbox[data-v-d3c94818] {\n width: 44px;\n}\n.file-picker__files th.row-name[data-v-d3c94818] {\n width: 230px;\n}\n.file-picker__files th.row-size[data-v-d3c94818] {\n width: 100px;\n}\n.file-picker__files th.row-modified[data-v-d3c94818] {\n width: 120px;\n}\n.file-picker__files th[data-v-d3c94818]:not(.row-size) .button-vue__wrapper {\n justify-content: start;\n flex-direction: row-reverse;\n}\n.file-picker__files th[data-v-d3c94818]:not(.row-size) .button-vue {\n padding-inline: 16px 4px;\n}\n.file-picker__files th.row-size[data-v-d3c94818] .button-vue__wrapper {\n justify-content: end;\n}\n.file-picker__files th[data-v-d3c94818] .button-vue__wrapper {\n color: var(--color-text-maxcontrast);\n}\n.file-picker__files th[data-v-d3c94818] .button-vue__wrapper .button-vue__text {\n font-weight: 400;\n}\n.file-picker__breadcrumbs[data-v-a25a2652] {\n flex-grow: 0 !important;\n}\n.file-picker__side[data-v-a06474d4] {\n display: flex;\n flex-direction: column;\n align-items: stretch;\n gap: .5rem;\n min-width: 200px;\n padding: 2px;\n margin-block-start: 7px;\n overflow: auto;\n}\n.file-picker__side[data-v-a06474d4] .button-vue__wrapper {\n justify-content: start;\n}\n.file-picker__filter-input[data-v-a06474d4] {\n margin-block: 7px;\n max-width: 260px;\n}\n@media (max-width: 736px) {\n .file-picker__side[data-v-a06474d4] {\n flex-direction: row;\n min-width: unset;\n }\n}\n@media (max-width: 512px) {\n .file-picker__side[data-v-a06474d4] {\n flex-direction: row;\n min-width: unset;\n }\n .file-picker__filter-input[data-v-a06474d4] {\n max-width: unset;\n }\n}\n.file-picker__navigation {\n padding-inline: 8px 2px;\n}\n.file-picker__navigation,\n.file-picker__navigation * {\n box-sizing: border-box;\n}\n.file-picker__navigation .v-select.select {\n min-width: 220px;\n}\n@media (min-width: 513px) and (max-width: 736px) {\n .file-picker__navigation {\n gap: 11px;\n }\n}\n@media (max-width: 512px) {\n .file-picker__navigation {\n flex-direction: column-reverse !important;\n }\n}\n.file-picker__view[data-v-9def3ca4] {\n height: 50px;\n display: flex;\n justify-content: start;\n align-items: center;\n}\n.file-picker__view h3[data-v-9def3ca4] {\n font-weight: 700;\n height: fit-content;\n margin: 0;\n}\n.file-picker__main[data-v-9def3ca4] {\n box-sizing: border-box;\n width: 100%;\n display: flex;\n flex-direction: column;\n min-height: 0;\n flex: 1;\n padding-inline: 2px;\n}\n.file-picker__main *[data-v-9def3ca4] {\n box-sizing: border-box;\n}\n[data-v-9def3ca4] .file-picker {\n height: min(80vh, 800px) !important;\n}\n@media (max-width: 512px) {\n [data-v-9def3ca4] .file-picker {\n height: calc(100% - 16px - var(--default-clickable-area)) !important;\n }\n}\n[data-v-9def3ca4] .file-picker__content {\n display: flex;\n flex-direction: column;\n overflow: hidden;\n}\n"],sourceRoot:""}]);const f=u},61872:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".upload-picker[data-v-eca9500a] {\n display: inline-flex;\n align-items: center;\n height: 44px;\n}\n.upload-picker__progress[data-v-eca9500a] {\n width: 200px;\n max-width: 0;\n transition: max-width var(--animation-quick) ease-in-out;\n margin-top: 8px;\n}\n.upload-picker__progress p[data-v-eca9500a] {\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.upload-picker--uploading .upload-picker__progress[data-v-eca9500a] {\n max-width: 200px;\n margin-right: 20px;\n margin-left: 8px;\n}\n.upload-picker--paused .upload-picker__progress[data-v-eca9500a] {\n animation: breathing-eca9500a 3s ease-out infinite normal;\n}\n@keyframes breathing-eca9500a {\n 0% {\n opacity: .5;\n }\n 25% {\n opacity: 1;\n }\n 60% {\n opacity: .5;\n }\n to {\n opacity: .5;\n }\n}\n","",{version:3,sources:["webpack://./node_modules/@nextcloud/upload/dist/assets/index-FLLHP6Jd.css"],names:[],mappings:"AAAA;EACE,oBAAoB;EACpB,mBAAmB;EACnB,YAAY;AACd;AACA;EACE,YAAY;EACZ,YAAY;EACZ,wDAAwD;EACxD,eAAe;AACjB;AACA;EACE,gBAAgB;EAChB,mBAAmB;EACnB,uBAAuB;AACzB;AACA;EACE,gBAAgB;EAChB,kBAAkB;EAClB,gBAAgB;AAClB;AACA;EACE,yDAAyD;AAC3D;AACA;EACE;IACE,WAAW;EACb;EACA;IACE,UAAU;EACZ;EACA;IACE,WAAW;EACb;EACA;IACE,WAAW;EACb;AACF",sourcesContent:[".upload-picker[data-v-eca9500a] {\n display: inline-flex;\n align-items: center;\n height: 44px;\n}\n.upload-picker__progress[data-v-eca9500a] {\n width: 200px;\n max-width: 0;\n transition: max-width var(--animation-quick) ease-in-out;\n margin-top: 8px;\n}\n.upload-picker__progress p[data-v-eca9500a] {\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.upload-picker--uploading .upload-picker__progress[data-v-eca9500a] {\n max-width: 200px;\n margin-right: 20px;\n margin-left: 8px;\n}\n.upload-picker--paused .upload-picker__progress[data-v-eca9500a] {\n animation: breathing-eca9500a 3s ease-out infinite normal;\n}\n@keyframes breathing-eca9500a {\n 0% {\n opacity: .5;\n }\n 25% {\n opacity: 1;\n }\n 60% {\n opacity: .5;\n }\n to {\n opacity: .5;\n }\n}\n"],sourceRoot:""}]);const a=o},98518:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".breadcrumb[data-v-159e0cca]{flex:1 1 100% !important;width:100%}.breadcrumb[data-v-159e0cca] a{cursor:pointer !important}","",{version:3,sources:["webpack://./apps/files/src/components/BreadCrumbs.vue"],names:[],mappings:"AACA,6BAEC,wBAAA,CACA,UAAA,CAEA,+BACC,yBAAA",sourcesContent:["\n.breadcrumb {\n\t// Take as much space as possible\n\tflex: 1 1 100% !important;\n\twidth: 100%;\n\n\t::v-deep a {\n\t\tcursor: pointer !important;\n\t}\n}\n\n"],sourceRoot:""}]);const a=o},82915:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".files-list__drag-drop-notice[data-v-02c943a6]{display:flex;align-items:center;justify-content:center;width:100%;min-height:113px;margin:0;user-select:none;color:var(--color-text-maxcontrast);background-color:var(--color-main-background);border-color:#000}.files-list__drag-drop-notice h3[data-v-02c943a6]{margin-left:16px;color:inherit}.files-list__drag-drop-notice-wrapper[data-v-02c943a6]{display:flex;align-items:center;justify-content:center;height:15vh;max-height:70%;padding:0 5vw;border:2px var(--color-border-dark) dashed;border-radius:var(--border-radius-large)}","",{version:3,sources:["webpack://./apps/files/src/components/DragAndDropNotice.vue"],names:[],mappings:"AACA,+CACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAEA,gBAAA,CACA,QAAA,CACA,gBAAA,CACA,mCAAA,CACA,6CAAA,CACA,iBAAA,CAEA,kDACC,gBAAA,CACA,aAAA,CAGD,uDACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,WAAA,CACA,cAAA,CACA,aAAA,CACA,0CAAA,CACA,wCAAA",sourcesContent:["\n.files-list__drag-drop-notice {\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\twidth: 100%;\n\t// Breadcrumbs height + row thead height\n\tmin-height: calc(58px + 55px);\n\tmargin: 0;\n\tuser-select: none;\n\tcolor: var(--color-text-maxcontrast);\n\tbackground-color: var(--color-main-background);\n\tborder-color: black;\n\n\th3 {\n\t\tmargin-left: 16px;\n\t\tcolor: inherit;\n\t}\n\n\t&-wrapper {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\theight: 15vh;\n\t\tmax-height: 70%;\n\t\tpadding: 0 5vw;\n\t\tborder: 2px var(--color-border-dark) dashed;\n\t\tborder-radius: var(--border-radius-large);\n\t}\n}\n\n"],sourceRoot:""}]);const a=o},52608:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".files-list-drag-image{position:absolute;top:-9999px;left:-9999px;display:flex;overflow:hidden;align-items:center;height:44px;padding:6px 12px;background:var(--color-main-background)}.files-list-drag-image__icon,.files-list-drag-image .files-list__row-icon{display:flex;overflow:hidden;align-items:center;justify-content:center;width:32px;height:32px;border-radius:var(--border-radius)}.files-list-drag-image__icon{overflow:visible;margin-right:12px}.files-list-drag-image__icon img{max-width:100%;max-height:100%}.files-list-drag-image__icon .material-design-icon{color:var(--color-text-maxcontrast)}.files-list-drag-image__icon .material-design-icon.folder-icon{color:var(--color-primary-element)}.files-list-drag-image__icon>span{display:flex}.files-list-drag-image__icon>span .files-list__row-icon+.files-list__row-icon{margin-top:6px;margin-left:-26px}.files-list-drag-image__icon>span .files-list__row-icon+.files-list__row-icon+.files-list__row-icon{margin-top:12px}.files-list-drag-image__icon>span:not(:empty)+*{display:none}.files-list-drag-image__name{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}","",{version:3,sources:["webpack://./apps/files/src/components/DragAndDropPreview.vue"],names:[],mappings:"AAIA,uBACC,iBAAA,CACA,WAAA,CACA,YAAA,CACA,YAAA,CACA,eAAA,CACA,kBAAA,CACA,WAAA,CACA,gBAAA,CACA,uCAAA,CAEA,0EAEC,YAAA,CACA,eAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CACA,WAAA,CACA,kCAAA,CAGD,6BACC,gBAAA,CACA,iBAAA,CAEA,iCACC,cAAA,CACA,eAAA,CAGD,mDACC,mCAAA,CACA,+DACC,kCAAA,CAKF,kCACC,YAAA,CAGA,8EACC,cA9CU,CA+CV,iBAAA,CACA,oGACC,eAAA,CAKF,gDACC,YAAA,CAKH,6BACC,eAAA,CACA,kBAAA,CACA,sBAAA",sourcesContent:["\n$size: 32px;\n$stack-shift: 6px;\n\n.files-list-drag-image {\n\tposition: absolute;\n\ttop: -9999px;\n\tleft: -9999px;\n\tdisplay: flex;\n\toverflow: hidden;\n\talign-items: center;\n\theight: 44px;\n\tpadding: 6px 12px;\n\tbackground: var(--color-main-background);\n\n\t&__icon,\n\t.files-list__row-icon {\n\t\tdisplay: flex;\n\t\toverflow: hidden;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\twidth: 32px;\n\t\theight: 32px;\n\t\tborder-radius: var(--border-radius);\n\t}\n\n\t&__icon {\n\t\toverflow: visible;\n\t\tmargin-right: 12px;\n\n\t\timg {\n\t\t\tmax-width: 100%;\n\t\t\tmax-height: 100%;\n\t\t}\n\n\t\t.material-design-icon {\n\t\t\tcolor: var(--color-text-maxcontrast);\n\t\t\t&.folder-icon {\n\t\t\t\tcolor: var(--color-primary-element);\n\t\t\t}\n\t\t}\n\n\t\t// Previews container\n\t\t> span {\n\t\t\tdisplay: flex;\n\n\t\t\t// Stack effect if more than one element\n\t\t\t.files-list__row-icon + .files-list__row-icon {\n\t\t\t\tmargin-top: $stack-shift;\n\t\t\t\tmargin-left: $stack-shift - $size;\n\t\t\t\t& + .files-list__row-icon {\n\t\t\t\t\tmargin-top: $stack-shift * 2;\n\t\t\t\t}\n\t\t\t}\n\t\t\t// If we have manually clone the preview,\n\t\t\t// let's hide any fallback icons\n\t\t\t&:not(:empty) + * {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\t}\n\n\t&__name {\n\t\toverflow: hidden;\n\t\twhite-space: nowrap;\n\t\ttext-overflow: ellipsis;\n\t}\n}\n\n"],sourceRoot:""}]);const a=o},55559:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".favorite-marker-icon[data-v-04e52abc]{color:#a08b00;min-width:unset !important;min-height:unset !important}.favorite-marker-icon[data-v-04e52abc] svg{width:26px !important;height:26px !important;max-width:unset !important;max-height:unset !important}.favorite-marker-icon[data-v-04e52abc] svg path{stroke:var(--color-main-background);stroke-width:8px;stroke-linejoin:round;paint-order:stroke}","",{version:3,sources:["webpack://./apps/files/src/components/FileEntry/FavoriteIcon.vue"],names:[],mappings:"AACA,uCACC,aAAA,CAEA,0BAAA,CACG,2BAAA,CAGF,4CAEC,qBAAA,CACA,sBAAA,CAGA,0BAAA,CACA,2BAAA,CAGA,iDACC,mCAAA,CACA,gBAAA,CACA,qBAAA,CACA,kBAAA",sourcesContent:["\n.favorite-marker-icon {\n\tcolor: #a08b00;\n\t// Override NcIconSvgWrapper defaults (clickable area)\n\tmin-width: unset !important;\n min-height: unset !important;\n\n\t:deep() {\n\t\tsvg {\n\t\t\t// We added a stroke for a11y so we must increase the size to include the stroke\n\t\t\twidth: 26px !important;\n\t\t\theight: 26px !important;\n\n\t\t\t// Override NcIconSvgWrapper defaults of 20px\n\t\t\tmax-width: unset !important;\n\t\t\tmax-height: unset !important;\n\n\t\t\t// Sow a border around the icon for better contrast\n\t\t\tpath {\n\t\t\t\tstroke: var(--color-main-background);\n\t\t\t\tstroke-width: 8px;\n\t\t\t\tstroke-linejoin: round;\n\t\t\t\tpaint-order: stroke;\n\t\t\t}\n\t\t}\n\t}\n}\n"],sourceRoot:""}]);const a=o},91613:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,"main.app-content[style*=mouse-pos-x] .v-popper__popper{transform:translate3d(var(--mouse-pos-x), var(--mouse-pos-y), 0px) !important}main.app-content[style*=mouse-pos-x] .v-popper__popper[data-popper-placement=top]{transform:translate3d(var(--mouse-pos-x), calc(var(--mouse-pos-y) - 50vh + 34px), 0px) !important}main.app-content[style*=mouse-pos-x] .v-popper__popper .v-popper__arrow-container{display:none}","",{version:3,sources:["webpack://./apps/files/src/components/FileEntry/FileEntryActions.vue"],names:[],mappings:"AAGA,uDACC,6EAAA,CAGA,kFAEC,iGAAA,CAGD,kFACC,YAAA",sourcesContent:['\n// Allow right click to define the position of the menu\n// only if defined\nmain.app-content[style*="mouse-pos-x"] .v-popper__popper {\n\ttransform: translate3d(var(--mouse-pos-x), var(--mouse-pos-y), 0px) !important;\n\n\t// If the menu is too close to the bottom, we move it up\n\t&[data-popper-placement="top"] {\n\t\t// 34px added to align with the top of the cursor\n\t\ttransform: translate3d(var(--mouse-pos-x), calc(var(--mouse-pos-y) - 50vh + 34px), 0px) !important;\n\t}\n\t// Hide arrow if floating\n\t.v-popper__arrow-container {\n\t\tdisplay: none;\n\t}\n}\n'],sourceRoot:""}]);const a=o},63337:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,"[data-v-6168180a] .button-vue--icon-and-text .button-vue__text{color:var(--color-primary-element)}[data-v-6168180a] .button-vue--icon-and-text .button-vue__icon{color:var(--color-primary-element)}","",{version:3,sources:["webpack://./apps/files/src/components/FileEntry/FileEntryActions.vue"],names:[],mappings:"AAEC,+DACC,kCAAA,CAED,+DACC,kCAAA",sourcesContent:["\n:deep(.button-vue--icon-and-text, .files-list__row-action-sharing-status) {\n\t.button-vue__text {\n\t\tcolor: var(--color-primary-element);\n\t}\n\t.button-vue__icon {\n\t\tcolor: var(--color-primary-element);\n\t}\n}\n"],sourceRoot:""}]);const a=o},31840:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,"tr[data-v-a85bde20]{margin-bottom:300px;border-top:1px solid var(--color-border);background-color:rgba(0,0,0,0) !important;border-bottom:none !important}tr td[data-v-a85bde20]{user-select:none;color:var(--color-text-maxcontrast) !important}","",{version:3,sources:["webpack://./apps/files/src/components/FilesListTableFooter.vue"],names:[],mappings:"AAEA,oBACC,mBAAA,CACA,wCAAA,CAEA,yCAAA,CACA,6BAAA,CAEA,uBACC,gBAAA,CAEA,8CAAA",sourcesContent:["\n// Scoped row\ntr {\n\tmargin-bottom: 300px;\n\tborder-top: 1px solid var(--color-border);\n\t// Prevent hover effect on the whole row\n\tbackground-color: transparent !important;\n\tborder-bottom: none !important;\n\n\ttd {\n\t\tuser-select: none;\n\t\t// Make sure the cell colors don't apply to column headers\n\t\tcolor: var(--color-text-maxcontrast) !important;\n\t}\n}\n"],sourceRoot:""}]);const a=o},60799:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".files-list__column[data-v-952162c2]{user-select:none;color:var(--color-text-maxcontrast) !important}.files-list__column--sortable[data-v-952162c2]{cursor:pointer}","",{version:3,sources:["webpack://./apps/files/src/components/FilesListTableHeader.vue"],names:[],mappings:"AACA,qCACC,gBAAA,CAEA,8CAAA,CAEA,+CACC,cAAA",sourcesContent:["\n.files-list__column {\n\tuser-select: none;\n\t// Make sure the cell colors don't apply to column headers\n\tcolor: var(--color-text-maxcontrast) !important;\n\n\t&--sortable {\n\t\tcursor: pointer;\n\t}\n}\n\n"],sourceRoot:""}]);const a=o},58017:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".files-list__row-actions-batch[data-v-d939292c]{flex:1 1 100% !important;max-width:100%}","",{version:3,sources:["webpack://./apps/files/src/components/FilesListTableHeaderActions.vue"],names:[],mappings:"AACA,gDACC,wBAAA,CACA,cAAA",sourcesContent:["\n.files-list__row-actions-batch {\n\tflex: 1 1 100% !important;\n\tmax-width: 100%;\n}\n"],sourceRoot:""}]);const a=o},75290:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".files-list__column-sort-button[data-v-097f69d4]{margin:0 calc(var(--cell-margin)*-1);min-width:calc(100% - 3*var(--cell-margin)) !important}.files-list__column-sort-button-text[data-v-097f69d4]{color:var(--color-text-maxcontrast);font-weight:normal}.files-list__column-sort-button-icon[data-v-097f69d4]{color:var(--color-text-maxcontrast);opacity:0;transition:opacity var(--animation-quick);inset-inline-start:-10px}.files-list__column-sort-button--size .files-list__column-sort-button-icon[data-v-097f69d4]{inset-inline-start:10px}.files-list__column-sort-button--active .files-list__column-sort-button-icon[data-v-097f69d4],.files-list__column-sort-button:hover .files-list__column-sort-button-icon[data-v-097f69d4],.files-list__column-sort-button:focus .files-list__column-sort-button-icon[data-v-097f69d4],.files-list__column-sort-button:active .files-list__column-sort-button-icon[data-v-097f69d4]{opacity:1}","",{version:3,sources:["webpack://./apps/files/src/components/FilesListTableHeaderButton.vue"],names:[],mappings:"AACA,iDAEC,oCAAA,CACA,sDAAA,CAEA,sDACC,mCAAA,CACA,kBAAA,CAGD,sDACC,mCAAA,CACA,SAAA,CACA,yCAAA,CACA,wBAAA,CAGD,4FACC,uBAAA,CAGD,mXAIC,SAAA",sourcesContent:["\n.files-list__column-sort-button {\n\t// Compensate for cells margin\n\tmargin: 0 calc(var(--cell-margin) * -1);\n\tmin-width: calc(100% - 3 * var(--cell-margin))!important;\n\n\t&-text {\n\t\tcolor: var(--color-text-maxcontrast);\n\t\tfont-weight: normal;\n\t}\n\n\t&-icon {\n\t\tcolor: var(--color-text-maxcontrast);\n\t\topacity: 0;\n\t\ttransition: opacity var(--animation-quick);\n\t\tinset-inline-start: -10px;\n\t}\n\n\t&--size &-icon {\n\t\tinset-inline-start: 10px;\n\t}\n\n\t&--active &-icon,\n\t&:hover &-icon,\n\t&:focus &-icon,\n\t&:active &-icon {\n\t\topacity: 1;\n\t}\n}\n"],sourceRoot:""}]);const a=o},8524:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".files-list[data-v-2bbbfb12]{--row-height: 55px;--cell-margin: 14px;--checkbox-padding: calc((var(--row-height) - var(--checkbox-size)) / 2);--checkbox-size: 24px;--clickable-area: 44px;--icon-preview-size: 32px;overflow:auto;height:100%;will-change:scroll-position}.files-list[data-v-2bbbfb12] tbody{will-change:padding;contain:layout paint style;display:flex;flex-direction:column;width:100%;position:relative}.files-list[data-v-2bbbfb12] tbody tr{contain:strict}.files-list[data-v-2bbbfb12] tbody tr:hover,.files-list[data-v-2bbbfb12] tbody tr:focus{background-color:var(--color-background-dark)}.files-list[data-v-2bbbfb12] .files-list__before{display:flex;flex-direction:column}.files-list[data-v-2bbbfb12] .files-list__table{display:block}.files-list[data-v-2bbbfb12] .files-list__table.files-list__table--with-thead-overlay{margin-top:calc(-1*var(--row-height))}.files-list[data-v-2bbbfb12] .files-list__thead-overlay{position:sticky;top:0;margin-left:var(--row-height);z-index:20;display:flex;align-items:center;background-color:var(--color-main-background);border-bottom:1px solid var(--color-border);height:var(--row-height)}.files-list[data-v-2bbbfb12] .files-list__thead,.files-list[data-v-2bbbfb12] .files-list__tfoot{display:flex;flex-direction:column;width:100%;background-color:var(--color-main-background)}.files-list[data-v-2bbbfb12] .files-list__thead{position:sticky;z-index:10;top:0}.files-list[data-v-2bbbfb12] .files-list__tfoot{min-height:300px}.files-list[data-v-2bbbfb12] tr{position:relative;display:flex;align-items:center;width:100%;user-select:none;border-bottom:1px solid var(--color-border);box-sizing:border-box;user-select:none;height:var(--row-height)}.files-list[data-v-2bbbfb12] td,.files-list[data-v-2bbbfb12] th{display:flex;align-items:center;flex:0 0 auto;justify-content:left;width:var(--row-height);height:var(--row-height);margin:0;padding:0;color:var(--color-text-maxcontrast);border:none}.files-list[data-v-2bbbfb12] td span,.files-list[data-v-2bbbfb12] th span{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.files-list[data-v-2bbbfb12] .files-list__row--failed{position:absolute;display:block;top:0;left:0;right:0;bottom:0;opacity:.1;z-index:-1;background:var(--color-error)}.files-list[data-v-2bbbfb12] .files-list__row-checkbox{justify-content:center}.files-list[data-v-2bbbfb12] .files-list__row-checkbox .checkbox-radio-switch{display:flex;justify-content:center;--icon-size: var(--checkbox-size)}.files-list[data-v-2bbbfb12] .files-list__row-checkbox .checkbox-radio-switch label.checkbox-radio-switch__label{width:var(--clickable-area);height:var(--clickable-area);margin:0;padding:calc((var(--clickable-area) - var(--checkbox-size))/2)}.files-list[data-v-2bbbfb12] .files-list__row-checkbox .checkbox-radio-switch .checkbox-radio-switch__icon{margin:0 !important}.files-list[data-v-2bbbfb12] .files-list__row:hover,.files-list[data-v-2bbbfb12] .files-list__row:focus,.files-list[data-v-2bbbfb12] .files-list__row:active,.files-list[data-v-2bbbfb12] .files-list__row--active,.files-list[data-v-2bbbfb12] .files-list__row--dragover{background-color:var(--color-background-hover);--color-text-maxcontrast: var(--color-main-text)}.files-list[data-v-2bbbfb12] .files-list__row:hover>*,.files-list[data-v-2bbbfb12] .files-list__row:focus>*,.files-list[data-v-2bbbfb12] .files-list__row:active>*,.files-list[data-v-2bbbfb12] .files-list__row--active>*,.files-list[data-v-2bbbfb12] .files-list__row--dragover>*{--color-border: var(--color-border-dark)}.files-list[data-v-2bbbfb12] .files-list__row:hover .favorite-marker-icon svg path,.files-list[data-v-2bbbfb12] .files-list__row:focus .favorite-marker-icon svg path,.files-list[data-v-2bbbfb12] .files-list__row:active .favorite-marker-icon svg path,.files-list[data-v-2bbbfb12] .files-list__row--active .favorite-marker-icon svg path,.files-list[data-v-2bbbfb12] .files-list__row--dragover .favorite-marker-icon svg path{stroke:var(--color-background-hover)}.files-list[data-v-2bbbfb12] .files-list__row--dragover *{pointer-events:none}.files-list[data-v-2bbbfb12] .files-list__row-icon{position:relative;display:flex;overflow:visible;align-items:center;flex:0 0 var(--icon-preview-size);justify-content:center;width:var(--icon-preview-size);height:100%;margin-right:var(--checkbox-padding);color:var(--color-primary-element)}.files-list[data-v-2bbbfb12] .files-list__row-icon *{cursor:pointer}.files-list[data-v-2bbbfb12] .files-list__row-icon>span{justify-content:flex-start}.files-list[data-v-2bbbfb12] .files-list__row-icon>span:not(.files-list__row-icon-favorite) svg{width:var(--icon-preview-size);height:var(--icon-preview-size)}.files-list[data-v-2bbbfb12] .files-list__row-icon>span.folder-icon,.files-list[data-v-2bbbfb12] .files-list__row-icon>span.folder-open-icon{margin:-3px}.files-list[data-v-2bbbfb12] .files-list__row-icon>span.folder-icon svg,.files-list[data-v-2bbbfb12] .files-list__row-icon>span.folder-open-icon svg{width:calc(var(--icon-preview-size) + 6px);height:calc(var(--icon-preview-size) + 6px)}.files-list[data-v-2bbbfb12] .files-list__row-icon-preview{overflow:hidden;width:var(--icon-preview-size);height:var(--icon-preview-size);border-radius:var(--border-radius);object-fit:contain;object-position:center}.files-list[data-v-2bbbfb12] .files-list__row-icon-preview:not(.files-list__row-icon-preview--loaded){background:var(--color-loading-dark)}.files-list[data-v-2bbbfb12] .files-list__row-icon-favorite{position:absolute;top:0px;right:-10px}.files-list[data-v-2bbbfb12] .files-list__row-icon-overlay{position:absolute;max-height:calc(var(--icon-preview-size)*.5);max-width:calc(var(--icon-preview-size)*.5);color:var(--color-primary-element-text);margin-top:2px}.files-list[data-v-2bbbfb12] .files-list__row-icon-overlay--file{color:var(--color-main-text);background:var(--color-main-background);border-radius:100%}.files-list[data-v-2bbbfb12] .files-list__row-name{overflow:hidden;flex:1 1 auto}.files-list[data-v-2bbbfb12] .files-list__row-name a{display:flex;align-items:center;width:100%;height:100%;min-width:0}.files-list[data-v-2bbbfb12] .files-list__row-name a:focus-visible{outline:none}.files-list[data-v-2bbbfb12] .files-list__row-name a:focus .files-list__row-name-text{outline:2px solid var(--color-main-text) !important;border-radius:20px}.files-list[data-v-2bbbfb12] .files-list__row-name a:focus:not(:focus-visible) .files-list__row-name-text{outline:none !important}.files-list[data-v-2bbbfb12] .files-list__row-name .files-list__row-name-text{color:var(--color-main-text);padding:5px 10px;margin-left:-10px;display:inline-flex}.files-list[data-v-2bbbfb12] .files-list__row-name .files-list__row-name-ext{color:var(--color-text-maxcontrast);overflow:visible}.files-list[data-v-2bbbfb12] .files-list__row-rename{width:100%;max-width:600px}.files-list[data-v-2bbbfb12] .files-list__row-rename input{width:100%;margin-left:-8px;padding:2px 6px;border-width:2px}.files-list[data-v-2bbbfb12] .files-list__row-rename input:invalid{border-color:var(--color-error);color:red}.files-list[data-v-2bbbfb12] .files-list__row-actions{width:auto}.files-list[data-v-2bbbfb12] .files-list__row-actions~td,.files-list[data-v-2bbbfb12] .files-list__row-actions~th{margin:0 var(--cell-margin)}.files-list[data-v-2bbbfb12] .files-list__row-actions button .button-vue__text{font-weight:normal}.files-list[data-v-2bbbfb12] .files-list__row-action--inline{margin-right:7px}.files-list[data-v-2bbbfb12] .files-list__row-mtime,.files-list[data-v-2bbbfb12] .files-list__row-size{color:var(--color-text-maxcontrast)}.files-list[data-v-2bbbfb12] .files-list__row-size{width:calc(var(--row-height)*1.5);justify-content:flex-end}.files-list[data-v-2bbbfb12] .files-list__row-mtime{width:calc(var(--row-height)*2)}.files-list[data-v-2bbbfb12] .files-list__row-column-custom{width:calc(var(--row-height)*2)}","",{version:3,sources:["webpack://./apps/files/src/components/FilesListVirtual.vue"],names:[],mappings:"AACA,6BACC,kBAAA,CACA,mBAAA,CAEA,wEAAA,CACA,qBAAA,CACA,sBAAA,CACA,yBAAA,CAEA,aAAA,CACA,WAAA,CACA,2BAAA,CAIC,oCACC,mBAAA,CACA,0BAAA,CACA,YAAA,CACA,qBAAA,CACA,UAAA,CAEA,iBAAA,CAGA,uCACC,cAAA,CACA,0FAEC,6CAAA,CAMH,kDACC,YAAA,CACA,qBAAA,CAGD,iDACC,aAAA,CAEA,uFAEC,qCAAA,CAIF,yDAEC,eAAA,CACA,KAAA,CAEA,6BAAA,CAEA,UAAA,CAEA,YAAA,CACA,kBAAA,CAGA,6CAAA,CACA,2CAAA,CACA,wBAAA,CAGD,kGAEC,YAAA,CACA,qBAAA,CACA,UAAA,CACA,6CAAA,CAKD,iDAEC,eAAA,CACA,UAAA,CACA,KAAA,CAID,iDACC,gBAAA,CAGD,iCACC,iBAAA,CACA,YAAA,CACA,kBAAA,CACA,UAAA,CACA,gBAAA,CACA,2CAAA,CACA,qBAAA,CACA,gBAAA,CACA,wBAAA,CAGD,kEACC,YAAA,CACA,kBAAA,CACA,aAAA,CACA,oBAAA,CACA,uBAAA,CACA,wBAAA,CACA,QAAA,CACA,SAAA,CACA,mCAAA,CACA,WAAA,CAKA,4EACC,eAAA,CACA,kBAAA,CACA,sBAAA,CAIF,uDACC,iBAAA,CACA,aAAA,CACA,KAAA,CACA,MAAA,CACA,OAAA,CACA,QAAA,CACA,UAAA,CACA,UAAA,CACA,6BAAA,CAGD,wDACC,sBAAA,CAEA,+EACC,YAAA,CACA,sBAAA,CAEA,iCAAA,CAEA,kHACC,2BAAA,CACA,4BAAA,CACA,QAAA,CACA,8DAAA,CAGD,4GACC,mBAAA,CAMF,gRAEC,8CAAA,CAGA,gDAAA,CACA,0RACC,wCAAA,CAID,2aACC,oCAAA,CAIF,2DAEC,mBAAA,CAKF,oDACC,iBAAA,CACA,YAAA,CACA,gBAAA,CACA,kBAAA,CAEA,iCAAA,CACA,sBAAA,CACA,8BAAA,CACA,WAAA,CAEA,oCAAA,CACA,kCAAA,CAGA,sDACC,cAAA,CAGD,yDACC,0BAAA,CAEA,iGACC,8BAAA,CACA,+BAAA,CAID,+IAEC,WAAA,CACA,uJACC,0CAAA,CACA,2CAAA,CAKH,4DACC,eAAA,CACA,8BAAA,CACA,+BAAA,CACA,kCAAA,CAEA,kBAAA,CACA,sBAAA,CAGA,uGACC,oCAAA,CAKF,6DACC,iBAAA,CACA,OAAA,CACA,WAAA,CAID,4DACC,iBAAA,CACA,4CAAA,CACA,2CAAA,CACA,uCAAA,CAEA,cAAA,CAGA,kEACC,4BAAA,CACA,uCAAA,CACA,kBAAA,CAMH,oDAEC,eAAA,CAEA,aAAA,CAEA,sDACC,YAAA,CACA,kBAAA,CAEA,UAAA,CACA,WAAA,CAEA,WAAA,CAGA,oEACC,YAAA,CAID,uFACC,mDAAA,CACA,kBAAA,CAED,2GACC,uBAAA,CAIF,+EACC,4BAAA,CAEA,gBAAA,CACA,iBAAA,CAEA,mBAAA,CAGD,8EACC,mCAAA,CAEA,gBAAA,CAKF,sDACC,UAAA,CACA,eAAA,CACA,4DACC,UAAA,CAEA,gBAAA,CACA,eAAA,CACA,gBAAA,CAEA,oEAEC,+BAAA,CACA,SAAA,CAKH,uDAEC,UAAA,CAGA,oHAEC,2BAAA,CAIA,gFAEC,kBAAA,CAKH,8DACC,gBAAA,CAGD,yGAEC,mCAAA,CAED,oDACC,iCAAA,CAEA,wBAAA,CAGD,qDACC,+BAAA,CAGD,6DACC,+BAAA",sourcesContent:["\n.files-list {\n\t--row-height: 55px;\n\t--cell-margin: 14px;\n\n\t--checkbox-padding: calc((var(--row-height) - var(--checkbox-size)) / 2);\n\t--checkbox-size: 24px;\n\t--clickable-area: 44px;\n\t--icon-preview-size: 32px;\n\n\toverflow: auto;\n\theight: 100%;\n\twill-change: scroll-position;\n\n\t& :deep() {\n\t\t// Table head, body and footer\n\t\ttbody {\n\t\t\twill-change: padding;\n\t\t\tcontain: layout paint style;\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t\twidth: 100%;\n\t\t\t// Necessary for virtual scrolling absolute\n\t\t\tposition: relative;\n\n\t\t\t/* Hover effect on tbody lines only */\n\t\t\ttr {\n\t\t\t\tcontain: strict;\n\t\t\t\t&:hover,\n\t\t\t\t&:focus {\n\t\t\t\t\tbackground-color: var(--color-background-dark);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Before table and thead\n\t\t.files-list__before {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t}\n\n\t\t.files-list__table {\n\t\t\tdisplay: block;\n\n\t\t\t&.files-list__table--with-thead-overlay {\n\t\t\t\t// Hide the table header below the overlay\n\t\t\t\tmargin-top: calc(-1 * var(--row-height));\n\t\t\t}\n\t\t}\n\n\t\t.files-list__thead-overlay {\n\t\t\t// Pinned on top when scrolling\n\t\t\tposition: sticky;\n\t\t\ttop: 0;\n\t\t\t// Save space for a row checkbox\n\t\t\tmargin-left: var(--row-height);\n\t\t\t// More than .files-list__thead\n\t\t\tz-index: 20;\n\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\n\t\t\t// Reuse row styles\n\t\t\tbackground-color: var(--color-main-background);\n\t\t\tborder-bottom: 1px solid var(--color-border);\n\t\t\theight: var(--row-height);\n\t\t}\n\n\t\t.files-list__thead,\n\t\t.files-list__tfoot {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t\twidth: 100%;\n\t\t\tbackground-color: var(--color-main-background);\n\n\t\t}\n\n\t\t// Table header\n\t\t.files-list__thead {\n\t\t\t// Pinned on top when scrolling\n\t\t\tposition: sticky;\n\t\t\tz-index: 10;\n\t\t\ttop: 0;\n\t\t}\n\n\t\t// Table footer\n\t\t.files-list__tfoot {\n\t\t\tmin-height: 300px;\n\t\t}\n\n\t\ttr {\n\t\t\tposition: relative;\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\twidth: 100%;\n\t\t\tuser-select: none;\n\t\t\tborder-bottom: 1px solid var(--color-border);\n\t\t\tbox-sizing: border-box;\n\t\t\tuser-select: none;\n\t\t\theight: var(--row-height);\n\t\t}\n\n\t\ttd, th {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\tflex: 0 0 auto;\n\t\t\tjustify-content: left;\n\t\t\twidth: var(--row-height);\n\t\t\theight: var(--row-height);\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\t\t\tcolor: var(--color-text-maxcontrast);\n\t\t\tborder: none;\n\n\t\t\t// Columns should try to add any text\n\t\t\t// node wrapped in a span. That should help\n\t\t\t// with the ellipsis on overflow.\n\t\t\tspan {\n\t\t\t\toverflow: hidden;\n\t\t\t\twhite-space: nowrap;\n\t\t\t\ttext-overflow: ellipsis;\n\t\t\t}\n\t\t}\n\n\t\t.files-list__row--failed {\n\t\t\tposition: absolute;\n\t\t\tdisplay: block;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\topacity: .1;\n\t\t\tz-index: -1;\n\t\t\tbackground: var(--color-error);\n\t\t}\n\n\t\t.files-list__row-checkbox {\n\t\t\tjustify-content: center;\n\n\t\t\t.checkbox-radio-switch {\n\t\t\t\tdisplay: flex;\n\t\t\t\tjustify-content: center;\n\n\t\t\t\t--icon-size: var(--checkbox-size);\n\n\t\t\t\tlabel.checkbox-radio-switch__label {\n\t\t\t\t\twidth: var(--clickable-area);\n\t\t\t\t\theight: var(--clickable-area);\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\tpadding: calc((var(--clickable-area) - var(--checkbox-size)) / 2);\n\t\t\t\t}\n\n\t\t\t\t.checkbox-radio-switch__icon {\n\t\t\t\t\tmargin: 0 !important;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.files-list__row {\n\t\t\t&:hover, &:focus, &:active, &--active, &--dragover {\n\t\t\t\t// WCAG AA compliant\n\t\t\t\tbackground-color: var(--color-background-hover);\n\t\t\t\t// text-maxcontrast have been designed to pass WCAG AA over\n\t\t\t\t// a white background, we need to adjust then.\n\t\t\t\t--color-text-maxcontrast: var(--color-main-text);\n\t\t\t\t> * {\n\t\t\t\t\t--color-border: var(--color-border-dark);\n\t\t\t\t}\n\n\t\t\t\t// Hover state of the row should also change the favorite markers background\n\t\t\t\t.favorite-marker-icon svg path {\n\t\t\t\t\tstroke: var(--color-background-hover);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&--dragover * {\n\t\t\t\t// Prevent dropping on row children\n\t\t\t\tpointer-events: none;\n\t\t\t}\n\t\t}\n\n\t\t// Entry preview or mime icon\n\t\t.files-list__row-icon {\n\t\t\tposition: relative;\n\t\t\tdisplay: flex;\n\t\t\toverflow: visible;\n\t\t\talign-items: center;\n\t\t\t// No shrinking or growing allowed\n\t\t\tflex: 0 0 var(--icon-preview-size);\n\t\t\tjustify-content: center;\n\t\t\twidth: var(--icon-preview-size);\n\t\t\theight: 100%;\n\t\t\t// Show same padding as the checkbox right padding for visual balance\n\t\t\tmargin-right: var(--checkbox-padding);\n\t\t\tcolor: var(--color-primary-element);\n\n\t\t\t// Icon is also clickable\n\t\t\t* {\n\t\t\t\tcursor: pointer;\n\t\t\t}\n\n\t\t\t& > span {\n\t\t\t\tjustify-content: flex-start;\n\n\t\t\t\t&:not(.files-list__row-icon-favorite) svg {\n\t\t\t\t\twidth: var(--icon-preview-size);\n\t\t\t\t\theight: var(--icon-preview-size);\n\t\t\t\t}\n\n\t\t\t\t// Slightly increase the size of the folder icon\n\t\t\t\t&.folder-icon,\n\t\t\t\t&.folder-open-icon {\n\t\t\t\t\tmargin: -3px;\n\t\t\t\t\tsvg {\n\t\t\t\t\t\twidth: calc(var(--icon-preview-size) + 6px);\n\t\t\t\t\t\theight: calc(var(--icon-preview-size) + 6px);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&-preview {\n\t\t\t\toverflow: hidden;\n\t\t\t\twidth: var(--icon-preview-size);\n\t\t\t\theight: var(--icon-preview-size);\n\t\t\t\tborder-radius: var(--border-radius);\n\t\t\t\t// Center and contain the preview\n\t\t\t\tobject-fit: contain;\n\t\t\t\tobject-position: center;\n\n\t\t\t\t/* Preview not loaded animation effect */\n\t\t\t\t&:not(.files-list__row-icon-preview--loaded) {\n\t\t\t\t\tbackground: var(--color-loading-dark);\n\t\t\t\t\t// animation: preview-gradient-fade 1.2s ease-in-out infinite;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&-favorite {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 0px;\n\t\t\t\tright: -10px;\n\t\t\t}\n\n\t\t\t// File and folder overlay\n\t\t\t&-overlay {\n\t\t\t\tposition: absolute;\n\t\t\t\tmax-height: calc(var(--icon-preview-size) * 0.5);\n\t\t\t\tmax-width: calc(var(--icon-preview-size) * 0.5);\n\t\t\t\tcolor: var(--color-primary-element-text);\n\t\t\t\t// better alignment with the folder icon\n\t\t\t\tmargin-top: 2px;\n\n\t\t\t\t// Improve icon contrast with a background for files\n\t\t\t\t&--file {\n\t\t\t\t\tcolor: var(--color-main-text);\n\t\t\t\t\tbackground: var(--color-main-background);\n\t\t\t\t\tborder-radius: 100%;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Entry link\n\t\t.files-list__row-name {\n\t\t\t// Prevent link from overflowing\n\t\t\toverflow: hidden;\n\t\t\t// Take as much space as possible\n\t\t\tflex: 1 1 auto;\n\n\t\t\ta {\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\t// Fill cell height and width\n\t\t\t\twidth: 100%;\n\t\t\t\theight: 100%;\n\t\t\t\t// Necessary for flex grow to work\n\t\t\t\tmin-width: 0;\n\n\t\t\t\t// Already added to the inner text, see rule below\n\t\t\t\t&:focus-visible {\n\t\t\t\t\toutline: none;\n\t\t\t\t}\n\n\t\t\t\t// Keyboard indicator a11y\n\t\t\t\t&:focus .files-list__row-name-text {\n\t\t\t\t\toutline: 2px solid var(--color-main-text) !important;\n\t\t\t\t\tborder-radius: 20px;\n\t\t\t\t}\n\t\t\t\t&:focus:not(:focus-visible) .files-list__row-name-text {\n\t\t\t\t\toutline: none !important;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.files-list__row-name-text {\n\t\t\t\tcolor: var(--color-main-text);\n\t\t\t\t// Make some space for the outline\n\t\t\t\tpadding: 5px 10px;\n\t\t\t\tmargin-left: -10px;\n\t\t\t\t// Align two name and ext\n\t\t\t\tdisplay: inline-flex;\n\t\t\t}\n\n\t\t\t.files-list__row-name-ext {\n\t\t\t\tcolor: var(--color-text-maxcontrast);\n\t\t\t\t// always show the extension\n\t\t\t\toverflow: visible;\n\t\t\t}\n\t\t}\n\n\t\t// Rename form\n\t\t.files-list__row-rename {\n\t\t\twidth: 100%;\n\t\t\tmax-width: 600px;\n\t\t\tinput {\n\t\t\t\twidth: 100%;\n\t\t\t\t// Align with text, 0 - padding - border\n\t\t\t\tmargin-left: -8px;\n\t\t\t\tpadding: 2px 6px;\n\t\t\t\tborder-width: 2px;\n\n\t\t\t\t&:invalid {\n\t\t\t\t\t// Show red border on invalid input\n\t\t\t\t\tborder-color: var(--color-error);\n\t\t\t\t\tcolor: red;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.files-list__row-actions {\n\t\t\t// take as much space as necessary\n\t\t\twidth: auto;\n\n\t\t\t// Add margin to all cells after the actions\n\t\t\t& ~ td,\n\t\t\t& ~ th {\n\t\t\t\tmargin: 0 var(--cell-margin);\n\t\t\t}\n\n\t\t\tbutton {\n\t\t\t\t.button-vue__text {\n\t\t\t\t\t// Remove bold from default button styling\n\t\t\t\t\tfont-weight: normal;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.files-list__row-action--inline {\n\t\t\tmargin-right: 7px;\n\t\t}\n\n\t\t.files-list__row-mtime,\n\t\t.files-list__row-size {\n\t\t\tcolor: var(--color-text-maxcontrast);\n\t\t}\n\t\t.files-list__row-size {\n\t\t\twidth: calc(var(--row-height) * 1.5);\n\t\t\t// Right align content/text\n\t\t\tjustify-content: flex-end;\n\t\t}\n\n\t\t.files-list__row-mtime {\n\t\t\twidth: calc(var(--row-height) * 2);\n\t\t}\n\n\t\t.files-list__row-column-custom {\n\t\t\twidth: calc(var(--row-height) * 2);\n\t\t}\n\t}\n}\n"],sourceRoot:""}]);const a=o},66936:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,"tbody.files-list__tbody.files-list__tbody--grid{--half-clickable-area: calc(var(--clickable-area) / 2);--row-width: 160px;--row-height: calc(var(--row-width) - var(--half-clickable-area));--icon-preview-size: calc(var(--row-width) - var(--clickable-area));--checkbox-padding: 0px;display:grid;grid-template-columns:repeat(auto-fill, var(--row-width));grid-gap:15px;row-gap:15px;align-content:center;align-items:center;justify-content:space-around;justify-items:center}tbody.files-list__tbody.files-list__tbody--grid tr{width:var(--row-width);height:calc(var(--row-height) + var(--clickable-area));border:none;border-radius:var(--border-radius)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-checkbox{position:absolute;z-index:9;top:0;left:0;overflow:hidden;width:var(--clickable-area);height:var(--clickable-area);border-radius:var(--half-clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-icon-favorite{position:absolute;top:0;right:0;display:flex;align-items:center;justify-content:center;width:var(--clickable-area);height:var(--clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name{display:grid;justify-content:stretch;width:100%;height:100%;grid-auto-rows:var(--row-height) var(--clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name span.files-list__row-icon{width:100%;height:100%;padding-top:var(--half-clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name a.files-list__row-name-link{width:calc(100% - var(--clickable-area));height:var(--clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name .files-list__row-name-text{margin:0;padding-right:0}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-actions{position:absolute;right:0;bottom:0;width:var(--clickable-area);height:var(--clickable-area)}","",{version:3,sources:["webpack://./apps/files/src/components/FilesListVirtual.vue"],names:[],mappings:"AAEA,gDACC,sDAAA,CACA,kBAAA,CAEA,iEAAA,CACA,mEAAA,CACA,uBAAA,CAEA,YAAA,CACA,yDAAA,CACA,aAAA,CACA,YAAA,CAEA,oBAAA,CACA,kBAAA,CACA,4BAAA,CACA,oBAAA,CAEA,mDACC,sBAAA,CACA,sDAAA,CACA,WAAA,CACA,kCAAA,CAID,0EACC,iBAAA,CACA,SAAA,CACA,KAAA,CACA,MAAA,CACA,eAAA,CACA,2BAAA,CACA,4BAAA,CACA,wCAAA,CAID,+EACC,iBAAA,CACA,KAAA,CACA,OAAA,CACA,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,2BAAA,CACA,4BAAA,CAGD,sEACC,YAAA,CACA,uBAAA,CACA,UAAA,CACA,WAAA,CACA,sDAAA,CAEA,gGACC,UAAA,CACA,WAAA,CAGA,sCAAA,CAGD,kGAEC,wCAAA,CACA,4BAAA,CAGD,iGACC,QAAA,CACA,eAAA,CAIF,yEACC,iBAAA,CACA,OAAA,CACA,QAAA,CACA,2BAAA,CACA,4BAAA",sourcesContent:["\n// Grid mode\ntbody.files-list__tbody.files-list__tbody--grid {\n\t--half-clickable-area: calc(var(--clickable-area) / 2);\n\t--row-width: 160px;\n\t// We use half of the clickable area as visual balance margin\n\t--row-height: calc(var(--row-width) - var(--half-clickable-area));\n\t--icon-preview-size: calc(var(--row-width) - var(--clickable-area));\n\t--checkbox-padding: 0px;\n\n\tdisplay: grid;\n\tgrid-template-columns: repeat(auto-fill, var(--row-width));\n\tgrid-gap: 15px;\n\trow-gap: 15px;\n\n\talign-content: center;\n\talign-items: center;\n\tjustify-content: space-around;\n\tjustify-items: center;\n\n\ttr {\n\t\twidth: var(--row-width);\n\t\theight: calc(var(--row-height) + var(--clickable-area));\n\t\tborder: none;\n\t\tborder-radius: var(--border-radius);\n\t}\n\n\t// Checkbox in the top left\n\t.files-list__row-checkbox {\n\t\tposition: absolute;\n\t\tz-index: 9;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\toverflow: hidden;\n\t\twidth: var(--clickable-area);\n\t\theight: var(--clickable-area);\n\t\tborder-radius: var(--half-clickable-area);\n\t}\n\n\t// Star icon in the top right\n\t.files-list__row-icon-favorite {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tright: 0;\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\twidth: var(--clickable-area);\n\t\theight: var(--clickable-area);\n\t}\n\n\t.files-list__row-name {\n\t\tdisplay: grid;\n\t\tjustify-content: stretch;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tgrid-auto-rows: var(--row-height) var(--clickable-area);\n\n\t\tspan.files-list__row-icon {\n\t\t\twidth: 100%;\n\t\t\theight: 100%;\n\t\t\t// Visual balance, we use half of the clickable area\n\t\t\t// as a margin around the preview\n\t\t\tpadding-top: var(--half-clickable-area);\n\t\t}\n\n\t\ta.files-list__row-name-link {\n\t\t\t// Minus action menu\n\t\t\twidth: calc(100% - var(--clickable-area));\n\t\t\theight: var(--clickable-area);\n\t\t}\n\n\t\t.files-list__row-name-text {\n\t\t\tmargin: 0;\n\t\t\tpadding-right: 0;\n\t\t}\n\t}\n\n\t.files-list__row-actions {\n\t\tposition: absolute;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\twidth: var(--clickable-area);\n\t\theight: var(--clickable-area);\n\t}\n}\n"],sourceRoot:""}]);const a=o},33149:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".app-navigation-entry__settings-quota--not-unlimited[data-v-063ed938] .app-navigation-entry__name{margin-top:-6px}.app-navigation-entry__settings-quota progress[data-v-063ed938]{position:absolute;bottom:12px;margin-left:44px;width:calc(100% - 44px - 22px)}","",{version:3,sources:["webpack://./apps/files/src/components/NavigationQuota.vue"],names:[],mappings:"AAIC,kGACC,eAAA,CAGD,gEACC,iBAAA,CACA,WAAA,CACA,gBAAA,CACA,8BAAA",sourcesContent:["\n// User storage stats display\n.app-navigation-entry__settings-quota {\n\t// Align title with progress and icon\n\t&--not-unlimited::v-deep .app-navigation-entry__name {\n\t\tmargin-top: -6px;\n\t}\n\n\tprogress {\n\t\tposition: absolute;\n\t\tbottom: 12px;\n\t\tmargin-left: 44px;\n\t\twidth: calc(100% - 44px - 22px);\n\t}\n}\n"],sourceRoot:""}]);const a=o},60912:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".app-content[data-v-1b7c1ce0]{display:flex;overflow:hidden;flex-direction:column;max-height:100%;position:relative !important}.files-list__header[data-v-1b7c1ce0]{display:flex;align-items:center;flex:0 0;margin:4px 4px 4px 50px;max-width:100%}.files-list__header>*[data-v-1b7c1ce0]{flex:0 0}.files-list__header-share-button[data-v-1b7c1ce0]{color:var(--color-text-maxcontrast) !important}.files-list__header-share-button--shared[data-v-1b7c1ce0]{color:var(--color-main-text) !important}.files-list__refresh-icon[data-v-1b7c1ce0]{flex:0 0 44px;width:44px;height:44px}.files-list__loading-icon[data-v-1b7c1ce0]{margin:auto}","",{version:3,sources:["webpack://./apps/files/src/views/FilesList.vue"],names:[],mappings:"AACA,8BAEC,YAAA,CACA,eAAA,CACA,qBAAA,CACA,eAAA,CACA,4BAAA,CAOA,qCACC,YAAA,CACA,kBAAA,CAEA,QAAA,CAEA,uBAAA,CACA,cAAA,CAEA,uCAGC,QAAA,CAGD,kDACC,8CAAA,CAEA,0DACC,uCAAA,CAKH,2CACC,aAAA,CACA,UAAA,CACA,WAAA,CAGD,2CACC,WAAA",sourcesContent:["\n.app-content {\n\t// Virtual list needs to be full height and is scrollable\n\tdisplay: flex;\n\toverflow: hidden;\n\tflex-direction: column;\n\tmax-height: 100%;\n\tposition: relative !important;\n}\n\n$margin: 4px;\n$navigationToggleSize: 50px;\n\n.files-list {\n\t&__header {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\t// Do not grow or shrink (vertically)\n\t\tflex: 0 0;\n\t\t// Align with the navigation toggle icon\n\t\tmargin: $margin $margin $margin $navigationToggleSize;\n\t\tmax-width: 100%;\n\n\t\t>* {\n\t\t\t// Do not grow or shrink (horizontally)\n\t\t\t// Only the breadcrumbs shrinks\n\t\t\tflex: 0 0;\n\t\t}\n\n\t\t&-share-button {\n\t\t\tcolor: var(--color-text-maxcontrast) !important;\n\n\t\t\t&--shared {\n\t\t\t\tcolor: var(--color-main-text) !important;\n\t\t\t}\n\t\t}\n\t}\n\n\t&__refresh-icon {\n\t\tflex: 0 0 44px;\n\t\twidth: 44px;\n\t\theight: 44px;\n\t}\n\n\t&__loading-icon {\n\t\tmargin: auto;\n\t}\n}\n"],sourceRoot:""}]);const a=o},59062:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".app-navigation[data-v-8291caa8] .app-navigation-entry-icon{background-repeat:no-repeat;background-position:center}.app-navigation[data-v-8291caa8] .app-navigation-entry.active .button-vue.icon-collapse:not(:hover){color:var(--color-primary-element-text)}.app-navigation>ul.app-navigation__list[data-v-8291caa8]{padding-bottom:var(--default-grid-baseline, 4px)}.app-navigation-entry__settings[data-v-8291caa8]{height:auto !important;overflow:hidden !important;padding-top:0 !important;flex:0 0 auto}","",{version:3,sources:["webpack://./apps/files/src/views/Navigation.vue"],names:[],mappings:"AAEA,4DACC,2BAAA,CACA,0BAAA,CAGD,oGACC,uCAAA,CAGD,yDAEC,gDAAA,CAGD,iDACC,sBAAA,CACA,0BAAA,CACA,wBAAA,CAEA,aAAA",sourcesContent:["\n// TODO: remove when https://github.com/nextcloud/nextcloud-vue/pull/3539 is in\n.app-navigation::v-deep .app-navigation-entry-icon {\n\tbackground-repeat: no-repeat;\n\tbackground-position: center;\n}\n\n.app-navigation::v-deep .app-navigation-entry.active .button-vue.icon-collapse:not(:hover) {\n\tcolor: var(--color-primary-element-text);\n}\n\n.app-navigation > ul.app-navigation__list {\n\t// Use flex gap value for more elegant spacing\n\tpadding-bottom: var(--default-grid-baseline, 4px);\n}\n\n.app-navigation-entry__settings {\n\theight: auto !important;\n\toverflow: hidden !important;\n\tpadding-top: 0 !important;\n\t// Prevent shrinking or growing\n\tflex: 0 0 auto;\n}\n"],sourceRoot:""}]);const a=o},73309:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".setting-link[data-v-6d63c120]:hover{text-decoration:underline}","",{version:3,sources:["webpack://./apps/files/src/views/Settings.vue"],names:[],mappings:"AACA,qCACC,yBAAA",sourcesContent:["\n.setting-link:hover {\n\ttext-decoration: underline;\n}\n"],sourceRoot:""}]);const a=o},64043:(t,e,n)=>{var s=n(48287).Buffer;!function(t){t.parser=function(t,e){return new r(t,e)},t.SAXParser=r,t.SAXStream=a,t.createStream=function(t,e){return new a(t,e)},t.MAX_BUFFER_LENGTH=65536;var e,i=["comment","sgmlDecl","textNode","tagName","doctype","procInstName","procInstBody","entity","attribName","attribValue","cdata","script"];function r(e,n){if(!(this instanceof r))return new r(e,n);var s=this;!function(t){for(var e=0,n=i.length;e<n;e++)t[i[e]]=""}(s),s.q=s.c="",s.bufferCheckPosition=t.MAX_BUFFER_LENGTH,s.opt=n||{},s.opt.lowercase=s.opt.lowercase||s.opt.lowercasetags,s.looseCase=s.opt.lowercase?"toLowerCase":"toUpperCase",s.tags=[],s.closed=s.closedRoot=s.sawRoot=!1,s.tag=s.error=null,s.strict=!!e,s.noscript=!(!e&&!s.opt.noscript),s.state=T.BEGIN,s.strictEntities=s.opt.strictEntities,s.ENTITIES=s.strictEntities?Object.create(t.XML_ENTITIES):Object.create(t.ENTITIES),s.attribList=[],s.opt.xmlns&&(s.ns=Object.create(m)),s.trackPosition=!1!==s.opt.position,s.trackPosition&&(s.position=s.line=s.column=0),E(s,"onready")}t.EVENTS=["text","processinginstruction","sgmldeclaration","doctype","comment","opentagstart","attribute","opentag","closetag","opencdata","cdata","closecdata","error","end","ready","script","opennamespace","closenamespace"],Object.create||(Object.create=function(t){function e(){}return e.prototype=t,new e}),Object.keys||(Object.keys=function(t){var e=[];for(var n in t)t.hasOwnProperty(n)&&e.push(n);return e}),r.prototype={end:function(){F(this)},write:function(e){var n=this;if(this.error)throw this.error;if(n.closed)return I(n,"Cannot write after close. Assign an onready handler.");if(null===e)return F(n);"object"==typeof e&&(e=e.toString());for(var s=0,r="";r=R(e,s++),n.c=r,r;)switch(n.trackPosition&&(n.position++,"\n"===r?(n.line++,n.column=0):n.column++),n.state){case T.BEGIN:if(n.state=T.BEGIN_WHITESPACE,"\ufeff"===r)continue;M(n,r);continue;case T.BEGIN_WHITESPACE:M(n,r);continue;case T.TEXT:if(n.sawRoot&&!n.closedRoot){for(var o=s-1;r&&"<"!==r&&"&"!==r;)(r=R(e,s++))&&n.trackPosition&&(n.position++,"\n"===r?(n.line++,n.column=0):n.column++);n.textNode+=e.substring(o,s-1)}"<"!==r||n.sawRoot&&n.closedRoot&&!n.strict?(v(r)||n.sawRoot&&!n.closedRoot||P(n,"Text data outside of root node."),"&"===r?n.state=T.TEXT_ENTITY:n.textNode+=r):(n.state=T.OPEN_WAKA,n.startTagPosition=n.position);continue;case T.SCRIPT:"<"===r?n.state=T.SCRIPT_ENDING:n.script+=r;continue;case T.SCRIPT_ENDING:"/"===r?n.state=T.CLOSE_TAG:(n.script+="<"+r,n.state=T.SCRIPT);continue;case T.OPEN_WAKA:if("!"===r)n.state=T.SGML_DECL,n.sgmlDecl="";else if(v(r));else if(y(p,r))n.state=T.OPEN_TAG,n.tagName=r;else if("/"===r)n.state=T.CLOSE_TAG,n.tagName="";else if("?"===r)n.state=T.PROC_INST,n.procInstName=n.procInstBody="";else{if(P(n,"Unencoded <"),n.startTagPosition+1<n.position){var a=n.position-n.startTagPosition;r=new Array(a).join(" ")+r}n.textNode+="<"+r,n.state=T.TEXT}continue;case T.SGML_DECL:(n.sgmlDecl+r).toUpperCase()===l?(S(n,"onopencdata"),n.state=T.CDATA,n.sgmlDecl="",n.cdata=""):n.sgmlDecl+r==="--"?(n.state=T.COMMENT,n.comment="",n.sgmlDecl=""):(n.sgmlDecl+r).toUpperCase()===c?(n.state=T.DOCTYPE,(n.doctype||n.sawRoot)&&P(n,"Inappropriately located doctype declaration"),n.doctype="",n.sgmlDecl=""):">"===r?(S(n,"onsgmldeclaration",n.sgmlDecl),n.sgmlDecl="",n.state=T.TEXT):A(r)?(n.state=T.SGML_DECL_QUOTED,n.sgmlDecl+=r):n.sgmlDecl+=r;continue;case T.SGML_DECL_QUOTED:r===n.q&&(n.state=T.SGML_DECL,n.q=""),n.sgmlDecl+=r;continue;case T.DOCTYPE:">"===r?(n.state=T.TEXT,S(n,"ondoctype",n.doctype),n.doctype=!0):(n.doctype+=r,"["===r?n.state=T.DOCTYPE_DTD:A(r)&&(n.state=T.DOCTYPE_QUOTED,n.q=r));continue;case T.DOCTYPE_QUOTED:n.doctype+=r,r===n.q&&(n.q="",n.state=T.DOCTYPE);continue;case T.DOCTYPE_DTD:n.doctype+=r,"]"===r?n.state=T.DOCTYPE:A(r)&&(n.state=T.DOCTYPE_DTD_QUOTED,n.q=r);continue;case T.DOCTYPE_DTD_QUOTED:n.doctype+=r,r===n.q&&(n.state=T.DOCTYPE_DTD,n.q="");continue;case T.COMMENT:"-"===r?n.state=T.COMMENT_ENDING:n.comment+=r;continue;case T.COMMENT_ENDING:"-"===r?(n.state=T.COMMENT_ENDED,n.comment=N(n.opt,n.comment),n.comment&&S(n,"oncomment",n.comment),n.comment=""):(n.comment+="-"+r,n.state=T.COMMENT);continue;case T.COMMENT_ENDED:">"!==r?(P(n,"Malformed comment"),n.comment+="--"+r,n.state=T.COMMENT):n.state=T.TEXT;continue;case T.CDATA:"]"===r?n.state=T.CDATA_ENDING:n.cdata+=r;continue;case T.CDATA_ENDING:"]"===r?n.state=T.CDATA_ENDING_2:(n.cdata+="]"+r,n.state=T.CDATA);continue;case T.CDATA_ENDING_2:">"===r?(n.cdata&&S(n,"oncdata",n.cdata),S(n,"onclosecdata"),n.cdata="",n.state=T.TEXT):"]"===r?n.cdata+="]":(n.cdata+="]]"+r,n.state=T.CDATA);continue;case T.PROC_INST:"?"===r?n.state=T.PROC_INST_ENDING:v(r)?n.state=T.PROC_INST_BODY:n.procInstName+=r;continue;case T.PROC_INST_BODY:if(!n.procInstBody&&v(r))continue;"?"===r?n.state=T.PROC_INST_ENDING:n.procInstBody+=r;continue;case T.PROC_INST_ENDING:">"===r?(S(n,"onprocessinginstruction",{name:n.procInstName,body:n.procInstBody}),n.procInstName=n.procInstBody="",n.state=T.TEXT):(n.procInstBody+="?"+r,n.state=T.PROC_INST_BODY);continue;case T.OPEN_TAG:y(f,r)?n.tagName+=r:(B(n),">"===r?U(n):"/"===r?n.state=T.OPEN_TAG_SLASH:(v(r)||P(n,"Invalid character in tag name"),n.state=T.ATTRIB));continue;case T.OPEN_TAG_SLASH:">"===r?(U(n,!0),j(n)):(P(n,"Forward-slash in opening tag not followed by >"),n.state=T.ATTRIB);continue;case T.ATTRIB:if(v(r))continue;">"===r?U(n):"/"===r?n.state=T.OPEN_TAG_SLASH:y(p,r)?(n.attribName=r,n.attribValue="",n.state=T.ATTRIB_NAME):P(n,"Invalid attribute name");continue;case T.ATTRIB_NAME:"="===r?n.state=T.ATTRIB_VALUE:">"===r?(P(n,"Attribute without value"),n.attribValue=n.attribName,D(n),U(n)):v(r)?n.state=T.ATTRIB_NAME_SAW_WHITE:y(f,r)?n.attribName+=r:P(n,"Invalid attribute name");continue;case T.ATTRIB_NAME_SAW_WHITE:if("="===r)n.state=T.ATTRIB_VALUE;else{if(v(r))continue;P(n,"Attribute without value"),n.tag.attributes[n.attribName]="",n.attribValue="",S(n,"onattribute",{name:n.attribName,value:""}),n.attribName="",">"===r?U(n):y(p,r)?(n.attribName=r,n.state=T.ATTRIB_NAME):(P(n,"Invalid attribute name"),n.state=T.ATTRIB)}continue;case T.ATTRIB_VALUE:if(v(r))continue;A(r)?(n.q=r,n.state=T.ATTRIB_VALUE_QUOTED):(P(n,"Unquoted attribute value"),n.state=T.ATTRIB_VALUE_UNQUOTED,n.attribValue=r);continue;case T.ATTRIB_VALUE_QUOTED:if(r!==n.q){"&"===r?n.state=T.ATTRIB_VALUE_ENTITY_Q:n.attribValue+=r;continue}D(n),n.q="",n.state=T.ATTRIB_VALUE_CLOSED;continue;case T.ATTRIB_VALUE_CLOSED:v(r)?n.state=T.ATTRIB:">"===r?U(n):"/"===r?n.state=T.OPEN_TAG_SLASH:y(p,r)?(P(n,"No whitespace between attributes"),n.attribName=r,n.attribValue="",n.state=T.ATTRIB_NAME):P(n,"Invalid attribute name");continue;case T.ATTRIB_VALUE_UNQUOTED:if(!w(r)){"&"===r?n.state=T.ATTRIB_VALUE_ENTITY_U:n.attribValue+=r;continue}D(n),">"===r?U(n):n.state=T.ATTRIB;continue;case T.CLOSE_TAG:if(n.tagName)">"===r?j(n):y(f,r)?n.tagName+=r:n.script?(n.script+="</"+n.tagName,n.tagName="",n.state=T.SCRIPT):(v(r)||P(n,"Invalid tagname in closing tag"),n.state=T.CLOSE_TAG_SAW_WHITE);else{if(v(r))continue;b(p,r)?n.script?(n.script+="</"+r,n.state=T.SCRIPT):P(n,"Invalid tagname in closing tag."):n.tagName=r}continue;case T.CLOSE_TAG_SAW_WHITE:if(v(r))continue;">"===r?j(n):P(n,"Invalid characters in closing tag");continue;case T.TEXT_ENTITY:case T.ATTRIB_VALUE_ENTITY_Q:case T.ATTRIB_VALUE_ENTITY_U:var d,u;switch(n.state){case T.TEXT_ENTITY:d=T.TEXT,u="textNode";break;case T.ATTRIB_VALUE_ENTITY_Q:d=T.ATTRIB_VALUE_QUOTED,u="attribValue";break;case T.ATTRIB_VALUE_ENTITY_U:d=T.ATTRIB_VALUE_UNQUOTED,u="attribValue"}if(";"===r)if(n.opt.unparsedEntities){var m=z(n);n.entity="",n.state=d,n.write(m)}else n[u]+=z(n),n.entity="",n.state=d;else y(n.entity.length?h:g,r)?n.entity+=r:(P(n,"Invalid character in entity name"),n[u]+="&"+n.entity+r,n.entity="",n.state=d);continue;default:throw new Error(n,"Unknown state: "+n.state)}return n.position>=n.bufferCheckPosition&&function(e){for(var n=Math.max(t.MAX_BUFFER_LENGTH,10),s=0,r=0,o=i.length;r<o;r++){var a=e[i[r]].length;if(a>n)switch(i[r]){case"textNode":L(e);break;case"cdata":S(e,"oncdata",e.cdata),e.cdata="";break;case"script":S(e,"onscript",e.script),e.script="";break;default:I(e,"Max buffer length exceeded: "+i[r])}s=Math.max(s,a)}var l=t.MAX_BUFFER_LENGTH-s;e.bufferCheckPosition=l+e.position}(n),n},resume:function(){return this.error=null,this},close:function(){return this.write(null)},flush:function(){var t;L(t=this),""!==t.cdata&&(S(t,"oncdata",t.cdata),t.cdata=""),""!==t.script&&(S(t,"onscript",t.script),t.script="")}};try{e=n(88310).Stream}catch(t){e=function(){}}e||(e=function(){});var o=t.EVENTS.filter((function(t){return"error"!==t&&"end"!==t}));function a(t,n){if(!(this instanceof a))return new a(t,n);e.apply(this),this._parser=new r(t,n),this.writable=!0,this.readable=!0;var s=this;this._parser.onend=function(){s.emit("end")},this._parser.onerror=function(t){s.emit("error",t),s._parser.error=null},this._decoder=null,o.forEach((function(t){Object.defineProperty(s,"on"+t,{get:function(){return s._parser["on"+t]},set:function(e){if(!e)return s.removeAllListeners(t),s._parser["on"+t]=e,e;s.on(t,e)},enumerable:!0,configurable:!1})}))}a.prototype=Object.create(e.prototype,{constructor:{value:a}}),a.prototype.write=function(t){if("function"==typeof s&&"function"==typeof s.isBuffer&&s.isBuffer(t)){if(!this._decoder){var e=n(83141).I;this._decoder=new e("utf8")}t=this._decoder.write(t)}return this._parser.write(t.toString()),this.emit("data",t),!0},a.prototype.end=function(t){return t&&t.length&&this.write(t),this._parser.end(),!0},a.prototype.on=function(t,n){var s=this;return s._parser["on"+t]||-1===o.indexOf(t)||(s._parser["on"+t]=function(){var e=1===arguments.length?[arguments[0]]:Array.apply(null,arguments);e.splice(0,0,t),s.emit.apply(s,e)}),e.prototype.on.call(s,t,n)};var l="[CDATA[",c="DOCTYPE",d="http://www.w3.org/XML/1998/namespace",u="http://www.w3.org/2000/xmlns/",m={xml:d,xmlns:u},p=/[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,f=/[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/,g=/[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,h=/[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/;function v(t){return" "===t||"\n"===t||"\r"===t||"\t"===t}function A(t){return'"'===t||"'"===t}function w(t){return">"===t||v(t)}function y(t,e){return t.test(e)}function b(t,e){return!y(t,e)}var C,x,_,T=0;for(var k in t.STATE={BEGIN:T++,BEGIN_WHITESPACE:T++,TEXT:T++,TEXT_ENTITY:T++,OPEN_WAKA:T++,SGML_DECL:T++,SGML_DECL_QUOTED:T++,DOCTYPE:T++,DOCTYPE_QUOTED:T++,DOCTYPE_DTD:T++,DOCTYPE_DTD_QUOTED:T++,COMMENT_STARTING:T++,COMMENT:T++,COMMENT_ENDING:T++,COMMENT_ENDED:T++,CDATA:T++,CDATA_ENDING:T++,CDATA_ENDING_2:T++,PROC_INST:T++,PROC_INST_BODY:T++,PROC_INST_ENDING:T++,OPEN_TAG:T++,OPEN_TAG_SLASH:T++,ATTRIB:T++,ATTRIB_NAME:T++,ATTRIB_NAME_SAW_WHITE:T++,ATTRIB_VALUE:T++,ATTRIB_VALUE_QUOTED:T++,ATTRIB_VALUE_CLOSED:T++,ATTRIB_VALUE_UNQUOTED:T++,ATTRIB_VALUE_ENTITY_Q:T++,ATTRIB_VALUE_ENTITY_U:T++,CLOSE_TAG:T++,CLOSE_TAG_SAW_WHITE:T++,SCRIPT:T++,SCRIPT_ENDING:T++},t.XML_ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'"},t.ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'",AElig:198,Aacute:193,Acirc:194,Agrave:192,Aring:197,Atilde:195,Auml:196,Ccedil:199,ETH:208,Eacute:201,Ecirc:202,Egrave:200,Euml:203,Iacute:205,Icirc:206,Igrave:204,Iuml:207,Ntilde:209,Oacute:211,Ocirc:212,Ograve:210,Oslash:216,Otilde:213,Ouml:214,THORN:222,Uacute:218,Ucirc:219,Ugrave:217,Uuml:220,Yacute:221,aacute:225,acirc:226,aelig:230,agrave:224,aring:229,atilde:227,auml:228,ccedil:231,eacute:233,ecirc:234,egrave:232,eth:240,euml:235,iacute:237,icirc:238,igrave:236,iuml:239,ntilde:241,oacute:243,ocirc:244,ograve:242,oslash:248,otilde:245,ouml:246,szlig:223,thorn:254,uacute:250,ucirc:251,ugrave:249,uuml:252,yacute:253,yuml:255,copy:169,reg:174,nbsp:160,iexcl:161,cent:162,pound:163,curren:164,yen:165,brvbar:166,sect:167,uml:168,ordf:170,laquo:171,not:172,shy:173,macr:175,deg:176,plusmn:177,sup1:185,sup2:178,sup3:179,acute:180,micro:181,para:182,middot:183,cedil:184,ordm:186,raquo:187,frac14:188,frac12:189,frac34:190,iquest:191,times:215,divide:247,OElig:338,oelig:339,Scaron:352,scaron:353,Yuml:376,fnof:402,circ:710,tilde:732,Alpha:913,Beta:914,Gamma:915,Delta:916,Epsilon:917,Zeta:918,Eta:919,Theta:920,Iota:921,Kappa:922,Lambda:923,Mu:924,Nu:925,Xi:926,Omicron:927,Pi:928,Rho:929,Sigma:931,Tau:932,Upsilon:933,Phi:934,Chi:935,Psi:936,Omega:937,alpha:945,beta:946,gamma:947,delta:948,epsilon:949,zeta:950,eta:951,theta:952,iota:953,kappa:954,lambda:955,mu:956,nu:957,xi:958,omicron:959,pi:960,rho:961,sigmaf:962,sigma:963,tau:964,upsilon:965,phi:966,chi:967,psi:968,omega:969,thetasym:977,upsih:978,piv:982,ensp:8194,emsp:8195,thinsp:8201,zwnj:8204,zwj:8205,lrm:8206,rlm:8207,ndash:8211,mdash:8212,lsquo:8216,rsquo:8217,sbquo:8218,ldquo:8220,rdquo:8221,bdquo:8222,dagger:8224,Dagger:8225,bull:8226,hellip:8230,permil:8240,prime:8242,Prime:8243,lsaquo:8249,rsaquo:8250,oline:8254,frasl:8260,euro:8364,image:8465,weierp:8472,real:8476,trade:8482,alefsym:8501,larr:8592,uarr:8593,rarr:8594,darr:8595,harr:8596,crarr:8629,lArr:8656,uArr:8657,rArr:8658,dArr:8659,hArr:8660,forall:8704,part:8706,exist:8707,empty:8709,nabla:8711,isin:8712,notin:8713,ni:8715,prod:8719,sum:8721,minus:8722,lowast:8727,radic:8730,prop:8733,infin:8734,ang:8736,and:8743,or:8744,cap:8745,cup:8746,int:8747,there4:8756,sim:8764,cong:8773,asymp:8776,ne:8800,equiv:8801,le:8804,ge:8805,sub:8834,sup:8835,nsub:8836,sube:8838,supe:8839,oplus:8853,otimes:8855,perp:8869,sdot:8901,lceil:8968,rceil:8969,lfloor:8970,rfloor:8971,lang:9001,rang:9002,loz:9674,spades:9824,clubs:9827,hearts:9829,diams:9830},Object.keys(t.ENTITIES).forEach((function(e){var n=t.ENTITIES[e],s="number"==typeof n?String.fromCharCode(n):n;t.ENTITIES[e]=s})),t.STATE)t.STATE[t.STATE[k]]=k;function E(t,e,n){t[e]&&t[e](n)}function S(t,e,n){t.textNode&&L(t),E(t,e,n)}function L(t){t.textNode=N(t.opt,t.textNode),t.textNode&&E(t,"ontext",t.textNode),t.textNode=""}function N(t,e){return t.trim&&(e=e.trim()),t.normalize&&(e=e.replace(/\s+/g," ")),e}function I(t,e){return L(t),t.trackPosition&&(e+="\nLine: "+t.line+"\nColumn: "+t.column+"\nChar: "+t.c),e=new Error(e),t.error=e,E(t,"onerror",e),t}function F(t){return t.sawRoot&&!t.closedRoot&&P(t,"Unclosed root tag"),t.state!==T.BEGIN&&t.state!==T.BEGIN_WHITESPACE&&t.state!==T.TEXT&&I(t,"Unexpected end"),L(t),t.c="",t.closed=!0,E(t,"onend"),r.call(t,t.strict,t.opt),t}function P(t,e){if("object"!=typeof t||!(t instanceof r))throw new Error("bad call to strictFail");t.strict&&I(t,e)}function B(t){t.strict||(t.tagName=t.tagName[t.looseCase]());var e=t.tags[t.tags.length-1]||t,n=t.tag={name:t.tagName,attributes:{}};t.opt.xmlns&&(n.ns=e.ns),t.attribList.length=0,S(t,"onopentagstart",n)}function O(t,e){var n=t.indexOf(":")<0?["",t]:t.split(":"),s=n[0],i=n[1];return e&&"xmlns"===t&&(s="xmlns",i=""),{prefix:s,local:i}}function D(t){if(t.strict||(t.attribName=t.attribName[t.looseCase]()),-1!==t.attribList.indexOf(t.attribName)||t.tag.attributes.hasOwnProperty(t.attribName))t.attribName=t.attribValue="";else{if(t.opt.xmlns){var e=O(t.attribName,!0),n=e.prefix,s=e.local;if("xmlns"===n)if("xml"===s&&t.attribValue!==d)P(t,"xml: prefix must be bound to "+d+"\nActual: "+t.attribValue);else if("xmlns"===s&&t.attribValue!==u)P(t,"xmlns: prefix must be bound to "+u+"\nActual: "+t.attribValue);else{var i=t.tag,r=t.tags[t.tags.length-1]||t;i.ns===r.ns&&(i.ns=Object.create(r.ns)),i.ns[s]=t.attribValue}t.attribList.push([t.attribName,t.attribValue])}else t.tag.attributes[t.attribName]=t.attribValue,S(t,"onattribute",{name:t.attribName,value:t.attribValue});t.attribName=t.attribValue=""}}function U(t,e){if(t.opt.xmlns){var n=t.tag,s=O(t.tagName);n.prefix=s.prefix,n.local=s.local,n.uri=n.ns[s.prefix]||"",n.prefix&&!n.uri&&(P(t,"Unbound namespace prefix: "+JSON.stringify(t.tagName)),n.uri=s.prefix);var i=t.tags[t.tags.length-1]||t;n.ns&&i.ns!==n.ns&&Object.keys(n.ns).forEach((function(e){S(t,"onopennamespace",{prefix:e,uri:n.ns[e]})}));for(var r=0,o=t.attribList.length;r<o;r++){var a=t.attribList[r],l=a[0],c=a[1],d=O(l,!0),u=d.prefix,m=d.local,p=""===u?"":n.ns[u]||"",f={name:l,value:c,prefix:u,local:m,uri:p};u&&"xmlns"!==u&&!p&&(P(t,"Unbound namespace prefix: "+JSON.stringify(u)),f.uri=u),t.tag.attributes[l]=f,S(t,"onattribute",f)}t.attribList.length=0}t.tag.isSelfClosing=!!e,t.sawRoot=!0,t.tags.push(t.tag),S(t,"onopentag",t.tag),e||(t.noscript||"script"!==t.tagName.toLowerCase()?t.state=T.TEXT:t.state=T.SCRIPT,t.tag=null,t.tagName=""),t.attribName=t.attribValue="",t.attribList.length=0}function j(t){if(!t.tagName)return P(t,"Weird empty close tag."),t.textNode+="</>",void(t.state=T.TEXT);if(t.script){if("script"!==t.tagName)return t.script+="</"+t.tagName+">",t.tagName="",void(t.state=T.SCRIPT);S(t,"onscript",t.script),t.script=""}var e=t.tags.length,n=t.tagName;t.strict||(n=n[t.looseCase]());for(var s=n;e--&&t.tags[e].name!==s;)P(t,"Unexpected close tag");if(e<0)return P(t,"Unmatched closing tag: "+t.tagName),t.textNode+="</"+t.tagName+">",void(t.state=T.TEXT);t.tagName=n;for(var i=t.tags.length;i-- >e;){var r=t.tag=t.tags.pop();t.tagName=t.tag.name,S(t,"onclosetag",t.tagName);var o={};for(var a in r.ns)o[a]=r.ns[a];var l=t.tags[t.tags.length-1]||t;t.opt.xmlns&&r.ns!==l.ns&&Object.keys(r.ns).forEach((function(e){var n=r.ns[e];S(t,"onclosenamespace",{prefix:e,uri:n})}))}0===e&&(t.closedRoot=!0),t.tagName=t.attribValue=t.attribName="",t.attribList.length=0,t.state=T.TEXT}function z(t){var e,n=t.entity,s=n.toLowerCase(),i="";return t.ENTITIES[n]?t.ENTITIES[n]:t.ENTITIES[s]?t.ENTITIES[s]:("#"===(n=s).charAt(0)&&("x"===n.charAt(1)?(n=n.slice(2),i=(e=parseInt(n,16)).toString(16)):(n=n.slice(1),i=(e=parseInt(n,10)).toString(10))),n=n.replace(/^0+/,""),isNaN(e)||i.toLowerCase()!==n?(P(t,"Invalid character entity"),"&"+t.entity+";"):String.fromCodePoint(e))}function M(t,e){"<"===e?(t.state=T.OPEN_WAKA,t.startTagPosition=t.position):v(e)||(P(t,"Non-whitespace before first tag."),t.textNode=e,t.state=T.TEXT)}function R(t,e){var n="";return e<t.length&&(n=t.charAt(e)),n}T=t.STATE,String.fromCodePoint||(C=String.fromCharCode,x=Math.floor,_=function(){var t,e,n=[],s=-1,i=arguments.length;if(!i)return"";for(var r="";++s<i;){var o=Number(arguments[s]);if(!isFinite(o)||o<0||o>1114111||x(o)!==o)throw RangeError("Invalid code point: "+o);o<=65535?n.push(o):(t=55296+((o-=65536)>>10),e=o%1024+56320,n.push(t,e)),(s+1===i||n.length>16384)&&(r+=C.apply(null,n),n.length=0)}return r},Object.defineProperty?Object.defineProperty(String,"fromCodePoint",{value:_,configurable:!0,writable:!0}):String.fromCodePoint=_)}(e)},42791:function(t,e,n){var s=n(65606);!function(t,e){"use strict";if(!t.setImmediate){var n,i,r,o,a,l=1,c={},d=!1,u=t.document,m=Object.getPrototypeOf&&Object.getPrototypeOf(t);m=m&&m.setTimeout?m:t,"[object process]"==={}.toString.call(t.process)?n=function(t){s.nextTick((function(){f(t)}))}:function(){if(t.postMessage&&!t.importScripts){var e=!0,n=t.onmessage;return t.onmessage=function(){e=!1},t.postMessage("","*"),t.onmessage=n,e}}()?(o="setImmediate$"+Math.random()+"$",a=function(e){e.source===t&&"string"==typeof e.data&&0===e.data.indexOf(o)&&f(+e.data.slice(o.length))},t.addEventListener?t.addEventListener("message",a,!1):t.attachEvent("onmessage",a),n=function(e){t.postMessage(o+e,"*")}):t.MessageChannel?((r=new MessageChannel).port1.onmessage=function(t){f(t.data)},n=function(t){r.port2.postMessage(t)}):u&&"onreadystatechange"in u.createElement("script")?(i=u.documentElement,n=function(t){var e=u.createElement("script");e.onreadystatechange=function(){f(t),e.onreadystatechange=null,i.removeChild(e),e=null},i.appendChild(e)}):n=function(t){setTimeout(f,0,t)},m.setImmediate=function(t){"function"!=typeof t&&(t=new Function(""+t));for(var e=new Array(arguments.length-1),s=0;s<e.length;s++)e[s]=arguments[s+1];var i={callback:t,args:e};return c[l]=i,n(l),l++},m.clearImmediate=p}function p(t){delete c[t]}function f(t){if(d)setTimeout(f,0,t);else{var e=c[t];if(e){d=!0;try{!function(t){var e=t.callback,n=t.args;switch(n.length){case 0:e();break;case 1:e(n[0]);break;case 2:e(n[0],n[1]);break;case 3:e(n[0],n[1],n[2]);break;default:e.apply(undefined,n)}}(e)}finally{p(t),d=!1}}}}}("undefined"==typeof self?void 0===n.g?this:n.g:self)},75270:t=>{function e(t,e){return null==t?e:t}t.exports=function(t){var n,s=e((t=t||{}).max,1),i=e(t.min,0),r=e(t.autostart,!0),o=e(t.ignoreSameProgress,!1),a=null,l=null,c=null,d=(n=e(t.historyTimeConstant,2.5),function(t,e,s){return t+s/(s+n)*(e-t)});function u(){m(i)}function m(t,e){if("number"!=typeof e&&(e=Date.now()),l!==e&&(!o||c!==t)){if(null===l||null===c)return c=t,void(l=e);var n=.001*(e-l),s=(t-c)/n;a=null===a?s:d(a,s,n),c=t,l=e}}return{start:u,reset:function(){a=null,l=null,c=null,r&&u()},report:m,estimate:function(t){if(null===c)return 1/0;if(c>=s)return 0;if(null===a)return 1/0;var e=(s-c)/a;return"number"==typeof t&&"number"==typeof l&&(e-=.001*(t-l)),Math.max(0,e)},rate:function(){return null===a?0:a}}}},97103:function(t,e,n){var s=void 0!==n.g&&n.g||"undefined"!=typeof self&&self||window,i=Function.prototype.apply;function r(t,e){this._id=t,this._clearFn=e}e.setTimeout=function(){return new r(i.call(setTimeout,s,arguments),clearTimeout)},e.setInterval=function(){return new r(i.call(setInterval,s,arguments),clearInterval)},e.clearTimeout=e.clearInterval=function(t){t&&t.close()},r.prototype.unref=r.prototype.ref=function(){},r.prototype.close=function(){this._clearFn.call(s,this._id)},e.enroll=function(t,e){clearTimeout(t._idleTimeoutId),t._idleTimeout=e},e.unenroll=function(t){clearTimeout(t._idleTimeoutId),t._idleTimeout=-1},e._unrefActive=e.active=function(t){clearTimeout(t._idleTimeoutId);var e=t._idleTimeout;e>=0&&(t._idleTimeoutId=setTimeout((function(){t._onTimeout&&t._onTimeout()}),e))},n(42791),e.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==n.g&&n.g.setImmediate||this&&this.setImmediate,e.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==n.g&&n.g.clearImmediate||this&&this.clearImmediate},83177:function(t,e){(function(){"use strict";e.stripBOM=function(t){return"\ufeff"===t[0]?t.substring(1):t}}).call(this)},56712:function(t,e,n){(function(){"use strict";var t,s,i,r,o,a={}.hasOwnProperty;t=n(59665),s=n(66465).defaults,r=function(t){return"string"==typeof t&&(t.indexOf("&")>=0||t.indexOf(">")>=0||t.indexOf("<")>=0)},o=function(t){return"<![CDATA["+i(t)+"]]>"},i=function(t){return t.replace("]]>","]]]]><![CDATA[>")},e.Builder=function(){function e(t){var e,n,i;for(e in this.options={},n=s[.2])a.call(n,e)&&(i=n[e],this.options[e]=i);for(e in t)a.call(t,e)&&(i=t[e],this.options[e]=i)}return e.prototype.buildObject=function(e){var n,i,l,c,d,u;return n=this.options.attrkey,i=this.options.charkey,1===Object.keys(e).length&&this.options.rootName===s[.2].rootName?e=e[d=Object.keys(e)[0]]:d=this.options.rootName,u=this,l=function(t,e){var s,c,d,m,p,f;if("object"!=typeof e)u.options.cdata&&r(e)?t.raw(o(e)):t.txt(e);else if(Array.isArray(e)){for(m in e)if(a.call(e,m))for(p in c=e[m])d=c[p],t=l(t.ele(p),d).up()}else for(p in e)if(a.call(e,p))if(c=e[p],p===n){if("object"==typeof c)for(s in c)f=c[s],t=t.att(s,f)}else if(p===i)t=u.options.cdata&&r(c)?t.raw(o(c)):t.txt(c);else if(Array.isArray(c))for(m in c)a.call(c,m)&&(t="string"==typeof(d=c[m])?u.options.cdata&&r(d)?t.ele(p).raw(o(d)).up():t.ele(p,d).up():l(t.ele(p),d).up());else"object"==typeof c?t=l(t.ele(p),c).up():"string"==typeof c&&u.options.cdata&&r(c)?t=t.ele(p).raw(o(c)).up():(null==c&&(c=""),t=t.ele(p,c.toString()).up());return t},c=t.create(d,this.options.xmldec,this.options.doctype,{headless:this.options.headless,allowSurrogateChars:this.options.allowSurrogateChars}),l(c,e).end(this.options.renderOpts)},e}()}).call(this)},66465:function(t,e){(function(){e.defaults={.1:{explicitCharkey:!1,trim:!0,normalize:!0,normalizeTags:!1,attrkey:"@",charkey:"#",explicitArray:!1,ignoreAttrs:!1,mergeAttrs:!1,explicitRoot:!1,validator:null,xmlns:!1,explicitChildren:!1,childkey:"@@",charsAsChildren:!1,includeWhiteChars:!1,async:!1,strict:!0,attrNameProcessors:null,attrValueProcessors:null,tagNameProcessors:null,valueProcessors:null,emptyTag:""},.2:{explicitCharkey:!1,trim:!1,normalize:!1,normalizeTags:!1,attrkey:"$",charkey:"_",explicitArray:!0,ignoreAttrs:!1,mergeAttrs:!1,explicitRoot:!0,validator:null,xmlns:!1,explicitChildren:!1,preserveChildrenOrder:!1,childkey:"$$",charsAsChildren:!1,includeWhiteChars:!1,async:!1,strict:!0,attrNameProcessors:null,attrValueProcessors:null,tagNameProcessors:null,valueProcessors:null,rootName:"root",xmldec:{version:"1.0",encoding:"UTF-8",standalone:!0},doctype:null,renderOpts:{pretty:!0,indent:" ",newline:"\n"},headless:!1,chunkSize:1e4,emptyTag:"",cdata:!1}}}).call(this)},11912:function(t,e,n){(function(){"use strict";var t,s,i,r,o,a,l,c,d,u=function(t,e){return function(){return t.apply(e,arguments)}},m={}.hasOwnProperty;c=n(64043),r=n(37007),t=n(83177),l=n(92114),d=n(97103).setImmediate,s=n(66465).defaults,o=function(t){return"object"==typeof t&&null!=t&&0===Object.keys(t).length},a=function(t,e,n){var s,i;for(s=0,i=t.length;s<i;s++)e=(0,t[s])(e,n);return e},i=function(t,e,n){var s;return(s=Object.create(null)).value=n,s.writable=!0,s.enumerable=!0,s.configurable=!0,Object.defineProperty(t,e,s)},e.Parser=function(n){function r(t){var n,i,r;if(this.parseStringPromise=u(this.parseStringPromise,this),this.parseString=u(this.parseString,this),this.reset=u(this.reset,this),this.assignOrPush=u(this.assignOrPush,this),this.processAsync=u(this.processAsync,this),!(this instanceof e.Parser))return new e.Parser(t);for(n in this.options={},i=s[.2])m.call(i,n)&&(r=i[n],this.options[n]=r);for(n in t)m.call(t,n)&&(r=t[n],this.options[n]=r);this.options.xmlns&&(this.options.xmlnskey=this.options.attrkey+"ns"),this.options.normalizeTags&&(this.options.tagNameProcessors||(this.options.tagNameProcessors=[]),this.options.tagNameProcessors.unshift(l.normalize)),this.reset()}return function(t,e){for(var n in e)m.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(r,n),r.prototype.processAsync=function(){var t,e;try{return this.remaining.length<=this.options.chunkSize?(t=this.remaining,this.remaining="",this.saxParser=this.saxParser.write(t),this.saxParser.close()):(t=this.remaining.substr(0,this.options.chunkSize),this.remaining=this.remaining.substr(this.options.chunkSize,this.remaining.length),this.saxParser=this.saxParser.write(t),d(this.processAsync))}catch(t){if(e=t,!this.saxParser.errThrown)return this.saxParser.errThrown=!0,this.emit(e)}},r.prototype.assignOrPush=function(t,e,n){return e in t?(t[e]instanceof Array||i(t,e,[t[e]]),t[e].push(n)):this.options.explicitArray?i(t,e,[n]):i(t,e,n)},r.prototype.reset=function(){var t,e,n,s,r;return this.removeAllListeners(),this.saxParser=c.parser(this.options.strict,{trim:!1,normalize:!1,xmlns:this.options.xmlns}),this.saxParser.errThrown=!1,this.saxParser.onerror=(r=this,function(t){if(r.saxParser.resume(),!r.saxParser.errThrown)return r.saxParser.errThrown=!0,r.emit("error",t)}),this.saxParser.onend=function(t){return function(){if(!t.saxParser.ended)return t.saxParser.ended=!0,t.emit("end",t.resultObject)}}(this),this.saxParser.ended=!1,this.EXPLICIT_CHARKEY=this.options.explicitCharkey,this.resultObject=null,s=[],t=this.options.attrkey,e=this.options.charkey,this.saxParser.onopentag=function(n){return function(r){var o,l,c,d,u;if((c={})[e]="",!n.options.ignoreAttrs)for(o in u=r.attributes)m.call(u,o)&&(t in c||n.options.mergeAttrs||(c[t]={}),l=n.options.attrValueProcessors?a(n.options.attrValueProcessors,r.attributes[o],o):r.attributes[o],d=n.options.attrNameProcessors?a(n.options.attrNameProcessors,o):o,n.options.mergeAttrs?n.assignOrPush(c,d,l):i(c[t],d,l));return c["#name"]=n.options.tagNameProcessors?a(n.options.tagNameProcessors,r.name):r.name,n.options.xmlns&&(c[n.options.xmlnskey]={uri:r.uri,local:r.local}),s.push(c)}}(this),this.saxParser.onclosetag=function(t){return function(){var n,r,l,c,d,u,p,f,g,h;if(u=s.pop(),d=u["#name"],t.options.explicitChildren&&t.options.preserveChildrenOrder||delete u["#name"],!0===u.cdata&&(n=u.cdata,delete u.cdata),g=s[s.length-1],u[e].match(/^\s*$/)&&!n?(r=u[e],delete u[e]):(t.options.trim&&(u[e]=u[e].trim()),t.options.normalize&&(u[e]=u[e].replace(/\s{2,}/g," ").trim()),u[e]=t.options.valueProcessors?a(t.options.valueProcessors,u[e],d):u[e],1===Object.keys(u).length&&e in u&&!t.EXPLICIT_CHARKEY&&(u=u[e])),o(u)&&(u="function"==typeof t.options.emptyTag?t.options.emptyTag():""!==t.options.emptyTag?t.options.emptyTag:r),null!=t.options.validator&&(h="/"+function(){var t,e,n;for(n=[],t=0,e=s.length;t<e;t++)c=s[t],n.push(c["#name"]);return n}().concat(d).join("/"),function(){var e;try{return u=t.options.validator(h,g&&g[d],u)}catch(n){return e=n,t.emit("error",e)}}()),t.options.explicitChildren&&!t.options.mergeAttrs&&"object"==typeof u)if(t.options.preserveChildrenOrder){if(g){for(l in g[t.options.childkey]=g[t.options.childkey]||[],p={},u)m.call(u,l)&&i(p,l,u[l]);g[t.options.childkey].push(p),delete u["#name"],1===Object.keys(u).length&&e in u&&!t.EXPLICIT_CHARKEY&&(u=u[e])}}else c={},t.options.attrkey in u&&(c[t.options.attrkey]=u[t.options.attrkey],delete u[t.options.attrkey]),!t.options.charsAsChildren&&t.options.charkey in u&&(c[t.options.charkey]=u[t.options.charkey],delete u[t.options.charkey]),Object.getOwnPropertyNames(u).length>0&&(c[t.options.childkey]=u),u=c;return s.length>0?t.assignOrPush(g,d,u):(t.options.explicitRoot&&(f=u,i(u={},d,f)),t.resultObject=u,t.saxParser.ended=!0,t.emit("end",t.resultObject))}}(this),n=function(t){return function(n){var i,r;if(r=s[s.length-1])return r[e]+=n,t.options.explicitChildren&&t.options.preserveChildrenOrder&&t.options.charsAsChildren&&(t.options.includeWhiteChars||""!==n.replace(/\\n/g,"").trim())&&(r[t.options.childkey]=r[t.options.childkey]||[],(i={"#name":"__text__"})[e]=n,t.options.normalize&&(i[e]=i[e].replace(/\s{2,}/g," ").trim()),r[t.options.childkey].push(i)),r}}(this),this.saxParser.ontext=n,this.saxParser.oncdata=function(t){var e;if(e=n(t))return e.cdata=!0}},r.prototype.parseString=function(e,n){var s;null!=n&&"function"==typeof n&&(this.on("end",(function(t){return this.reset(),n(null,t)})),this.on("error",(function(t){return this.reset(),n(t)})));try{return""===(e=e.toString()).trim()?(this.emit("end",null),!0):(e=t.stripBOM(e),this.options.async?(this.remaining=e,d(this.processAsync),this.saxParser):this.saxParser.write(e).close())}catch(t){if(s=t,!this.saxParser.errThrown&&!this.saxParser.ended)return this.emit("error",s),this.saxParser.errThrown=!0;if(this.saxParser.ended)throw s}},r.prototype.parseStringPromise=function(t){return new Promise((e=this,function(n,s){return e.parseString(t,(function(t,e){return t?s(t):n(e)}))}));var e},r}(r),e.parseString=function(t,n,s){var i,r;return null!=s?("function"==typeof s&&(i=s),"object"==typeof n&&(r=n)):("function"==typeof n&&(i=n),r={}),new e.Parser(r).parseString(t,i)},e.parseStringPromise=function(t,n){var s;return"object"==typeof n&&(s=n),new e.Parser(s).parseStringPromise(t)}}).call(this)},92114:function(t,e){(function(){"use strict";var t;t=new RegExp(/(?!xmlns)^.*:/),e.normalize=function(t){return t.toLowerCase()},e.firstCharLowerCase=function(t){return t.charAt(0).toLowerCase()+t.slice(1)},e.stripPrefix=function(e){return e.replace(t,"")},e.parseNumbers=function(t){return isNaN(t)||(t=t%1==0?parseInt(t,10):parseFloat(t)),t},e.parseBooleans=function(t){return/^(?:true|false)$/i.test(t)&&(t="true"===t.toLowerCase()),t}}).call(this)},38805:function(t,e,n){(function(){"use strict";var t,s,i,r,o={}.hasOwnProperty;s=n(66465),t=n(56712),i=n(11912),r=n(92114),e.defaults=s.defaults,e.processors=r,e.ValidationError=function(t){function e(t){this.message=t}return function(t,e){for(var n in e)o.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(e,Error),e}(),e.Builder=t.Builder,e.Parser=i.Parser,e.parseString=i.parseString,e.parseStringPromise=i.parseStringPromise}).call(this)},34923:function(t){(function(){t.exports={Disconnected:1,Preceding:2,Following:4,Contains:8,ContainedBy:16,ImplementationSpecific:32}}).call(this)},71737:function(t){(function(){t.exports={Element:1,Attribute:2,Text:3,CData:4,EntityReference:5,EntityDeclaration:6,ProcessingInstruction:7,Comment:8,Document:9,DocType:10,DocumentFragment:11,NotationDeclaration:12,Declaration:201,Raw:202,AttributeDeclaration:203,ElementDeclaration:204,Dummy:205}}).call(this)},49241:function(t){(function(){var e,n,s,i,r,o,a,l=[].slice,c={}.hasOwnProperty;e=function(){var t,e,n,s,i,o;if(o=arguments[0],i=2<=arguments.length?l.call(arguments,1):[],r(Object.assign))Object.assign.apply(null,arguments);else for(t=0,n=i.length;t<n;t++)if(null!=(s=i[t]))for(e in s)c.call(s,e)&&(o[e]=s[e]);return o},r=function(t){return!!t&&"[object Function]"===Object.prototype.toString.call(t)},o=function(t){var e;return!!t&&("function"==(e=typeof t)||"object"===e)},s=function(t){return r(Array.isArray)?Array.isArray(t):"[object Array]"===Object.prototype.toString.call(t)},i=function(t){var e;if(s(t))return!t.length;for(e in t)if(c.call(t,e))return!1;return!0},a=function(t){var e,n;return o(t)&&(n=Object.getPrototypeOf(t))&&(e=n.constructor)&&"function"==typeof e&&e instanceof e&&Function.prototype.toString.call(e)===Function.prototype.toString.call(Object)},n=function(t){return r(t.valueOf)?t.valueOf():t},t.exports.assign=e,t.exports.isFunction=r,t.exports.isObject=o,t.exports.isArray=s,t.exports.isEmpty=i,t.exports.isPlainObject=a,t.exports.getValue=n}).call(this)},88753:function(t){(function(){t.exports={None:0,OpenTag:1,InsideTag:2,CloseTag:3}}).call(this)},54238:function(t,e,n){(function(){var e;e=n(71737),n(10468),t.exports=function(){function t(t,n,s){if(this.parent=t,this.parent&&(this.options=this.parent.options,this.stringify=this.parent.stringify),null==n)throw new Error("Missing attribute name. "+this.debugInfo(n));this.name=this.stringify.name(n),this.value=this.stringify.attValue(s),this.type=e.Attribute,this.isId=!1,this.schemaTypeInfo=null}return Object.defineProperty(t.prototype,"nodeType",{get:function(){return this.type}}),Object.defineProperty(t.prototype,"ownerElement",{get:function(){return this.parent}}),Object.defineProperty(t.prototype,"textContent",{get:function(){return this.value},set:function(t){return this.value=t||""}}),Object.defineProperty(t.prototype,"namespaceURI",{get:function(){return""}}),Object.defineProperty(t.prototype,"prefix",{get:function(){return""}}),Object.defineProperty(t.prototype,"localName",{get:function(){return this.name}}),Object.defineProperty(t.prototype,"specified",{get:function(){return!0}}),t.prototype.clone=function(){return Object.create(this)},t.prototype.toString=function(t){return this.options.writer.attribute(this,this.options.writer.filterOptions(t))},t.prototype.debugInfo=function(t){return null==(t=t||this.name)?"parent: <"+this.parent.name+">":"attribute: {"+t+"}, parent: <"+this.parent.name+">"},t.prototype.isEqualNode=function(t){return t.namespaceURI===this.namespaceURI&&t.prefix===this.prefix&&t.localName===this.localName&&t.value===this.value},t}()}).call(this)},92691:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;e=n(71737),s=n(17457),t.exports=function(t){function n(t,s){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing CDATA text. "+this.debugInfo());this.name="#cdata-section",this.type=e.CData,this.value=this.stringify.cdata(s)}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.clone=function(){return Object.create(this)},n.prototype.toString=function(t){return this.options.writer.cdata(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},17457:function(t,e,n){(function(){var e,s={}.hasOwnProperty;e=n(10468),t.exports=function(t){function e(t){e.__super__.constructor.call(this,t),this.value=""}return function(t,e){for(var n in e)s.call(e,n)&&(t[n]=e[n]);function i(){this.constructor=t}i.prototype=e.prototype,t.prototype=new i,t.__super__=e.prototype}(e,t),Object.defineProperty(e.prototype,"data",{get:function(){return this.value},set:function(t){return this.value=t||""}}),Object.defineProperty(e.prototype,"length",{get:function(){return this.value.length}}),Object.defineProperty(e.prototype,"textContent",{get:function(){return this.value},set:function(t){return this.value=t||""}}),e.prototype.clone=function(){return Object.create(this)},e.prototype.substringData=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.appendData=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.insertData=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.deleteData=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.replaceData=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.isEqualNode=function(t){return!!e.__super__.isEqualNode.apply(this,arguments).isEqualNode(t)&&t.data===this.data},e}(e)}).call(this)},32679:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;e=n(71737),s=n(17457),t.exports=function(t){function n(t,s){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing comment text. "+this.debugInfo());this.name="#comment",this.type=e.Comment,this.value=this.stringify.comment(s)}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.clone=function(){return Object.create(this)},n.prototype.toString=function(t){return this.options.writer.comment(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},33074:function(t,e,n){(function(){var e,s;e=n(55660),s=n(92527),t.exports=function(){function t(){this.defaultParams={"canonical-form":!1,"cdata-sections":!1,comments:!1,"datatype-normalization":!1,"element-content-whitespace":!0,entities:!0,"error-handler":new e,infoset:!0,"validate-if-schema":!1,namespaces:!0,"namespace-declarations":!0,"normalize-characters":!1,"schema-location":"","schema-type":"","split-cdata-sections":!0,validate:!1,"well-formed":!0},this.params=Object.create(this.defaultParams)}return Object.defineProperty(t.prototype,"parameterNames",{get:function(){return new s(Object.keys(this.defaultParams))}}),t.prototype.getParameter=function(t){return this.params.hasOwnProperty(t)?this.params[t]:null},t.prototype.canSetParameter=function(t,e){return!0},t.prototype.setParameter=function(t,e){return null!=e?this.params[t]=e:delete this.params[t]},t}()}).call(this)},55660:function(t){(function(){t.exports=function(){function t(){}return t.prototype.handleError=function(t){throw new Error(t)},t}()}).call(this)},67260:function(t){(function(){t.exports=function(){function t(){}return t.prototype.hasFeature=function(t,e){return!0},t.prototype.createDocumentType=function(t,e,n){throw new Error("This DOM method is not implemented.")},t.prototype.createDocument=function(t,e,n){throw new Error("This DOM method is not implemented.")},t.prototype.createHTMLDocument=function(t){throw new Error("This DOM method is not implemented.")},t.prototype.getFeature=function(t,e){throw new Error("This DOM method is not implemented.")},t}()}).call(this)},92527:function(t){(function(){t.exports=function(){function t(t){this.arr=t||[]}return Object.defineProperty(t.prototype,"length",{get:function(){return this.arr.length}}),t.prototype.item=function(t){return this.arr[t]||null},t.prototype.contains=function(t){return-1!==this.arr.indexOf(t)},t}()}).call(this)},34111:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;s=n(10468),e=n(71737),t.exports=function(t){function n(t,s,i,r,o,a){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing DTD element name. "+this.debugInfo());if(null==i)throw new Error("Missing DTD attribute name. "+this.debugInfo(s));if(!r)throw new Error("Missing DTD attribute type. "+this.debugInfo(s));if(!o)throw new Error("Missing DTD attribute default. "+this.debugInfo(s));if(0!==o.indexOf("#")&&(o="#"+o),!o.match(/^(#REQUIRED|#IMPLIED|#FIXED|#DEFAULT)$/))throw new Error("Invalid default value type; expected: #REQUIRED, #IMPLIED, #FIXED or #DEFAULT. "+this.debugInfo(s));if(a&&!o.match(/^(#FIXED|#DEFAULT)$/))throw new Error("Default value only applies to #FIXED or #DEFAULT. "+this.debugInfo(s));this.elementName=this.stringify.name(s),this.type=e.AttributeDeclaration,this.attributeName=this.stringify.name(i),this.attributeType=this.stringify.dtdAttType(r),a&&(this.defaultValue=this.stringify.dtdAttDefault(a)),this.defaultValueType=o}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.toString=function(t){return this.options.writer.dtdAttList(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},67696:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;s=n(10468),e=n(71737),t.exports=function(t){function n(t,s,i){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing DTD element name. "+this.debugInfo());i||(i="(#PCDATA)"),Array.isArray(i)&&(i="("+i.join(",")+")"),this.name=this.stringify.name(s),this.type=e.ElementDeclaration,this.value=this.stringify.dtdElementValue(i)}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.toString=function(t){return this.options.writer.dtdElement(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},5529:function(t,e,n){(function(){var e,s,i,r={}.hasOwnProperty;i=n(49241).isObject,s=n(10468),e=n(71737),t.exports=function(t){function n(t,s,r,o){if(n.__super__.constructor.call(this,t),null==r)throw new Error("Missing DTD entity name. "+this.debugInfo(r));if(null==o)throw new Error("Missing DTD entity value. "+this.debugInfo(r));if(this.pe=!!s,this.name=this.stringify.name(r),this.type=e.EntityDeclaration,i(o)){if(!o.pubID&&!o.sysID)throw new Error("Public and/or system identifiers are required for an external entity. "+this.debugInfo(r));if(o.pubID&&!o.sysID)throw new Error("System identifier is required for a public external entity. "+this.debugInfo(r));if(this.internal=!1,null!=o.pubID&&(this.pubID=this.stringify.dtdPubID(o.pubID)),null!=o.sysID&&(this.sysID=this.stringify.dtdSysID(o.sysID)),null!=o.nData&&(this.nData=this.stringify.dtdNData(o.nData)),this.pe&&this.nData)throw new Error("Notation declaration is not allowed in a parameter entity. "+this.debugInfo(r))}else this.value=this.stringify.dtdEntityValue(o),this.internal=!0}return function(t,e){for(var n in e)r.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),Object.defineProperty(n.prototype,"publicId",{get:function(){return this.pubID}}),Object.defineProperty(n.prototype,"systemId",{get:function(){return this.sysID}}),Object.defineProperty(n.prototype,"notationName",{get:function(){return this.nData||null}}),Object.defineProperty(n.prototype,"inputEncoding",{get:function(){return null}}),Object.defineProperty(n.prototype,"xmlEncoding",{get:function(){return null}}),Object.defineProperty(n.prototype,"xmlVersion",{get:function(){return null}}),n.prototype.toString=function(t){return this.options.writer.dtdEntity(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},28012:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;s=n(10468),e=n(71737),t.exports=function(t){function n(t,s,i){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing DTD notation name. "+this.debugInfo(s));if(!i.pubID&&!i.sysID)throw new Error("Public or system identifiers are required for an external entity. "+this.debugInfo(s));this.name=this.stringify.name(s),this.type=e.NotationDeclaration,null!=i.pubID&&(this.pubID=this.stringify.dtdPubID(i.pubID)),null!=i.sysID&&(this.sysID=this.stringify.dtdSysID(i.sysID))}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),Object.defineProperty(n.prototype,"publicId",{get:function(){return this.pubID}}),Object.defineProperty(n.prototype,"systemId",{get:function(){return this.sysID}}),n.prototype.toString=function(t){return this.options.writer.dtdNotation(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},34130:function(t,e,n){(function(){var e,s,i,r={}.hasOwnProperty;i=n(49241).isObject,s=n(10468),e=n(71737),t.exports=function(t){function n(t,s,r,o){var a;n.__super__.constructor.call(this,t),i(s)&&(s=(a=s).version,r=a.encoding,o=a.standalone),s||(s="1.0"),this.type=e.Declaration,this.version=this.stringify.xmlVersion(s),null!=r&&(this.encoding=this.stringify.xmlEncoding(r)),null!=o&&(this.standalone=this.stringify.xmlStandalone(o))}return function(t,e){for(var n in e)r.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.toString=function(t){return this.options.writer.declaration(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},96376:function(t,e,n){(function(){var e,s,i,r,o,a,l,c,d={}.hasOwnProperty;c=n(49241).isObject,l=n(10468),e=n(71737),s=n(34111),r=n(5529),i=n(67696),o=n(28012),a=n(24797),t.exports=function(t){function n(t,s,i){var r,o,a,l,d,u;if(n.__super__.constructor.call(this,t),this.type=e.DocType,t.children)for(o=0,a=(l=t.children).length;o<a;o++)if((r=l[o]).type===e.Element){this.name=r.name;break}this.documentObject=t,c(s)&&(s=(d=s).pubID,i=d.sysID),null==i&&(i=(u=[s,i])[0],s=u[1]),null!=s&&(this.pubID=this.stringify.dtdPubID(s)),null!=i&&(this.sysID=this.stringify.dtdSysID(i))}return function(t,e){for(var n in e)d.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),Object.defineProperty(n.prototype,"entities",{get:function(){var t,n,s,i,r;for(i={},n=0,s=(r=this.children).length;n<s;n++)(t=r[n]).type!==e.EntityDeclaration||t.pe||(i[t.name]=t);return new a(i)}}),Object.defineProperty(n.prototype,"notations",{get:function(){var t,n,s,i,r;for(i={},n=0,s=(r=this.children).length;n<s;n++)(t=r[n]).type===e.NotationDeclaration&&(i[t.name]=t);return new a(i)}}),Object.defineProperty(n.prototype,"publicId",{get:function(){return this.pubID}}),Object.defineProperty(n.prototype,"systemId",{get:function(){return this.sysID}}),Object.defineProperty(n.prototype,"internalSubset",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),n.prototype.element=function(t,e){var n;return n=new i(this,t,e),this.children.push(n),this},n.prototype.attList=function(t,e,n,i,r){var o;return o=new s(this,t,e,n,i,r),this.children.push(o),this},n.prototype.entity=function(t,e){var n;return n=new r(this,!1,t,e),this.children.push(n),this},n.prototype.pEntity=function(t,e){var n;return n=new r(this,!0,t,e),this.children.push(n),this},n.prototype.notation=function(t,e){var n;return n=new o(this,t,e),this.children.push(n),this},n.prototype.toString=function(t){return this.options.writer.docType(this,this.options.writer.filterOptions(t))},n.prototype.ele=function(t,e){return this.element(t,e)},n.prototype.att=function(t,e,n,s,i){return this.attList(t,e,n,s,i)},n.prototype.ent=function(t,e){return this.entity(t,e)},n.prototype.pent=function(t,e){return this.pEntity(t,e)},n.prototype.not=function(t,e){return this.notation(t,e)},n.prototype.up=function(){return this.root()||this.documentObject},n.prototype.isEqualNode=function(t){return!!n.__super__.isEqualNode.apply(this,arguments).isEqualNode(t)&&t.name===this.name&&t.publicId===this.publicId&&t.systemId===this.systemId},n}(l)}).call(this)},71933:function(t,e,n){(function(){var e,s,i,r,o,a,l,c={}.hasOwnProperty;l=n(49241).isPlainObject,i=n(67260),s=n(33074),r=n(10468),e=n(71737),a=n(43976),o=n(40382),t.exports=function(t){function n(t){n.__super__.constructor.call(this,null),this.name="#document",this.type=e.Document,this.documentURI=null,this.domConfig=new s,t||(t={}),t.writer||(t.writer=new o),this.options=t,this.stringify=new a(t)}return function(t,e){for(var n in e)c.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),Object.defineProperty(n.prototype,"implementation",{value:new i}),Object.defineProperty(n.prototype,"doctype",{get:function(){var t,n,s,i;for(n=0,s=(i=this.children).length;n<s;n++)if((t=i[n]).type===e.DocType)return t;return null}}),Object.defineProperty(n.prototype,"documentElement",{get:function(){return this.rootObject||null}}),Object.defineProperty(n.prototype,"inputEncoding",{get:function(){return null}}),Object.defineProperty(n.prototype,"strictErrorChecking",{get:function(){return!1}}),Object.defineProperty(n.prototype,"xmlEncoding",{get:function(){return 0!==this.children.length&&this.children[0].type===e.Declaration?this.children[0].encoding:null}}),Object.defineProperty(n.prototype,"xmlStandalone",{get:function(){return 0!==this.children.length&&this.children[0].type===e.Declaration&&"yes"===this.children[0].standalone}}),Object.defineProperty(n.prototype,"xmlVersion",{get:function(){return 0!==this.children.length&&this.children[0].type===e.Declaration?this.children[0].version:"1.0"}}),Object.defineProperty(n.prototype,"URL",{get:function(){return this.documentURI}}),Object.defineProperty(n.prototype,"origin",{get:function(){return null}}),Object.defineProperty(n.prototype,"compatMode",{get:function(){return null}}),Object.defineProperty(n.prototype,"characterSet",{get:function(){return null}}),Object.defineProperty(n.prototype,"contentType",{get:function(){return null}}),n.prototype.end=function(t){var e;return e={},t?l(t)&&(e=t,t=this.options.writer):t=this.options.writer,t.document(this,t.filterOptions(e))},n.prototype.toString=function(t){return this.options.writer.document(this,this.options.writer.filterOptions(t))},n.prototype.createElement=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createDocumentFragment=function(){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createTextNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createComment=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createCDATASection=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createProcessingInstruction=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createAttribute=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createEntityReference=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByTagName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.importNode=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createElementNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createAttributeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByTagNameNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementById=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.adoptNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.normalizeDocument=function(){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.renameNode=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByClassName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createEvent=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createRange=function(){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createNodeIterator=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createTreeWalker=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},n}(r)}).call(this)},80400:function(t,e,n){(function(){var e,s,i,r,o,a,l,c,d,u,m,p,f,g,h,v,A,w,y,b,C,x,_,T={}.hasOwnProperty;_=n(49241),C=_.isObject,b=_.isFunction,x=_.isPlainObject,y=_.getValue,e=n(71737),p=n(71933),f=n(33906),r=n(92691),o=n(32679),h=n(1268),w=n(82535),g=n(85915),u=n(34130),m=n(96376),a=n(34111),c=n(5529),l=n(67696),d=n(28012),i=n(54238),A=n(43976),v=n(40382),s=n(88753),t.exports=function(){function t(t,n,s){var i;this.name="?xml",this.type=e.Document,t||(t={}),i={},t.writer?x(t.writer)&&(i=t.writer,t.writer=new v):t.writer=new v,this.options=t,this.writer=t.writer,this.writerOptions=this.writer.filterOptions(i),this.stringify=new A(t),this.onDataCallback=n||function(){},this.onEndCallback=s||function(){},this.currentNode=null,this.currentLevel=-1,this.openTags={},this.documentStarted=!1,this.documentCompleted=!1,this.root=null}return t.prototype.createChildNode=function(t){var n,s,i,r,o,a,l,c;switch(t.type){case e.CData:this.cdata(t.value);break;case e.Comment:this.comment(t.value);break;case e.Element:for(s in i={},l=t.attribs)T.call(l,s)&&(n=l[s],i[s]=n.value);this.node(t.name,i);break;case e.Dummy:this.dummy();break;case e.Raw:this.raw(t.value);break;case e.Text:this.text(t.value);break;case e.ProcessingInstruction:this.instruction(t.target,t.value);break;default:throw new Error("This XML node type is not supported in a JS object: "+t.constructor.name)}for(o=0,a=(c=t.children).length;o<a;o++)r=c[o],this.createChildNode(r),r.type===e.Element&&this.up();return this},t.prototype.dummy=function(){return this},t.prototype.node=function(t,e,n){var s;if(null==t)throw new Error("Missing node name.");if(this.root&&-1===this.currentLevel)throw new Error("Document can only have one root node. "+this.debugInfo(t));return this.openCurrent(),t=y(t),null==e&&(e={}),e=y(e),C(e)||(n=(s=[e,n])[0],e=s[1]),this.currentNode=new f(this,t,e),this.currentNode.children=!1,this.currentLevel++,this.openTags[this.currentLevel]=this.currentNode,null!=n&&this.text(n),this},t.prototype.element=function(t,n,s){var i,r,o,a,l,c;if(this.currentNode&&this.currentNode.type===e.DocType)this.dtdElement.apply(this,arguments);else if(Array.isArray(t)||C(t)||b(t))for(a=this.options.noValidation,this.options.noValidation=!0,(c=new p(this.options).element("TEMP_ROOT")).element(t),this.options.noValidation=a,r=0,o=(l=c.children).length;r<o;r++)i=l[r],this.createChildNode(i),i.type===e.Element&&this.up();else this.node(t,n,s);return this},t.prototype.attribute=function(t,e){var n,s;if(!this.currentNode||this.currentNode.children)throw new Error("att() can only be used immediately after an ele() call in callback mode. "+this.debugInfo(t));if(null!=t&&(t=y(t)),C(t))for(n in t)T.call(t,n)&&(s=t[n],this.attribute(n,s));else b(e)&&(e=e.apply()),this.options.keepNullAttributes&&null==e?this.currentNode.attribs[t]=new i(this,t,""):null!=e&&(this.currentNode.attribs[t]=new i(this,t,e));return this},t.prototype.text=function(t){var e;return this.openCurrent(),e=new w(this,t),this.onData(this.writer.text(e,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.cdata=function(t){var e;return this.openCurrent(),e=new r(this,t),this.onData(this.writer.cdata(e,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.comment=function(t){var e;return this.openCurrent(),e=new o(this,t),this.onData(this.writer.comment(e,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.raw=function(t){var e;return this.openCurrent(),e=new h(this,t),this.onData(this.writer.raw(e,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.instruction=function(t,e){var n,s,i,r,o;if(this.openCurrent(),null!=t&&(t=y(t)),null!=e&&(e=y(e)),Array.isArray(t))for(n=0,r=t.length;n<r;n++)s=t[n],this.instruction(s);else if(C(t))for(s in t)T.call(t,s)&&(i=t[s],this.instruction(s,i));else b(e)&&(e=e.apply()),o=new g(this,t,e),this.onData(this.writer.processingInstruction(o,this.writerOptions,this.currentLevel+1),this.currentLevel+1);return this},t.prototype.declaration=function(t,e,n){var s;if(this.openCurrent(),this.documentStarted)throw new Error("declaration() must be the first node.");return s=new u(this,t,e,n),this.onData(this.writer.declaration(s,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.doctype=function(t,e,n){if(this.openCurrent(),null==t)throw new Error("Missing root node name.");if(this.root)throw new Error("dtd() must come before the root node.");return this.currentNode=new m(this,e,n),this.currentNode.rootNodeName=t,this.currentNode.children=!1,this.currentLevel++,this.openTags[this.currentLevel]=this.currentNode,this},t.prototype.dtdElement=function(t,e){var n;return this.openCurrent(),n=new l(this,t,e),this.onData(this.writer.dtdElement(n,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.attList=function(t,e,n,s,i){var r;return this.openCurrent(),r=new a(this,t,e,n,s,i),this.onData(this.writer.dtdAttList(r,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.entity=function(t,e){var n;return this.openCurrent(),n=new c(this,!1,t,e),this.onData(this.writer.dtdEntity(n,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.pEntity=function(t,e){var n;return this.openCurrent(),n=new c(this,!0,t,e),this.onData(this.writer.dtdEntity(n,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.notation=function(t,e){var n;return this.openCurrent(),n=new d(this,t,e),this.onData(this.writer.dtdNotation(n,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.up=function(){if(this.currentLevel<0)throw new Error("The document node has no parent.");return this.currentNode?(this.currentNode.children?this.closeNode(this.currentNode):this.openNode(this.currentNode),this.currentNode=null):this.closeNode(this.openTags[this.currentLevel]),delete this.openTags[this.currentLevel],this.currentLevel--,this},t.prototype.end=function(){for(;this.currentLevel>=0;)this.up();return this.onEnd()},t.prototype.openCurrent=function(){if(this.currentNode)return this.currentNode.children=!0,this.openNode(this.currentNode)},t.prototype.openNode=function(t){var n,i,r,o;if(!t.isOpen){if(this.root||0!==this.currentLevel||t.type!==e.Element||(this.root=t),i="",t.type===e.Element){for(r in this.writerOptions.state=s.OpenTag,i=this.writer.indent(t,this.writerOptions,this.currentLevel)+"<"+t.name,o=t.attribs)T.call(o,r)&&(n=o[r],i+=this.writer.attribute(n,this.writerOptions,this.currentLevel));i+=(t.children?">":"/>")+this.writer.endline(t,this.writerOptions,this.currentLevel),this.writerOptions.state=s.InsideTag}else this.writerOptions.state=s.OpenTag,i=this.writer.indent(t,this.writerOptions,this.currentLevel)+"<!DOCTYPE "+t.rootNodeName,t.pubID&&t.sysID?i+=' PUBLIC "'+t.pubID+'" "'+t.sysID+'"':t.sysID&&(i+=' SYSTEM "'+t.sysID+'"'),t.children?(i+=" [",this.writerOptions.state=s.InsideTag):(this.writerOptions.state=s.CloseTag,i+=">"),i+=this.writer.endline(t,this.writerOptions,this.currentLevel);return this.onData(i,this.currentLevel),t.isOpen=!0}},t.prototype.closeNode=function(t){var n;if(!t.isClosed)return"",this.writerOptions.state=s.CloseTag,n=t.type===e.Element?this.writer.indent(t,this.writerOptions,this.currentLevel)+"</"+t.name+">"+this.writer.endline(t,this.writerOptions,this.currentLevel):this.writer.indent(t,this.writerOptions,this.currentLevel)+"]>"+this.writer.endline(t,this.writerOptions,this.currentLevel),this.writerOptions.state=s.None,this.onData(n,this.currentLevel),t.isClosed=!0},t.prototype.onData=function(t,e){return this.documentStarted=!0,this.onDataCallback(t,e+1)},t.prototype.onEnd=function(){return this.documentCompleted=!0,this.onEndCallback()},t.prototype.debugInfo=function(t){return null==t?"":"node: <"+t+">"},t.prototype.ele=function(){return this.element.apply(this,arguments)},t.prototype.nod=function(t,e,n){return this.node(t,e,n)},t.prototype.txt=function(t){return this.text(t)},t.prototype.dat=function(t){return this.cdata(t)},t.prototype.com=function(t){return this.comment(t)},t.prototype.ins=function(t,e){return this.instruction(t,e)},t.prototype.dec=function(t,e,n){return this.declaration(t,e,n)},t.prototype.dtd=function(t,e,n){return this.doctype(t,e,n)},t.prototype.e=function(t,e,n){return this.element(t,e,n)},t.prototype.n=function(t,e,n){return this.node(t,e,n)},t.prototype.t=function(t){return this.text(t)},t.prototype.d=function(t){return this.cdata(t)},t.prototype.c=function(t){return this.comment(t)},t.prototype.r=function(t){return this.raw(t)},t.prototype.i=function(t,e){return this.instruction(t,e)},t.prototype.att=function(){return this.currentNode&&this.currentNode.type===e.DocType?this.attList.apply(this,arguments):this.attribute.apply(this,arguments)},t.prototype.a=function(){return this.currentNode&&this.currentNode.type===e.DocType?this.attList.apply(this,arguments):this.attribute.apply(this,arguments)},t.prototype.ent=function(t,e){return this.entity(t,e)},t.prototype.pent=function(t,e){return this.pEntity(t,e)},t.prototype.not=function(t,e){return this.notation(t,e)},t}()}).call(this)},21218:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;s=n(10468),e=n(71737),t.exports=function(t){function n(t){n.__super__.constructor.call(this,t),this.type=e.Dummy}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.clone=function(){return Object.create(this)},n.prototype.toString=function(t){return""},n}(s)}).call(this)},33906:function(t,e,n){(function(){var e,s,i,r,o,a,l,c,d={}.hasOwnProperty;c=n(49241),l=c.isObject,a=c.isFunction,o=c.getValue,r=n(10468),e=n(71737),s=n(54238),i=n(24797),t.exports=function(t){function n(t,s,i){var r,o,a,l;if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing element name. "+this.debugInfo());if(this.name=this.stringify.name(s),this.type=e.Element,this.attribs={},this.schemaTypeInfo=null,null!=i&&this.attribute(i),t.type===e.Document&&(this.isRoot=!0,this.documentObject=t,t.rootObject=this,t.children))for(o=0,a=(l=t.children).length;o<a;o++)if((r=l[o]).type===e.DocType){r.name=this.name;break}}return function(t,e){for(var n in e)d.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),Object.defineProperty(n.prototype,"tagName",{get:function(){return this.name}}),Object.defineProperty(n.prototype,"namespaceURI",{get:function(){return""}}),Object.defineProperty(n.prototype,"prefix",{get:function(){return""}}),Object.defineProperty(n.prototype,"localName",{get:function(){return this.name}}),Object.defineProperty(n.prototype,"id",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),Object.defineProperty(n.prototype,"className",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),Object.defineProperty(n.prototype,"classList",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),Object.defineProperty(n.prototype,"attributes",{get:function(){return this.attributeMap&&this.attributeMap.nodes||(this.attributeMap=new i(this.attribs)),this.attributeMap}}),n.prototype.clone=function(){var t,e,n,s;for(e in(n=Object.create(this)).isRoot&&(n.documentObject=null),n.attribs={},s=this.attribs)d.call(s,e)&&(t=s[e],n.attribs[e]=t.clone());return n.children=[],this.children.forEach((function(t){var e;return(e=t.clone()).parent=n,n.children.push(e)})),n},n.prototype.attribute=function(t,e){var n,i;if(null!=t&&(t=o(t)),l(t))for(n in t)d.call(t,n)&&(i=t[n],this.attribute(n,i));else a(e)&&(e=e.apply()),this.options.keepNullAttributes&&null==e?this.attribs[t]=new s(this,t,""):null!=e&&(this.attribs[t]=new s(this,t,e));return this},n.prototype.removeAttribute=function(t){var e,n,s;if(null==t)throw new Error("Missing attribute name. "+this.debugInfo());if(t=o(t),Array.isArray(t))for(n=0,s=t.length;n<s;n++)e=t[n],delete this.attribs[e];else delete this.attribs[t];return this},n.prototype.toString=function(t){return this.options.writer.element(this,this.options.writer.filterOptions(t))},n.prototype.att=function(t,e){return this.attribute(t,e)},n.prototype.a=function(t,e){return this.attribute(t,e)},n.prototype.getAttribute=function(t){return this.attribs.hasOwnProperty(t)?this.attribs[t].value:null},n.prototype.setAttribute=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getAttributeNode=function(t){return this.attribs.hasOwnProperty(t)?this.attribs[t]:null},n.prototype.setAttributeNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.removeAttributeNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByTagName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getAttributeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.setAttributeNS=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.removeAttributeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getAttributeNodeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.setAttributeNodeNS=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByTagNameNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.hasAttribute=function(t){return this.attribs.hasOwnProperty(t)},n.prototype.hasAttributeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.setIdAttribute=function(t,e){return this.attribs.hasOwnProperty(t)?this.attribs[t].isId:e},n.prototype.setIdAttributeNS=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.setIdAttributeNode=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByTagName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByTagNameNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByClassName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.isEqualNode=function(t){var e,s,i;if(!n.__super__.isEqualNode.apply(this,arguments).isEqualNode(t))return!1;if(t.namespaceURI!==this.namespaceURI)return!1;if(t.prefix!==this.prefix)return!1;if(t.localName!==this.localName)return!1;if(t.attribs.length!==this.attribs.length)return!1;for(e=s=0,i=this.attribs.length-1;0<=i?s<=i:s>=i;e=0<=i?++s:--s)if(!this.attribs[e].isEqualNode(t.attribs[e]))return!1;return!0},n}(r)}).call(this)},24797:function(t){(function(){t.exports=function(){function t(t){this.nodes=t}return Object.defineProperty(t.prototype,"length",{get:function(){return Object.keys(this.nodes).length||0}}),t.prototype.clone=function(){return this.nodes=null},t.prototype.getNamedItem=function(t){return this.nodes[t]},t.prototype.setNamedItem=function(t){var e;return e=this.nodes[t.nodeName],this.nodes[t.nodeName]=t,e||null},t.prototype.removeNamedItem=function(t){var e;return e=this.nodes[t],delete this.nodes[t],e||null},t.prototype.item=function(t){return this.nodes[Object.keys(this.nodes)[t]]||null},t.prototype.getNamedItemNS=function(t,e){throw new Error("This DOM method is not implemented.")},t.prototype.setNamedItemNS=function(t){throw new Error("This DOM method is not implemented.")},t.prototype.removeNamedItemNS=function(t,e){throw new Error("This DOM method is not implemented.")},t}()}).call(this)},10468:function(t,e,n){(function(){var e,s,i,r,o,a,l,c,d,u,m,p,f,g,h,v,A,w={}.hasOwnProperty;A=n(49241),v=A.isObject,h=A.isFunction,g=A.isEmpty,f=A.getValue,c=null,i=null,r=null,o=null,a=null,m=null,p=null,u=null,l=null,s=null,d=null,e=null,t.exports=function(){function t(t){this.parent=t,this.parent&&(this.options=this.parent.options,this.stringify=this.parent.stringify),this.value=null,this.children=[],this.baseURI=null,c||(c=n(33906),i=n(92691),r=n(32679),o=n(34130),a=n(96376),m=n(1268),p=n(82535),u=n(85915),l=n(21218),s=n(71737),d=n(16684),n(24797),e=n(34923))}return Object.defineProperty(t.prototype,"nodeName",{get:function(){return this.name}}),Object.defineProperty(t.prototype,"nodeType",{get:function(){return this.type}}),Object.defineProperty(t.prototype,"nodeValue",{get:function(){return this.value}}),Object.defineProperty(t.prototype,"parentNode",{get:function(){return this.parent}}),Object.defineProperty(t.prototype,"childNodes",{get:function(){return this.childNodeList&&this.childNodeList.nodes||(this.childNodeList=new d(this.children)),this.childNodeList}}),Object.defineProperty(t.prototype,"firstChild",{get:function(){return this.children[0]||null}}),Object.defineProperty(t.prototype,"lastChild",{get:function(){return this.children[this.children.length-1]||null}}),Object.defineProperty(t.prototype,"previousSibling",{get:function(){var t;return t=this.parent.children.indexOf(this),this.parent.children[t-1]||null}}),Object.defineProperty(t.prototype,"nextSibling",{get:function(){var t;return t=this.parent.children.indexOf(this),this.parent.children[t+1]||null}}),Object.defineProperty(t.prototype,"ownerDocument",{get:function(){return this.document()||null}}),Object.defineProperty(t.prototype,"textContent",{get:function(){var t,e,n,i,r;if(this.nodeType===s.Element||this.nodeType===s.DocumentFragment){for(r="",e=0,n=(i=this.children).length;e<n;e++)(t=i[e]).textContent&&(r+=t.textContent);return r}return null},set:function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),t.prototype.setParent=function(t){var e,n,s,i,r;for(this.parent=t,t&&(this.options=t.options,this.stringify=t.stringify),r=[],n=0,s=(i=this.children).length;n<s;n++)e=i[n],r.push(e.setParent(this));return r},t.prototype.element=function(t,e,n){var s,i,r,o,a,l,c,d,u,m,p;if(l=null,null===e&&null==n&&(e=(u=[{},null])[0],n=u[1]),null==e&&(e={}),e=f(e),v(e)||(n=(m=[e,n])[0],e=m[1]),null!=t&&(t=f(t)),Array.isArray(t))for(r=0,c=t.length;r<c;r++)i=t[r],l=this.element(i);else if(h(t))l=this.element(t.apply());else if(v(t)){for(a in t)if(w.call(t,a))if(p=t[a],h(p)&&(p=p.apply()),!this.options.ignoreDecorators&&this.stringify.convertAttKey&&0===a.indexOf(this.stringify.convertAttKey))l=this.attribute(a.substr(this.stringify.convertAttKey.length),p);else if(!this.options.separateArrayItems&&Array.isArray(p)&&g(p))l=this.dummy();else if(v(p)&&g(p))l=this.element(a);else if(this.options.keepNullNodes||null!=p)if(!this.options.separateArrayItems&&Array.isArray(p))for(o=0,d=p.length;o<d;o++)i=p[o],(s={})[a]=i,l=this.element(s);else v(p)?!this.options.ignoreDecorators&&this.stringify.convertTextKey&&0===a.indexOf(this.stringify.convertTextKey)?l=this.element(p):(l=this.element(a)).element(p):l=this.element(a,p);else l=this.dummy()}else l=this.options.keepNullNodes||null!==n?!this.options.ignoreDecorators&&this.stringify.convertTextKey&&0===t.indexOf(this.stringify.convertTextKey)?this.text(n):!this.options.ignoreDecorators&&this.stringify.convertCDataKey&&0===t.indexOf(this.stringify.convertCDataKey)?this.cdata(n):!this.options.ignoreDecorators&&this.stringify.convertCommentKey&&0===t.indexOf(this.stringify.convertCommentKey)?this.comment(n):!this.options.ignoreDecorators&&this.stringify.convertRawKey&&0===t.indexOf(this.stringify.convertRawKey)?this.raw(n):!this.options.ignoreDecorators&&this.stringify.convertPIKey&&0===t.indexOf(this.stringify.convertPIKey)?this.instruction(t.substr(this.stringify.convertPIKey.length),n):this.node(t,e,n):this.dummy();if(null==l)throw new Error("Could not create any elements with: "+t+". "+this.debugInfo());return l},t.prototype.insertBefore=function(t,e,n){var s,i,r,o,a;if(null!=t?t.type:void 0)return o=e,(r=t).setParent(this),o?(i=children.indexOf(o),a=children.splice(i),children.push(r),Array.prototype.push.apply(children,a)):children.push(r),r;if(this.isRoot)throw new Error("Cannot insert elements at root level. "+this.debugInfo(t));return i=this.parent.children.indexOf(this),a=this.parent.children.splice(i),s=this.parent.element(t,e,n),Array.prototype.push.apply(this.parent.children,a),s},t.prototype.insertAfter=function(t,e,n){var s,i,r;if(this.isRoot)throw new Error("Cannot insert elements at root level. "+this.debugInfo(t));return i=this.parent.children.indexOf(this),r=this.parent.children.splice(i+1),s=this.parent.element(t,e,n),Array.prototype.push.apply(this.parent.children,r),s},t.prototype.remove=function(){var t;if(this.isRoot)throw new Error("Cannot remove the root element. "+this.debugInfo());return t=this.parent.children.indexOf(this),[].splice.apply(this.parent.children,[t,t-t+1].concat([])),this.parent},t.prototype.node=function(t,e,n){var s,i;return null!=t&&(t=f(t)),e||(e={}),e=f(e),v(e)||(n=(i=[e,n])[0],e=i[1]),s=new c(this,t,e),null!=n&&s.text(n),this.children.push(s),s},t.prototype.text=function(t){var e;return v(t)&&this.element(t),e=new p(this,t),this.children.push(e),this},t.prototype.cdata=function(t){var e;return e=new i(this,t),this.children.push(e),this},t.prototype.comment=function(t){var e;return e=new r(this,t),this.children.push(e),this},t.prototype.commentBefore=function(t){var e,n;return e=this.parent.children.indexOf(this),n=this.parent.children.splice(e),this.parent.comment(t),Array.prototype.push.apply(this.parent.children,n),this},t.prototype.commentAfter=function(t){var e,n;return e=this.parent.children.indexOf(this),n=this.parent.children.splice(e+1),this.parent.comment(t),Array.prototype.push.apply(this.parent.children,n),this},t.prototype.raw=function(t){var e;return e=new m(this,t),this.children.push(e),this},t.prototype.dummy=function(){return new l(this)},t.prototype.instruction=function(t,e){var n,s,i,r,o;if(null!=t&&(t=f(t)),null!=e&&(e=f(e)),Array.isArray(t))for(r=0,o=t.length;r<o;r++)n=t[r],this.instruction(n);else if(v(t))for(n in t)w.call(t,n)&&(s=t[n],this.instruction(n,s));else h(e)&&(e=e.apply()),i=new u(this,t,e),this.children.push(i);return this},t.prototype.instructionBefore=function(t,e){var n,s;return n=this.parent.children.indexOf(this),s=this.parent.children.splice(n),this.parent.instruction(t,e),Array.prototype.push.apply(this.parent.children,s),this},t.prototype.instructionAfter=function(t,e){var n,s;return n=this.parent.children.indexOf(this),s=this.parent.children.splice(n+1),this.parent.instruction(t,e),Array.prototype.push.apply(this.parent.children,s),this},t.prototype.declaration=function(t,e,n){var i,r;return i=this.document(),r=new o(i,t,e,n),0===i.children.length?i.children.unshift(r):i.children[0].type===s.Declaration?i.children[0]=r:i.children.unshift(r),i.root()||i},t.prototype.dtd=function(t,e){var n,i,r,o,l,c,d,u,m;for(n=this.document(),i=new a(n,t,e),r=o=0,c=(u=n.children).length;o<c;r=++o)if(u[r].type===s.DocType)return n.children[r]=i,i;for(r=l=0,d=(m=n.children).length;l<d;r=++l)if(m[r].isRoot)return n.children.splice(r,0,i),i;return n.children.push(i),i},t.prototype.up=function(){if(this.isRoot)throw new Error("The root node has no parent. Use doc() if you need to get the document object.");return this.parent},t.prototype.root=function(){var t;for(t=this;t;){if(t.type===s.Document)return t.rootObject;if(t.isRoot)return t;t=t.parent}},t.prototype.document=function(){var t;for(t=this;t;){if(t.type===s.Document)return t;t=t.parent}},t.prototype.end=function(t){return this.document().end(t)},t.prototype.prev=function(){var t;if((t=this.parent.children.indexOf(this))<1)throw new Error("Already at the first node. "+this.debugInfo());return this.parent.children[t-1]},t.prototype.next=function(){var t;if(-1===(t=this.parent.children.indexOf(this))||t===this.parent.children.length-1)throw new Error("Already at the last node. "+this.debugInfo());return this.parent.children[t+1]},t.prototype.importDocument=function(t){var e;return(e=t.root().clone()).parent=this,e.isRoot=!1,this.children.push(e),this},t.prototype.debugInfo=function(t){var e,n;return null!=(t=t||this.name)||(null!=(e=this.parent)?e.name:void 0)?null==t?"parent: <"+this.parent.name+">":(null!=(n=this.parent)?n.name:void 0)?"node: <"+t+">, parent: <"+this.parent.name+">":"node: <"+t+">":""},t.prototype.ele=function(t,e,n){return this.element(t,e,n)},t.prototype.nod=function(t,e,n){return this.node(t,e,n)},t.prototype.txt=function(t){return this.text(t)},t.prototype.dat=function(t){return this.cdata(t)},t.prototype.com=function(t){return this.comment(t)},t.prototype.ins=function(t,e){return this.instruction(t,e)},t.prototype.doc=function(){return this.document()},t.prototype.dec=function(t,e,n){return this.declaration(t,e,n)},t.prototype.e=function(t,e,n){return this.element(t,e,n)},t.prototype.n=function(t,e,n){return this.node(t,e,n)},t.prototype.t=function(t){return this.text(t)},t.prototype.d=function(t){return this.cdata(t)},t.prototype.c=function(t){return this.comment(t)},t.prototype.r=function(t){return this.raw(t)},t.prototype.i=function(t,e){return this.instruction(t,e)},t.prototype.u=function(){return this.up()},t.prototype.importXMLBuilder=function(t){return this.importDocument(t)},t.prototype.replaceChild=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.removeChild=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.appendChild=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.hasChildNodes=function(){return 0!==this.children.length},t.prototype.cloneNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.normalize=function(){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.isSupported=function(t,e){return!0},t.prototype.hasAttributes=function(){return 0!==this.attribs.length},t.prototype.compareDocumentPosition=function(t){var n,s;return(n=this)===t?0:this.document()!==t.document()?(s=e.Disconnected|e.ImplementationSpecific,Math.random()<.5?s|=e.Preceding:s|=e.Following,s):n.isAncestor(t)?e.Contains|e.Preceding:n.isDescendant(t)?e.Contains|e.Following:n.isPreceding(t)?e.Preceding:e.Following},t.prototype.isSameNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.lookupPrefix=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.isDefaultNamespace=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.lookupNamespaceURI=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.isEqualNode=function(t){var e,n,s;if(t.nodeType!==this.nodeType)return!1;if(t.children.length!==this.children.length)return!1;for(e=n=0,s=this.children.length-1;0<=s?n<=s:n>=s;e=0<=s?++n:--n)if(!this.children[e].isEqualNode(t.children[e]))return!1;return!0},t.prototype.getFeature=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.setUserData=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.getUserData=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.contains=function(t){return!!t&&(t===this||this.isDescendant(t))},t.prototype.isDescendant=function(t){var e,n,s,i;for(n=0,s=(i=this.children).length;n<s;n++){if(t===(e=i[n]))return!0;if(e.isDescendant(t))return!0}return!1},t.prototype.isAncestor=function(t){return t.isDescendant(this)},t.prototype.isPreceding=function(t){var e,n;return e=this.treePosition(t),n=this.treePosition(this),-1!==e&&-1!==n&&e<n},t.prototype.isFollowing=function(t){var e,n;return e=this.treePosition(t),n=this.treePosition(this),-1!==e&&-1!==n&&e>n},t.prototype.treePosition=function(t){var e,n;return n=0,e=!1,this.foreachTreeNode(this.document(),(function(s){if(n++,!e&&s===t)return e=!0})),e?n:-1},t.prototype.foreachTreeNode=function(t,e){var n,s,i,r,o;for(t||(t=this.document()),s=0,i=(r=t.children).length;s<i;s++){if(o=e(n=r[s]))return o;if(o=this.foreachTreeNode(n,e))return o}},t}()}).call(this)},16684:function(t){(function(){t.exports=function(){function t(t){this.nodes=t}return Object.defineProperty(t.prototype,"length",{get:function(){return this.nodes.length||0}}),t.prototype.clone=function(){return this.nodes=null},t.prototype.item=function(t){return this.nodes[t]||null},t}()}).call(this)},85915:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;e=n(71737),s=n(17457),t.exports=function(t){function n(t,s,i){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing instruction target. "+this.debugInfo());this.type=e.ProcessingInstruction,this.target=this.stringify.insTarget(s),this.name=this.target,i&&(this.value=this.stringify.insValue(i))}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.clone=function(){return Object.create(this)},n.prototype.toString=function(t){return this.options.writer.processingInstruction(this,this.options.writer.filterOptions(t))},n.prototype.isEqualNode=function(t){return!!n.__super__.isEqualNode.apply(this,arguments).isEqualNode(t)&&t.target===this.target},n}(s)}).call(this)},1268:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;e=n(71737),s=n(10468),t.exports=function(t){function n(t,s){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing raw text. "+this.debugInfo());this.type=e.Raw,this.value=this.stringify.raw(s)}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.clone=function(){return Object.create(this)},n.prototype.toString=function(t){return this.options.writer.raw(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},96775:function(t,e,n){(function(){var e,s,i,r={}.hasOwnProperty;e=n(71737),i=n(6286),s=n(88753),t.exports=function(t){function n(t,e){this.stream=t,n.__super__.constructor.call(this,e)}return function(t,e){for(var n in e)r.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.endline=function(t,e,i){return t.isLastRootNode&&e.state===s.CloseTag?"":n.__super__.endline.call(this,t,e,i)},n.prototype.document=function(t,e){var n,s,i,r,o,a,l,c,d;for(s=i=0,o=(l=t.children).length;i<o;s=++i)(n=l[s]).isLastRootNode=s===t.children.length-1;for(e=this.filterOptions(e),d=[],r=0,a=(c=t.children).length;r<a;r++)n=c[r],d.push(this.writeChildNode(n,e,0));return d},n.prototype.attribute=function(t,e,s){return this.stream.write(n.__super__.attribute.call(this,t,e,s))},n.prototype.cdata=function(t,e,s){return this.stream.write(n.__super__.cdata.call(this,t,e,s))},n.prototype.comment=function(t,e,s){return this.stream.write(n.__super__.comment.call(this,t,e,s))},n.prototype.declaration=function(t,e,s){return this.stream.write(n.__super__.declaration.call(this,t,e,s))},n.prototype.docType=function(t,e,n){var i,r,o,a;if(n||(n=0),this.openNode(t,e,n),e.state=s.OpenTag,this.stream.write(this.indent(t,e,n)),this.stream.write("<!DOCTYPE "+t.root().name),t.pubID&&t.sysID?this.stream.write(' PUBLIC "'+t.pubID+'" "'+t.sysID+'"'):t.sysID&&this.stream.write(' SYSTEM "'+t.sysID+'"'),t.children.length>0){for(this.stream.write(" ["),this.stream.write(this.endline(t,e,n)),e.state=s.InsideTag,r=0,o=(a=t.children).length;r<o;r++)i=a[r],this.writeChildNode(i,e,n+1);e.state=s.CloseTag,this.stream.write("]")}return e.state=s.CloseTag,this.stream.write(e.spaceBeforeSlash+">"),this.stream.write(this.endline(t,e,n)),e.state=s.None,this.closeNode(t,e,n)},n.prototype.element=function(t,n,i){var o,a,l,c,d,u,m,p,f;for(m in i||(i=0),this.openNode(t,n,i),n.state=s.OpenTag,this.stream.write(this.indent(t,n,i)+"<"+t.name),p=t.attribs)r.call(p,m)&&(o=p[m],this.attribute(o,n,i));if(c=0===(l=t.children.length)?null:t.children[0],0===l||t.children.every((function(t){return(t.type===e.Text||t.type===e.Raw)&&""===t.value})))n.allowEmpty?(this.stream.write(">"),n.state=s.CloseTag,this.stream.write("</"+t.name+">")):(n.state=s.CloseTag,this.stream.write(n.spaceBeforeSlash+"/>"));else if(!n.pretty||1!==l||c.type!==e.Text&&c.type!==e.Raw||null==c.value){for(this.stream.write(">"+this.endline(t,n,i)),n.state=s.InsideTag,d=0,u=(f=t.children).length;d<u;d++)a=f[d],this.writeChildNode(a,n,i+1);n.state=s.CloseTag,this.stream.write(this.indent(t,n,i)+"</"+t.name+">")}else this.stream.write(">"),n.state=s.InsideTag,n.suppressPrettyCount++,this.writeChildNode(c,n,i+1),n.suppressPrettyCount--,n.state=s.CloseTag,this.stream.write("</"+t.name+">");return this.stream.write(this.endline(t,n,i)),n.state=s.None,this.closeNode(t,n,i)},n.prototype.processingInstruction=function(t,e,s){return this.stream.write(n.__super__.processingInstruction.call(this,t,e,s))},n.prototype.raw=function(t,e,s){return this.stream.write(n.__super__.raw.call(this,t,e,s))},n.prototype.text=function(t,e,s){return this.stream.write(n.__super__.text.call(this,t,e,s))},n.prototype.dtdAttList=function(t,e,s){return this.stream.write(n.__super__.dtdAttList.call(this,t,e,s))},n.prototype.dtdElement=function(t,e,s){return this.stream.write(n.__super__.dtdElement.call(this,t,e,s))},n.prototype.dtdEntity=function(t,e,s){return this.stream.write(n.__super__.dtdEntity.call(this,t,e,s))},n.prototype.dtdNotation=function(t,e,s){return this.stream.write(n.__super__.dtdNotation.call(this,t,e,s))},n}(i)}).call(this)},40382:function(t,e,n){(function(){var e,s={}.hasOwnProperty;e=n(6286),t.exports=function(t){function e(t){e.__super__.constructor.call(this,t)}return function(t,e){for(var n in e)s.call(e,n)&&(t[n]=e[n]);function i(){this.constructor=t}i.prototype=e.prototype,t.prototype=new i,t.__super__=e.prototype}(e,t),e.prototype.document=function(t,e){var n,s,i,r,o;for(e=this.filterOptions(e),r="",s=0,i=(o=t.children).length;s<i;s++)n=o[s],r+=this.writeChildNode(n,e,0);return e.pretty&&r.slice(-e.newline.length)===e.newline&&(r=r.slice(0,-e.newline.length)),r},e}(e)}).call(this)},43976:function(t){(function(){var e=function(t,e){return function(){return t.apply(e,arguments)}},n={}.hasOwnProperty;t.exports=function(){function t(t){var s,i,r;for(s in this.assertLegalName=e(this.assertLegalName,this),this.assertLegalChar=e(this.assertLegalChar,this),t||(t={}),this.options=t,this.options.version||(this.options.version="1.0"),i=t.stringify||{})n.call(i,s)&&(r=i[s],this[s]=r)}return t.prototype.name=function(t){return this.options.noValidation?t:this.assertLegalName(""+t||"")},t.prototype.text=function(t){return this.options.noValidation?t:this.assertLegalChar(this.textEscape(""+t||""))},t.prototype.cdata=function(t){return this.options.noValidation?t:(t=(t=""+t||"").replace("]]>","]]]]><![CDATA[>"),this.assertLegalChar(t))},t.prototype.comment=function(t){if(this.options.noValidation)return t;if((t=""+t||"").match(/--/))throw new Error("Comment text cannot contain double-hypen: "+t);return this.assertLegalChar(t)},t.prototype.raw=function(t){return this.options.noValidation?t:""+t||""},t.prototype.attValue=function(t){return this.options.noValidation?t:this.assertLegalChar(this.attEscape(t=""+t||""))},t.prototype.insTarget=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.insValue=function(t){if(this.options.noValidation)return t;if((t=""+t||"").match(/\?>/))throw new Error("Invalid processing instruction value: "+t);return this.assertLegalChar(t)},t.prototype.xmlVersion=function(t){if(this.options.noValidation)return t;if(!(t=""+t||"").match(/1\.[0-9]+/))throw new Error("Invalid version number: "+t);return t},t.prototype.xmlEncoding=function(t){if(this.options.noValidation)return t;if(!(t=""+t||"").match(/^[A-Za-z](?:[A-Za-z0-9._-])*$/))throw new Error("Invalid encoding: "+t);return this.assertLegalChar(t)},t.prototype.xmlStandalone=function(t){return this.options.noValidation?t:t?"yes":"no"},t.prototype.dtdPubID=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdSysID=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdElementValue=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdAttType=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdAttDefault=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdEntityValue=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdNData=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.convertAttKey="@",t.prototype.convertPIKey="?",t.prototype.convertTextKey="#text",t.prototype.convertCDataKey="#cdata",t.prototype.convertCommentKey="#comment",t.prototype.convertRawKey="#raw",t.prototype.assertLegalChar=function(t){var e,n;if(this.options.noValidation)return t;if(e="","1.0"===this.options.version){if(e=/[\0-\x08\x0B\f\x0E-\x1F\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,n=t.match(e))throw new Error("Invalid character in string: "+t+" at index "+n.index)}else if("1.1"===this.options.version&&(e=/[\0\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,n=t.match(e)))throw new Error("Invalid character in string: "+t+" at index "+n.index);return t},t.prototype.assertLegalName=function(t){var e;if(this.options.noValidation)return t;if(this.assertLegalChar(t),e=/^([:A-Z_a-z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])([\x2D\.0-:A-Z_a-z\xB7\xC0-\xD6\xD8-\xF6\xF8-\u037D\u037F-\u1FFF\u200C\u200D\u203F\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])*$/,!t.match(e))throw new Error("Invalid character in name");return t},t.prototype.textEscape=function(t){var e;return this.options.noValidation?t:(e=this.options.noDoubleEncoding?/(?!&\S+;)&/g:/&/g,t.replace(e,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/\r/g,"&#xD;"))},t.prototype.attEscape=function(t){var e;return this.options.noValidation?t:(e=this.options.noDoubleEncoding?/(?!&\S+;)&/g:/&/g,t.replace(e,"&amp;").replace(/</g,"&lt;").replace(/"/g,"&quot;").replace(/\t/g,"&#x9;").replace(/\n/g,"&#xA;").replace(/\r/g,"&#xD;"))},t}()}).call(this)},82535:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;e=n(71737),s=n(17457),t.exports=function(t){function n(t,s){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing element text. "+this.debugInfo());this.name="#text",this.type=e.Text,this.value=this.stringify.text(s)}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),Object.defineProperty(n.prototype,"isElementContentWhitespace",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),Object.defineProperty(n.prototype,"wholeText",{get:function(){var t,e,n;for(n="",e=this.previousSibling;e;)n=e.data+n,e=e.previousSibling;for(n+=this.data,t=this.nextSibling;t;)n+=t.data,t=t.nextSibling;return n}}),n.prototype.clone=function(){return Object.create(this)},n.prototype.toString=function(t){return this.options.writer.text(this,this.options.writer.filterOptions(t))},n.prototype.splitText=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.replaceWholeText=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n}(s)}).call(this)},6286:function(t,e,n){(function(){var e,s,i,r={}.hasOwnProperty;i=n(49241).assign,e=n(71737),n(34130),n(96376),n(92691),n(32679),n(33906),n(1268),n(82535),n(85915),n(21218),n(34111),n(67696),n(5529),n(28012),s=n(88753),t.exports=function(){function t(t){var e,n,s;for(e in t||(t={}),this.options=t,n=t.writer||{})r.call(n,e)&&(s=n[e],this["_"+e]=this[e],this[e]=s)}return t.prototype.filterOptions=function(t){var e,n,r,o,a,l,c,d;return t||(t={}),t=i({},this.options,t),(e={writer:this}).pretty=t.pretty||!1,e.allowEmpty=t.allowEmpty||!1,e.indent=null!=(n=t.indent)?n:" ",e.newline=null!=(r=t.newline)?r:"\n",e.offset=null!=(o=t.offset)?o:0,e.dontPrettyTextNodes=null!=(a=null!=(l=t.dontPrettyTextNodes)?l:t.dontprettytextnodes)?a:0,e.spaceBeforeSlash=null!=(c=null!=(d=t.spaceBeforeSlash)?d:t.spacebeforeslash)?c:"",!0===e.spaceBeforeSlash&&(e.spaceBeforeSlash=" "),e.suppressPrettyCount=0,e.user={},e.state=s.None,e},t.prototype.indent=function(t,e,n){var s;return!e.pretty||e.suppressPrettyCount?"":e.pretty&&(s=(n||0)+e.offset+1)>0?new Array(s).join(e.indent):""},t.prototype.endline=function(t,e,n){return!e.pretty||e.suppressPrettyCount?"":e.newline},t.prototype.attribute=function(t,e,n){var s;return this.openAttribute(t,e,n),s=" "+t.name+'="'+t.value+'"',this.closeAttribute(t,e,n),s},t.prototype.cdata=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<![CDATA[",e.state=s.InsideTag,i+=t.value,e.state=s.CloseTag,i+="]]>"+this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.comment=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"\x3c!-- ",e.state=s.InsideTag,i+=t.value,e.state=s.CloseTag,i+=" --\x3e"+this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.declaration=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<?xml",e.state=s.InsideTag,i+=' version="'+t.version+'"',null!=t.encoding&&(i+=' encoding="'+t.encoding+'"'),null!=t.standalone&&(i+=' standalone="'+t.standalone+'"'),e.state=s.CloseTag,i+=e.spaceBeforeSlash+"?>",i+=this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.docType=function(t,e,n){var i,r,o,a,l;if(n||(n=0),this.openNode(t,e,n),e.state=s.OpenTag,a=this.indent(t,e,n),a+="<!DOCTYPE "+t.root().name,t.pubID&&t.sysID?a+=' PUBLIC "'+t.pubID+'" "'+t.sysID+'"':t.sysID&&(a+=' SYSTEM "'+t.sysID+'"'),t.children.length>0){for(a+=" [",a+=this.endline(t,e,n),e.state=s.InsideTag,r=0,o=(l=t.children).length;r<o;r++)i=l[r],a+=this.writeChildNode(i,e,n+1);e.state=s.CloseTag,a+="]"}return e.state=s.CloseTag,a+=e.spaceBeforeSlash+">",a+=this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),a},t.prototype.element=function(t,n,i){var o,a,l,c,d,u,m,p,f,g,h,v,A,w;for(f in i||(i=0),g=!1,h="",this.openNode(t,n,i),n.state=s.OpenTag,h+=this.indent(t,n,i)+"<"+t.name,v=t.attribs)r.call(v,f)&&(o=v[f],h+=this.attribute(o,n,i));if(c=0===(l=t.children.length)?null:t.children[0],0===l||t.children.every((function(t){return(t.type===e.Text||t.type===e.Raw)&&""===t.value})))n.allowEmpty?(h+=">",n.state=s.CloseTag,h+="</"+t.name+">"+this.endline(t,n,i)):(n.state=s.CloseTag,h+=n.spaceBeforeSlash+"/>"+this.endline(t,n,i));else if(!n.pretty||1!==l||c.type!==e.Text&&c.type!==e.Raw||null==c.value){if(n.dontPrettyTextNodes)for(d=0,m=(A=t.children).length;d<m;d++)if(((a=A[d]).type===e.Text||a.type===e.Raw)&&null!=a.value){n.suppressPrettyCount++,g=!0;break}for(h+=">"+this.endline(t,n,i),n.state=s.InsideTag,u=0,p=(w=t.children).length;u<p;u++)a=w[u],h+=this.writeChildNode(a,n,i+1);n.state=s.CloseTag,h+=this.indent(t,n,i)+"</"+t.name+">",g&&n.suppressPrettyCount--,h+=this.endline(t,n,i),n.state=s.None}else h+=">",n.state=s.InsideTag,n.suppressPrettyCount++,g=!0,h+=this.writeChildNode(c,n,i+1),n.suppressPrettyCount--,g=!1,n.state=s.CloseTag,h+="</"+t.name+">"+this.endline(t,n,i);return this.closeNode(t,n,i),h},t.prototype.writeChildNode=function(t,n,s){switch(t.type){case e.CData:return this.cdata(t,n,s);case e.Comment:return this.comment(t,n,s);case e.Element:return this.element(t,n,s);case e.Raw:return this.raw(t,n,s);case e.Text:return this.text(t,n,s);case e.ProcessingInstruction:return this.processingInstruction(t,n,s);case e.Dummy:return"";case e.Declaration:return this.declaration(t,n,s);case e.DocType:return this.docType(t,n,s);case e.AttributeDeclaration:return this.dtdAttList(t,n,s);case e.ElementDeclaration:return this.dtdElement(t,n,s);case e.EntityDeclaration:return this.dtdEntity(t,n,s);case e.NotationDeclaration:return this.dtdNotation(t,n,s);default:throw new Error("Unknown XML node type: "+t.constructor.name)}},t.prototype.processingInstruction=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<?",e.state=s.InsideTag,i+=t.target,t.value&&(i+=" "+t.value),e.state=s.CloseTag,i+=e.spaceBeforeSlash+"?>",i+=this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.raw=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n),e.state=s.InsideTag,i+=t.value,e.state=s.CloseTag,i+=this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.text=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n),e.state=s.InsideTag,i+=t.value,e.state=s.CloseTag,i+=this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.dtdAttList=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<!ATTLIST",e.state=s.InsideTag,i+=" "+t.elementName+" "+t.attributeName+" "+t.attributeType,"#DEFAULT"!==t.defaultValueType&&(i+=" "+t.defaultValueType),t.defaultValue&&(i+=' "'+t.defaultValue+'"'),e.state=s.CloseTag,i+=e.spaceBeforeSlash+">"+this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.dtdElement=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<!ELEMENT",e.state=s.InsideTag,i+=" "+t.name+" "+t.value,e.state=s.CloseTag,i+=e.spaceBeforeSlash+">"+this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.dtdEntity=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<!ENTITY",e.state=s.InsideTag,t.pe&&(i+=" %"),i+=" "+t.name,t.value?i+=' "'+t.value+'"':(t.pubID&&t.sysID?i+=' PUBLIC "'+t.pubID+'" "'+t.sysID+'"':t.sysID&&(i+=' SYSTEM "'+t.sysID+'"'),t.nData&&(i+=" NDATA "+t.nData)),e.state=s.CloseTag,i+=e.spaceBeforeSlash+">"+this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.dtdNotation=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<!NOTATION",e.state=s.InsideTag,i+=" "+t.name,t.pubID&&t.sysID?i+=' PUBLIC "'+t.pubID+'" "'+t.sysID+'"':t.pubID?i+=' PUBLIC "'+t.pubID+'"':t.sysID&&(i+=' SYSTEM "'+t.sysID+'"'),e.state=s.CloseTag,i+=e.spaceBeforeSlash+">"+this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.openNode=function(t,e,n){},t.prototype.closeNode=function(t,e,n){},t.prototype.openAttribute=function(t,e,n){},t.prototype.closeAttribute=function(t,e,n){},t}()}).call(this)},59665:function(t,e,n){(function(){var e,s,i,r,o,a,l,c,d,u;u=n(49241),c=u.assign,d=u.isFunction,i=n(67260),r=n(71933),o=n(80400),l=n(40382),a=n(96775),e=n(71737),s=n(88753),t.exports.create=function(t,e,n,s){var i,o;if(null==t)throw new Error("Root element needs a name.");return s=c({},e,n,s),o=(i=new r(s)).element(t),s.headless||(i.declaration(s),null==s.pubID&&null==s.sysID||i.dtd(s)),o},t.exports.begin=function(t,e,n){var s;return d(t)&&(e=(s=[t,e])[0],n=s[1],t={}),e?new o(t,e,n):new r(t)},t.exports.stringWriter=function(t){return new l(t)},t.exports.streamWriter=function(t,e){return new a(t,e)},t.exports.implementation=new i,t.exports.nodeType=e,t.exports.writerState=s}).call(this)},63710:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20height=%2716%27%20width=%2716%27%3e%3cpath%20d=%27M14%2012.3L12.3%2014%208%209.7%203.7%2014%202%2012.3%206.3%208%202%203.7%203.7%202%208%206.3%2012.3%202%2014%203.7%209.7%208z%27%20style=%27fill-opacity:1;fill:%23ffffff%27/%3e%3c/svg%3e"},57273:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20height=%2716%27%20width=%2716%27%3e%3cpath%20d=%27M14%2012.3L12.3%2014%208%209.7%203.7%2014%202%2012.3%206.3%208%202%203.7%203.7%202%208%206.3%2012.3%202%2014%203.7%209.7%208z%27/%3e%3c/svg%3e"},42634:()=>{},63779:()=>{},99580:()=>{},59169:()=>{},86833:()=>{},35810:(t,e,n)=>{"use strict";n.d(e,{Al:()=>z,By:()=>w,H4:()=>U,PY:()=>D,Q$:()=>j,R3:()=>k,Ss:()=>oe,VL:()=>T,ZH:()=>P,aX:()=>y,bP:()=>F,bh:()=>R,hY:()=>v,lJ:()=>O,m1:()=>le,m9:()=>h,pt:()=>S,qK:()=>A,v7:()=>g,vb:()=>E,vd:()=>B,zI:()=>I});var s=n(92457),i=n(53529),r=n(53334),o=n(43627),a=n(71089),l=n(66656),c=n(66037);const d=null===(u=(0,s.HW)())?(0,i.YK)().setApp("files").build():(0,i.YK)().setApp("files").setUid(u.uid).build();var u;class m{_entries=[];registerEntry(t){this.validateEntry(t),this._entries.push(t)}unregisterEntry(t){const e="string"==typeof t?this.getEntryIndex(t):this.getEntryIndex(t.id);-1!==e?this._entries.splice(e,1):d.warn("Entry not found, nothing removed",{entry:t,entries:this.getEntries()})}getEntries(t){return t?this._entries.filter((e=>"function"!=typeof e.enabled||e.enabled(t))):this._entries}getEntryIndex(t){return this._entries.findIndex((e=>e.id===t))}validateEntry(t){if(!t.id||!t.displayName||!t.iconSvgInline&&!t.iconClass||!t.handler)throw new Error("Invalid entry");if("string"!=typeof t.id||"string"!=typeof t.displayName)throw new Error("Invalid id or displayName property");if(t.iconClass&&"string"!=typeof t.iconClass||t.iconSvgInline&&"string"!=typeof t.iconSvgInline)throw new Error("Invalid icon provided");if(void 0!==t.enabled&&"function"!=typeof t.enabled)throw new Error("Invalid enabled property");if("function"!=typeof t.handler)throw new Error("Invalid handler property");if("order"in t&&"number"!=typeof t.order)throw new Error("Invalid order property");if(-1!==this.getEntryIndex(t.id))throw new Error("Duplicate entry")}}const p=["B","KB","MB","GB","TB","PB"],f=["B","KiB","MiB","GiB","TiB","PiB"];function g(t,e=!1,n=!1,s=!1){n=n&&!s,"string"==typeof t&&(t=Number(t));let i=t>0?Math.floor(Math.log(t)/Math.log(s?1e3:1024)):0;i=Math.min((n?f.length:p.length)-1,i);const o=n?f[i]:p[i];let a=(t/Math.pow(s?1e3:1024,i)).toFixed(1);return!0===e&&0===i?("0.0"!==a?"< 1 ":"0 ")+(n?f[1]:p[1]):(a=i<2?parseFloat(a).toFixed(0):parseFloat(a).toLocaleString((0,r.lO)()),a+" "+o)}var h=(t=>(t.DEFAULT="default",t.HIDDEN="hidden",t))(h||{});class v{_action;constructor(t){this.validateAction(t),this._action=t}get id(){return this._action.id}get displayName(){return this._action.displayName}get title(){return this._action.title}get iconSvgInline(){return this._action.iconSvgInline}get enabled(){return this._action.enabled}get exec(){return this._action.exec}get execBatch(){return this._action.execBatch}get order(){return this._action.order}get parent(){return this._action.parent}get default(){return this._action.default}get inline(){return this._action.inline}get renderInline(){return this._action.renderInline}validateAction(t){if(!t.id||"string"!=typeof t.id)throw new Error("Invalid id");if(!t.displayName||"function"!=typeof t.displayName)throw new Error("Invalid displayName function");if("title"in t&&"function"!=typeof t.title)throw new Error("Invalid title function");if(!t.iconSvgInline||"function"!=typeof t.iconSvgInline)throw new Error("Invalid iconSvgInline function");if(!t.exec||"function"!=typeof t.exec)throw new Error("Invalid exec function");if("enabled"in t&&"function"!=typeof t.enabled)throw new Error("Invalid enabled function");if("execBatch"in t&&"function"!=typeof t.execBatch)throw new Error("Invalid execBatch function");if("order"in t&&"number"!=typeof t.order)throw new Error("Invalid order");if("parent"in t&&"string"!=typeof t.parent)throw new Error("Invalid parent");if(t.default&&!Object.values(h).includes(t.default))throw new Error("Invalid default");if("inline"in t&&"function"!=typeof t.inline)throw new Error("Invalid inline function");if("renderInline"in t&&"function"!=typeof t.renderInline)throw new Error("Invalid renderInline function")}}const A=function(){return typeof window._nc_fileactions>"u"&&(window._nc_fileactions=[],d.debug("FileActions initialized")),window._nc_fileactions},w=function(){return typeof window._nc_filelistheader>"u"&&(window._nc_filelistheader=[],d.debug("FileListHeaders initialized")),window._nc_filelistheader};var y=(t=>(t[t.NONE=0]="NONE",t[t.CREATE=4]="CREATE",t[t.READ=1]="READ",t[t.UPDATE=2]="UPDATE",t[t.DELETE=8]="DELETE",t[t.SHARE=16]="SHARE",t[t.ALL=31]="ALL",t))(y||{});const b=["d:getcontentlength","d:getcontenttype","d:getetag","d:getlastmodified","d:quota-available-bytes","d:resourcetype","nc:has-preview","nc:is-encrypted","nc:mount-type","oc:comments-unread","oc:favorite","oc:fileid","oc:owner-display-name","oc:owner-id","oc:permissions","oc:size"],C={d:"DAV:",nc:"http://nextcloud.org/ns",oc:"http://owncloud.org/ns",ocs:"http://open-collaboration-services.org/ns"},x=function(){return typeof window._nc_dav_properties>"u"&&(window._nc_dav_properties=[...b]),window._nc_dav_properties.map((t=>`<${t} />`)).join(" ")},_=function(){return typeof window._nc_dav_namespaces>"u"&&(window._nc_dav_namespaces={...C}),Object.keys(window._nc_dav_namespaces).map((t=>`xmlns:${t}="${window._nc_dav_namespaces?.[t]}"`)).join(" ")},T=function(){return`<?xml version="1.0"?>\n\t\t<d:propfind ${_()}>\n\t\t\t<d:prop>\n\t\t\t\t${x()}\n\t\t\t</d:prop>\n\t\t</d:propfind>`},k=function(t){return`<?xml version="1.0" encoding="UTF-8"?>\n<d:searchrequest ${_()}\n\txmlns:ns="https://github.com/icewind1991/SearchDAV/ns">\n\t<d:basicsearch>\n\t\t<d:select>\n\t\t\t<d:prop>\n\t\t\t\t${x()}\n\t\t\t</d:prop>\n\t\t</d:select>\n\t\t<d:from>\n\t\t\t<d:scope>\n\t\t\t\t<d:href>/files/${(0,s.HW)()?.uid}/</d:href>\n\t\t\t\t<d:depth>infinity</d:depth>\n\t\t\t</d:scope>\n\t\t</d:from>\n\t\t<d:where>\n\t\t\t<d:and>\n\t\t\t\t<d:or>\n\t\t\t\t\t<d:not>\n\t\t\t\t\t\t<d:eq>\n\t\t\t\t\t\t\t<d:prop>\n\t\t\t\t\t\t\t\t<d:getcontenttype/>\n\t\t\t\t\t\t\t</d:prop>\n\t\t\t\t\t\t\t<d:literal>httpd/unix-directory</d:literal>\n\t\t\t\t\t\t</d:eq>\n\t\t\t\t\t</d:not>\n\t\t\t\t\t<d:eq>\n\t\t\t\t\t\t<d:prop>\n\t\t\t\t\t\t\t<oc:size/>\n\t\t\t\t\t\t</d:prop>\n\t\t\t\t\t\t<d:literal>0</d:literal>\n\t\t\t\t\t</d:eq>\n\t\t\t\t</d:or>\n\t\t\t\t<d:gt>\n\t\t\t\t\t<d:prop>\n\t\t\t\t\t\t<d:getlastmodified/>\n\t\t\t\t\t</d:prop>\n\t\t\t\t\t<d:literal>${t}</d:literal>\n\t\t\t\t</d:gt>\n\t\t\t</d:and>\n\t\t</d:where>\n\t\t<d:orderby>\n\t\t\t<d:order>\n\t\t\t\t<d:prop>\n\t\t\t\t\t<d:getlastmodified/>\n\t\t\t\t</d:prop>\n\t\t\t\t<d:descending/>\n\t\t\t</d:order>\n\t\t</d:orderby>\n\t\t<d:limit>\n\t\t\t<d:nresults>100</d:nresults>\n\t\t\t<ns:firstresult>0</ns:firstresult>\n\t\t</d:limit>\n\t</d:basicsearch>\n</d:searchrequest>`},E=function(t=""){let e=y.NONE;return t&&((t.includes("C")||t.includes("K"))&&(e|=y.CREATE),t.includes("G")&&(e|=y.READ),(t.includes("W")||t.includes("N")||t.includes("V"))&&(e|=y.UPDATE),t.includes("D")&&(e|=y.DELETE),t.includes("R")&&(e|=y.SHARE)),e};var S=(t=>(t.Folder="folder",t.File="file",t))(S||{});const L=function(t,e){return null!==t.match(e)},N=(t,e)=>{if(t.id&&"number"!=typeof t.id)throw new Error("Invalid id type of value");if(!t.source)throw new Error("Missing mandatory source");try{new URL(t.source)}catch{throw new Error("Invalid source format, source must be a valid URL")}if(!t.source.startsWith("http"))throw new Error("Invalid source format, only http(s) is supported");if(t.mtime&&!(t.mtime instanceof Date))throw new Error("Invalid mtime type");if(t.crtime&&!(t.crtime instanceof Date))throw new Error("Invalid crtime type");if(!t.mime||"string"!=typeof t.mime||!t.mime.match(/^[-\w.]+\/[-+\w.]+$/gi))throw new Error("Missing or invalid mandatory mime");if("size"in t&&"number"!=typeof t.size&&void 0!==t.size)throw new Error("Invalid size type");if("permissions"in t&&void 0!==t.permissions&&!("number"==typeof t.permissions&&t.permissions>=y.NONE&&t.permissions<=y.ALL))throw new Error("Invalid permissions");if(t.owner&&null!==t.owner&&"string"!=typeof t.owner)throw new Error("Invalid owner type");if(t.attributes&&"object"!=typeof t.attributes)throw new Error("Invalid attributes type");if(t.root&&"string"!=typeof t.root)throw new Error("Invalid root type");if(t.root&&!t.root.startsWith("/"))throw new Error("Root must start with a leading slash");if(t.root&&!t.source.includes(t.root))throw new Error("Root must be part of the source");if(t.root&&L(t.source,e)){const n=t.source.match(e)[0];if(!t.source.includes((0,o.join)(n,t.root)))throw new Error("The root must be relative to the service. e.g /files/emma")}if(t.status&&!Object.values(I).includes(t.status))throw new Error("Status must be a valid NodeStatus")};var I=(t=>(t.NEW="new",t.FAILED="failed",t.LOADING="loading",t.LOCKED="locked",t))(I||{});class F{_data;_attributes;_knownDavService=/(remote|public)\.php\/(web)?dav/i;constructor(t,e){N(t,e||this._knownDavService),this._data=t;const n={set:(t,e,n)=>(this.updateMtime(),Reflect.set(t,e,n)),deleteProperty:(t,e)=>(this.updateMtime(),Reflect.deleteProperty(t,e))};this._attributes=new Proxy(t.attributes||{},n),delete this._data.attributes,e&&(this._knownDavService=e)}get source(){return this._data.source.replace(/\/$/i,"")}get encodedSource(){const{origin:t}=new URL(this.source);return t+(0,a.O0)(this.source.slice(t.length))}get basename(){return(0,o.basename)(this.source)}get extension(){return(0,o.extname)(this.source)}get dirname(){if(this.root){let t=this.source;this.isDavRessource&&(t=t.split(this._knownDavService).pop());const e=t.indexOf(this.root),n=this.root.replace(/\/$/,"");return(0,o.dirname)(t.slice(e+n.length)||"/")}const t=new URL(this.source);return(0,o.dirname)(t.pathname)}get mime(){return this._data.mime}get mtime(){return this._data.mtime}get crtime(){return this._data.crtime}get size(){return this._data.size}get attributes(){return this._attributes}get permissions(){return null!==this.owner||this.isDavRessource?void 0!==this._data.permissions?this._data.permissions:y.NONE:y.READ}get owner(){return this.isDavRessource?this._data.owner:null}get isDavRessource(){return L(this.source,this._knownDavService)}get root(){return this._data.root?this._data.root.replace(/^(.+)\/$/,"$1"):this.isDavRessource&&(0,o.dirname)(this.source).split(this._knownDavService).pop()||null}get path(){if(this.root){let t=this.source;this.isDavRessource&&(t=t.split(this._knownDavService).pop());const e=t.indexOf(this.root),n=this.root.replace(/\/$/,"");return t.slice(e+n.length)||"/"}return(this.dirname+"/"+this.basename).replace(/\/\//g,"/")}get fileid(){return this._data?.id||this.attributes?.fileid}get status(){return this._data?.status}set status(t){this._data.status=t}move(t){N({...this._data,source:t},this._knownDavService),this._data.source=t,this.updateMtime()}rename(t){if(t.includes("/"))throw new Error("Invalid basename");this.move((0,o.dirname)(this.source)+"/"+t)}updateMtime(){this._data.mtime&&(this._data.mtime=new Date)}}class P extends F{get type(){return S.File}}class B extends F{constructor(t){super({...t,mime:"httpd/unix-directory"})}get type(){return S.Folder}get extension(){return null}get mime(){return"httpd/unix-directory"}}const O=`/files/${(0,s.HW)()?.uid}`,D=(0,l.dC)("dav"),U=function(t=D,e={}){const n=(0,c.UU)(t,{headers:e});function i(t){n.setHeaders({...e,"X-Requested-With":"XMLHttpRequest",requesttoken:t??""})}return(0,s.zo)(i),i((0,s.do)()),(0,c.Gu)().patch("fetch",((t,e)=>{const n=e.headers;return n?.method&&(e.method=n.method,delete n.method),fetch(t,e)})),n},j=async(t,e="/",n=O)=>(await t.getDirectoryContents(`${n}${e}`,{details:!0,data:`<?xml version="1.0"?>\n\t\t<oc:filter-files ${_()}>\n\t\t\t<d:prop>\n\t\t\t\t${x()}\n\t\t\t</d:prop>\n\t\t\t<oc:filter-rules>\n\t\t\t\t<oc:favorite>1</oc:favorite>\n\t\t\t</oc:filter-rules>\n\t\t</oc:filter-files>`,headers:{method:"REPORT"},includeSelf:!0})).data.filter((t=>t.filename!==e)).map((t=>z(t,n))),z=function(t,e=O,n=D){const i=(0,s.HW)()?.uid;if(!i)throw new Error("No user id found");const r=t.props,o=E(r?.permissions),a=(r?.["owner-id"]||i).toString(),l={id:r?.fileid||0,source:`${n}${t.filename}`,mtime:new Date(Date.parse(t.lastmod)),mime:t.mime||"application/octet-stream",size:r?.size||Number.parseInt(r.getcontentlength||"0"),permissions:o,owner:a,root:e,attributes:{...t,...r,hasPreview:r?.["has-preview"]}};return delete l.attributes?.props,"file"===t.type?new P(l):new B(l)};class M{_views=[];_currentView=null;register(t){if(this._views.find((e=>e.id===t.id)))throw new Error(`View id ${t.id} is already registered`);this._views.push(t)}remove(t){const e=this._views.findIndex((e=>e.id===t));-1!==e&&this._views.splice(e,1)}get views(){return this._views}setActive(t){this._currentView=t}get active(){return this._currentView}}const R=function(){return typeof window._nc_navigation>"u"&&(window._nc_navigation=new M,d.debug("Navigation service initialized")),window._nc_navigation};class V{_column;constructor(t){$(t),this._column=t}get id(){return this._column.id}get title(){return this._column.title}get render(){return this._column.render}get sort(){return this._column.sort}get summary(){return this._column.summary}}const $=function(t){if(!t.id||"string"!=typeof t.id)throw new Error("A column id is required");if(!t.title||"string"!=typeof t.title)throw new Error("A column title is required");if(!t.render||"function"!=typeof t.render)throw new Error("A render function is required");if(t.sort&&"function"!=typeof t.sort)throw new Error("Column sortFunction must be a function");if(t.summary&&"function"!=typeof t.summary)throw new Error("Column summary must be a function");return!0};var q={},H={};!function(t){const e=":A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",n="["+e+"]["+e+"\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*",s=new RegExp("^"+n+"$");t.isExist=function(t){return typeof t<"u"},t.isEmptyObject=function(t){return 0===Object.keys(t).length},t.merge=function(t,e,n){if(e){const s=Object.keys(e),i=s.length;for(let r=0;r<i;r++)t[s[r]]="strict"===n?[e[s[r]]]:e[s[r]]}},t.getValue=function(e){return t.isExist(e)?e:""},t.isName=function(t){const e=s.exec(t);return!(null===e||typeof e>"u")},t.getAllMatches=function(t,e){const n=[];let s=e.exec(t);for(;s;){const i=[];i.startIndex=e.lastIndex-s[0].length;const r=s.length;for(let t=0;t<r;t++)i.push(s[t]);n.push(i),s=e.exec(t)}return n},t.nameRegexp=n}(H);const W=H,G={allowBooleanAttributes:!1,unpairedTags:[]};function Y(t){return" "===t||"\t"===t||"\n"===t||"\r"===t}function K(t,e){const n=e;for(;e<t.length;e++)if("?"==t[e]||" "==t[e]){const s=t.substr(n,e-n);if(e>5&&"xml"===s)return st("InvalidXml","XML declaration allowed only at the start of the document.",ot(t,e));if("?"==t[e]&&">"==t[e+1]){e++;break}continue}return e}function Q(t,e){if(t.length>e+5&&"-"===t[e+1]&&"-"===t[e+2]){for(e+=3;e<t.length;e++)if("-"===t[e]&&"-"===t[e+1]&&">"===t[e+2]){e+=2;break}}else if(t.length>e+8&&"D"===t[e+1]&&"O"===t[e+2]&&"C"===t[e+3]&&"T"===t[e+4]&&"Y"===t[e+5]&&"P"===t[e+6]&&"E"===t[e+7]){let n=1;for(e+=8;e<t.length;e++)if("<"===t[e])n++;else if(">"===t[e]&&(n--,0===n))break}else if(t.length>e+9&&"["===t[e+1]&&"C"===t[e+2]&&"D"===t[e+3]&&"A"===t[e+4]&&"T"===t[e+5]&&"A"===t[e+6]&&"["===t[e+7])for(e+=8;e<t.length;e++)if("]"===t[e]&&"]"===t[e+1]&&">"===t[e+2]){e+=2;break}return e}q.validate=function(t,e){e=Object.assign({},G,e);const n=[];let s=!1,i=!1;"\ufeff"===t[0]&&(t=t.substr(1));for(let r=0;r<t.length;r++)if("<"===t[r]&&"?"===t[r+1]){if(r+=2,r=K(t,r),r.err)return r}else{if("<"!==t[r]){if(Y(t[r]))continue;return st("InvalidChar","char '"+t[r]+"' is not expected.",ot(t,r))}{let o=r;if(r++,"!"===t[r]){r=Q(t,r);continue}{let a=!1;"/"===t[r]&&(a=!0,r++);let l="";for(;r<t.length&&">"!==t[r]&&" "!==t[r]&&"\t"!==t[r]&&"\n"!==t[r]&&"\r"!==t[r];r++)l+=t[r];if(l=l.trim(),"/"===l[l.length-1]&&(l=l.substring(0,l.length-1),r--),!rt(l)){let e;return e=0===l.trim().length?"Invalid space after '<'.":"Tag '"+l+"' is an invalid name.",st("InvalidTag",e,ot(t,r))}const c=Z(t,r);if(!1===c)return st("InvalidAttr","Attributes for '"+l+"' have open quote.",ot(t,r));let d=c.value;if(r=c.index,"/"===d[d.length-1]){const n=r-d.length;d=d.substring(0,d.length-1);const i=et(d,e);if(!0!==i)return st(i.err.code,i.err.msg,ot(t,n+i.err.line));s=!0}else if(a){if(!c.tagClosed)return st("InvalidTag","Closing tag '"+l+"' doesn't have proper closing.",ot(t,r));if(d.trim().length>0)return st("InvalidTag","Closing tag '"+l+"' can't have attributes or invalid starting.",ot(t,o));{const e=n.pop();if(l!==e.tagName){let n=ot(t,e.tagStartPos);return st("InvalidTag","Expected closing tag '"+e.tagName+"' (opened in line "+n.line+", col "+n.col+") instead of closing tag '"+l+"'.",ot(t,o))}0==n.length&&(i=!0)}}else{const a=et(d,e);if(!0!==a)return st(a.err.code,a.err.msg,ot(t,r-d.length+a.err.line));if(!0===i)return st("InvalidXml","Multiple possible root nodes found.",ot(t,r));-1!==e.unpairedTags.indexOf(l)||n.push({tagName:l,tagStartPos:o}),s=!0}for(r++;r<t.length;r++)if("<"===t[r]){if("!"===t[r+1]){r++,r=Q(t,r);continue}if("?"!==t[r+1])break;if(r=K(t,++r),r.err)return r}else if("&"===t[r]){const e=nt(t,r);if(-1==e)return st("InvalidChar","char '&' is not expected.",ot(t,r));r=e}else if(!0===i&&!Y(t[r]))return st("InvalidXml","Extra text at the end",ot(t,r));"<"===t[r]&&r--}}}return s?1==n.length?st("InvalidTag","Unclosed tag '"+n[0].tagName+"'.",ot(t,n[0].tagStartPos)):!(n.length>0)||st("InvalidXml","Invalid '"+JSON.stringify(n.map((t=>t.tagName)),null,4).replace(/\r?\n/g,"")+"' found.",{line:1,col:1}):st("InvalidXml","Start tag expected.",1)};const X='"',J="'";function Z(t,e){let n="",s="",i=!1;for(;e<t.length;e++){if(t[e]===X||t[e]===J)""===s?s=t[e]:s!==t[e]||(s="");else if(">"===t[e]&&""===s){i=!0;break}n+=t[e]}return""===s&&{value:n,index:e,tagClosed:i}}const tt=new RegExp("(\\s*)([^\\s=]+)(\\s*=)?(\\s*(['\"])(([\\s\\S])*?)\\5)?","g");function et(t,e){const n=W.getAllMatches(t,tt),s={};for(let t=0;t<n.length;t++){if(0===n[t][1].length)return st("InvalidAttr","Attribute '"+n[t][2]+"' has no space in starting.",at(n[t]));if(void 0!==n[t][3]&&void 0===n[t][4])return st("InvalidAttr","Attribute '"+n[t][2]+"' is without value.",at(n[t]));if(void 0===n[t][3]&&!e.allowBooleanAttributes)return st("InvalidAttr","boolean attribute '"+n[t][2]+"' is not allowed.",at(n[t]));const i=n[t][2];if(!it(i))return st("InvalidAttr","Attribute '"+i+"' is an invalid name.",at(n[t]));if(s.hasOwnProperty(i))return st("InvalidAttr","Attribute '"+i+"' is repeated.",at(n[t]));s[i]=1}return!0}function nt(t,e){if(";"===t[++e])return-1;if("#"===t[e])return function(t,e){let n=/\d/;for("x"===t[e]&&(e++,n=/[\da-fA-F]/);e<t.length;e++){if(";"===t[e])return e;if(!t[e].match(n))break}return-1}(t,++e);let n=0;for(;e<t.length;e++,n++)if(!(t[e].match(/\w/)&&n<20)){if(";"===t[e])break;return-1}return e}function st(t,e,n){return{err:{code:t,msg:e,line:n.line||n,col:n.col}}}function it(t){return W.isName(t)}function rt(t){return W.isName(t)}function ot(t,e){const n=t.substring(0,e).split(/\r?\n/);return{line:n.length,col:n[n.length-1].length+1}}function at(t){return t.startIndex+t[1].length}var lt={};const ct={preserveOrder:!1,attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,removeNSPrefix:!1,allowBooleanAttributes:!1,parseTagValue:!0,parseAttributeValue:!1,trimValues:!0,cdataPropName:!1,numberParseOptions:{hex:!0,leadingZeros:!0,eNotation:!0},tagValueProcessor:function(t,e){return e},attributeValueProcessor:function(t,e){return e},stopNodes:[],alwaysCreateTextNode:!1,isArray:()=>!1,commentPropName:!1,unpairedTags:[],processEntities:!0,htmlEntities:!1,ignoreDeclaration:!1,ignorePiTags:!1,transformTagName:!1,transformAttributeName:!1,updateTag:function(t,e,n){return t}};lt.buildOptions=function(t){return Object.assign({},ct,t)},lt.defaultOptions=ct;const dt=H;function ut(t,e){let n="";for(;e<t.length&&"'"!==t[e]&&'"'!==t[e];e++)n+=t[e];if(n=n.trim(),-1!==n.indexOf(" "))throw new Error("External entites are not supported");const s=t[e++];let i="";for(;e<t.length&&t[e]!==s;e++)i+=t[e];return[n,i,e]}function mt(t,e){return"!"===t[e+1]&&"-"===t[e+2]&&"-"===t[e+3]}function pt(t,e){return"!"===t[e+1]&&"E"===t[e+2]&&"N"===t[e+3]&&"T"===t[e+4]&&"I"===t[e+5]&&"T"===t[e+6]&&"Y"===t[e+7]}function ft(t,e){return"!"===t[e+1]&&"E"===t[e+2]&&"L"===t[e+3]&&"E"===t[e+4]&&"M"===t[e+5]&&"E"===t[e+6]&&"N"===t[e+7]&&"T"===t[e+8]}function gt(t,e){return"!"===t[e+1]&&"A"===t[e+2]&&"T"===t[e+3]&&"T"===t[e+4]&&"L"===t[e+5]&&"I"===t[e+6]&&"S"===t[e+7]&&"T"===t[e+8]}function ht(t,e){return"!"===t[e+1]&&"N"===t[e+2]&&"O"===t[e+3]&&"T"===t[e+4]&&"A"===t[e+5]&&"T"===t[e+6]&&"I"===t[e+7]&&"O"===t[e+8]&&"N"===t[e+9]}function vt(t){if(dt.isName(t))return t;throw new Error(`Invalid entity name ${t}`)}const At=/^[-+]?0x[a-fA-F0-9]+$/,wt=/^([\-\+])?(0*)(\.[0-9]+([eE]\-?[0-9]+)?|[0-9]+(\.[0-9]+([eE]\-?[0-9]+)?)?)$/;!Number.parseInt&&window.parseInt&&(Number.parseInt=window.parseInt),!Number.parseFloat&&window.parseFloat&&(Number.parseFloat=window.parseFloat);const yt={hex:!0,leadingZeros:!0,decimalPoint:".",eNotation:!0};const bt=H,Ct=class{constructor(t){this.tagname=t,this.child=[],this[":@"]={}}add(t,e){"__proto__"===t&&(t="#__proto__"),this.child.push({[t]:e})}addChild(t){"__proto__"===t.tagname&&(t.tagname="#__proto__"),t[":@"]&&Object.keys(t[":@"]).length>0?this.child.push({[t.tagname]:t.child,":@":t[":@"]}):this.child.push({[t.tagname]:t.child})}},xt=function(t,e){const n={};if("O"!==t[e+3]||"C"!==t[e+4]||"T"!==t[e+5]||"Y"!==t[e+6]||"P"!==t[e+7]||"E"!==t[e+8])throw new Error("Invalid Tag instead of DOCTYPE");{e+=9;let s=1,i=!1,r=!1,o="";for(;e<t.length;e++)if("<"!==t[e]||r)if(">"===t[e]){if(r?"-"===t[e-1]&&"-"===t[e-2]&&(r=!1,s--):s--,0===s)break}else"["===t[e]?i=!0:o+=t[e];else{if(i&&pt(t,e))e+=7,[entityName,val,e]=ut(t,e+1),-1===val.indexOf("&")&&(n[vt(entityName)]={regx:RegExp(`&${entityName};`,"g"),val});else if(i&&ft(t,e))e+=8;else if(i&&gt(t,e))e+=8;else if(i&&ht(t,e))e+=9;else{if(!mt)throw new Error("Invalid DOCTYPE");r=!0}s++,o=""}if(0!==s)throw new Error("Unclosed DOCTYPE")}return{entities:n,i:e}},_t=function(t,e={}){if(e=Object.assign({},yt,e),!t||"string"!=typeof t)return t;let n=t.trim();if(void 0!==e.skipLike&&e.skipLike.test(n))return t;if(e.hex&&At.test(n))return Number.parseInt(n,16);{const s=wt.exec(n);if(s){const i=s[1],r=s[2];let o=function(t){return t&&-1!==t.indexOf(".")&&("."===(t=t.replace(/0+$/,""))?t="0":"."===t[0]?t="0"+t:"."===t[t.length-1]&&(t=t.substr(0,t.length-1))),t}(s[3]);const a=s[4]||s[6];if(!e.leadingZeros&&r.length>0&&i&&"."!==n[2])return t;if(!e.leadingZeros&&r.length>0&&!i&&"."!==n[1])return t;{const s=Number(n),l=""+s;return-1!==l.search(/[eE]/)||a?e.eNotation?s:t:-1!==n.indexOf(".")?"0"===l&&""===o||l===o||i&&l==="-"+o?s:t:r?o===l||i+o===l?s:t:n===l||n===i+l?s:t}}return t}};function Tt(t){const e=Object.keys(t);for(let n=0;n<e.length;n++){const s=e[n];this.lastEntities[s]={regex:new RegExp("&"+s+";","g"),val:t[s]}}}function kt(t,e,n,s,i,r,o){if(void 0!==t&&(this.options.trimValues&&!s&&(t=t.trim()),t.length>0)){o||(t=this.replaceEntitiesValue(t));const s=this.options.tagValueProcessor(e,t,n,i,r);return null==s?t:typeof s!=typeof t||s!==t?s:this.options.trimValues||t.trim()===t?jt(t,this.options.parseTagValue,this.options.numberParseOptions):t}}function Et(t){if(this.options.removeNSPrefix){const e=t.split(":"),n="/"===t.charAt(0)?"/":"";if("xmlns"===e[0])return"";2===e.length&&(t=n+e[1])}return t}const St=new RegExp("([^\\s=]+)\\s*(=\\s*(['\"])([\\s\\S]*?)\\3)?","gm");function Lt(t,e,n){if(!this.options.ignoreAttributes&&"string"==typeof t){const n=bt.getAllMatches(t,St),s=n.length,i={};for(let t=0;t<s;t++){const s=this.resolveNameSpace(n[t][1]);let r=n[t][4],o=this.options.attributeNamePrefix+s;if(s.length)if(this.options.transformAttributeName&&(o=this.options.transformAttributeName(o)),"__proto__"===o&&(o="#__proto__"),void 0!==r){this.options.trimValues&&(r=r.trim()),r=this.replaceEntitiesValue(r);const t=this.options.attributeValueProcessor(s,r,e);i[o]=null==t?r:typeof t!=typeof r||t!==r?t:jt(r,this.options.parseAttributeValue,this.options.numberParseOptions)}else this.options.allowBooleanAttributes&&(i[o]=!0)}if(!Object.keys(i).length)return;if(this.options.attributesGroupName){const t={};return t[this.options.attributesGroupName]=i,t}return i}}const Nt=function(t){t=t.replace(/\r\n?/g,"\n");const e=new Ct("!xml");let n=e,s="",i="";for(let r=0;r<t.length;r++)if("<"===t[r])if("/"===t[r+1]){const e=Ot(t,">",r,"Closing Tag is not closed.");let o=t.substring(r+2,e).trim();if(this.options.removeNSPrefix){const t=o.indexOf(":");-1!==t&&(o=o.substr(t+1))}this.options.transformTagName&&(o=this.options.transformTagName(o)),n&&(s=this.saveTextToParentTag(s,n,i));const a=i.substring(i.lastIndexOf(".")+1);if(o&&-1!==this.options.unpairedTags.indexOf(o))throw new Error(`Unpaired tag can not be used as closing tag: </${o}>`);let l=0;a&&-1!==this.options.unpairedTags.indexOf(a)?(l=i.lastIndexOf(".",i.lastIndexOf(".")-1),this.tagsNodeStack.pop()):l=i.lastIndexOf("."),i=i.substring(0,l),n=this.tagsNodeStack.pop(),s="",r=e}else if("?"===t[r+1]){let e=Dt(t,r,!1,"?>");if(!e)throw new Error("Pi Tag is not closed.");if(s=this.saveTextToParentTag(s,n,i),!(this.options.ignoreDeclaration&&"?xml"===e.tagName||this.options.ignorePiTags)){const t=new Ct(e.tagName);t.add(this.options.textNodeName,""),e.tagName!==e.tagExp&&e.attrExpPresent&&(t[":@"]=this.buildAttributesMap(e.tagExp,i,e.tagName)),this.addChild(n,t,i)}r=e.closeIndex+1}else if("!--"===t.substr(r+1,3)){const e=Ot(t,"--\x3e",r+4,"Comment is not closed.");if(this.options.commentPropName){const o=t.substring(r+4,e-2);s=this.saveTextToParentTag(s,n,i),n.add(this.options.commentPropName,[{[this.options.textNodeName]:o}])}r=e}else if("!D"===t.substr(r+1,2)){const e=xt(t,r);this.docTypeEntities=e.entities,r=e.i}else if("!["===t.substr(r+1,2)){const e=Ot(t,"]]>",r,"CDATA is not closed.")-2,o=t.substring(r+9,e);s=this.saveTextToParentTag(s,n,i);let a=this.parseTextData(o,n.tagname,i,!0,!1,!0,!0);null==a&&(a=""),this.options.cdataPropName?n.add(this.options.cdataPropName,[{[this.options.textNodeName]:o}]):n.add(this.options.textNodeName,a),r=e+2}else{let o=Dt(t,r,this.options.removeNSPrefix),a=o.tagName;const l=o.rawTagName;let c=o.tagExp,d=o.attrExpPresent,u=o.closeIndex;this.options.transformTagName&&(a=this.options.transformTagName(a)),n&&s&&"!xml"!==n.tagname&&(s=this.saveTextToParentTag(s,n,i,!1));const m=n;if(m&&-1!==this.options.unpairedTags.indexOf(m.tagname)&&(n=this.tagsNodeStack.pop(),i=i.substring(0,i.lastIndexOf("."))),a!==e.tagname&&(i+=i?"."+a:a),this.isItStopNode(this.options.stopNodes,i,a)){let e="";if(c.length>0&&c.lastIndexOf("/")===c.length-1)r=o.closeIndex;else if(-1!==this.options.unpairedTags.indexOf(a))r=o.closeIndex;else{const n=this.readStopNodeData(t,l,u+1);if(!n)throw new Error(`Unexpected end of ${l}`);r=n.i,e=n.tagContent}const s=new Ct(a);a!==c&&d&&(s[":@"]=this.buildAttributesMap(c,i,a)),e&&(e=this.parseTextData(e,a,i,!0,d,!0,!0)),i=i.substr(0,i.lastIndexOf(".")),s.add(this.options.textNodeName,e),this.addChild(n,s,i)}else{if(c.length>0&&c.lastIndexOf("/")===c.length-1){"/"===a[a.length-1]?(a=a.substr(0,a.length-1),i=i.substr(0,i.length-1),c=a):c=c.substr(0,c.length-1),this.options.transformTagName&&(a=this.options.transformTagName(a));const t=new Ct(a);a!==c&&d&&(t[":@"]=this.buildAttributesMap(c,i,a)),this.addChild(n,t,i),i=i.substr(0,i.lastIndexOf("."))}else{const t=new Ct(a);this.tagsNodeStack.push(n),a!==c&&d&&(t[":@"]=this.buildAttributesMap(c,i,a)),this.addChild(n,t,i),n=t}s="",r=u}}else s+=t[r];return e.child};function It(t,e,n){const s=this.options.updateTag(e.tagname,n,e[":@"]);!1===s||("string"==typeof s&&(e.tagname=s),t.addChild(e))}const Ft=function(t){if(this.options.processEntities){for(let e in this.docTypeEntities){const n=this.docTypeEntities[e];t=t.replace(n.regx,n.val)}for(let e in this.lastEntities){const n=this.lastEntities[e];t=t.replace(n.regex,n.val)}if(this.options.htmlEntities)for(let e in this.htmlEntities){const n=this.htmlEntities[e];t=t.replace(n.regex,n.val)}t=t.replace(this.ampEntity.regex,this.ampEntity.val)}return t};function Pt(t,e,n,s){return t&&(void 0===s&&(s=0===Object.keys(e.child).length),void 0!==(t=this.parseTextData(t,e.tagname,n,!1,!!e[":@"]&&0!==Object.keys(e[":@"]).length,s))&&""!==t&&e.add(this.options.textNodeName,t),t=""),t}function Bt(t,e,n){const s="*."+n;for(const n in t){const i=t[n];if(s===i||e===i)return!0}return!1}function Ot(t,e,n,s){const i=t.indexOf(e,n);if(-1===i)throw new Error(s);return i+e.length-1}function Dt(t,e,n,s=">"){const i=function(t,e,n=">"){let s,i="";for(let r=e;r<t.length;r++){let e=t[r];if(s)e===s&&(s="");else if('"'===e||"'"===e)s=e;else if(e===n[0]){if(!n[1])return{data:i,index:r};if(t[r+1]===n[1])return{data:i,index:r}}else"\t"===e&&(e=" ");i+=e}}(t,e+1,s);if(!i)return;let r=i.data;const o=i.index,a=r.search(/\s/);let l=r,c=!0;-1!==a&&(l=r.substring(0,a),r=r.substring(a+1).trimStart());const d=l;if(n){const t=l.indexOf(":");-1!==t&&(l=l.substr(t+1),c=l!==i.data.substr(t+1))}return{tagName:l,tagExp:r,closeIndex:o,attrExpPresent:c,rawTagName:d}}function Ut(t,e,n){const s=n;let i=1;for(;n<t.length;n++)if("<"===t[n])if("/"===t[n+1]){const r=Ot(t,">",n,`${e} is not closed`);if(t.substring(n+2,r).trim()===e&&(i--,0===i))return{tagContent:t.substring(s,n),i:r};n=r}else if("?"===t[n+1])n=Ot(t,"?>",n+1,"StopNode is not closed.");else if("!--"===t.substr(n+1,3))n=Ot(t,"--\x3e",n+3,"StopNode is not closed.");else if("!["===t.substr(n+1,2))n=Ot(t,"]]>",n,"StopNode is not closed.")-2;else{const s=Dt(t,n,">");s&&((s&&s.tagName)===e&&"/"!==s.tagExp[s.tagExp.length-1]&&i++,n=s.closeIndex)}}function jt(t,e,n){if(e&&"string"==typeof t){const e=t.trim();return"true"===e||"false"!==e&&_t(t,n)}return bt.isExist(t)?t:""}var zt={};function Mt(t,e,n){let s;const i={};for(let r=0;r<t.length;r++){const o=t[r],a=Rt(o);let l="";if(l=void 0===n?a:n+"."+a,a===e.textNodeName)void 0===s?s=o[a]:s+=""+o[a];else{if(void 0===a)continue;if(o[a]){let t=Mt(o[a],e,l);const n=$t(t,e);o[":@"]?Vt(t,o[":@"],l,e):1!==Object.keys(t).length||void 0===t[e.textNodeName]||e.alwaysCreateTextNode?0===Object.keys(t).length&&(e.alwaysCreateTextNode?t[e.textNodeName]="":t=""):t=t[e.textNodeName],void 0!==i[a]&&i.hasOwnProperty(a)?(Array.isArray(i[a])||(i[a]=[i[a]]),i[a].push(t)):e.isArray(a,l,n)?i[a]=[t]:i[a]=t}}}return"string"==typeof s?s.length>0&&(i[e.textNodeName]=s):void 0!==s&&(i[e.textNodeName]=s),i}function Rt(t){const e=Object.keys(t);for(let t=0;t<e.length;t++){const n=e[t];if(":@"!==n)return n}}function Vt(t,e,n,s){if(e){const i=Object.keys(e),r=i.length;for(let o=0;o<r;o++){const r=i[o];s.isArray(r,n+"."+r,!0,!0)?t[r]=[e[r]]:t[r]=e[r]}}}function $t(t,e){const{textNodeName:n}=e,s=Object.keys(t).length;return!(0!==s&&(1!==s||!t[n]&&"boolean"!=typeof t[n]&&0!==t[n]))}zt.prettify=function(t,e){return Mt(t,e)};const{buildOptions:qt}=lt,Ht=class{constructor(t){this.options=t,this.currentNode=null,this.tagsNodeStack=[],this.docTypeEntities={},this.lastEntities={apos:{regex:/&(apos|#39|#x27);/g,val:"'"},gt:{regex:/&(gt|#62|#x3E);/g,val:">"},lt:{regex:/&(lt|#60|#x3C);/g,val:"<"},quot:{regex:/&(quot|#34|#x22);/g,val:'"'}},this.ampEntity={regex:/&(amp|#38|#x26);/g,val:"&"},this.htmlEntities={space:{regex:/&(nbsp|#160);/g,val:" "},cent:{regex:/&(cent|#162);/g,val:"¢"},pound:{regex:/&(pound|#163);/g,val:"£"},yen:{regex:/&(yen|#165);/g,val:"¥"},euro:{regex:/&(euro|#8364);/g,val:"€"},copyright:{regex:/&(copy|#169);/g,val:"©"},reg:{regex:/&(reg|#174);/g,val:"®"},inr:{regex:/&(inr|#8377);/g,val:"₹"}},this.addExternalEntities=Tt,this.parseXml=Nt,this.parseTextData=kt,this.resolveNameSpace=Et,this.buildAttributesMap=Lt,this.isItStopNode=Bt,this.replaceEntitiesValue=Ft,this.readStopNodeData=Ut,this.saveTextToParentTag=Pt,this.addChild=It}},{prettify:Wt}=zt,Gt=q;function Yt(t,e,n,s){let i="",r=!1;for(let o=0;o<t.length;o++){const a=t[o],l=Kt(a);if(void 0===l)continue;let c="";if(c=0===n.length?l:`${n}.${l}`,l===e.textNodeName){let t=a[l];Xt(c,e)||(t=e.tagValueProcessor(l,t),t=Jt(t,e)),r&&(i+=s),i+=t,r=!1;continue}if(l===e.cdataPropName){r&&(i+=s),i+=`<![CDATA[${a[l][0][e.textNodeName]}]]>`,r=!1;continue}if(l===e.commentPropName){i+=s+`\x3c!--${a[l][0][e.textNodeName]}--\x3e`,r=!0;continue}if("?"===l[0]){const t=Qt(a[":@"],e),n="?xml"===l?"":s;let o=a[l][0][e.textNodeName];o=0!==o.length?" "+o:"",i+=n+`<${l}${o}${t}?>`,r=!0;continue}let d=s;""!==d&&(d+=e.indentBy);const u=s+`<${l}${Qt(a[":@"],e)}`,m=Yt(a[l],e,c,d);-1!==e.unpairedTags.indexOf(l)?e.suppressUnpairedNode?i+=u+">":i+=u+"/>":m&&0!==m.length||!e.suppressEmptyNode?m&&m.endsWith(">")?i+=u+`>${m}${s}</${l}>`:(i+=u+">",m&&""!==s&&(m.includes("/>")||m.includes("</"))?i+=s+e.indentBy+m+s:i+=m,i+=`</${l}>`):i+=u+"/>",r=!0}return i}function Kt(t){const e=Object.keys(t);for(let n=0;n<e.length;n++){const s=e[n];if(t.hasOwnProperty(s)&&":@"!==s)return s}}function Qt(t,e){let n="";if(t&&!e.ignoreAttributes)for(let s in t){if(!t.hasOwnProperty(s))continue;let i=e.attributeValueProcessor(s,t[s]);i=Jt(i,e),!0===i&&e.suppressBooleanAttributes?n+=` ${s.substr(e.attributeNamePrefix.length)}`:n+=` ${s.substr(e.attributeNamePrefix.length)}="${i}"`}return n}function Xt(t,e){let n=(t=t.substr(0,t.length-e.textNodeName.length-1)).substr(t.lastIndexOf(".")+1);for(let s in e.stopNodes)if(e.stopNodes[s]===t||e.stopNodes[s]==="*."+n)return!0;return!1}function Jt(t,e){if(t&&t.length>0&&e.processEntities)for(let n=0;n<e.entities.length;n++){const s=e.entities[n];t=t.replace(s.regex,s.val)}return t}const Zt=function(t,e){let n="";return e.format&&e.indentBy.length>0&&(n="\n"),Yt(t,e,"",n)},te={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,cdataPropName:!1,format:!1,indentBy:" ",suppressEmptyNode:!1,suppressUnpairedNode:!0,suppressBooleanAttributes:!0,tagValueProcessor:function(t,e){return e},attributeValueProcessor:function(t,e){return e},preserveOrder:!1,commentPropName:!1,unpairedTags:[],entities:[{regex:new RegExp("&","g"),val:"&amp;"},{regex:new RegExp(">","g"),val:"&gt;"},{regex:new RegExp("<","g"),val:"&lt;"},{regex:new RegExp("'","g"),val:"&apos;"},{regex:new RegExp('"',"g"),val:"&quot;"}],processEntities:!0,stopNodes:[],oneListGroup:!1};function ee(t){this.options=Object.assign({},te,t),this.options.ignoreAttributes||this.options.attributesGroupName?this.isAttribute=function(){return!1}:(this.attrPrefixLen=this.options.attributeNamePrefix.length,this.isAttribute=ie),this.processTextOrObjNode=ne,this.options.format?(this.indentate=se,this.tagEndChar=">\n",this.newLine="\n"):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}function ne(t,e,n){const s=this.j2x(t,n+1);return void 0!==t[this.options.textNodeName]&&1===Object.keys(t).length?this.buildTextValNode(t[this.options.textNodeName],e,s.attrStr,n):this.buildObjectNode(s.val,e,s.attrStr,n)}function se(t){return this.options.indentBy.repeat(t)}function ie(t){return!(!t.startsWith(this.options.attributeNamePrefix)||t===this.options.textNodeName)&&t.substr(this.attrPrefixLen)}ee.prototype.build=function(t){return this.options.preserveOrder?Zt(t,this.options):(Array.isArray(t)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(t={[this.options.arrayNodeName]:t}),this.j2x(t,0).val)},ee.prototype.j2x=function(t,e){let n="",s="";for(let i in t)if(Object.prototype.hasOwnProperty.call(t,i))if(typeof t[i]>"u")this.isAttribute(i)&&(s+="");else if(null===t[i])this.isAttribute(i)?s+="":"?"===i[0]?s+=this.indentate(e)+"<"+i+"?"+this.tagEndChar:s+=this.indentate(e)+"<"+i+"/"+this.tagEndChar;else if(t[i]instanceof Date)s+=this.buildTextValNode(t[i],i,"",e);else if("object"!=typeof t[i]){const r=this.isAttribute(i);if(r)n+=this.buildAttrPairStr(r,""+t[i]);else if(i===this.options.textNodeName){let e=this.options.tagValueProcessor(i,""+t[i]);s+=this.replaceEntitiesValue(e)}else s+=this.buildTextValNode(t[i],i,"",e)}else if(Array.isArray(t[i])){const n=t[i].length;let r="";for(let o=0;o<n;o++){const n=t[i][o];typeof n>"u"||(null===n?"?"===i[0]?s+=this.indentate(e)+"<"+i+"?"+this.tagEndChar:s+=this.indentate(e)+"<"+i+"/"+this.tagEndChar:"object"==typeof n?this.options.oneListGroup?r+=this.j2x(n,e+1).val:r+=this.processTextOrObjNode(n,i,e):r+=this.buildTextValNode(n,i,"",e))}this.options.oneListGroup&&(r=this.buildObjectNode(r,i,"",e)),s+=r}else if(this.options.attributesGroupName&&i===this.options.attributesGroupName){const e=Object.keys(t[i]),s=e.length;for(let r=0;r<s;r++)n+=this.buildAttrPairStr(e[r],""+t[i][e[r]])}else s+=this.processTextOrObjNode(t[i],i,e);return{attrStr:n,val:s}},ee.prototype.buildAttrPairStr=function(t,e){return e=this.options.attributeValueProcessor(t,""+e),e=this.replaceEntitiesValue(e),this.options.suppressBooleanAttributes&&"true"===e?" "+t:" "+t+'="'+e+'"'},ee.prototype.buildObjectNode=function(t,e,n,s){if(""===t)return"?"===e[0]?this.indentate(s)+"<"+e+n+"?"+this.tagEndChar:this.indentate(s)+"<"+e+n+this.closeTag(e)+this.tagEndChar;{let i="</"+e+this.tagEndChar,r="";return"?"===e[0]&&(r="?",i=""),!n&&""!==n||-1!==t.indexOf("<")?!1!==this.options.commentPropName&&e===this.options.commentPropName&&0===r.length?this.indentate(s)+`\x3c!--${t}--\x3e`+this.newLine:this.indentate(s)+"<"+e+n+r+this.tagEndChar+t+this.indentate(s)+i:this.indentate(s)+"<"+e+n+r+">"+t+i}},ee.prototype.closeTag=function(t){let e="";return-1!==this.options.unpairedTags.indexOf(t)?this.options.suppressUnpairedNode||(e="/"):e=this.options.suppressEmptyNode?"/":`></${t}`,e},ee.prototype.buildTextValNode=function(t,e,n,s){if(!1!==this.options.cdataPropName&&e===this.options.cdataPropName)return this.indentate(s)+`<![CDATA[${t}]]>`+this.newLine;if(!1!==this.options.commentPropName&&e===this.options.commentPropName)return this.indentate(s)+`\x3c!--${t}--\x3e`+this.newLine;if("?"===e[0])return this.indentate(s)+"<"+e+n+"?"+this.tagEndChar;{let i=this.options.tagValueProcessor(e,t);return i=this.replaceEntitiesValue(i),""===i?this.indentate(s)+"<"+e+n+this.closeTag(e)+this.tagEndChar:this.indentate(s)+"<"+e+n+">"+i+"</"+e+this.tagEndChar}},ee.prototype.replaceEntitiesValue=function(t){if(t&&t.length>0&&this.options.processEntities)for(let e=0;e<this.options.entities.length;e++){const n=this.options.entities[e];t=t.replace(n.regex,n.val)}return t};var re={XMLParser:class{constructor(t){this.externalEntities={},this.options=qt(t)}parse(t,e){if("string"!=typeof t){if(!t.toString)throw new Error("XML data is accepted in String or Bytes[] form.");t=t.toString()}if(e){!0===e&&(e={});const n=Gt.validate(t,e);if(!0!==n)throw Error(`${n.err.msg}:${n.err.line}:${n.err.col}`)}const n=new Ht(this.options);n.addExternalEntities(this.externalEntities);const s=n.parseXml(t);return this.options.preserveOrder||void 0===s?s:Wt(s,this.options)}addEntity(t,e){if(-1!==e.indexOf("&"))throw new Error("Entity value can't have '&'");if(-1!==t.indexOf("&")||-1!==t.indexOf(";"))throw new Error("An entity must be set without '&' and ';'. Eg. use '#xD' for '&#xD;'");if("&"===e)throw new Error("An entity with value '&' is not permitted");this.externalEntities[t]=e}},XMLValidator:q,XMLBuilder:ee};class oe{_view;constructor(t){ae(t),this._view=t}get id(){return this._view.id}get name(){return this._view.name}get caption(){return this._view.caption}get emptyTitle(){return this._view.emptyTitle}get emptyCaption(){return this._view.emptyCaption}get getContents(){return this._view.getContents}get icon(){return this._view.icon}set icon(t){this._view.icon=t}get order(){return this._view.order}set order(t){this._view.order=t}get params(){return this._view.params}set params(t){this._view.params=t}get columns(){return this._view.columns}get emptyView(){return this._view.emptyView}get parent(){return this._view.parent}get sticky(){return this._view.sticky}get expanded(){return this._view.expanded}set expanded(t){this._view.expanded=t}get defaultSortKey(){return this._view.defaultSortKey}}const ae=function(t){if(!t.id||"string"!=typeof t.id)throw new Error("View id is required and must be a string");if(!t.name||"string"!=typeof t.name)throw new Error("View name is required and must be a string");if(t.columns&&t.columns.length>0&&(!t.caption||"string"!=typeof t.caption))throw new Error("View caption is required for top-level views and must be a string");if(!t.getContents||"function"!=typeof t.getContents)throw new Error("View getContents is required and must be a function");if(!t.icon||"string"!=typeof t.icon||!function(t){if("string"!=typeof t)throw new TypeError(`Expected a \`string\`, got \`${typeof t}\``);if(0===(t=t.trim()).length||!0!==re.XMLValidator.validate(t))return!1;let e;const n=new re.XMLParser;try{e=n.parse(t)}catch{return!1}return!(!e||!("svg"in e))}(t.icon))throw new Error("View icon is required and must be a valid svg string");if(!("order"in t)||"number"!=typeof t.order)throw new Error("View order is required and must be a number");if(t.columns&&t.columns.forEach((t=>{if(!(t instanceof V))throw new Error("View columns must be an array of Column. Invalid column found")})),t.emptyView&&"function"!=typeof t.emptyView)throw new Error("View emptyView must be a function");if(t.parent&&"string"!=typeof t.parent)throw new Error("View parent must be a string");if("sticky"in t&&"boolean"!=typeof t.sticky)throw new Error("View sticky must be a boolean");if("expanded"in t&&"boolean"!=typeof t.expanded)throw new Error("View expanded must be a boolean");if(t.defaultSortKey&&"string"!=typeof t.defaultSortKey)throw new Error("View defaultSortKey must be a string");return!0},le=function(t){return(typeof window._nc_newfilemenu>"u"&&(window._nc_newfilemenu=new m,d.debug("NewFileMenu initialized")),window._nc_newfilemenu).getEntries(t).sort(((t,e)=>void 0!==t.order&&void 0!==e.order&&t.order!==e.order?t.order-e.order:t.displayName.localeCompare(e.displayName,void 0,{numeric:!0,sensitivity:"base"})))}},82606:(t,e,n)=>{"use strict";n.d(e,{U:()=>ut,a:()=>lt,c:()=>Q,g:()=>pt,h:()=>gt,l:()=>J,n:()=>nt,o:()=>ft,t:()=>ct});var s=n(85072),i=n.n(s),r=n(97825),o=n.n(r),a=n(77659),l=n.n(a),c=n(55056),d=n.n(c),u=n(10540),m=n.n(u),p=n(41113),f=n.n(p),g=n(61872),h={};h.styleTagTransform=f(),h.setAttributes=d(),h.insert=l().bind(null,"head"),h.domAPI=o(),h.insertStyleElement=m(),i()(g.A,h),g.A&&g.A.locals&&g.A.locals;var v=n(53110),A=n(71089),w=n(35810),y=n(88164),b=n(92457),C=n(26287);class x extends Error{constructor(t){super(t||"Promise was canceled"),this.name="CancelError"}get isCanceled(){return!0}}const _=Object.freeze({pending:Symbol("pending"),canceled:Symbol("canceled"),resolved:Symbol("resolved"),rejected:Symbol("rejected")});class T{static fn(t){return(...e)=>new T(((n,s,i)=>{e.push(i),t(...e).then(n,s)}))}#t=[];#e=!0;#n=_.pending;#s;#i;constructor(t){this.#s=new Promise(((e,n)=>{this.#i=n;const s=t=>{if(this.#n!==_.pending)throw new Error(`The \`onCancel\` handler was attached after the promise ${this.#n.description}.`);this.#t.push(t)};Object.defineProperties(s,{shouldReject:{get:()=>this.#e,set:t=>{this.#e=t}}}),t((t=>{this.#n===_.canceled&&s.shouldReject||(e(t),this.#r(_.resolved))}),(t=>{this.#n===_.canceled&&s.shouldReject||(n(t),this.#r(_.rejected))}),s)}))}then(t,e){return this.#s.then(t,e)}catch(t){return this.#s.catch(t)}finally(t){return this.#s.finally(t)}cancel(t){if(this.#n===_.pending){if(this.#r(_.canceled),this.#t.length>0)try{for(const t of this.#t)t()}catch(t){return void this.#i(t)}this.#e&&this.#i(new x(t))}}get isCanceled(){return this.#n===_.canceled}#r(t){this.#n===_.pending&&(this.#n=t)}}Object.setPrototypeOf(T.prototype,Promise.prototype);var k=n(9052);class E extends Error{constructor(t){super(t),this.name="TimeoutError"}}class S extends Error{constructor(t){super(),this.name="AbortError",this.message=t}}const L=t=>void 0===globalThis.DOMException?new S(t):new DOMException(t),N=t=>{const e=void 0===t.reason?L("This operation was aborted."):t.reason;return e instanceof Error?e:L(e)};class I{#o=[];enqueue(t,e){const n={priority:(e={priority:0,...e}).priority,run:t};if(this.size&&this.#o[this.size-1].priority>=e.priority)return void this.#o.push(n);const s=function(t,e,n){let s=0,i=t.length;for(;i>0;){const n=Math.trunc(i/2);let o=s+n;r=t[o],e.priority-r.priority<=0?(s=++o,i-=n+1):i=n}var r;return s}(this.#o,n);this.#o.splice(s,0,n)}dequeue(){const t=this.#o.shift();return t?.run}filter(t){return this.#o.filter((e=>e.priority===t.priority)).map((t=>t.run))}get size(){return this.#o.length}}class F extends k{#a;#l;#c=0;#d;#u;#m=0;#p;#f;#o;#g;#h=0;#v;#A;#w;timeout;constructor(t){if(super(),!("number"==typeof(t={carryoverConcurrencyCount:!1,intervalCap:Number.POSITIVE_INFINITY,interval:0,concurrency:Number.POSITIVE_INFINITY,autoStart:!0,queueClass:I,...t}).intervalCap&&t.intervalCap>=1))throw new TypeError(`Expected \`intervalCap\` to be a number from 1 and up, got \`${t.intervalCap?.toString()??""}\` (${typeof t.intervalCap})`);if(void 0===t.interval||!(Number.isFinite(t.interval)&&t.interval>=0))throw new TypeError(`Expected \`interval\` to be a finite number >= 0, got \`${t.interval?.toString()??""}\` (${typeof t.interval})`);this.#a=t.carryoverConcurrencyCount,this.#l=t.intervalCap===Number.POSITIVE_INFINITY||0===t.interval,this.#d=t.intervalCap,this.#u=t.interval,this.#o=new t.queueClass,this.#g=t.queueClass,this.concurrency=t.concurrency,this.timeout=t.timeout,this.#w=!0===t.throwOnTimeout,this.#A=!1===t.autoStart}get#y(){return this.#l||this.#c<this.#d}get#b(){return this.#h<this.#v}#C(){this.#h--,this.#x(),this.emit("next")}#_(){this.#T(),this.#k(),this.#f=void 0}get#E(){const t=Date.now();if(void 0===this.#p){const e=this.#m-t;if(!(e<0))return void 0===this.#f&&(this.#f=setTimeout((()=>{this.#_()}),e)),!0;this.#c=this.#a?this.#h:0}return!1}#x(){if(0===this.#o.size)return this.#p&&clearInterval(this.#p),this.#p=void 0,this.emit("empty"),0===this.#h&&this.emit("idle"),!1;if(!this.#A){const t=!this.#E;if(this.#y&&this.#b){const e=this.#o.dequeue();return!!e&&(this.emit("active"),e(),t&&this.#k(),!0)}}return!1}#k(){this.#l||void 0!==this.#p||(this.#p=setInterval((()=>{this.#T()}),this.#u),this.#m=Date.now()+this.#u)}#T(){0===this.#c&&0===this.#h&&this.#p&&(clearInterval(this.#p),this.#p=void 0),this.#c=this.#a?this.#h:0,this.#S()}#S(){for(;this.#x(););}get concurrency(){return this.#v}set concurrency(t){if(!("number"==typeof t&&t>=1))throw new TypeError(`Expected \`concurrency\` to be a number from 1 and up, got \`${t}\` (${typeof t})`);this.#v=t,this.#S()}async#L(t){return new Promise(((e,n)=>{t.addEventListener("abort",(()=>{n(t.reason)}),{once:!0})}))}async add(t,e={}){return e={timeout:this.timeout,throwOnTimeout:this.#w,...e},new Promise(((n,s)=>{this.#o.enqueue((async()=>{this.#h++,this.#c++;try{e.signal?.throwIfAborted();let s=t({signal:e.signal});e.timeout&&(s=function(t,e){const{milliseconds:n,fallback:s,message:i,customTimers:r={setTimeout,clearTimeout}}=e;let o;const a=new Promise(((a,l)=>{if("number"!=typeof n||1!==Math.sign(n))throw new TypeError(`Expected \`milliseconds\` to be a positive number, got \`${n}\``);if(e.signal){const{signal:t}=e;t.aborted&&l(N(t)),t.addEventListener("abort",(()=>{l(N(t))}))}if(n===Number.POSITIVE_INFINITY)return void t.then(a,l);const c=new E;o=r.setTimeout.call(void 0,(()=>{if(s)try{a(s())}catch(t){l(t)}else"function"==typeof t.cancel&&t.cancel(),!1===i?a():i instanceof Error?l(i):(c.message=i??`Promise timed out after ${n} milliseconds`,l(c))}),n),(async()=>{try{a(await t)}catch(t){l(t)}})()})).finally((()=>{a.clear()}));return a.clear=()=>{r.clearTimeout.call(void 0,o),o=void 0},a}(Promise.resolve(s),{milliseconds:e.timeout})),e.signal&&(s=Promise.race([s,this.#L(e.signal)]));const i=await s;n(i),this.emit("completed",i)}catch(t){if(t instanceof E&&!e.throwOnTimeout)return void n();s(t),this.emit("error",t)}finally{this.#C()}}),e),this.emit("add"),this.#x()}))}async addAll(t,e){return Promise.all(t.map((async t=>this.add(t,e))))}start(){return this.#A?(this.#A=!1,this.#S(),this):this}pause(){this.#A=!0}clear(){this.#o=new this.#g}async onEmpty(){0!==this.#o.size&&await this.#N("empty")}async onSizeLessThan(t){this.#o.size<t||await this.#N("next",(()=>this.#o.size<t))}async onIdle(){0===this.#h&&0===this.#o.size||await this.#N("idle")}async#N(t,e){return new Promise((n=>{const s=()=>{e&&!e()||(this.off(t,s),n())};this.on(t,s)}))}get size(){return this.#o.size}sizeBy(t){return this.#o.filter(t).length}get pending(){return this.#h}get isPaused(){return this.#A}}var P=n(98959);const B=(t,e,n)=>t.bind(n);var O=n(53529),D=n(85168),U=n(75270),j=n(85471),z=n(63420),M=n(24764),R=n(9518),V=n(6695),$=n(95101),q=n(11195);const H=function(t){if(!Number.isInteger(1)&&1!==Number.POSITIVE_INFINITY)throw new TypeError("Expected `concurrency` to be a number from 1 and up");const e=new P.A;let n=0;const s=async(t,s,i)=>{n++;const r=(async()=>t(...i))();s(r);try{await r}catch{}n--,e.size>0&&e.dequeue()()},i=(t,...i)=>new Promise((r=>{((t,i,r)=>{e.enqueue(B(s.bind(void 0,t,i,r))),(async()=>{await Promise.resolve(),n<1&&e.size>0&&e.dequeue()()})()})(t,r,i)}));return Object.defineProperties(i,{activeCount:{get:()=>n},pendingCount:{get:()=>e.size},clearQueue:{value(){e.clear()}}}),i}(),W=new FileReader,G=async function(t,e,n,s=(()=>{}),i=void 0,r={}){let o;return o=e instanceof Blob?e:await e(),i&&(r.Destination=i),r["Content-Type"]||(r["Content-Type"]="application/octet-stream"),await C.A.request({method:"PUT",url:t,data:o,signal:n,onUploadProgress:s,headers:r})},Y=function(t,e,n){return 0===e&&t.size<=n?Promise.resolve(new Blob([t],{type:t.type||"application/octet-stream"})):H((()=>new Promise(((s,i)=>{W.onload=()=>{null!==W.result&&s(new Blob([W.result],{type:"application/octet-stream"})),i(new Error("Error while reading the file"))},W.readAsArrayBuffer(t.slice(e,e+n))}))))},K=function(t=void 0){const e=window.OC?.appConfig?.files?.max_chunk_size;if(e<=0)return 0;if(!Number(e))return 10485760;const n=Math.max(Number(e),5242880);return void 0===t?n:Math.max(n,Math.ceil(t/1e4))};var Q=(t=>(t[t.INITIALIZED=0]="INITIALIZED",t[t.UPLOADING=1]="UPLOADING",t[t.ASSEMBLING=2]="ASSEMBLING",t[t.FINISHED=3]="FINISHED",t[t.CANCELLED=4]="CANCELLED",t[t.FAILED=5]="FAILED",t))(Q||{});let X=class{_source;_file;_isChunked;_chunks;_size;_uploaded=0;_startTime=0;_status=0;_controller;_response=null;constructor(t,e=!1,n,s){const i=Math.min(K()>0?Math.ceil(n/K()):1,1e4);this._source=t,this._isChunked=e&&K()>0&&i>1,this._chunks=this._isChunked?i:1,this._size=n,this._file=s,this._controller=new AbortController}get source(){return this._source}get file(){return this._file}get isChunked(){return this._isChunked}get chunks(){return this._chunks}get size(){return this._size}get startTime(){return this._startTime}set response(t){this._response=t}get response(){return this._response}get uploaded(){return this._uploaded}set uploaded(t){if(t>=this._size)return this._status=this._isChunked?2:3,void(this._uploaded=this._size);this._status=1,this._uploaded=t,0===this._startTime&&(this._startTime=(new Date).getTime())}get status(){return this._status}set status(t){this._status=t}get signal(){return this._controller.signal}cancel(){this._controller.abort(),this._status=4}};const J=null===(Z=(0,b.HW)())?(0,O.YK)().setApp("uploader").build():(0,O.YK)().setApp("uploader").setUid(Z.uid).build();var Z,tt=(t=>(t[t.IDLE=0]="IDLE",t[t.UPLOADING=1]="UPLOADING",t[t.PAUSED=2]="PAUSED",t))(tt||{});class et{_destinationFolder;_isPublic;_uploadQueue=[];_jobQueue=new F({concurrency:3});_queueSize=0;_queueProgress=0;_queueStatus=0;_notifiers=[];constructor(t=!1,e){if(this._isPublic=t,!e){const t=(0,b.HW)()?.uid,n=(0,y.dC)(`dav/files/${t}`);if(!t)throw new Error("User is not logged in");e=new w.vd({id:0,owner:t,permissions:w.aX.ALL,root:`/files/${t}`,source:n})}this.destination=e,J.debug("Upload workspace initialized",{destination:this.destination,root:this.root,isPublic:t,maxChunksSize:K()})}get destination(){return this._destinationFolder}set destination(t){if(!t)throw new Error("Invalid destination folder");J.debug("Destination set",{folder:t}),this._destinationFolder=t}get root(){return this._destinationFolder.source}get queue(){return this._uploadQueue}reset(){this._uploadQueue.splice(0,this._uploadQueue.length),this._jobQueue.clear(),this._queueSize=0,this._queueProgress=0,this._queueStatus=0}pause(){this._jobQueue.pause(),this._queueStatus=2}start(){this._jobQueue.start(),this._queueStatus=1,this.updateStats()}get info(){return{size:this._queueSize,progress:this._queueProgress,status:this._queueStatus}}updateStats(){const t=this._uploadQueue.map((t=>t.size)).reduce(((t,e)=>t+e),0),e=this._uploadQueue.map((t=>t.uploaded)).reduce(((t,e)=>t+e),0);this._queueSize=t,this._queueProgress=e,2!==this._queueStatus&&(this._queueStatus=this._jobQueue.size>0?1:0)}addNotifier(t){this._notifiers.push(t)}upload(t,e,n){const s=`${n||this.root}/${t.replace(/^\//,"")}`,{origin:i}=new URL(s),r=i+(0,A.O0)(s.slice(i.length));J.debug(`Uploading ${e.name} to ${r}`);const o=K(e.size),a=0===o||e.size<o||this._isPublic,l=new X(s,!a,e.size,e);return this._uploadQueue.push(l),this.updateStats(),new T((async(t,n,s)=>{if(s(l.cancel),a){J.debug("Initializing regular upload",{file:e,upload:l});const s=await Y(e,0,l.size),i=async()=>{try{l.response=await G(r,s,l.signal,(t=>{l.uploaded=l.uploaded+t.bytes,this.updateStats()}),void 0,{"X-OC-Mtime":e.lastModified/1e3,"Content-Type":e.type}),l.uploaded=l.size,this.updateStats(),J.debug(`Successfully uploaded ${e.name}`,{file:e,upload:l}),t(l)}catch(t){if(t instanceof v.k3)return l.status=Q.FAILED,void n("Upload has been cancelled");t?.response&&(l.response=t.response),l.status=Q.FAILED,J.error(`Failed uploading ${e.name}`,{error:t,file:e,upload:l}),n("Failed uploading the file")}this._notifiers.forEach((t=>{try{t(l)}catch{}}))};this._jobQueue.add(i),this.updateStats()}else{J.debug("Initializing chunked upload",{file:e,upload:l});const s=await async function(t){const e=`${(0,y.dC)(`dav/uploads/${(0,b.HW)()?.uid}`)}/web-file-upload-${[...Array(16)].map((()=>Math.floor(16*Math.random()).toString(16))).join("")}`,n=t?{Destination:t}:void 0;return await C.A.request({method:"MKCOL",url:e,headers:n}),e}(r),i=[];for(let t=0;t<l.chunks;t++){const n=t*o,a=Math.min(n+o,l.size),c=()=>Y(e,n,o),d=()=>G(`${s}/${t+1}`,c,l.signal,(()=>this.updateStats()),r,{"X-OC-Mtime":e.lastModified/1e3,"OC-Total-Length":e.size,"Content-Type":"application/octet-stream"}).then((()=>{l.uploaded=l.uploaded+o})).catch((e=>{throw 507===e?.response?.status?(J.error("Upload failed, not enough space on the server or quota exceeded. Cancelling the remaining chunks",{error:e,upload:l}),l.cancel(),l.status=Q.FAILED,e):(e instanceof v.k3||(J.error(`Chunk ${t+1} ${n} - ${a} uploading failed`,{error:e,upload:l}),l.cancel(),l.status=Q.FAILED),e)}));i.push(this._jobQueue.add(d))}try{await Promise.all(i),this.updateStats(),l.response=await C.A.request({method:"MOVE",url:`${s}/.file`,headers:{"X-OC-Mtime":e.lastModified/1e3,"OC-Total-Length":e.size,Destination:r}}),this.updateStats(),l.status=Q.FINISHED,J.debug(`Successfully uploaded ${e.name}`,{file:e,upload:l}),t(l)}catch(t){t instanceof v.k3?(l.status=Q.FAILED,n("Upload has been cancelled")):(l.status=Q.FAILED,n("Failed assembling the chunks together")),C.A.request({method:"DELETE",url:`${s}`})}this._notifiers.forEach((t=>{try{t(l)}catch{}}))}return this._jobQueue.onIdle().then((()=>this.reset())),l}))}}function nt(t,e,n,s,i,r,o,a){var l,c="function"==typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=n,c._compiled=!0),s&&(c.functional=!0),r&&(c._scopeId="data-v-"+r),o?(l=function(t){!(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)&&typeof __VUE_SSR_CONTEXT__<"u"&&(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(o)},c._ssrRegister=l):i&&(l=a?function(){i.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:i),l)if(c.functional){c._injectStyles=l;var d=c.render;c.render=function(t,e){return l.call(e),d(t,e)}}else{var u=c.beforeCreate;c.beforeCreate=u?[].concat(u,l):[l]}return{exports:t,options:c}}const st=nt({name:"CancelIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon cancel-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M12 2C17.5 2 22 6.5 22 12S17.5 22 12 22 2 17.5 2 12 6.5 2 12 2M12 4C10.1 4 8.4 4.6 7.1 5.7L18.3 16.9C19.3 15.5 20 13.8 20 12C20 7.6 16.4 4 12 4M16.9 18.3L5.7 7.1C4.6 8.4 4 10.1 4 12C4 16.4 7.6 20 12 20C13.9 20 15.6 19.4 16.9 18.3Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null,null).exports,it=nt({name:"PlusIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon plus-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19,13H13V19H11V13H5V11H11V5H13V11H19V13Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null,null).exports,rt=nt({name:"UploadIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon upload-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M9,16V10H5L12,3L19,10H15V16H9M5,20V18H19V20H5Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null,null).exports,ot=(0,q.$)().detectLocale();[{locale:"af",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Afrikaans (https://www.transifex.com/nextcloud/teams/64236/af/)","Content-Type":"text/plain; charset=UTF-8",Language:"af","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Afrikaans (https://www.transifex.com/nextcloud/teams/64236/af/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: af\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ar",json:{charset:"utf-8",headers:{"Last-Translator":"Ali <alimahwer@yahoo.com>, 2024","Language-Team":"Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)","Content-Type":"text/plain; charset=UTF-8",Language:"ar","Plural-Forms":"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nAli <alimahwer@yahoo.com>, 2024\n"},msgstr:["Last-Translator: Ali <alimahwer@yahoo.com>, 2024\nLanguage-Team: Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ar\nPlural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} ملف متعارض","{count} ملف متعارض","{count} ملفان متعارضان","{count} ملف متعارض","{count} ملفات متعارضة","{count} ملفات متعارضة"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} ملف متعارض في n {dirname}","{count} ملف متعارض في n {dirname}","{count} ملفان متعارضان في n {dirname}","{count} ملف متعارض في n {dirname}","{count} ملفات متعارضة في n {dirname}","{count} ملفات متعارضة في n {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} ثانية متبقية"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} متبقية"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["باقٍ بضعُ ثوانٍ"]},Cancel:{msgid:"Cancel",msgstr:["إلغاء"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["إلغِ العملية بالكامل"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["إلغاء عمليات رفع الملفات"]},Continue:{msgid:"Continue",msgstr:["إستمر"]},"estimating time left":{msgid:"estimating time left",msgstr:["تقدير الوقت المتبقي"]},"Existing version":{msgid:"Existing version",msgstr:["الإصدار الحالي"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["إذا اخترت الإبقاء على النسختين معاً، فإن الملف المنسوخ سيتم إلحاق رقم تسلسلي في نهاية اسمه."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["تاريخ آخر تعديل غير معلوم"]},New:{msgid:"New",msgstr:["جديد"]},"New version":{msgid:"New version",msgstr:["نسخة جديدة"]},paused:{msgid:"paused",msgstr:["مُجمَّد"]},"Preview image":{msgid:"Preview image",msgstr:["معاينة الصورة"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["حدِّد كل صناديق الخيارات"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["حدِّد كل الملفات الموجودة"]},"Select all new files":{msgid:"Select all new files",msgstr:["حدِّد كل الملفات الجديدة"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["تخطَّ {count} ملف","تخطَّ {count} ملف","تخطَّ {count} ملف","تخطَّ {count} ملف","تخطَّ {count} ملف","تخطَّ {count} ملف"]},"Unknown size":{msgid:"Unknown size",msgstr:["حجم غير معلوم"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["تمَّ إلغاء الرفع"]},"Upload files":{msgid:"Upload files",msgstr:["رفع ملفات"]},"Upload progress":{msgid:"Upload progress",msgstr:["تقدُّم الرفع "]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["عند تحديد مجلد وارد، أي ملفات متعارضة بداخله ستتم الكتابة فوقها."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["أيُّ الملفات ترغب في الإبقاء عليها؟"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["يجب أن تختار نسخة واحدة على الأقل من كل ملف للاستمرار."]}}}}},{locale:"ar_SA",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Arabic (Saudi Arabia) (https://www.transifex.com/nextcloud/teams/64236/ar_SA/)","Content-Type":"text/plain; charset=UTF-8",Language:"ar_SA","Plural-Forms":"nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Arabic (Saudi Arabia) (https://www.transifex.com/nextcloud/teams/64236/ar_SA/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ar_SA\nPlural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ast",json:{charset:"utf-8",headers:{"Last-Translator":"enolp <enolp@softastur.org>, 2023","Language-Team":"Asturian (https://app.transifex.com/nextcloud/teams/64236/ast/)","Content-Type":"text/plain; charset=UTF-8",Language:"ast","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nenolp <enolp@softastur.org>, 2023\n"},msgstr:["Last-Translator: enolp <enolp@softastur.org>, 2023\nLanguage-Team: Asturian (https://app.transifex.com/nextcloud/teams/64236/ast/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ast\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} ficheru en coflictu","{count} ficheros en coflictu"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} ficheru en coflictu en {dirname}","{count} ficheros en coflictu en {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["Queden {seconds} segundos"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["Tiempu que queda: {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["queden unos segundos"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Encaboxar les xubes"]},Continue:{msgid:"Continue",msgstr:["Siguir"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimando'l tiempu que falta"]},"Existing version":{msgid:"Existing version",msgstr:["Versión esistente"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Si seleiciones dambes versiones, el ficheru copiáu va tener un númberu amestáu al so nome."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["La data de la última modificación ye desconocida"]},New:{msgid:"New",msgstr:["Nuevu"]},"New version":{msgid:"New version",msgstr:["Versión nueva"]},paused:{msgid:"paused",msgstr:["en posa"]},"Preview image":{msgid:"Preview image",msgstr:["Previsualizar la imaxe"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Marcar toles caxelles"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Seleicionar tolos ficheros esistentes"]},"Select all new files":{msgid:"Select all new files",msgstr:["Seleicionar tolos ficheros nuevos"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Saltar esti ficheru","Saltar {count} ficheros"]},"Unknown size":{msgid:"Unknown size",msgstr:["Tamañu desconocíu"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Encaboxóse la xuba"]},"Upload files":{msgid:"Upload files",msgstr:["Xubir ficheros"]},"Upload progress":{msgid:"Upload progress",msgstr:["Xuba en cursu"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["¿Qué ficheros quies caltener?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Tienes de seleicionar polo menos una versión de cada ficheru pa siguir."]}}}}},{locale:"az",json:{charset:"utf-8",headers:{"Last-Translator":"Rashad Aliyev <microphprashad@gmail.com>, 2023","Language-Team":"Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)","Content-Type":"text/plain; charset=UTF-8",Language:"az","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nRashad Aliyev <microphprashad@gmail.com>, 2023\n"},msgstr:["Last-Translator: Rashad Aliyev <microphprashad@gmail.com>, 2023\nLanguage-Team: Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: az\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} saniyə qalıb"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} qalıb"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["bir neçə saniyə qalıb"]},Add:{msgid:"Add",msgstr:["Əlavə et"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Yükləməni imtina et"]},"estimating time left":{msgid:"estimating time left",msgstr:["Təxmini qalan vaxt"]},paused:{msgid:"paused",msgstr:["pauzadadır"]},"Upload files":{msgid:"Upload files",msgstr:["Faylları yüklə"]}}}}},{locale:"be",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Belarusian (https://www.transifex.com/nextcloud/teams/64236/be/)","Content-Type":"text/plain; charset=UTF-8",Language:"be","Plural-Forms":"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Belarusian (https://www.transifex.com/nextcloud/teams/64236/be/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: be\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"bg_BG",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Bulgarian (Bulgaria) (https://www.transifex.com/nextcloud/teams/64236/bg_BG/)","Content-Type":"text/plain; charset=UTF-8",Language:"bg_BG","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bulgarian (Bulgaria) (https://www.transifex.com/nextcloud/teams/64236/bg_BG/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bg_BG\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"bn_BD",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Bengali (Bangladesh) (https://www.transifex.com/nextcloud/teams/64236/bn_BD/)","Content-Type":"text/plain; charset=UTF-8",Language:"bn_BD","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bengali (Bangladesh) (https://www.transifex.com/nextcloud/teams/64236/bn_BD/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bn_BD\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"br",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Breton (https://www.transifex.com/nextcloud/teams/64236/br/)","Content-Type":"text/plain; charset=UTF-8",Language:"br","Plural-Forms":"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Breton (https://www.transifex.com/nextcloud/teams/64236/br/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: br\nPlural-Forms: nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"bs",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Bosnian (https://www.transifex.com/nextcloud/teams/64236/bs/)","Content-Type":"text/plain; charset=UTF-8",Language:"bs","Plural-Forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bosnian (https://www.transifex.com/nextcloud/teams/64236/bs/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bs\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ca",json:{charset:"utf-8",headers:{"Last-Translator":"Toni Hermoso Pulido <toniher@softcatala.cat>, 2022","Language-Team":"Catalan (https://www.transifex.com/nextcloud/teams/64236/ca/)","Content-Type":"text/plain; charset=UTF-8",Language:"ca","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nMarc Riera <marcriera@softcatala.org>, 2022\nToni Hermoso Pulido <toniher@softcatala.cat>, 2022\n"},msgstr:["Last-Translator: Toni Hermoso Pulido <toniher@softcatala.cat>, 2022\nLanguage-Team: Catalan (https://www.transifex.com/nextcloud/teams/64236/ca/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ca\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["Queden {seconds} segons"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["Queden {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["Queden uns segons"]},Add:{msgid:"Add",msgstr:["Afegeix"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancel·la les pujades"]},"estimating time left":{msgid:"estimating time left",msgstr:["S'està estimant el temps restant"]},paused:{msgid:"paused",msgstr:["En pausa"]},"Upload files":{msgid:"Upload files",msgstr:["Puja els fitxers"]}}}}},{locale:"cs",json:{charset:"utf-8",headers:{"Last-Translator":"Pavel Borecki <pavel.borecki@gmail.com>, 2022","Language-Team":"Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)","Content-Type":"text/plain; charset=UTF-8",Language:"cs","Plural-Forms":"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nPavel Borecki <pavel.borecki@gmail.com>, 2022\n"},msgstr:["Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2022\nLanguage-Team: Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cs\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["zbývá {seconds}"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["zbývá {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["zbývá několik sekund"]},Add:{msgid:"Add",msgstr:["Přidat"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Zrušit nahrávání"]},"estimating time left":{msgid:"estimating time left",msgstr:["odhadovaný zbývající čas"]},paused:{msgid:"paused",msgstr:["pozastaveno"]}}}}},{locale:"cs_CZ",json:{charset:"utf-8",headers:{"Last-Translator":"Michal Šmahel <ceskyDJ@seznam.cz>, 2024","Language-Team":"Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)","Content-Type":"text/plain; charset=UTF-8",Language:"cs_CZ","Plural-Forms":"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nMichal Šmahel <ceskyDJ@seznam.cz>, 2024\n"},msgstr:["Last-Translator: Michal Šmahel <ceskyDJ@seznam.cz>, 2024\nLanguage-Team: Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cs_CZ\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} kolize souborů","{count} kolize souborů","{count} kolizí souborů","{count} kolize souborů"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} kolize souboru v {dirname}","{count} kolize souboru v {dirname}","{count} kolizí souborů v {dirname}","{count} kolize souboru v {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["zbývá {seconds}"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["zbývá {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["zbývá několik sekund"]},Cancel:{msgid:"Cancel",msgstr:["Zrušit"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Zrušit celou operaci"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Zrušit nahrávání"]},Continue:{msgid:"Continue",msgstr:["Pokračovat"]},"estimating time left":{msgid:"estimating time left",msgstr:["odhaduje se zbývající čas"]},"Existing version":{msgid:"Existing version",msgstr:["Existující verze"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Pokud vyberete obě verze, zkopírovaný soubor bude mít k názvu přidáno číslo."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Neznámé datum poslední úpravy"]},New:{msgid:"New",msgstr:["Nové"]},"New version":{msgid:"New version",msgstr:["Nová verze"]},paused:{msgid:"paused",msgstr:["pozastaveno"]},"Preview image":{msgid:"Preview image",msgstr:["Náhled obrázku"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Označit všechny zaškrtávací kolonky"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Vybrat veškeré stávající soubory"]},"Select all new files":{msgid:"Select all new files",msgstr:["Vybrat veškeré nové soubory"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Přeskočit tento soubor","Přeskočit {count} soubory","Přeskočit {count} souborů","Přeskočit {count} soubory"]},"Unknown size":{msgid:"Unknown size",msgstr:["Neznámá velikost"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Nahrávání zrušeno"]},"Upload files":{msgid:"Upload files",msgstr:["Nahrát soubory"]},"Upload progress":{msgid:"Upload progress",msgstr:["Postup v nahrávání"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Po výběru příchozí složky budou rovněž přepsány všechny v ní obsažené konfliktní soubory"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Které soubory si přejete ponechat?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Aby bylo možné pokračovat, je třeba vybrat alespoň jednu verzi od každého souboru."]}}}}},{locale:"cy_GB",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Welsh (United Kingdom) (https://www.transifex.com/nextcloud/teams/64236/cy_GB/)","Content-Type":"text/plain; charset=UTF-8",Language:"cy_GB","Plural-Forms":"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Welsh (United Kingdom) (https://www.transifex.com/nextcloud/teams/64236/cy_GB/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cy_GB\nPlural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"da",json:{charset:"utf-8",headers:{"Last-Translator":"Martin Bonde <Martin@maboni.dk>, 2024","Language-Team":"Danish (https://app.transifex.com/nextcloud/teams/64236/da/)","Content-Type":"text/plain; charset=UTF-8",Language:"da","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nMartin Bonde <Martin@maboni.dk>, 2024\n"},msgstr:["Last-Translator: Martin Bonde <Martin@maboni.dk>, 2024\nLanguage-Team: Danish (https://app.transifex.com/nextcloud/teams/64236/da/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: da\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} fil konflikt","{count} filer i konflikt"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} fil konflikt i {dirname}","{count} filer i konflikt i {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{sekunder} sekunder tilbage"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{tid} tilbage"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["et par sekunder tilbage"]},Cancel:{msgid:"Cancel",msgstr:["Annuller"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Annuller hele handlingen"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Annuller uploads"]},Continue:{msgid:"Continue",msgstr:["Fortsæt"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimering af resterende tid"]},"Existing version":{msgid:"Existing version",msgstr:["Eksisterende version"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Hvis du vælger begge versioner vil den kopierede fil få et nummer tilføjet til sit navn."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Sidste modifikationsdato ukendt"]},New:{msgid:"New",msgstr:["Ny"]},"New version":{msgid:"New version",msgstr:["Ny version"]},paused:{msgid:"paused",msgstr:["pauset"]},"Preview image":{msgid:"Preview image",msgstr:["Forhåndsvisning af billede"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Vælg alle felter"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Vælg alle eksisterende filer"]},"Select all new files":{msgid:"Select all new files",msgstr:["Vælg alle nye filer"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Spring denne fil over","Spring {count} filer over"]},"Unknown size":{msgid:"Unknown size",msgstr:["Ukendt størrelse"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Upload annulleret"]},"Upload files":{msgid:"Upload files",msgstr:["Upload filer"]},"Upload progress":{msgid:"Upload progress",msgstr:["Upload fremskridt"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Når en indgående mappe er valgt, vil alle modstridende filer i den også blive overskrevet."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Hvilke filer ønsker du at beholde?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Du skal vælge mindst én version af hver fil for at fortsætte."]}}}}},{locale:"de",json:{charset:"utf-8",headers:{"Last-Translator":"Mario Siegmann <mario_siegmann@web.de>, 2024","Language-Team":"German (https://app.transifex.com/nextcloud/teams/64236/de/)","Content-Type":"text/plain; charset=UTF-8",Language:"de","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nMario Siegmann <mario_siegmann@web.de>, 2024\n"},msgstr:["Last-Translator: Mario Siegmann <mario_siegmann@web.de>, 2024\nLanguage-Team: German (https://app.transifex.com/nextcloud/teams/64236/de/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: de\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} Datei-Konflikt","{count} Datei-Konflikte"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} Datei-Konflikt in {dirname}","{count} Datei-Konflikte in {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} Sekunden verbleibend"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} verbleibend"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["noch ein paar Sekunden"]},Cancel:{msgid:"Cancel",msgstr:["Abbrechen"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Den gesamten Vorgang abbrechen"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Hochladen abbrechen"]},Continue:{msgid:"Continue",msgstr:["Fortsetzen"]},"estimating time left":{msgid:"estimating time left",msgstr:["Geschätzte verbleibende Zeit"]},"Existing version":{msgid:"Existing version",msgstr:["Vorhandene Version"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Wenn du beide Versionen auswählst, wird der kopierten Datei eine Nummer zum Namen hinzugefügt."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Datum der letzten Änderung unbekannt"]},New:{msgid:"New",msgstr:["Neu"]},"New version":{msgid:"New version",msgstr:["Neue Version"]},paused:{msgid:"paused",msgstr:["Pausiert"]},"Preview image":{msgid:"Preview image",msgstr:["Vorschaubild"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Alle Kontrollkästchen aktivieren"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Alle vorhandenen Dateien auswählen"]},"Select all new files":{msgid:"Select all new files",msgstr:["Alle neuen Dateien auswählen"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Diese Datei überspringen","{count} Dateien überspringen"]},"Unknown size":{msgid:"Unknown size",msgstr:["Unbekannte Größe"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Hochladen abgebrochen"]},"Upload files":{msgid:"Upload files",msgstr:["Dateien hochladen"]},"Upload progress":{msgid:"Upload progress",msgstr:["Fortschritt beim Hochladen"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Wenn ein eingehender Ordner ausgewählt wird, werden alle darin enthaltenen Konfliktdateien ebenfalls überschrieben."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Welche Dateien möchtest du behalten?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Du musst mindestens eine Version jeder Datei auswählen, um fortzufahren."]}}}}},{locale:"de_DE",json:{charset:"utf-8",headers:{"Last-Translator":"Mario Siegmann <mario_siegmann@web.de>, 2024","Language-Team":"German (Germany) (https://app.transifex.com/nextcloud/teams/64236/de_DE/)","Content-Type":"text/plain; charset=UTF-8",Language:"de_DE","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nMario Siegmann <mario_siegmann@web.de>, 2024\n"},msgstr:["Last-Translator: Mario Siegmann <mario_siegmann@web.de>, 2024\nLanguage-Team: German (Germany) (https://app.transifex.com/nextcloud/teams/64236/de_DE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: de_DE\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} Datei-Konflikt","{count} Datei-Konflikte"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} Datei-Konflikt in {dirname}","{count} Datei-Konflikte in {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} Sekunden verbleiben"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} verbleibend"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["ein paar Sekunden verbleiben"]},Cancel:{msgid:"Cancel",msgstr:["Abbrechen"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Den gesamten Vorgang abbrechen"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Hochladen abbrechen"]},Continue:{msgid:"Continue",msgstr:["Fortsetzen"]},"estimating time left":{msgid:"estimating time left",msgstr:["Geschätzte verbleibende Zeit"]},"Existing version":{msgid:"Existing version",msgstr:["Vorhandene Version"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Wenn Sie beide Versionen auswählen, wird der kopierten Datei eine Nummer zum Namen hinzugefügt."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Datum der letzten Änderung unbekannt"]},New:{msgid:"New",msgstr:["Neu"]},"New version":{msgid:"New version",msgstr:["Neue Version"]},paused:{msgid:"paused",msgstr:["Pausiert"]},"Preview image":{msgid:"Preview image",msgstr:["Vorschaubild"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Alle Kontrollkästchen aktivieren"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Alle vorhandenen Dateien auswählen"]},"Select all new files":{msgid:"Select all new files",msgstr:["Alle neuen Dateien auswählen"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["{count} Datei überspringen","{count} Dateien überspringen"]},"Unknown size":{msgid:"Unknown size",msgstr:["Unbekannte Größe"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Hochladen abgebrochen"]},"Upload files":{msgid:"Upload files",msgstr:["Dateien hochladen"]},"Upload progress":{msgid:"Upload progress",msgstr:["Fortschritt beim Hochladen"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Wenn ein eingehender Ordner ausgewählt wird, werden alle darin enthaltenen Konfliktdateien ebenfalls überschrieben."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Welche Dateien möchten Sie behalten?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Sie müssen mindestens eine Version jeder Datei auswählen, um fortzufahren."]}}}}},{locale:"el",json:{charset:"utf-8",headers:{"Last-Translator":"Nik Pap, 2022","Language-Team":"Greek (https://www.transifex.com/nextcloud/teams/64236/el/)","Content-Type":"text/plain; charset=UTF-8",Language:"el","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nNik Pap, 2022\n"},msgstr:["Last-Translator: Nik Pap, 2022\nLanguage-Team: Greek (https://www.transifex.com/nextcloud/teams/64236/el/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: el\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["απομένουν {seconds} δευτερόλεπτα"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["απομένουν {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["απομένουν λίγα δευτερόλεπτα"]},Add:{msgid:"Add",msgstr:["Προσθήκη"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Ακύρωση μεταφορτώσεων"]},"estimating time left":{msgid:"estimating time left",msgstr:["εκτίμηση του χρόνου που απομένει"]},paused:{msgid:"paused",msgstr:["σε παύση"]},"Upload files":{msgid:"Upload files",msgstr:["Μεταφόρτωση αρχείων"]}}}}},{locale:"el_GR",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Greek (Greece) (https://www.transifex.com/nextcloud/teams/64236/el_GR/)","Content-Type":"text/plain; charset=UTF-8",Language:"el_GR","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Greek (Greece) (https://www.transifex.com/nextcloud/teams/64236/el_GR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: el_GR\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"en_GB",json:{charset:"utf-8",headers:{"Last-Translator":"Andi Chandler <andi@gowling.com>, 2023","Language-Team":"English (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/en_GB/)","Content-Type":"text/plain; charset=UTF-8",Language:"en_GB","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nAndi Chandler <andi@gowling.com>, 2023\n"},msgstr:["Last-Translator: Andi Chandler <andi@gowling.com>, 2023\nLanguage-Team: English (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/en_GB/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: en_GB\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} file conflict","{count} files conflict"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} file conflict in {dirname}","{count} file conflicts in {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} seconds left"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} left"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["a few seconds left"]},Add:{msgid:"Add",msgstr:["Add"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancel uploads"]},Continue:{msgid:"Continue",msgstr:["Continue"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimating time left"]},"Existing version":{msgid:"Existing version",msgstr:["Existing version"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["If you select both versions, the copied file will have a number added to its name."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Last modified date unknown"]},"New version":{msgid:"New version",msgstr:["New version"]},paused:{msgid:"paused",msgstr:["paused"]},"Preview image":{msgid:"Preview image",msgstr:["Preview image"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Select all checkboxes"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Select all existing files"]},"Select all new files":{msgid:"Select all new files",msgstr:["Select all new files"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Skip this file","Skip {count} files"]},"Unknown size":{msgid:"Unknown size",msgstr:["Unknown size"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Upload cancelled"]},"Upload files":{msgid:"Upload files",msgstr:["Upload files"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Which files do you want to keep?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["You need to select at least one version of each file to continue."]}}}}},{locale:"eo",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Esperanto (https://www.transifex.com/nextcloud/teams/64236/eo/)","Content-Type":"text/plain; charset=UTF-8",Language:"eo","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Esperanto (https://www.transifex.com/nextcloud/teams/64236/eo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: eo\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es",json:{charset:"utf-8",headers:{"Last-Translator":"Julio C. Ortega, 2024","Language-Team":"Spanish (https://app.transifex.com/nextcloud/teams/64236/es/)","Content-Type":"text/plain; charset=UTF-8",Language:"es","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nFranciscoFJ <dev-ooo@satel-sa.com>, 2023\nNext Cloud <nextcloud.translator.es@cgj.es>, 2023\nJulio C. Ortega, 2024\n"},msgstr:["Last-Translator: Julio C. Ortega, 2024\nLanguage-Team: Spanish (https://app.transifex.com/nextcloud/teams/64236/es/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} archivo en conflicto","{count} archivos en conflicto","{count} archivos en conflicto"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} archivo en conflicto en {dirname}","{count} archivos en conflicto en {dirname}","{count} archivos en conflicto en {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} segundos restantes"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} restante"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["quedan unos segundos"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancelar subidas"]},Continue:{msgid:"Continue",msgstr:["Continuar"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimando tiempo restante"]},"Existing version":{msgid:"Existing version",msgstr:["Versión existente"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Si selecciona ambas versiones, al archivo copiado se le añadirá un número en el nombre."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Última fecha de modificación desconocida"]},New:{msgid:"New",msgstr:["Nuevo"]},"New version":{msgid:"New version",msgstr:["Nueva versión"]},paused:{msgid:"paused",msgstr:["pausado"]},"Preview image":{msgid:"Preview image",msgstr:["Previsualizar imagen"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Seleccionar todas las casillas de verificación"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Seleccionar todos los archivos existentes"]},"Select all new files":{msgid:"Select all new files",msgstr:["Seleccionar todos los archivos nuevos"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Saltar este archivo","Saltar {count} archivos","Saltar {count} archivos"]},"Unknown size":{msgid:"Unknown size",msgstr:["Tamaño desconocido"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Subida cancelada"]},"Upload files":{msgid:"Upload files",msgstr:["Subir archivos"]},"Upload progress":{msgid:"Upload progress",msgstr:["Progreso de la subida"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["¿Qué archivos desea conservar?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Debe seleccionar al menos una versión de cada archivo para continuar."]}}}}},{locale:"es_419",json:{charset:"utf-8",headers:{"Last-Translator":"ALEJANDRO CASTRO, 2022","Language-Team":"Spanish (Latin America) (https://www.transifex.com/nextcloud/teams/64236/es_419/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_419","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nALEJANDRO CASTRO, 2022\n"},msgstr:["Last-Translator: ALEJANDRO CASTRO, 2022\nLanguage-Team: Spanish (Latin America) (https://www.transifex.com/nextcloud/teams/64236/es_419/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_419\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} segundos restantes"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{tiempo} restante"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["quedan pocos segundos"]},Add:{msgid:"Add",msgstr:["agregar"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancelar subidas"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimando tiempo restante"]},paused:{msgid:"paused",msgstr:["pausado"]},"Upload files":{msgid:"Upload files",msgstr:["Subir archivos"]}}}}},{locale:"es_AR",json:{charset:"utf-8",headers:{"Last-Translator":"Matias Iglesias, 2022","Language-Team":"Spanish (Argentina) (https://www.transifex.com/nextcloud/teams/64236/es_AR/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_AR","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nMatias Iglesias, 2022\n"},msgstr:["Last-Translator: Matias Iglesias, 2022\nLanguage-Team: Spanish (Argentina) (https://www.transifex.com/nextcloud/teams/64236/es_AR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_AR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} segundos restantes"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} restante"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["quedan unos segundos"]},Add:{msgid:"Add",msgstr:["Añadir"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancelar subidas"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimando tiempo restante"]},paused:{msgid:"paused",msgstr:["pausado"]},"Upload files":{msgid:"Upload files",msgstr:["Subir archivos"]}}}}},{locale:"es_CL",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Chile) (https://www.transifex.com/nextcloud/teams/64236/es_CL/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_CL","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Chile) (https://www.transifex.com/nextcloud/teams/64236/es_CL/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CL\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_CO",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Colombia) (https://www.transifex.com/nextcloud/teams/64236/es_CO/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_CO","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Colombia) (https://www.transifex.com/nextcloud/teams/64236/es_CO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CO\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_CR",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Costa Rica) (https://www.transifex.com/nextcloud/teams/64236/es_CR/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_CR","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Costa Rica) (https://www.transifex.com/nextcloud/teams/64236/es_CR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_DO",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Dominican Republic) (https://www.transifex.com/nextcloud/teams/64236/es_DO/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_DO","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Dominican Republic) (https://www.transifex.com/nextcloud/teams/64236/es_DO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_DO\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_EC",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Ecuador) (https://www.transifex.com/nextcloud/teams/64236/es_EC/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_EC","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Ecuador) (https://www.transifex.com/nextcloud/teams/64236/es_EC/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_EC\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_GT",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Guatemala) (https://www.transifex.com/nextcloud/teams/64236/es_GT/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_GT","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Guatemala) (https://www.transifex.com/nextcloud/teams/64236/es_GT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_GT\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_HN",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Honduras) (https://www.transifex.com/nextcloud/teams/64236/es_HN/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_HN","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Honduras) (https://www.transifex.com/nextcloud/teams/64236/es_HN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_HN\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_MX",json:{charset:"utf-8",headers:{"Last-Translator":"ALEJANDRO CASTRO, 2022","Language-Team":"Spanish (Mexico) (https://www.transifex.com/nextcloud/teams/64236/es_MX/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_MX","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nLuis Francisco Castro, 2022\nALEJANDRO CASTRO, 2022\n"},msgstr:["Last-Translator: ALEJANDRO CASTRO, 2022\nLanguage-Team: Spanish (Mexico) (https://www.transifex.com/nextcloud/teams/64236/es_MX/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_MX\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} segundos restantes"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{tiempo} restante"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["quedan pocos segundos"]},Add:{msgid:"Add",msgstr:["agregar"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["cancelar las cargas"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimando tiempo restante"]},paused:{msgid:"paused",msgstr:["en pausa"]},"Upload files":{msgid:"Upload files",msgstr:["cargar archivos"]}}}}},{locale:"es_NI",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Nicaragua) (https://www.transifex.com/nextcloud/teams/64236/es_NI/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_NI","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Nicaragua) (https://www.transifex.com/nextcloud/teams/64236/es_NI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_NI\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_PA",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Panama) (https://www.transifex.com/nextcloud/teams/64236/es_PA/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_PA","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Panama) (https://www.transifex.com/nextcloud/teams/64236/es_PA/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PA\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_PE",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Peru) (https://www.transifex.com/nextcloud/teams/64236/es_PE/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_PE","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Peru) (https://www.transifex.com/nextcloud/teams/64236/es_PE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PE\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_PR",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Puerto Rico) (https://www.transifex.com/nextcloud/teams/64236/es_PR/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_PR","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Puerto Rico) (https://www.transifex.com/nextcloud/teams/64236/es_PR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_PY",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Paraguay) (https://www.transifex.com/nextcloud/teams/64236/es_PY/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_PY","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Paraguay) (https://www.transifex.com/nextcloud/teams/64236/es_PY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PY\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_SV",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (El Salvador) (https://www.transifex.com/nextcloud/teams/64236/es_SV/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_SV","Plural-Forms":"nplurals=2; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (El Salvador) (https://www.transifex.com/nextcloud/teams/64236/es_SV/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_SV\nPlural-Forms: nplurals=2; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_UY",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Uruguay) (https://www.transifex.com/nextcloud/teams/64236/es_UY/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_UY","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Uruguay) (https://www.transifex.com/nextcloud/teams/64236/es_UY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_UY\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"et_EE",json:{charset:"utf-8",headers:{"Last-Translator":"Taavo Roos, 2023","Language-Team":"Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)","Content-Type":"text/plain; charset=UTF-8",Language:"et_EE","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nMait R, 2022\nTaavo Roos, 2023\n"},msgstr:["Last-Translator: Taavo Roos, 2023\nLanguage-Team: Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: et_EE\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} jäänud sekundid"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} aega jäänud"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["jäänud mõni sekund"]},Add:{msgid:"Add",msgstr:["Lisa"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Tühista üleslaadimine"]},"estimating time left":{msgid:"estimating time left",msgstr:["hinnanguline järelejäänud aeg"]},paused:{msgid:"paused",msgstr:["pausil"]},"Upload files":{msgid:"Upload files",msgstr:["Lae failid üles"]}}}}},{locale:"eu",json:{charset:"utf-8",headers:{"Last-Translator":"Unai Tolosa Pontesta <utolosa002@gmail.com>, 2022","Language-Team":"Basque (https://www.transifex.com/nextcloud/teams/64236/eu/)","Content-Type":"text/plain; charset=UTF-8",Language:"eu","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nUnai Tolosa Pontesta <utolosa002@gmail.com>, 2022\n"},msgstr:["Last-Translator: Unai Tolosa Pontesta <utolosa002@gmail.com>, 2022\nLanguage-Team: Basque (https://www.transifex.com/nextcloud/teams/64236/eu/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: eu\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} segundo geratzen dira"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} geratzen da"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["segundo batzuk geratzen dira"]},Add:{msgid:"Add",msgstr:["Gehitu"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Ezeztatu igoerak"]},"estimating time left":{msgid:"estimating time left",msgstr:["kalkulatutako geratzen den denbora"]},paused:{msgid:"paused",msgstr:["geldituta"]},"Upload files":{msgid:"Upload files",msgstr:["Igo fitxategiak"]}}}}},{locale:"fa",json:{charset:"utf-8",headers:{"Last-Translator":"Fatemeh Komeily, 2023","Language-Team":"Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)","Content-Type":"text/plain; charset=UTF-8",Language:"fa","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nFatemeh Komeily, 2023\n"},msgstr:["Last-Translator: Fatemeh Komeily, 2023\nLanguage-Team: Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fa\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["ثانیه های باقی مانده"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["باقی مانده"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["چند ثانیه مانده"]},Add:{msgid:"Add",msgstr:["اضافه کردن"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["کنسل کردن فایل های اپلود شده"]},"estimating time left":{msgid:"estimating time left",msgstr:["تخمین زمان باقی مانده"]},paused:{msgid:"paused",msgstr:["مکث کردن"]},"Upload files":{msgid:"Upload files",msgstr:["بارگذاری فایل ها"]}}}}},{locale:"fi_FI",json:{charset:"utf-8",headers:{"Last-Translator":"Jiri Grönroos <jiri.gronroos@iki.fi>, 2022","Language-Team":"Finnish (Finland) (https://www.transifex.com/nextcloud/teams/64236/fi_FI/)","Content-Type":"text/plain; charset=UTF-8",Language:"fi_FI","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJiri Grönroos <jiri.gronroos@iki.fi>, 2022\n"},msgstr:["Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>, 2022\nLanguage-Team: Finnish (Finland) (https://www.transifex.com/nextcloud/teams/64236/fi_FI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fi_FI\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} sekuntia jäljellä"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} jäljellä"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["muutama sekunti jäljellä"]},Add:{msgid:"Add",msgstr:["Lisää"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Peruuta lähetykset"]},"estimating time left":{msgid:"estimating time left",msgstr:["arvioidaan jäljellä olevaa aikaa"]},paused:{msgid:"paused",msgstr:["keskeytetty"]},"Upload files":{msgid:"Upload files",msgstr:["Lähetä tiedostoja"]}}}}},{locale:"fo",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Faroese (https://www.transifex.com/nextcloud/teams/64236/fo/)","Content-Type":"text/plain; charset=UTF-8",Language:"fo","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Faroese (https://www.transifex.com/nextcloud/teams/64236/fo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fo\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"fr",json:{charset:"utf-8",headers:{"Last-Translator":"jed boulahya, 2024","Language-Team":"French (https://app.transifex.com/nextcloud/teams/64236/fr/)","Content-Type":"text/plain; charset=UTF-8",Language:"fr","Plural-Forms":"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nBenoit Pruneau, 2024\njed boulahya, 2024\n"},msgstr:["Last-Translator: jed boulahya, 2024\nLanguage-Team: French (https://app.transifex.com/nextcloud/teams/64236/fr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fr\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} fichier en conflit","{count} fichiers en conflit","{count} fichiers en conflit"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} fichier en conflit dans {dirname}","{count} fichiers en conflit dans {dirname}","{count} fichiers en conflit dans {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} secondes restantes"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} restant"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["quelques secondes restantes"]},Cancel:{msgid:"Cancel",msgstr:["Annuler"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Annuler l'opération entière"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Annuler les envois"]},Continue:{msgid:"Continue",msgstr:["Continuer"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimation du temps restant"]},"Existing version":{msgid:"Existing version",msgstr:["Version existante"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Si vous sélectionnez les deux versions, le fichier copié aura un numéro ajouté àname."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Date de la dernière modification est inconnue"]},New:{msgid:"New",msgstr:["Nouveau"]},"New version":{msgid:"New version",msgstr:["Nouvelle version"]},paused:{msgid:"paused",msgstr:["en pause"]},"Preview image":{msgid:"Preview image",msgstr:["Aperçu de l'image"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Sélectionner toutes les cases à cocher"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Sélectionner tous les fichiers existants"]},"Select all new files":{msgid:"Select all new files",msgstr:["Sélectionner tous les nouveaux fichiers"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Ignorer ce fichier","Ignorer {count} fichiers","Ignorer {count} fichiers"]},"Unknown size":{msgid:"Unknown size",msgstr:["Taille inconnue"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:[" annulé"]},"Upload files":{msgid:"Upload files",msgstr:["Téléchargement des fichiers"]},"Upload progress":{msgid:"Upload progress",msgstr:["Progression du téléchargement"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Lorsqu'un dossier entrant est sélectionné, tous les fichiers en conflit qu'il contient seront également écrasés."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Quels fichiers souhaitez-vous conserver ?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Vous devez sélectionner au moins une version de chaque fichier pour continuer."]}}}}},{locale:"gd",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Gaelic, Scottish (https://www.transifex.com/nextcloud/teams/64236/gd/)","Content-Type":"text/plain; charset=UTF-8",Language:"gd","Plural-Forms":"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Gaelic, Scottish (https://www.transifex.com/nextcloud/teams/64236/gd/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: gd\nPlural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"gl",json:{charset:"utf-8",headers:{"Last-Translator":"Miguel Anxo Bouzada <mbouzada@gmail.com>, 2023","Language-Team":"Galician (https://app.transifex.com/nextcloud/teams/64236/gl/)","Content-Type":"text/plain; charset=UTF-8",Language:"gl","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nNacho <nacho.vfranco@gmail.com>, 2023\nMiguel Anxo Bouzada <mbouzada@gmail.com>, 2023\n"},msgstr:["Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>, 2023\nLanguage-Team: Galician (https://app.transifex.com/nextcloud/teams/64236/gl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: gl\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} conflito de ficheiros","{count} conflitos de ficheiros"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} conflito de ficheiros en {dirname}","{count} conflitos de ficheiros en {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["faltan {seconds} segundos"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["falta {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["faltan uns segundos"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancelar envíos"]},Continue:{msgid:"Continue",msgstr:["Continuar"]},"estimating time left":{msgid:"estimating time left",msgstr:["calculando canto tempo falta"]},"Existing version":{msgid:"Existing version",msgstr:["Versión existente"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Se selecciona ambas as versións, o ficheiro copiado terá un número engadido ao seu nome."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Data da última modificación descoñecida"]},New:{msgid:"New",msgstr:["Nova"]},"New version":{msgid:"New version",msgstr:["Nova versión"]},paused:{msgid:"paused",msgstr:["detido"]},"Preview image":{msgid:"Preview image",msgstr:["Vista previa da imaxe"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Marcar todas as caixas de selección"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Seleccionar todos os ficheiros existentes"]},"Select all new files":{msgid:"Select all new files",msgstr:["Seleccionar todos os ficheiros novos"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Omita este ficheiro","Omitir {count} ficheiros"]},"Unknown size":{msgid:"Unknown size",msgstr:["Tamaño descoñecido"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Envío cancelado"]},"Upload files":{msgid:"Upload files",msgstr:["Enviar ficheiros"]},"Upload progress":{msgid:"Upload progress",msgstr:["Progreso do envío"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Que ficheiros quere conservar?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Debe seleccionar polo menos unha versión de cada ficheiro para continuar."]}}}}},{locale:"he",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Hebrew (https://www.transifex.com/nextcloud/teams/64236/he/)","Content-Type":"text/plain; charset=UTF-8",Language:"he","Plural-Forms":"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hebrew (https://www.transifex.com/nextcloud/teams/64236/he/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: he\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"hi_IN",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Hindi (India) (https://www.transifex.com/nextcloud/teams/64236/hi_IN/)","Content-Type":"text/plain; charset=UTF-8",Language:"hi_IN","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hindi (India) (https://www.transifex.com/nextcloud/teams/64236/hi_IN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hi_IN\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"hr",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Croatian (https://www.transifex.com/nextcloud/teams/64236/hr/)","Content-Type":"text/plain; charset=UTF-8",Language:"hr","Plural-Forms":"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Croatian (https://www.transifex.com/nextcloud/teams/64236/hr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hr\nPlural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"hsb",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Upper Sorbian (https://www.transifex.com/nextcloud/teams/64236/hsb/)","Content-Type":"text/plain; charset=UTF-8",Language:"hsb","Plural-Forms":"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Upper Sorbian (https://www.transifex.com/nextcloud/teams/64236/hsb/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hsb\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"hu",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Hungarian (https://www.transifex.com/nextcloud/teams/64236/hu/)","Content-Type":"text/plain; charset=UTF-8",Language:"hu","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hungarian (https://www.transifex.com/nextcloud/teams/64236/hu/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hu\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"hu_HU",json:{charset:"utf-8",headers:{"Last-Translator":"Balázs Úr, 2022","Language-Team":"Hungarian (Hungary) (https://www.transifex.com/nextcloud/teams/64236/hu_HU/)","Content-Type":"text/plain; charset=UTF-8",Language:"hu_HU","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nBalázs Meskó <meskobalazs@mailbox.org>, 2022\nBalázs Úr, 2022\n"},msgstr:["Last-Translator: Balázs Úr, 2022\nLanguage-Team: Hungarian (Hungary) (https://www.transifex.com/nextcloud/teams/64236/hu_HU/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hu_HU\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{} másodperc van hátra"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} van hátra"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["pár másodperc van hátra"]},Add:{msgid:"Add",msgstr:["Hozzáadás"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Feltöltések megszakítása"]},"estimating time left":{msgid:"estimating time left",msgstr:["hátralévő idő becslése"]},paused:{msgid:"paused",msgstr:["szüneteltetve"]},"Upload files":{msgid:"Upload files",msgstr:["Fájlok feltöltése"]}}}}},{locale:"hy",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Armenian (https://www.transifex.com/nextcloud/teams/64236/hy/)","Content-Type":"text/plain; charset=UTF-8",Language:"hy","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Armenian (https://www.transifex.com/nextcloud/teams/64236/hy/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hy\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ia",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Interlingua (https://www.transifex.com/nextcloud/teams/64236/ia/)","Content-Type":"text/plain; charset=UTF-8",Language:"ia","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Interlingua (https://www.transifex.com/nextcloud/teams/64236/ia/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ia\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"id",json:{charset:"utf-8",headers:{"Last-Translator":"Linerly <linerly@proton.me>, 2023","Language-Team":"Indonesian (https://app.transifex.com/nextcloud/teams/64236/id/)","Content-Type":"text/plain; charset=UTF-8",Language:"id","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nEmpty Slot Filler, 2023\nLinerly <linerly@proton.me>, 2023\n"},msgstr:["Last-Translator: Linerly <linerly@proton.me>, 2023\nLanguage-Team: Indonesian (https://app.transifex.com/nextcloud/teams/64236/id/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: id\nPlural-Forms: nplurals=1; plural=0;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} berkas berkonflik"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} berkas berkonflik dalam {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} detik tersisa"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} tersisa"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["tinggal sebentar lagi"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Batalkan unggahan"]},Continue:{msgid:"Continue",msgstr:["Lanjutkan"]},"estimating time left":{msgid:"estimating time left",msgstr:["memperkirakan waktu yang tersisa"]},"Existing version":{msgid:"Existing version",msgstr:["Versi yang ada"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Jika Anda memilih kedua versi, nama berkas yang disalin akan ditambahi angka."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Tanggal perubahan terakhir tidak diketahui"]},New:{msgid:"New",msgstr:["Baru"]},"New version":{msgid:"New version",msgstr:["Versi baru"]},paused:{msgid:"paused",msgstr:["dijeda"]},"Preview image":{msgid:"Preview image",msgstr:["Gambar pratinjau"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Pilih semua kotak centang"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Pilih semua berkas yang ada"]},"Select all new files":{msgid:"Select all new files",msgstr:["Pilih semua berkas baru"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Lewati {count} berkas"]},"Unknown size":{msgid:"Unknown size",msgstr:["Ukuran tidak diketahui"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Unggahan dibatalkan"]},"Upload files":{msgid:"Upload files",msgstr:["Unggah berkas"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Berkas mana yang Anda ingin tetap simpan?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Anda harus memilih setidaknya satu versi dari masing-masing berkas untuk melanjutkan."]}}}}},{locale:"ig",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Igbo (https://www.transifex.com/nextcloud/teams/64236/ig/)","Content-Type":"text/plain; charset=UTF-8",Language:"ig","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Igbo (https://www.transifex.com/nextcloud/teams/64236/ig/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ig\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"is",json:{charset:"utf-8",headers:{"Last-Translator":"Sveinn í Felli <sv1@fellsnet.is>, 2023","Language-Team":"Icelandic (https://app.transifex.com/nextcloud/teams/64236/is/)","Content-Type":"text/plain; charset=UTF-8",Language:"is","Plural-Forms":"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nSveinn í Felli <sv1@fellsnet.is>, 2023\n"},msgstr:["Last-Translator: Sveinn í Felli <sv1@fellsnet.is>, 2023\nLanguage-Team: Icelandic (https://app.transifex.com/nextcloud/teams/64236/is/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: is\nPlural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} árekstur skráa","{count} árekstrar skráa"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} árekstur skráa í {dirname}","{count} árekstrar skráa í {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} sekúndur eftir"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} eftir"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["nokkrar sekúndur eftir"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Hætta við innsendingar"]},Continue:{msgid:"Continue",msgstr:["Halda áfram"]},"estimating time left":{msgid:"estimating time left",msgstr:["áætla tíma sem eftir er"]},"Existing version":{msgid:"Existing version",msgstr:["Fyrirliggjandi útgáfa"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Ef þú velur báðar útgáfur, þá mun verða bætt tölustaf aftan við heiti afrituðu skrárinnar."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Síðasta breytingadagsetning er óþekkt"]},New:{msgid:"New",msgstr:["Nýtt"]},"New version":{msgid:"New version",msgstr:["Ný útgáfa"]},paused:{msgid:"paused",msgstr:["í bið"]},"Preview image":{msgid:"Preview image",msgstr:["Forskoðun myndar"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Velja gátreiti"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Velja allar fyrirliggjandi skrár"]},"Select all new files":{msgid:"Select all new files",msgstr:["Velja allar nýjar skrár"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Sleppa þessari skrá","Sleppa {count} skrám"]},"Unknown size":{msgid:"Unknown size",msgstr:["Óþekkt stærð"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Hætt við innsendingu"]},"Upload files":{msgid:"Upload files",msgstr:["Senda inn skrár"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Hvaða skrám vilt þú vilt halda eftir?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Þú verður að velja að minnsta kosti eina útgáfu af hverri skrá til að halda áfram."]}}}}},{locale:"it",json:{charset:"utf-8",headers:{"Last-Translator":"Random_R, 2023","Language-Team":"Italian (https://app.transifex.com/nextcloud/teams/64236/it/)","Content-Type":"text/plain; charset=UTF-8",Language:"it","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nLep Lep, 2023\nRandom_R, 2023\n"},msgstr:["Last-Translator: Random_R, 2023\nLanguage-Team: Italian (https://app.transifex.com/nextcloud/teams/64236/it/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: it\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} file in conflitto","{count} file in conflitto","{count} file in conflitto"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} file in conflitto in {dirname}","{count} file in conflitto in {dirname}","{count} file in conflitto in {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} secondi rimanenti "]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} rimanente"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["alcuni secondi rimanenti"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Annulla i caricamenti"]},Continue:{msgid:"Continue",msgstr:["Continua"]},"estimating time left":{msgid:"estimating time left",msgstr:["calcolo il tempo rimanente"]},"Existing version":{msgid:"Existing version",msgstr:["Versione esistente"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Se selezioni entrambe le versioni, nel nome del file copiato verrà aggiunto un numero "]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Ultima modifica sconosciuta"]},New:{msgid:"New",msgstr:["Nuovo"]},"New version":{msgid:"New version",msgstr:["Nuova versione"]},paused:{msgid:"paused",msgstr:["pausa"]},"Preview image":{msgid:"Preview image",msgstr:["Anteprima immagine"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Seleziona tutte le caselle"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Seleziona tutti i file esistenti"]},"Select all new files":{msgid:"Select all new files",msgstr:["Seleziona tutti i nuovi file"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Salta questo file","Salta {count} file","Salta {count} file"]},"Unknown size":{msgid:"Unknown size",msgstr:["Dimensione sconosciuta"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Caricamento cancellato"]},"Upload files":{msgid:"Upload files",msgstr:["Carica i file"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Quali file vuoi mantenere?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Devi selezionare almeno una versione di ogni file per continuare"]}}}}},{locale:"it_IT",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Italian (Italy) (https://www.transifex.com/nextcloud/teams/64236/it_IT/)","Content-Type":"text/plain; charset=UTF-8",Language:"it_IT","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Italian (Italy) (https://www.transifex.com/nextcloud/teams/64236/it_IT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: it_IT\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ja_JP",json:{charset:"utf-8",headers:{"Last-Translator":"かたかめ, 2022","Language-Team":"Japanese (Japan) (https://www.transifex.com/nextcloud/teams/64236/ja_JP/)","Content-Type":"text/plain; charset=UTF-8",Language:"ja_JP","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nT.S, 2022\nかたかめ, 2022\n"},msgstr:["Last-Translator: かたかめ, 2022\nLanguage-Team: Japanese (Japan) (https://www.transifex.com/nextcloud/teams/64236/ja_JP/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ja_JP\nPlural-Forms: nplurals=1; plural=0;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["残り {seconds} 秒"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["残り {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["残り数秒"]},Add:{msgid:"Add",msgstr:["追加"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["アップロードをキャンセル"]},"estimating time left":{msgid:"estimating time left",msgstr:["概算残り時間"]},paused:{msgid:"paused",msgstr:["一時停止中"]},"Upload files":{msgid:"Upload files",msgstr:["ファイルをアップデート"]}}}}},{locale:"ka",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Georgian (https://www.transifex.com/nextcloud/teams/64236/ka/)","Content-Type":"text/plain; charset=UTF-8",Language:"ka","Plural-Forms":"nplurals=2; plural=(n!=1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Georgian (https://www.transifex.com/nextcloud/teams/64236/ka/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ka\nPlural-Forms: nplurals=2; plural=(n!=1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ka_GE",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Georgian (Georgia) (https://www.transifex.com/nextcloud/teams/64236/ka_GE/)","Content-Type":"text/plain; charset=UTF-8",Language:"ka_GE","Plural-Forms":"nplurals=2; plural=(n!=1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Georgian (Georgia) (https://www.transifex.com/nextcloud/teams/64236/ka_GE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ka_GE\nPlural-Forms: nplurals=2; plural=(n!=1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"kab",json:{charset:"utf-8",headers:{"Last-Translator":"ZiriSut, 2023","Language-Team":"Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)","Content-Type":"text/plain; charset=UTF-8",Language:"kab","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nZiriSut, 2023\n"},msgstr:["Last-Translator: ZiriSut, 2023\nLanguage-Team: Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kab\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} tesdatin i d-yeqqimen"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} i d-yeqqimen"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["qqiment-d kra n tesdatin kan"]},Add:{msgid:"Add",msgstr:["Rnu"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Sefsex asali"]},"estimating time left":{msgid:"estimating time left",msgstr:["asizel n wakud i d-yeqqimen"]},paused:{msgid:"paused",msgstr:["yeḥbes"]},"Upload files":{msgid:"Upload files",msgstr:["Sali-d ifuyla"]}}}}},{locale:"kk",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Kazakh (https://www.transifex.com/nextcloud/teams/64236/kk/)","Content-Type":"text/plain; charset=UTF-8",Language:"kk","Plural-Forms":"nplurals=2; plural=(n!=1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Kazakh (https://www.transifex.com/nextcloud/teams/64236/kk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kk\nPlural-Forms: nplurals=2; plural=(n!=1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"km",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Khmer (https://www.transifex.com/nextcloud/teams/64236/km/)","Content-Type":"text/plain; charset=UTF-8",Language:"km","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Khmer (https://www.transifex.com/nextcloud/teams/64236/km/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: km\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"kn",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Kannada (https://www.transifex.com/nextcloud/teams/64236/kn/)","Content-Type":"text/plain; charset=UTF-8",Language:"kn","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Kannada (https://www.transifex.com/nextcloud/teams/64236/kn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kn\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ko",json:{charset:"utf-8",headers:{"Last-Translator":"Brandon Han, 2024","Language-Team":"Korean (https://app.transifex.com/nextcloud/teams/64236/ko/)","Content-Type":"text/plain; charset=UTF-8",Language:"ko","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nhosun Lee, 2023\nBrandon Han, 2024\n"},msgstr:["Last-Translator: Brandon Han, 2024\nLanguage-Team: Korean (https://app.transifex.com/nextcloud/teams/64236/ko/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ko\nPlural-Forms: nplurals=1; plural=0;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count}개의 파일이 충돌함"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{dirname}에서 {count}개의 파일이 충돌함"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} 남음"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} 남음"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["곧 완료"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["업로드 취소"]},Continue:{msgid:"Continue",msgstr:["확인"]},"estimating time left":{msgid:"estimating time left",msgstr:["남은 시간 계산"]},"Existing version":{msgid:"Existing version",msgstr:["현재 버전"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["두 버전을 모두 선택할 경우, 복제된 파일 이름에 숫자가 추가됩니다."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["최근 수정일 알 수 없음"]},New:{msgid:"New",msgstr:["새로 만들기"]},"New version":{msgid:"New version",msgstr:["새 버전"]},paused:{msgid:"paused",msgstr:["일시정지됨"]},"Preview image":{msgid:"Preview image",msgstr:["미리보기 이미지"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["모든 체크박스 선택"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["모든 파일 선택"]},"Select all new files":{msgid:"Select all new files",msgstr:["모든 새 파일 선택"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["{count}개의 파일 넘기기"]},"Unknown size":{msgid:"Unknown size",msgstr:["크기를 알 수 없음"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["업로드 취소됨"]},"Upload files":{msgid:"Upload files",msgstr:["파일 업로드"]},"Upload progress":{msgid:"Upload progress",msgstr:["업로드 진행도"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["어떤 파일을 보존하시겠습니까?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["계속하기 위해서는 한 파일에 최소 하나의 버전을 선택해야 합니다."]}}}}},{locale:"la",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Latin (https://www.transifex.com/nextcloud/teams/64236/la/)","Content-Type":"text/plain; charset=UTF-8",Language:"la","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Latin (https://www.transifex.com/nextcloud/teams/64236/la/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: la\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"lb",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Luxembourgish (https://www.transifex.com/nextcloud/teams/64236/lb/)","Content-Type":"text/plain; charset=UTF-8",Language:"lb","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Luxembourgish (https://www.transifex.com/nextcloud/teams/64236/lb/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lb\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"lo",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Lao (https://www.transifex.com/nextcloud/teams/64236/lo/)","Content-Type":"text/plain; charset=UTF-8",Language:"lo","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Lao (https://www.transifex.com/nextcloud/teams/64236/lo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lo\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"lt_LT",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Lithuanian (Lithuania) (https://www.transifex.com/nextcloud/teams/64236/lt_LT/)","Content-Type":"text/plain; charset=UTF-8",Language:"lt_LT","Plural-Forms":"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Lithuanian (Lithuania) (https://www.transifex.com/nextcloud/teams/64236/lt_LT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lt_LT\nPlural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"lv",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Latvian (https://www.transifex.com/nextcloud/teams/64236/lv/)","Content-Type":"text/plain; charset=UTF-8",Language:"lv","Plural-Forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Latvian (https://www.transifex.com/nextcloud/teams/64236/lv/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lv\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"mk",json:{charset:"utf-8",headers:{"Last-Translator":"Сашко Тодоров <sasetodorov@gmail.com>, 2022","Language-Team":"Macedonian (https://www.transifex.com/nextcloud/teams/64236/mk/)","Content-Type":"text/plain; charset=UTF-8",Language:"mk","Plural-Forms":"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nСашко Тодоров <sasetodorov@gmail.com>, 2022\n"},msgstr:["Last-Translator: Сашко Тодоров <sasetodorov@gmail.com>, 2022\nLanguage-Team: Macedonian (https://www.transifex.com/nextcloud/teams/64236/mk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mk\nPlural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["преостануваат {seconds} секунди"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["преостанува {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["уште неколку секунди"]},Add:{msgid:"Add",msgstr:["Додади"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Прекини прикачување"]},"estimating time left":{msgid:"estimating time left",msgstr:["приближно преостанато време"]},paused:{msgid:"paused",msgstr:["паузирано"]},"Upload files":{msgid:"Upload files",msgstr:["Прикачување датотеки"]}}}}},{locale:"mn",json:{charset:"utf-8",headers:{"Last-Translator":"BATKHUYAG Ganbold, 2023","Language-Team":"Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)","Content-Type":"text/plain; charset=UTF-8",Language:"mn","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nBATKHUYAG Ganbold, 2023\n"},msgstr:["Last-Translator: BATKHUYAG Ganbold, 2023\nLanguage-Team: Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mn\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} секунд үлдсэн"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} үлдсэн"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["хэдхэн секунд үлдсэн"]},Add:{msgid:"Add",msgstr:["Нэмэх"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Илгээлтийг цуцлах"]},"estimating time left":{msgid:"estimating time left",msgstr:["Үлдсэн хугацааг тооцоолж байна"]},paused:{msgid:"paused",msgstr:["түр зогсоосон"]},"Upload files":{msgid:"Upload files",msgstr:["Файл илгээх"]}}}}},{locale:"mr",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Marathi (https://www.transifex.com/nextcloud/teams/64236/mr/)","Content-Type":"text/plain; charset=UTF-8",Language:"mr","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Marathi (https://www.transifex.com/nextcloud/teams/64236/mr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mr\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ms_MY",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Malay (Malaysia) (https://www.transifex.com/nextcloud/teams/64236/ms_MY/)","Content-Type":"text/plain; charset=UTF-8",Language:"ms_MY","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Malay (Malaysia) (https://www.transifex.com/nextcloud/teams/64236/ms_MY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ms_MY\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"my",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Burmese (https://www.transifex.com/nextcloud/teams/64236/my/)","Content-Type":"text/plain; charset=UTF-8",Language:"my","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Burmese (https://www.transifex.com/nextcloud/teams/64236/my/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: my\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"nb_NO",json:{charset:"utf-8",headers:{"Last-Translator":"Syvert Fossdal, 2024","Language-Team":"Norwegian Bokmål (Norway) (https://app.transifex.com/nextcloud/teams/64236/nb_NO/)","Content-Type":"text/plain; charset=UTF-8",Language:"nb_NO","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nSyvert Fossdal, 2024\n"},msgstr:["Last-Translator: Syvert Fossdal, 2024\nLanguage-Team: Norwegian Bokmål (Norway) (https://app.transifex.com/nextcloud/teams/64236/nb_NO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nb_NO\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} file conflict","{count} filkonflikter"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} file conflict in {dirname}","{count} filkonflikter i {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} sekunder igjen"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} igjen"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["noen få sekunder igjen"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Avbryt opplastninger"]},Continue:{msgid:"Continue",msgstr:["Fortsett"]},"estimating time left":{msgid:"estimating time left",msgstr:["Estimerer tid igjen"]},"Existing version":{msgid:"Existing version",msgstr:["Gjeldende versjon"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Hvis du velger begge versjoner, vil den kopierte filen få et tall lagt til navnet."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Siste gang redigert ukjent"]},New:{msgid:"New",msgstr:["Ny"]},"New version":{msgid:"New version",msgstr:["Ny versjon"]},paused:{msgid:"paused",msgstr:["pauset"]},"Preview image":{msgid:"Preview image",msgstr:["Forhåndsvis bilde"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Velg alle"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Velg alle eksisterende filer"]},"Select all new files":{msgid:"Select all new files",msgstr:["Velg alle nye filer"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Skip this file","Hopp over {count} filer"]},"Unknown size":{msgid:"Unknown size",msgstr:["Ukjent størrelse"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Opplasting avbrutt"]},"Upload files":{msgid:"Upload files",msgstr:["Last opp filer"]},"Upload progress":{msgid:"Upload progress",msgstr:["Fremdrift, opplasting"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Hvilke filer vil du beholde?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Du må velge minst en versjon av hver fil for å fortsette."]}}}}},{locale:"ne",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Nepali (https://www.transifex.com/nextcloud/teams/64236/ne/)","Content-Type":"text/plain; charset=UTF-8",Language:"ne","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Nepali (https://www.transifex.com/nextcloud/teams/64236/ne/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ne\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"nl",json:{charset:"utf-8",headers:{"Last-Translator":"Rico <rico-schwab@hotmail.com>, 2023","Language-Team":"Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)","Content-Type":"text/plain; charset=UTF-8",Language:"nl","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nRico <rico-schwab@hotmail.com>, 2023\n"},msgstr:["Last-Translator: Rico <rico-schwab@hotmail.com>, 2023\nLanguage-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nl\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["Nog {seconds} seconden"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{seconds} over"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["Nog een paar seconden"]},Add:{msgid:"Add",msgstr:["Voeg toe"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Uploads annuleren"]},"estimating time left":{msgid:"estimating time left",msgstr:["Schatting van de resterende tijd"]},paused:{msgid:"paused",msgstr:["Gepauzeerd"]},"Upload files":{msgid:"Upload files",msgstr:["Upload bestanden"]}}}}},{locale:"nn",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Norwegian Nynorsk (https://www.transifex.com/nextcloud/teams/64236/nn/)","Content-Type":"text/plain; charset=UTF-8",Language:"nn","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Norwegian Nynorsk (https://www.transifex.com/nextcloud/teams/64236/nn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nn\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"nn_NO",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Norwegian Nynorsk (Norway) (https://www.transifex.com/nextcloud/teams/64236/nn_NO/)","Content-Type":"text/plain; charset=UTF-8",Language:"nn_NO","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Norwegian Nynorsk (Norway) (https://www.transifex.com/nextcloud/teams/64236/nn_NO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nn_NO\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"oc",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Occitan (post 1500) (https://www.transifex.com/nextcloud/teams/64236/oc/)","Content-Type":"text/plain; charset=UTF-8",Language:"oc","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Occitan (post 1500) (https://www.transifex.com/nextcloud/teams/64236/oc/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: oc\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"pl",json:{charset:"utf-8",headers:{"Last-Translator":"Valdnet, 2024","Language-Team":"Polish (https://app.transifex.com/nextcloud/teams/64236/pl/)","Content-Type":"text/plain; charset=UTF-8",Language:"pl","Plural-Forms":"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nM H <haincu@o2.pl>, 2023\nValdnet, 2024\n"},msgstr:["Last-Translator: Valdnet, 2024\nLanguage-Team: Polish (https://app.transifex.com/nextcloud/teams/64236/pl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pl\nPlural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["konflikt 1 pliku","{count} konfliktów plików","{count} konfliktów plików","{count} konfliktów plików"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} konfliktowy plik w {dirname}","{count} konfliktowych plików w {dirname}","{count} konfliktowych plików w {dirname}","{count} konfliktowych plików w {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["Pozostało {seconds} sekund"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["Pozostało {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["Pozostało kilka sekund"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Anuluj wysyłanie"]},Continue:{msgid:"Continue",msgstr:["Kontynuuj"]},"estimating time left":{msgid:"estimating time left",msgstr:["Szacowanie pozostałego czasu"]},"Existing version":{msgid:"Existing version",msgstr:["Istniejąca wersja"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Jeżeli wybierzesz obie wersje to do nazw skopiowanych plików zostanie dodany numer"]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Nieznana data ostatniej modyfikacji"]},New:{msgid:"New",msgstr:["Nowy"]},"New version":{msgid:"New version",msgstr:["Nowa wersja"]},paused:{msgid:"paused",msgstr:["Wstrzymane"]},"Preview image":{msgid:"Preview image",msgstr:["Podgląd obrazu"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Zaznacz wszystkie boxy"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Zaznacz wszystkie istniejące pliki"]},"Select all new files":{msgid:"Select all new files",msgstr:["Zaznacz wszystkie nowe pliki"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Pomiń 1 plik","Pomiń {count} plików","Pomiń {count} plików","Pomiń {count} plików"]},"Unknown size":{msgid:"Unknown size",msgstr:["Nieznany rozmiar"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Anulowano wysyłanie"]},"Upload files":{msgid:"Upload files",msgstr:["Wyślij pliki"]},"Upload progress":{msgid:"Upload progress",msgstr:["Postęp wysyłania"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Które pliki chcesz zachować"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Aby kontynuować, musisz wybrać co najmniej jedną wersję każdego pliku."]}}}}},{locale:"ps",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Pashto (https://www.transifex.com/nextcloud/teams/64236/ps/)","Content-Type":"text/plain; charset=UTF-8",Language:"ps","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Pashto (https://www.transifex.com/nextcloud/teams/64236/ps/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ps\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"pt_BR",json:{charset:"utf-8",headers:{"Last-Translator":"Leonardo Colman Lopes <leonardo.dev@colman.com.br>, 2024","Language-Team":"Portuguese (Brazil) (https://app.transifex.com/nextcloud/teams/64236/pt_BR/)","Content-Type":"text/plain; charset=UTF-8",Language:"pt_BR","Plural-Forms":"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nLeonardo Colman Lopes <leonardo.dev@colman.com.br>, 2024\n"},msgstr:["Last-Translator: Leonardo Colman Lopes <leonardo.dev@colman.com.br>, 2024\nLanguage-Team: Portuguese (Brazil) (https://app.transifex.com/nextcloud/teams/64236/pt_BR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pt_BR\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} arquivos em conflito","{count} arquivos em conflito","{count} arquivos em conflito"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} conflitos de arquivo em {dirname}","{count} conflitos de arquivo em {dirname}","{count} conflitos de arquivo em {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} segundos restantes"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} restante"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["alguns segundos restantes"]},Cancel:{msgid:"Cancel",msgstr:["Cancelar"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Cancelar a operação inteira"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancelar uploads"]},Continue:{msgid:"Continue",msgstr:["Continuar"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimando tempo restante"]},"Existing version":{msgid:"Existing version",msgstr:["Versão existente"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Se você selecionar ambas as versões, o arquivo copiado terá um número adicionado ao seu nome."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Data da última modificação desconhecida"]},New:{msgid:"New",msgstr:["Novo"]},"New version":{msgid:"New version",msgstr:["Nova versão"]},paused:{msgid:"paused",msgstr:["pausado"]},"Preview image":{msgid:"Preview image",msgstr:["Visualizar imagem"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Marque todas as caixas de seleção"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Selecione todos os arquivos existentes"]},"Select all new files":{msgid:"Select all new files",msgstr:["Selecione todos os novos arquivos"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Ignorar {count} arquivos","Ignorar {count} arquivos","Ignorar {count} arquivos"]},"Unknown size":{msgid:"Unknown size",msgstr:["Tamanho desconhecido"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Envio cancelado"]},"Upload files":{msgid:"Upload files",msgstr:["Enviar arquivos"]},"Upload progress":{msgid:"Upload progress",msgstr:["Envio em progresso"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Quando uma pasta é selecionada, quaisquer arquivos dentro dela também serão sobrescritos."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Quais arquivos você deseja manter?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Você precisa selecionar pelo menos uma versão de cada arquivo para continuar."]}}}}},{locale:"pt_PT",json:{charset:"utf-8",headers:{"Last-Translator":"Manuela Silva <mmsrs@sky.com>, 2022","Language-Team":"Portuguese (Portugal) (https://www.transifex.com/nextcloud/teams/64236/pt_PT/)","Content-Type":"text/plain; charset=UTF-8",Language:"pt_PT","Plural-Forms":"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nManuela Silva <mmsrs@sky.com>, 2022\n"},msgstr:["Last-Translator: Manuela Silva <mmsrs@sky.com>, 2022\nLanguage-Team: Portuguese (Portugal) (https://www.transifex.com/nextcloud/teams/64236/pt_PT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pt_PT\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["faltam {seconds} segundo(s)"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["faltam {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["faltam uns segundos"]},Add:{msgid:"Add",msgstr:["Adicionar"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancelar envios"]},"estimating time left":{msgid:"estimating time left",msgstr:["tempo em falta estimado"]},paused:{msgid:"paused",msgstr:["pausado"]},"Upload files":{msgid:"Upload files",msgstr:["Enviar ficheiros"]}}}}},{locale:"ro",json:{charset:"utf-8",headers:{"Last-Translator":"Mădălin Vasiliu <contact@madalinvasiliu.com>, 2022","Language-Team":"Romanian (https://www.transifex.com/nextcloud/teams/64236/ro/)","Content-Type":"text/plain; charset=UTF-8",Language:"ro","Plural-Forms":"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nMădălin Vasiliu <contact@madalinvasiliu.com>, 2022\n"},msgstr:["Last-Translator: Mădălin Vasiliu <contact@madalinvasiliu.com>, 2022\nLanguage-Team: Romanian (https://www.transifex.com/nextcloud/teams/64236/ro/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ro\nPlural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} secunde rămase"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} rămas"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["câteva secunde rămase"]},Add:{msgid:"Add",msgstr:["Adaugă"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Anulați încărcările"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimarea timpului rămas"]},paused:{msgid:"paused",msgstr:["pus pe pauză"]},"Upload files":{msgid:"Upload files",msgstr:["Încarcă fișiere"]}}}}},{locale:"ru",json:{charset:"utf-8",headers:{"Last-Translator":"Александр, 2023","Language-Team":"Russian (https://app.transifex.com/nextcloud/teams/64236/ru/)","Content-Type":"text/plain; charset=UTF-8",Language:"ru","Plural-Forms":"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nMax Smith <sevinfolds@gmail.com>, 2023\nАлександр, 2023\n"},msgstr:["Last-Translator: Александр, 2023\nLanguage-Team: Russian (https://app.transifex.com/nextcloud/teams/64236/ru/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ru\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["конфликт {count} файла","конфликт {count} файлов","конфликт {count} файлов","конфликт {count} файлов"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["конфликт {count} файла в {dirname}","конфликт {count} файлов в {dirname}","конфликт {count} файлов в {dirname}","конфликт {count} файлов в {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["осталось {seconds} секунд"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["осталось {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["осталось несколько секунд"]},Add:{msgid:"Add",msgstr:["Добавить"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Отменить загрузки"]},Continue:{msgid:"Continue",msgstr:["Продолжить"]},"estimating time left":{msgid:"estimating time left",msgstr:["оценка оставшегося времени"]},"Existing version":{msgid:"Existing version",msgstr:["Текущая версия"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Если вы выберете обе версии, к имени скопированного файла будет добавлен номер."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Дата последнего изменения неизвестна"]},"New version":{msgid:"New version",msgstr:["Новая версия"]},paused:{msgid:"paused",msgstr:["приостановлено"]},"Preview image":{msgid:"Preview image",msgstr:["Предварительный просмотр"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Установить все флажки"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Выбрать все существующие файлы"]},"Select all new files":{msgid:"Select all new files",msgstr:["Выбрать все новые файлы"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Пропустить файл","Пропустить {count} файла","Пропустить {count} файлов","Пропустить {count} файлов"]},"Unknown size":{msgid:"Unknown size",msgstr:["Неизвестный размер"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Загрузка отменена"]},"Upload files":{msgid:"Upload files",msgstr:["Загрузка файлов"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Какие файлы вы хотите сохранить?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Для продолжения вам нужно выбрать по крайней мере одну версию каждого файла."]}}}}},{locale:"ru_RU",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Russian (Russia) (https://www.transifex.com/nextcloud/teams/64236/ru_RU/)","Content-Type":"text/plain; charset=UTF-8",Language:"ru_RU","Plural-Forms":"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Russian (Russia) (https://www.transifex.com/nextcloud/teams/64236/ru_RU/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ru_RU\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"sc",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Sardinian (https://www.transifex.com/nextcloud/teams/64236/sc/)","Content-Type":"text/plain; charset=UTF-8",Language:"sc","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sardinian (https://www.transifex.com/nextcloud/teams/64236/sc/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sc\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"si",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Sinhala (https://www.transifex.com/nextcloud/teams/64236/si/)","Content-Type":"text/plain; charset=UTF-8",Language:"si","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sinhala (https://www.transifex.com/nextcloud/teams/64236/si/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: si\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"si_LK",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Sinhala (Sri Lanka) (https://www.transifex.com/nextcloud/teams/64236/si_LK/)","Content-Type":"text/plain; charset=UTF-8",Language:"si_LK","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sinhala (Sri Lanka) (https://www.transifex.com/nextcloud/teams/64236/si_LK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: si_LK\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"sk_SK",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Slovak (Slovakia) (https://www.transifex.com/nextcloud/teams/64236/sk_SK/)","Content-Type":"text/plain; charset=UTF-8",Language:"sk_SK","Plural-Forms":"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Slovak (Slovakia) (https://www.transifex.com/nextcloud/teams/64236/sk_SK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sk_SK\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"sl",json:{charset:"utf-8",headers:{"Last-Translator":"Matej Urbančič <>, 2022","Language-Team":"Slovenian (https://www.transifex.com/nextcloud/teams/64236/sl/)","Content-Type":"text/plain; charset=UTF-8",Language:"sl","Plural-Forms":"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nMatej Urbančič <>, 2022\n"},msgstr:["Last-Translator: Matej Urbančič <>, 2022\nLanguage-Team: Slovenian (https://www.transifex.com/nextcloud/teams/64236/sl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sl\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["še {seconds} sekund"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["še {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["še nekaj sekund"]},Add:{msgid:"Add",msgstr:["Dodaj"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Prekliči pošiljanje"]},"estimating time left":{msgid:"estimating time left",msgstr:["ocenjen čas do konca"]},paused:{msgid:"paused",msgstr:["v premoru"]},"Upload files":{msgid:"Upload files",msgstr:["Pošlji datoteke"]}}}}},{locale:"sl_SI",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Slovenian (Slovenia) (https://www.transifex.com/nextcloud/teams/64236/sl_SI/)","Content-Type":"text/plain; charset=UTF-8",Language:"sl_SI","Plural-Forms":"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Slovenian (Slovenia) (https://www.transifex.com/nextcloud/teams/64236/sl_SI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sl_SI\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"sq",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Albanian (https://www.transifex.com/nextcloud/teams/64236/sq/)","Content-Type":"text/plain; charset=UTF-8",Language:"sq","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Albanian (https://www.transifex.com/nextcloud/teams/64236/sq/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sq\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"sr",json:{charset:"utf-8",headers:{"Last-Translator":"Иван Пешић, 2023","Language-Team":"Serbian (https://app.transifex.com/nextcloud/teams/64236/sr/)","Content-Type":"text/plain; charset=UTF-8",Language:"sr","Plural-Forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nИван Пешић, 2023\n"},msgstr:["Last-Translator: Иван Пешић, 2023\nLanguage-Team: Serbian (https://app.transifex.com/nextcloud/teams/64236/sr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sr\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} фајл конфликт","{count} фајл конфликта","{count} фајл конфликта"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} фајл конфликт у {dirname}","{count} фајл конфликта у {dirname}","{count} фајл конфликта у {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["преостало је {seconds} секунди"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} преостало"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["преостало је неколико секунди"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Обустави отпремања"]},Continue:{msgid:"Continue",msgstr:["Настави"]},"estimating time left":{msgid:"estimating time left",msgstr:["процена преосталог времена"]},"Existing version":{msgid:"Existing version",msgstr:["Постојећа верзија"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Ако изаберете обе верзије, на име копираног фајла ће се додати број."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Није познат датум последње измене"]},New:{msgid:"New",msgstr:["Ново"]},"New version":{msgid:"New version",msgstr:["Нова верзија"]},paused:{msgid:"paused",msgstr:["паузирано"]},"Preview image":{msgid:"Preview image",msgstr:["Слика прегледа"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Штиклирај сва поља за штиклирање"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Изабери све постојеће фајлове"]},"Select all new files":{msgid:"Select all new files",msgstr:["Изабери све нове фајлове"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Прескочи овај фајл","Прескочи {count} фајла","Прескочи {count} фајлова"]},"Unknown size":{msgid:"Unknown size",msgstr:["Непозната величина"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Отпремање је отказано"]},"Upload files":{msgid:"Upload files",msgstr:["Отпреми фајлове"]},"Upload progress":{msgid:"Upload progress",msgstr:["Напредак отпремања"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Које фајлове желите да задржите?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Морате да изаберете барем једну верзију сваког фајла да наставите."]}}}}},{locale:"sr@latin",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Serbian (Latin) (https://www.transifex.com/nextcloud/teams/64236/sr@latin/)","Content-Type":"text/plain; charset=UTF-8",Language:"sr@latin","Plural-Forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Serbian (Latin) (https://www.transifex.com/nextcloud/teams/64236/sr@latin/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sr@latin\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"sv",json:{charset:"utf-8",headers:{"Last-Translator":"Magnus Höglund, 2024","Language-Team":"Swedish (https://app.transifex.com/nextcloud/teams/64236/sv/)","Content-Type":"text/plain; charset=UTF-8",Language:"sv","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nMagnus Höglund, 2024\n"},msgstr:["Last-Translator: Magnus Höglund, 2024\nLanguage-Team: Swedish (https://app.transifex.com/nextcloud/teams/64236/sv/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sv\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} filkonflikt","{count} filkonflikter"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} filkonflikt i {dirname}","{count} filkonflikter i {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} sekunder kvarstår"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} kvarstår"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["några sekunder kvar"]},Cancel:{msgid:"Cancel",msgstr:["Avbryt"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Avbryt hela operationen"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Avbryt uppladdningar"]},Continue:{msgid:"Continue",msgstr:["Fortsätt"]},"estimating time left":{msgid:"estimating time left",msgstr:["uppskattar kvarstående tid"]},"Existing version":{msgid:"Existing version",msgstr:["Nuvarande version"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Om du väljer båda versionerna kommer den kopierade filen att få ett nummer tillagt i namnet."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Senaste ändringsdatum okänt"]},New:{msgid:"New",msgstr:["Ny"]},"New version":{msgid:"New version",msgstr:["Ny version"]},paused:{msgid:"paused",msgstr:["pausad"]},"Preview image":{msgid:"Preview image",msgstr:["Förhandsgranska bild"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Markera alla kryssrutor"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Välj alla befintliga filer"]},"Select all new files":{msgid:"Select all new files",msgstr:["Välj alla nya filer"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Hoppa över denna fil","Hoppa över {count} filer"]},"Unknown size":{msgid:"Unknown size",msgstr:["Okänd storlek"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Uppladdningen avbröts"]},"Upload files":{msgid:"Upload files",msgstr:["Ladda upp filer"]},"Upload progress":{msgid:"Upload progress",msgstr:["Uppladdningsförlopp"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["När en inkommande mapp väljs skrivs även alla konfliktande filer i den över."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Vilka filer vill du behålla?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Du måste välja minst en version av varje fil för att fortsätta."]}}}}},{locale:"sw",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Swahili (https://www.transifex.com/nextcloud/teams/64236/sw/)","Content-Type":"text/plain; charset=UTF-8",Language:"sw","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Swahili (https://www.transifex.com/nextcloud/teams/64236/sw/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sw\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ta",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Tamil (https://www.transifex.com/nextcloud/teams/64236/ta/)","Content-Type":"text/plain; charset=UTF-8",Language:"ta","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Tamil (https://www.transifex.com/nextcloud/teams/64236/ta/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ta\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ta_LK",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Tamil (Sri-Lanka) (https://www.transifex.com/nextcloud/teams/64236/ta_LK/)","Content-Type":"text/plain; charset=UTF-8",Language:"ta_LK","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Tamil (Sri-Lanka) (https://www.transifex.com/nextcloud/teams/64236/ta_LK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ta_LK\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"th",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Thai (https://www.transifex.com/nextcloud/teams/64236/th/)","Content-Type":"text/plain; charset=UTF-8",Language:"th","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Thai (https://www.transifex.com/nextcloud/teams/64236/th/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: th\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"th_TH",json:{charset:"utf-8",headers:{"Last-Translator":"Phongpanot Phairat <ppnplus@protonmail.com>, 2022","Language-Team":"Thai (Thailand) (https://www.transifex.com/nextcloud/teams/64236/th_TH/)","Content-Type":"text/plain; charset=UTF-8",Language:"th_TH","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nPhongpanot Phairat <ppnplus@protonmail.com>, 2022\n"},msgstr:["Last-Translator: Phongpanot Phairat <ppnplus@protonmail.com>, 2022\nLanguage-Team: Thai (Thailand) (https://www.transifex.com/nextcloud/teams/64236/th_TH/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: th_TH\nPlural-Forms: nplurals=1; plural=0;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["เหลืออีก {seconds} วินาที"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["เหลืออีก {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["เหลืออีกไม่กี่วินาที"]},Add:{msgid:"Add",msgstr:["เพิ่ม"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["ยกเลิกการอัปโหลด"]},"estimating time left":{msgid:"estimating time left",msgstr:["กำลังคำนวณเวลาที่เหลือ"]},paused:{msgid:"paused",msgstr:["หยุดชั่วคราว"]},"Upload files":{msgid:"Upload files",msgstr:["อัปโหลดไฟล์"]}}}}},{locale:"tk",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Turkmen (https://www.transifex.com/nextcloud/teams/64236/tk/)","Content-Type":"text/plain; charset=UTF-8",Language:"tk","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Turkmen (https://www.transifex.com/nextcloud/teams/64236/tk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: tk\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"tr",json:{charset:"utf-8",headers:{"Last-Translator":"Kaya Zeren <kayazeren@gmail.com>, 2024","Language-Team":"Turkish (https://app.transifex.com/nextcloud/teams/64236/tr/)","Content-Type":"text/plain; charset=UTF-8",Language:"tr","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nKaya Zeren <kayazeren@gmail.com>, 2024\n"},msgstr:["Last-Translator: Kaya Zeren <kayazeren@gmail.com>, 2024\nLanguage-Team: Turkish (https://app.transifex.com/nextcloud/teams/64236/tr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: tr\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} dosya çakışması var","{count} dosya çakışması var"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{dirname} klasöründe {count} dosya çakışması var","{dirname} klasöründe {count} dosya çakışması var"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} saniye kaldı"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} kaldı"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["bir kaç saniye kaldı"]},Cancel:{msgid:"Cancel",msgstr:["İptal"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Tüm işlemi iptal et"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Yüklemeleri iptal et"]},Continue:{msgid:"Continue",msgstr:["İlerle"]},"estimating time left":{msgid:"estimating time left",msgstr:["öngörülen kalan süre"]},"Existing version":{msgid:"Existing version",msgstr:["Var olan sürüm"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["İki sürümü de seçerseniz, kopyalanan dosyanın adına bir sayı eklenir."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Son değiştirilme tarihi bilinmiyor"]},New:{msgid:"New",msgstr:["Yeni"]},"New version":{msgid:"New version",msgstr:["Yeni sürüm"]},paused:{msgid:"paused",msgstr:["duraklatıldı"]},"Preview image":{msgid:"Preview image",msgstr:["Görsel ön izlemesi"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Tüm kutuları işaretle"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Tüm var olan dosyaları seç"]},"Select all new files":{msgid:"Select all new files",msgstr:["Tüm yeni dosyaları seç"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Bu dosyayı atla","{count} dosyayı atla"]},"Unknown size":{msgid:"Unknown size",msgstr:["Boyut bilinmiyor"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Yükleme iptal edildi"]},"Upload files":{msgid:"Upload files",msgstr:["Dosyaları yükle"]},"Upload progress":{msgid:"Upload progress",msgstr:["Yükleme ilerlemesi"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Bir gelen klasör seçildiğinde, içindeki çakışan dosyaların da üzerine yazılır."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Hangi dosyaları tutmak istiyorsunuz?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["İlerlemek için her dosyanın en az bir sürümünü seçmelisiniz."]}}}}},{locale:"ug",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Uyghur (https://www.transifex.com/nextcloud/teams/64236/ug/)","Content-Type":"text/plain; charset=UTF-8",Language:"ug","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Uyghur (https://www.transifex.com/nextcloud/teams/64236/ug/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ug\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"uk",json:{charset:"utf-8",headers:{"Last-Translator":"O St <oleksiy.stasevych@gmail.com>, 2024","Language-Team":"Ukrainian (https://app.transifex.com/nextcloud/teams/64236/uk/)","Content-Type":"text/plain; charset=UTF-8",Language:"uk","Plural-Forms":"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nO St <oleksiy.stasevych@gmail.com>, 2024\n"},msgstr:["Last-Translator: O St <oleksiy.stasevych@gmail.com>, 2024\nLanguage-Team: Ukrainian (https://app.transifex.com/nextcloud/teams/64236/uk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: uk\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} конфліктний файл","{count} конфліктних файли","{count} конфліктних файлів","{count} конфліктних файлів"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} конфліктний файл у каталозі {dirname}","{count} конфліктних файли у каталозі {dirname}","{count} конфліктних файлів у каталозі {dirname}","{count} конфліктних файлів у каталозі {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["Залишилося {seconds} секунд"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["Залишилося {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["залишилося кілька секунд"]},Cancel:{msgid:"Cancel",msgstr:["Скасувати"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Скасувати операцію повністю"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Скасувати завантаження"]},Continue:{msgid:"Continue",msgstr:["Продовжити"]},"estimating time left":{msgid:"estimating time left",msgstr:["оцінка часу, що залишився"]},"Existing version":{msgid:"Existing version",msgstr:["Присутня версія"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Якщо ви виберете обидві версії, буде створено копію файлу до назви якої буде додано цифру."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Дата останньої зміни невідома"]},New:{msgid:"New",msgstr:["Нове"]},"New version":{msgid:"New version",msgstr:["Нова версія"]},paused:{msgid:"paused",msgstr:["призупинено"]},"Preview image":{msgid:"Preview image",msgstr:["Попередній перегляд"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Вибрати все"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Вибрати всі присутні файли"]},"Select all new files":{msgid:"Select all new files",msgstr:["Виберіть усі нові файли"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Пропустити файл","Пропустити {count} файли","Пропустити {count} файлів","Пропустити {count} файлів"]},"Unknown size":{msgid:"Unknown size",msgstr:["Невідомий розмір"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Завантаження скасовано"]},"Upload files":{msgid:"Upload files",msgstr:["Завантажити файли"]},"Upload progress":{msgid:"Upload progress",msgstr:["Поступ завантаження"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["У разі вибору каталогу призначення, будь-які конфліктні файли в такому каталозі буде перезаписано поверх."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Які файли залишити?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Для продовження потрібно вибрати принаймні одну версію для кожного файлу."]}}}}},{locale:"ur_PK",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Urdu (Pakistan) (https://www.transifex.com/nextcloud/teams/64236/ur_PK/)","Content-Type":"text/plain; charset=UTF-8",Language:"ur_PK","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Urdu (Pakistan) (https://www.transifex.com/nextcloud/teams/64236/ur_PK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ur_PK\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"uz",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Uzbek (https://www.transifex.com/nextcloud/teams/64236/uz/)","Content-Type":"text/plain; charset=UTF-8",Language:"uz","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Uzbek (https://www.transifex.com/nextcloud/teams/64236/uz/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: uz\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"vi",json:{charset:"utf-8",headers:{"Last-Translator":"Tung DangQuang, 2023","Language-Team":"Vietnamese (https://app.transifex.com/nextcloud/teams/64236/vi/)","Content-Type":"text/plain; charset=UTF-8",Language:"vi","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nTung DangQuang, 2023\n"},msgstr:["Last-Translator: Tung DangQuang, 2023\nLanguage-Team: Vietnamese (https://app.transifex.com/nextcloud/teams/64236/vi/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: vi\nPlural-Forms: nplurals=1; plural=0;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} Tập tin xung đột"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} tập tin lỗi trong {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["Còn {second} giây"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["Còn lại {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["Còn lại một vài giây"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Huỷ tải lên"]},Continue:{msgid:"Continue",msgstr:["Tiếp Tục"]},"estimating time left":{msgid:"estimating time left",msgstr:["Thời gian còn lại dự kiến"]},"Existing version":{msgid:"Existing version",msgstr:["Phiên Bản Hiện Tại"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Nếu bạn chọn cả hai phiên bản, tệp được sao chép sẽ có thêm một số vào tên của nó."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Ngày sửa dổi lần cuối không xác định"]},New:{msgid:"New",msgstr:["Tạo Mới"]},"New version":{msgid:"New version",msgstr:["Phiên Bản Mới"]},paused:{msgid:"paused",msgstr:["đã tạm dừng"]},"Preview image":{msgid:"Preview image",msgstr:["Xem Trước Ảnh"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Chọn tất cả hộp checkbox"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Chọn tất cả các tập tin có sẵn"]},"Select all new files":{msgid:"Select all new files",msgstr:["Chọn tất cả các tập tin mới"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Bỏ Qua {count} tập tin"]},"Unknown size":{msgid:"Unknown size",msgstr:["Không rõ dung lượng"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Dừng Tải Lên"]},"Upload files":{msgid:"Upload files",msgstr:["Tập tin tải lên"]},"Upload progress":{msgid:"Upload progress",msgstr:["Đang Tải Lên"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Bạn muốn giữ tập tin nào?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Bạn cần chọn ít nhất một phiên bản tập tin mới có thể tiếp tục"]}}}}},{locale:"zh_CN",json:{charset:"utf-8",headers:{"Last-Translator":"Hongbo Chen, 2023","Language-Team":"Chinese (China) (https://app.transifex.com/nextcloud/teams/64236/zh_CN/)","Content-Type":"text/plain; charset=UTF-8",Language:"zh_CN","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nHongbo Chen, 2023\n"},msgstr:["Last-Translator: Hongbo Chen, 2023\nLanguage-Team: Chinese (China) (https://app.transifex.com/nextcloud/teams/64236/zh_CN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_CN\nPlural-Forms: nplurals=1; plural=0;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count}文件冲突"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["在{dirname}目录下有{count}个文件冲突"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["剩余 {seconds} 秒"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["剩余 {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["还剩几秒"]},Add:{msgid:"Add",msgstr:["添加"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["取消上传"]},Continue:{msgid:"Continue",msgstr:["继续"]},"estimating time left":{msgid:"estimating time left",msgstr:["估计剩余时间"]},"Existing version":{msgid:"Existing version",msgstr:["版本已存在"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["如果选择所有的版本,新增版本的文件名为原文件名加数字"]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["文件最后修改日期未知"]},"New version":{msgid:"New version",msgstr:["新版本"]},paused:{msgid:"paused",msgstr:["已暂停"]},"Preview image":{msgid:"Preview image",msgstr:["图片预览"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["选择所有的选择框"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["选择所有存在的文件"]},"Select all new files":{msgid:"Select all new files",msgstr:["选择所有的新文件"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["跳过{count}个文件"]},"Unknown size":{msgid:"Unknown size",msgstr:["文件大小未知"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["取消上传"]},"Upload files":{msgid:"Upload files",msgstr:["上传文件"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["你要保留哪些文件?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["每个文件至少选择一个版本"]}}}}},{locale:"zh_HK",json:{charset:"utf-8",headers:{"Last-Translator":"Café Tango, 2023","Language-Team":"Chinese (Hong Kong) (https://app.transifex.com/nextcloud/teams/64236/zh_HK/)","Content-Type":"text/plain; charset=UTF-8",Language:"zh_HK","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nCafé Tango, 2023\n"},msgstr:["Last-Translator: Café Tango, 2023\nLanguage-Team: Chinese (Hong Kong) (https://app.transifex.com/nextcloud/teams/64236/zh_HK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_HK\nPlural-Forms: nplurals=1; plural=0;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} 個檔案衝突"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{dirname} 中有 {count} 個檔案衝突"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["剩餘 {seconds} 秒"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["剩餘 {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["還剩幾秒"]},Add:{msgid:"Add",msgstr:["添加"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["取消上傳"]},Continue:{msgid:"Continue",msgstr:["繼續"]},"estimating time left":{msgid:"estimating time left",msgstr:["估計剩餘時間"]},"Existing version":{msgid:"Existing version",msgstr:["既有版本"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["若您選取兩個版本,複製的檔案的名稱將會新增編號。"]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["最後修改日期不詳"]},"New version":{msgid:"New version",msgstr:["新版本 "]},paused:{msgid:"paused",msgstr:["已暫停"]},"Preview image":{msgid:"Preview image",msgstr:["預覽圖片"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["選取所有核取方塊"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["選取所有既有檔案"]},"Select all new files":{msgid:"Select all new files",msgstr:["選取所有新檔案"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["略過 {count} 個檔案"]},"Unknown size":{msgid:"Unknown size",msgstr:["大小不詳"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["已取消上傳"]},"Upload files":{msgid:"Upload files",msgstr:["上傳檔案"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["您想保留哪些檔案?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["您必須為每個檔案都至少選取一個版本以繼續。"]}}}}},{locale:"zh_TW",json:{charset:"utf-8",headers:{"Last-Translator":"黃柏諺 <s8321414@gmail.com>, 2024","Language-Team":"Chinese (Taiwan) (https://app.transifex.com/nextcloud/teams/64236/zh_TW/)","Content-Type":"text/plain; charset=UTF-8",Language:"zh_TW","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\n黃柏諺 <s8321414@gmail.com>, 2024\n"},msgstr:["Last-Translator: 黃柏諺 <s8321414@gmail.com>, 2024\nLanguage-Team: Chinese (Taiwan) (https://app.transifex.com/nextcloud/teams/64236/zh_TW/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_TW\nPlural-Forms: nplurals=1; plural=0;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} 個檔案衝突"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{dirname} 中有 {count} 個檔案衝突"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["剩餘 {seconds} 秒"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["剩餘 {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["還剩幾秒"]},Cancel:{msgid:"Cancel",msgstr:["取消"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["取消整個操作"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["取消上傳"]},Continue:{msgid:"Continue",msgstr:["繼續"]},"estimating time left":{msgid:"estimating time left",msgstr:["估計剩餘時間"]},"Existing version":{msgid:"Existing version",msgstr:["既有版本"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["若您選取兩個版本,複製的檔案的名稱將會新增編號。"]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["最後修改日期未知"]},New:{msgid:"New",msgstr:["新增"]},"New version":{msgid:"New version",msgstr:["新版本"]},paused:{msgid:"paused",msgstr:["已暫停"]},"Preview image":{msgid:"Preview image",msgstr:["預覽圖片"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["選取所有核取方塊"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["選取所有既有檔案"]},"Select all new files":{msgid:"Select all new files",msgstr:["選取所有新檔案"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["略過 {count} 檔案"]},"Unknown size":{msgid:"Unknown size",msgstr:["未知大小"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["已取消上傳"]},"Upload files":{msgid:"Upload files",msgstr:["上傳檔案"]},"Upload progress":{msgid:"Upload progress",msgstr:["上傳進度"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["選取傳入資料夾後,其中任何的衝突檔案都會被覆寫。"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["您想保留哪些檔案?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["您必須為每個檔案都至少選取一個版本以繼續。"]}}}}}].map((t=>ot.addTranslation(t.locale,t.json)));const at=ot.build(),lt=at.ngettext.bind(at),ct=at.gettext.bind(at),dt=j.Ay.extend({name:"UploadPicker",components:{Cancel:st,NcActionButton:z.A,NcActions:M.A,NcButton:R.A,NcIconSvgWrapper:V.A,NcProgressBar:$.A,Plus:it,Upload:rt},props:{accept:{type:Array,default:null},disabled:{type:Boolean,default:!1},multiple:{type:Boolean,default:!1},destination:{type:w.vd,default:void 0},content:{type:Array,default:()=>[]},forbiddenCharacters:{type:Array,default:()=>[]}},data:()=>({addLabel:ct("New"),cancelLabel:ct("Cancel uploads"),uploadLabel:ct("Upload files"),progressLabel:ct("Upload progress"),progressTimeId:`nc-uploader-progress-${Math.random().toString(36).slice(7)}`,eta:null,timeLeft:"",newFileMenuEntries:[],uploadManager:pt()}),computed:{totalQueueSize(){return this.uploadManager.info?.size||0},uploadedQueueSize(){return this.uploadManager.info?.progress||0},progress(){return Math.round(this.uploadedQueueSize/this.totalQueueSize*100)||0},queue(){return this.uploadManager.queue},hasFailure(){return 0!==this.queue?.filter((t=>t.status===Q.FAILED)).length},isUploading(){return this.queue?.length>0},isAssembling(){return 0!==this.queue?.filter((t=>t.status===Q.ASSEMBLING)).length},isPaused(){return this.uploadManager.info?.status===tt.PAUSED},buttonName(){if(!this.isUploading)return this.addLabel}},watch:{destination(t){this.setDestination(t)},totalQueueSize(t){this.eta=U({min:0,max:t}),this.updateStatus()},uploadedQueueSize(t){this.eta?.report?.(t),this.updateStatus()},isPaused(t){t?this.$emit("paused",this.queue):this.$emit("resumed",this.queue)}},beforeMount(){this.destination&&this.setDestination(this.destination),this.uploadManager.addNotifier(this.onUploadCompletion),J.debug("UploadPicker initialised")},methods:{onClick(){this.$refs.input.click()},async onPick(){let t=[...this.$refs.input.files];if(gt(t,this.content)){const e=t.filter((t=>this.content.find((e=>e.basename===t.name)))).filter(Boolean),n=t.filter((t=>!e.includes(t)));try{const{selected:s,renamed:i}=await ft(this.destination.basename,e,this.content);t=[...n,...s,...i]}catch{return void(0,D.Qg)(ct("Upload cancelled"))}}t.forEach((t=>{const e=(this.forbiddenCharacters||[]).find((e=>t.name.includes(e)));e?(0,D.Qg)(ct(`"${e}" is not allowed inside a file name.`)):this.uploadManager.upload(t.name,t).catch((()=>{}))})),this.$refs.form.reset()},onCancel(){this.uploadManager.queue.forEach((t=>{t.cancel()})),this.$refs.form.reset()},updateStatus(){if(this.isPaused)return void(this.timeLeft=ct("paused"));const t=Math.round(this.eta.estimate());if(t!==1/0)if(t<10)this.timeLeft=ct("a few seconds left");else if(t>60){const e=new Date(0);e.setSeconds(t);const n=e.toISOString().slice(11,19);this.timeLeft=ct("{time} left",{time:n})}else this.timeLeft=ct("{seconds} seconds left",{seconds:t});else this.timeLeft=ct("estimating time left")},setDestination(t){this.destination?(this.uploadManager.destination=t,this.newFileMenuEntries=(0,w.m1)(t)):J.debug("Invalid destination")},onUploadCompletion(t){t.status===Q.FAILED?this.$emit("failed",t):this.$emit("uploaded",t)}}}),ut=nt(dt,(function(){var t=this,e=t._self._c;return t._self._setupProxy,t.destination?e("form",{ref:"form",staticClass:"upload-picker",class:{"upload-picker--uploading":t.isUploading,"upload-picker--paused":t.isPaused},attrs:{"data-cy-upload-picker":""}},[t.newFileMenuEntries&&0===t.newFileMenuEntries.length?e("NcButton",{attrs:{disabled:t.disabled,"data-cy-upload-picker-add":"",type:"secondary"},on:{click:t.onClick},scopedSlots:t._u([{key:"icon",fn:function(){return[e("Plus",{attrs:{title:"",size:20,decorative:""}})]},proxy:!0}],null,!1,2954875042)},[t._v(" "+t._s(t.buttonName)+" ")]):e("NcActions",{attrs:{"menu-name":t.buttonName,"menu-title":t.addLabel,type:"secondary"},scopedSlots:t._u([{key:"icon",fn:function(){return[e("Plus",{attrs:{title:"",size:20,decorative:""}})]},proxy:!0}],null,!1,2954875042)},[e("NcActionButton",{attrs:{"data-cy-upload-picker-add":"","close-after-click":!0},on:{click:t.onClick},scopedSlots:t._u([{key:"icon",fn:function(){return[e("Upload",{attrs:{title:"",size:20,decorative:""}})]},proxy:!0}],null,!1,3606034491)},[t._v(" "+t._s(t.uploadLabel)+" ")]),t._l(t.newFileMenuEntries,(function(n){return e("NcActionButton",{key:n.id,staticClass:"upload-picker__menu-entry",attrs:{icon:n.iconClass,"close-after-click":!0},on:{click:function(e){return n.handler(t.destination,t.content)}},scopedSlots:t._u([n.iconSvgInline?{key:"icon",fn:function(){return[e("NcIconSvgWrapper",{attrs:{svg:n.iconSvgInline}})]},proxy:!0}:null],null,!0)},[t._v(" "+t._s(n.displayName)+" ")])}))],2),e("div",{directives:[{name:"show",rawName:"v-show",value:t.isUploading,expression:"isUploading"}],staticClass:"upload-picker__progress"},[e("NcProgressBar",{attrs:{"aria-label":t.progressLabel,"aria-describedby":t.progressTimeId,error:t.hasFailure,value:t.progress,size:"medium"}}),e("p",{attrs:{id:t.progressTimeId}},[t._v(" "+t._s(t.timeLeft)+" ")])],1),t.isUploading?e("NcButton",{staticClass:"upload-picker__cancel",attrs:{type:"tertiary","aria-label":t.cancelLabel,"data-cy-upload-picker-cancel":""},on:{click:t.onCancel},scopedSlots:t._u([{key:"icon",fn:function(){return[e("Cancel",{attrs:{title:"",size:20}})]},proxy:!0}],null,!1,4076886712)}):t._e(),e("input",{directives:[{name:"show",rawName:"v-show",value:!1,expression:"false"}],ref:"input",attrs:{type:"file",accept:t.accept?.join?.(", "),multiple:t.multiple,"data-cy-upload-picker-input":""},on:{change:t.onPick}})],1):t._e()}),[],!1,null,"eca9500a",null,null).exports;let mt=null;function pt(){const t=null!==document.querySelector('input[name="isPublic"][value="1"]');return mt instanceof et||(mt=new et(t)),mt}async function ft(t,e,s){const i=(0,j.$V)((()=>Promise.all([n.e(4208),n.e(3841)]).then(n.bind(n,33841))));return new Promise(((n,r)=>{const o=new j.Ay({name:"ConflictPickerRoot",render:a=>a(i,{props:{dirname:t,conflicts:e,content:s},on:{submit(t){n(t),o.$destroy(),o.$el?.parentNode?.removeChild(o.$el)},cancel(t){r(t??new Error("Canceled")),o.$destroy(),o.$el?.parentNode?.removeChild(o.$el)}}})});o.$mount(),document.body.appendChild(o.$el)}))}function gt(t,e){const n=e.map((t=>t.basename));return t.filter((t=>{const e=t instanceof File?t.name:t.basename;return-1!==n.indexOf(e)})).length>0}},88164:(t,e,n)=>{"use strict";n.d(e,{Jv:()=>r,dC:()=>s});const s=(t,e)=>{var n;return(null!=(n=null==e?void 0:e.baseURL)?n:o())+(t=>"/remote.php/"+t)(t)},i=(t,e,n)=>{const s=Object.assign({escape:!0},n||{});return"/"!==t.charAt(0)&&(t="/"+t),i=(i=e||{})||{},t.replace(/{([^{}]*)}/g,(function(t,e){const n=i[e];return s.escape?encodeURIComponent("string"==typeof n||"number"==typeof n?n.toString():t):"string"==typeof n||"number"==typeof n?n.toString():t}));var i},r=(t,e,n)=>{var s,r,o;const l=Object.assign({noRewrite:!1},n||{}),c=null!=(s=null==n?void 0:n.baseURL)?s:a();return!0!==(null==(o=null==(r=null==window?void 0:window.OC)?void 0:r.config)?void 0:o.modRewriteWorking)||l.noRewrite?c+"/index.php"+i(t,e,n):c+i(t,e,n)},o=()=>window.location.protocol+"//"+window.location.host+a();function a(){let t=window._oc_webroot;if(typeof t>"u"){t=location.pathname;const e=t.indexOf("/index.php/");if(-1!==e)t=t.slice(0,e);else{const e=t.indexOf("/",1);t=t.slice(0,e>0?e:void 0)}}return t}},53110:(t,e,n)=>{"use strict";n.d(e,{k3:()=>o,pe:()=>r});var s=n(28893);const{Axios:i,AxiosError:r,CanceledError:o,isCancel:a,CancelToken:l,VERSION:c,all:d,Cancel:u,isAxiosError:m,spread:p,toFormData:f,AxiosHeaders:g,HttpStatusCode:h,formToJSON:v,getAdapter:A,mergeConfig:w}=s.A}},r={};function o(t){var e=r[t];if(void 0!==e)return e.exports;var n=r[t]={id:t,loaded:!1,exports:{}};return i[t].call(n.exports,n,n.exports,o),n.loaded=!0,n.exports}o.m=i,e=[],o.O=(t,n,s,i)=>{if(!n){var r=1/0;for(d=0;d<e.length;d++){n=e[d][0],s=e[d][1],i=e[d][2];for(var a=!0,l=0;l<n.length;l++)(!1&i||r>=i)&&Object.keys(o.O).every((t=>o.O[t](n[l])))?n.splice(l--,1):(a=!1,i<r&&(r=i));if(a){e.splice(d--,1);var c=s();void 0!==c&&(t=c)}}return t}i=i||0;for(var d=e.length;d>0&&e[d-1][2]>i;d--)e[d]=e[d-1];e[d]=[n,s,i]},o.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return o.d(e,{a:e}),e},o.d=(t,e)=>{for(var n in e)o.o(e,n)&&!o.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},o.f={},o.e=t=>Promise.all(Object.keys(o.f).reduce(((e,n)=>(o.f[n](t,e),e)),[])),o.u=t=>t+"-"+t+".js?v="+{1359:"08b2abcca7c808677f1a",3841:"f24f37909b9ea1a5c604",8618:"1e8f15db3b14455fef8f"}[t],o.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),o.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),n={},s="nextcloud:",o.l=(t,e,i,r)=>{if(n[t])n[t].push(e);else{var a,l;if(void 0!==i)for(var c=document.getElementsByTagName("script"),d=0;d<c.length;d++){var u=c[d];if(u.getAttribute("src")==t||u.getAttribute("data-webpack")==s+i){a=u;break}}a||(l=!0,(a=document.createElement("script")).charset="utf-8",a.timeout=120,o.nc&&a.setAttribute("nonce",o.nc),a.setAttribute("data-webpack",s+i),a.src=t),n[t]=[e];var m=(e,s)=>{a.onerror=a.onload=null,clearTimeout(p);var i=n[t];if(delete n[t],a.parentNode&&a.parentNode.removeChild(a),i&&i.forEach((t=>t(s))),e)return e(s)},p=setTimeout(m.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=m.bind(null,a.onerror),a.onload=m.bind(null,a.onload),l&&document.head.appendChild(a)}},o.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},o.nmd=t=>(t.paths=[],t.children||(t.children=[]),t),o.j=2882,(()=>{var t;o.g.importScripts&&(t=o.g.location+"");var e=o.g.document;if(!t&&e&&(e.currentScript&&(t=e.currentScript.src),!t)){var n=e.getElementsByTagName("script");if(n.length)for(var s=n.length-1;s>-1&&(!t||!/^http(s?):/.test(t));)t=n[s--].src}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),o.p=t})(),(()=>{o.b=document.baseURI||self.location.href;var t={2882:0};o.f.j=(e,n)=>{var s=o.o(t,e)?t[e]:void 0;if(0!==s)if(s)n.push(s[2]);else{var i=new Promise(((n,i)=>s=t[e]=[n,i]));n.push(s[2]=i);var r=o.p+o.u(e),a=new Error;o.l(r,(n=>{if(o.o(t,e)&&(0!==(s=t[e])&&(t[e]=void 0),s)){var i=n&&("load"===n.type?"missing":n.type),r=n&&n.target&&n.target.src;a.message="Loading chunk "+e+" failed.\n("+i+": "+r+")",a.name="ChunkLoadError",a.type=i,a.request=r,s[1](a)}}),"chunk-"+e,e)}},o.O.j=e=>0===t[e];var e=(e,n)=>{var s,i,r=n[0],a=n[1],l=n[2],c=0;if(r.some((e=>0!==t[e]))){for(s in a)o.o(a,s)&&(o.m[s]=a[s]);if(l)var d=l(o)}for(e&&e(n);c<r.length;c++)i=r[c],o.o(t,i)&&t[i]&&t[i][0](),t[i]=0;return o.O(d)},n=self.webpackChunknextcloud=self.webpackChunknextcloud||[];n.forEach(e.bind(null,0)),n.push=e.bind(null,n.push.bind(n))})(),o.nc=void 0;var a=o.O(void 0,[4208],(()=>o(94782)));a=o.O(a)})();
-//# sourceMappingURL=files-main.js.map?v=b1c8858b86ed94383150 \ No newline at end of file
+(()=>{var e,n,s,i={9052:t=>{"use strict";var e=Object.prototype.hasOwnProperty,n="~";function s(){}function i(t,e,n){this.fn=t,this.context=e,this.once=n||!1}function r(t,e,s,r,o){if("function"!=typeof s)throw new TypeError("The listener must be a function");var a=new i(s,r||t,o),l=n?n+e:e;return t._events[l]?t._events[l].fn?t._events[l]=[t._events[l],a]:t._events[l].push(a):(t._events[l]=a,t._eventsCount++),t}function o(t,e){0==--t._eventsCount?t._events=new s:delete t._events[e]}function a(){this._events=new s,this._eventsCount=0}Object.create&&(s.prototype=Object.create(null),(new s).__proto__||(n=!1)),a.prototype.eventNames=function(){var t,s,i=[];if(0===this._eventsCount)return i;for(s in t=this._events)e.call(t,s)&&i.push(n?s.slice(1):s);return Object.getOwnPropertySymbols?i.concat(Object.getOwnPropertySymbols(t)):i},a.prototype.listeners=function(t){var e=n?n+t:t,s=this._events[e];if(!s)return[];if(s.fn)return[s.fn];for(var i=0,r=s.length,o=new Array(r);i<r;i++)o[i]=s[i].fn;return o},a.prototype.listenerCount=function(t){var e=n?n+t:t,s=this._events[e];return s?s.fn?1:s.length:0},a.prototype.emit=function(t,e,s,i,r,o){var a=n?n+t:t;if(!this._events[a])return!1;var l,c,d=this._events[a],u=arguments.length;if(d.fn){switch(d.once&&this.removeListener(t,d.fn,void 0,!0),u){case 1:return d.fn.call(d.context),!0;case 2:return d.fn.call(d.context,e),!0;case 3:return d.fn.call(d.context,e,s),!0;case 4:return d.fn.call(d.context,e,s,i),!0;case 5:return d.fn.call(d.context,e,s,i,r),!0;case 6:return d.fn.call(d.context,e,s,i,r,o),!0}for(c=1,l=new Array(u-1);c<u;c++)l[c-1]=arguments[c];d.fn.apply(d.context,l)}else{var m,p=d.length;for(c=0;c<p;c++)switch(d[c].once&&this.removeListener(t,d[c].fn,void 0,!0),u){case 1:d[c].fn.call(d[c].context);break;case 2:d[c].fn.call(d[c].context,e);break;case 3:d[c].fn.call(d[c].context,e,s);break;case 4:d[c].fn.call(d[c].context,e,s,i);break;default:if(!l)for(m=1,l=new Array(u-1);m<u;m++)l[m-1]=arguments[m];d[c].fn.apply(d[c].context,l)}}return!0},a.prototype.on=function(t,e,n){return r(this,t,e,n,!1)},a.prototype.once=function(t,e,n){return r(this,t,e,n,!0)},a.prototype.removeListener=function(t,e,s,i){var r=n?n+t:t;if(!this._events[r])return this;if(!e)return o(this,r),this;var a=this._events[r];if(a.fn)a.fn!==e||i&&!a.once||s&&a.context!==s||o(this,r);else{for(var l=0,c=[],d=a.length;l<d;l++)(a[l].fn!==e||i&&!a[l].once||s&&a[l].context!==s)&&c.push(a[l]);c.length?this._events[r]=1===c.length?c[0]:c:o(this,r)}return this},a.prototype.removeAllListeners=function(t){var e;return t?(e=n?n+t:t,this._events[e]&&o(this,e)):(this._events=new s,this._eventsCount=0),this},a.prototype.off=a.prototype.removeListener,a.prototype.addListener=a.prototype.on,a.prefixed=n,a.EventEmitter=a,t.exports=a},80809:(e,n,s)=>{"use strict";var i={};s.r(i),s.d(i,{exclude:()=>Pt,extract:()=>Et,parse:()=>St,parseUrl:()=>Nt,pick:()=>Ft,stringify:()=>Lt,stringifyUrl:()=>It});var r=s(85471),o=!0;function a(){return"undefined"!=typeof navigator&&"undefined"!=typeof window?window:"undefined"!=typeof globalThis?globalThis:{}}r.Ay.util.warn;const l="function"==typeof Proxy,c="devtools-plugin:setup";let d,u;class m{constructor(t,e){this.target=null,this.targetQueue=[],this.onQueue=[],this.plugin=t,this.hook=e;const n={};if(t.settings)for(const e in t.settings){const s=t.settings[e];n[e]=s.defaultValue}const s=`__vue-devtools-plugin-settings__${t.id}`;let i=Object.assign({},n);try{const t=localStorage.getItem(s),e=JSON.parse(t);Object.assign(i,e)}catch(t){}this.fallbacks={getSettings:()=>i,setSettings(t){try{localStorage.setItem(s,JSON.stringify(t))}catch(t){}i=t},now:()=>{return void 0!==d||("undefined"!=typeof window&&window.performance?(d=!0,u=window.performance):"undefined"!=typeof globalThis&&(null===(t=globalThis.perf_hooks)||void 0===t?void 0:t.performance)?(d=!0,u=globalThis.perf_hooks.performance):d=!1),d?u.now():Date.now();var t}},e&&e.on("plugin:settings:set",((t,e)=>{t===this.plugin.id&&this.fallbacks.setSettings(e)})),this.proxiedOn=new Proxy({},{get:(t,e)=>this.target?this.target.on[e]:(...t)=>{this.onQueue.push({method:e,args:t})}}),this.proxiedTarget=new Proxy({},{get:(t,e)=>this.target?this.target[e]:"on"===e?this.proxiedOn:Object.keys(this.fallbacks).includes(e)?(...t)=>(this.targetQueue.push({method:e,args:t,resolve:()=>{}}),this.fallbacks[e](...t)):(...t)=>new Promise((n=>{this.targetQueue.push({method:e,args:t,resolve:n})}))})}async setRealTarget(t){this.target=t;for(const t of this.onQueue)this.target.on[t.method](...t.args);for(const t of this.targetQueue)t.resolve(await this.target[t.method](...t.args))}}function p(t,e){const n=t,s=a(),i=a().__VUE_DEVTOOLS_GLOBAL_HOOK__,r=l&&n.enableEarlyProxy;if(!i||!s.__VUE_DEVTOOLS_PLUGIN_API_AVAILABLE__&&r){const t=r?new m(n,i):null;(s.__VUE_DEVTOOLS_PLUGINS__=s.__VUE_DEVTOOLS_PLUGINS__||[]).push({pluginDescriptor:n,setupFn:e,proxy:t}),t&&e(t.proxiedTarget)}else i.emit(c,t,e)}var f=s(96763);let g;const h=t=>g=t,v=Symbol();function A(t){return t&&"object"==typeof t&&"[object Object]"===Object.prototype.toString.call(t)&&"function"!=typeof t.toJSON}var w;!function(t){t.direct="direct",t.patchObject="patch object",t.patchFunction="patch function"}(w||(w={}));const y="undefined"!=typeof window,b="undefined"!=typeof __VUE_PROD_DEVTOOLS__&&__VUE_PROD_DEVTOOLS__&&y,C=(()=>"object"==typeof window&&window.window===window?window:"object"==typeof self&&self.self===self?self:"object"==typeof global&&global.global===global?global:"object"==typeof globalThis?globalThis:{HTMLElement:null})();function x(t,e,n){const s=new XMLHttpRequest;s.open("GET",t),s.responseType="blob",s.onload=function(){S(s.response,e,n)},s.onerror=function(){f.error("could not download file")},s.send()}function _(t){const e=new XMLHttpRequest;e.open("HEAD",t,!1);try{e.send()}catch(t){}return e.status>=200&&e.status<=299}function T(t){try{t.dispatchEvent(new MouseEvent("click"))}catch(e){const n=document.createEvent("MouseEvents");n.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),t.dispatchEvent(n)}}const k="object"==typeof navigator?navigator:{userAgent:""},E=(()=>/Macintosh/.test(k.userAgent)&&/AppleWebKit/.test(k.userAgent)&&!/Safari/.test(k.userAgent))(),S=y?"undefined"!=typeof HTMLAnchorElement&&"download"in HTMLAnchorElement.prototype&&!E?function(t,e="download",n){const s=document.createElement("a");s.download=e,s.rel="noopener","string"==typeof t?(s.href=t,s.origin!==location.origin?_(s.href)?x(t,e,n):(s.target="_blank",T(s)):T(s)):(s.href=URL.createObjectURL(t),setTimeout((function(){URL.revokeObjectURL(s.href)}),4e4),setTimeout((function(){T(s)}),0))}:"msSaveOrOpenBlob"in k?function(t,e="download",n){if("string"==typeof t)if(_(t))x(t,e,n);else{const e=document.createElement("a");e.href=t,e.target="_blank",setTimeout((function(){T(e)}))}else navigator.msSaveOrOpenBlob(function(t,{autoBom:e=!1}={}){return e&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(t.type)?new Blob([String.fromCharCode(65279),t],{type:t.type}):t}(t,n),e)}:function(t,e,n,s){if((s=s||open("","_blank"))&&(s.document.title=s.document.body.innerText="downloading..."),"string"==typeof t)return x(t,e,n);const i="application/octet-stream"===t.type,r=/constructor/i.test(String(C.HTMLElement))||"safari"in C,o=/CriOS\/[\d]+/.test(navigator.userAgent);if((o||i&&r||E)&&"undefined"!=typeof FileReader){const e=new FileReader;e.onloadend=function(){let t=e.result;if("string"!=typeof t)throw s=null,new Error("Wrong reader.result type");t=o?t:t.replace(/^data:[^;]*;/,"data:attachment/file;"),s?s.location.href=t:location.assign(t),s=null},e.readAsDataURL(t)}else{const e=URL.createObjectURL(t);s?s.location.assign(e):location.href=e,s=null,setTimeout((function(){URL.revokeObjectURL(e)}),4e4)}}:()=>{};function L(t,e){const n="🍍 "+t;"function"==typeof __VUE_DEVTOOLS_TOAST__?__VUE_DEVTOOLS_TOAST__(n,e):"error"===e?f.error(n):"warn"===e?f.warn(n):f.log(n)}function N(t){return"_a"in t&&"install"in t}function I(){if(!("clipboard"in navigator))return L("Your browser doesn't support the Clipboard API","error"),!0}function F(t){return!!(t instanceof Error&&t.message.toLowerCase().includes("document is not focused"))&&(L('You need to activate the "Emulate a focused page" setting in the "Rendering" panel of devtools.',"warn"),!0)}let P;function B(t,e){for(const n in e){const s=t.state.value[n];s?Object.assign(s,e[n]):t.state.value[n]=e[n]}}function O(t){return{_custom:{display:t}}}const D="🍍 Pinia (root)",U="_root";function j(t){return N(t)?{id:U,label:D}:{id:t.$id,label:t.$id}}function z(t){return t?Array.isArray(t)?t.reduce(((t,e)=>(t.keys.push(e.key),t.operations.push(e.type),t.oldValue[e.key]=e.oldValue,t.newValue[e.key]=e.newValue,t)),{oldValue:{},keys:[],operations:[],newValue:{}}):{operation:O(t.type),key:O(t.key),oldValue:t.oldValue,newValue:t.newValue}:{}}function M(t){switch(t){case w.direct:return"mutation";case w.patchFunction:case w.patchObject:return"$patch";default:return"unknown"}}let R=!0;const V=[],$="pinia:mutations",q="pinia",{assign:H}=Object,W=t=>"🍍 "+t;function G(t,e){p({id:"dev.esm.pinia",label:"Pinia 🍍",logo:"https://pinia.vuejs.org/logo.svg",packageName:"pinia",homepage:"https://pinia.vuejs.org",componentStateTypes:V,app:t},(n=>{"function"!=typeof n.now&&L("You seem to be using an outdated version of Vue Devtools. Are you still using the Beta release instead of the stable one? You can find the links at https://devtools.vuejs.org/guide/installation.html."),n.addTimelineLayer({id:$,label:"Pinia 🍍",color:15064968}),n.addInspector({id:q,label:"Pinia 🍍",icon:"storage",treeFilterPlaceholder:"Search stores",actions:[{icon:"content_copy",action:()=>{!async function(t){if(!I())try{await navigator.clipboard.writeText(JSON.stringify(t.state.value)),L("Global state copied to clipboard.")}catch(t){if(F(t))return;L("Failed to serialize the state. Check the console for more details.","error"),f.error(t)}}(e)},tooltip:"Serialize and copy the state"},{icon:"content_paste",action:async()=>{await async function(t){if(!I())try{B(t,JSON.parse(await navigator.clipboard.readText())),L("Global state pasted from clipboard.")}catch(t){if(F(t))return;L("Failed to deserialize the state from clipboard. Check the console for more details.","error"),f.error(t)}}(e),n.sendInspectorTree(q),n.sendInspectorState(q)},tooltip:"Replace the state with the content of your clipboard"},{icon:"save",action:()=>{!async function(t){try{S(new Blob([JSON.stringify(t.state.value)],{type:"text/plain;charset=utf-8"}),"pinia-state.json")}catch(t){L("Failed to export the state as JSON. Check the console for more details.","error"),f.error(t)}}(e)},tooltip:"Save the state as a JSON file"},{icon:"folder_open",action:async()=>{await async function(t){try{const e=(P||(P=document.createElement("input"),P.type="file",P.accept=".json"),function(){return new Promise(((t,e)=>{P.onchange=async()=>{const e=P.files;if(!e)return t(null);const n=e.item(0);return t(n?{text:await n.text(),file:n}:null)},P.oncancel=()=>t(null),P.onerror=e,P.click()}))}),n=await e();if(!n)return;const{text:s,file:i}=n;B(t,JSON.parse(s)),L(`Global state imported from "${i.name}".`)}catch(t){L("Failed to import the state from JSON. Check the console for more details.","error"),f.error(t)}}(e),n.sendInspectorTree(q),n.sendInspectorState(q)},tooltip:"Import the state from a JSON file"}],nodeActions:[{icon:"restore",tooltip:'Reset the state (with "$reset")',action:t=>{const n=e._s.get(t);n?"function"!=typeof n.$reset?L(`Cannot reset "${t}" store because it doesn't have a "$reset" method implemented.`,"warn"):(n.$reset(),L(`Store "${t}" reset.`)):L(`Cannot reset "${t}" store because it wasn't found.`,"warn")}}]}),n.on.inspectComponent(((t,e)=>{const n=t.componentInstance&&t.componentInstance.proxy;if(n&&n._pStores){const e=t.componentInstance.proxy._pStores;Object.values(e).forEach((e=>{t.instanceData.state.push({type:W(e.$id),key:"state",editable:!0,value:e._isOptionsAPI?{_custom:{value:(0,r.ux)(e.$state),actions:[{icon:"restore",tooltip:"Reset the state of this store",action:()=>e.$reset()}]}}:Object.keys(e.$state).reduce(((t,n)=>(t[n]=e.$state[n],t)),{})}),e._getters&&e._getters.length&&t.instanceData.state.push({type:W(e.$id),key:"getters",editable:!1,value:e._getters.reduce(((t,n)=>{try{t[n]=e[n]}catch(e){t[n]=e}return t}),{})})}))}})),n.on.getInspectorTree((n=>{if(n.app===t&&n.inspectorId===q){let t=[e];t=t.concat(Array.from(e._s.values())),n.rootNodes=(n.filter?t.filter((t=>"$id"in t?t.$id.toLowerCase().includes(n.filter.toLowerCase()):D.toLowerCase().includes(n.filter.toLowerCase()))):t).map(j)}})),n.on.getInspectorState((n=>{if(n.app===t&&n.inspectorId===q){const t=n.nodeId===U?e:e._s.get(n.nodeId);if(!t)return;t&&(n.state=function(t){if(N(t)){const e=Array.from(t._s.keys()),n=t._s,s={state:e.map((e=>({editable:!0,key:e,value:t.state.value[e]}))),getters:e.filter((t=>n.get(t)._getters)).map((t=>{const e=n.get(t);return{editable:!1,key:t,value:e._getters.reduce(((t,n)=>(t[n]=e[n],t)),{})}}))};return s}const e={state:Object.keys(t.$state).map((e=>({editable:!0,key:e,value:t.$state[e]})))};return t._getters&&t._getters.length&&(e.getters=t._getters.map((e=>({editable:!1,key:e,value:t[e]})))),t._customProperties.size&&(e.customProperties=Array.from(t._customProperties).map((e=>({editable:!0,key:e,value:t[e]})))),e}(t))}})),n.on.editInspectorState(((n,s)=>{if(n.app===t&&n.inspectorId===q){const t=n.nodeId===U?e:e._s.get(n.nodeId);if(!t)return L(`store "${n.nodeId}" not found`,"error");const{path:s}=n;N(t)?s.unshift("state"):1===s.length&&t._customProperties.has(s[0])&&!(s[0]in t.$state)||s.unshift("$state"),R=!1,n.set(t,s,n.state.value),R=!0}})),n.on.editComponentState((t=>{if(t.type.startsWith("🍍")){const n=t.type.replace(/^🍍\s*/,""),s=e._s.get(n);if(!s)return L(`store "${n}" not found`,"error");const{path:i}=t;if("state"!==i[0])return L(`Invalid path for store "${n}":\n${i}\nOnly state can be modified.`);i[0]="$state",R=!1,t.set(s,i,t.state.value),R=!0}}))}))}let Y,K=0;function Q(t,e,n){const s=e.reduce(((e,n)=>(e[n]=(0,r.ux)(t)[n],e)),{});for(const e in s)t[e]=function(){const i=K,r=n?new Proxy(t,{get:(...t)=>(Y=i,Reflect.get(...t)),set:(...t)=>(Y=i,Reflect.set(...t))}):t;Y=i;const o=s[e].apply(r,arguments);return Y=void 0,o}}function X({app:t,store:e,options:n}){if(e.$id.startsWith("__hot:"))return;e._isOptionsAPI=!!n.state,Q(e,Object.keys(n.actions),e._isOptionsAPI);const s=e._hotUpdate;(0,r.ux)(e)._hotUpdate=function(t){s.apply(this,arguments),Q(e,Object.keys(t._hmrPayload.actions),!!e._isOptionsAPI)},function(t,e){V.includes(W(e.$id))||V.push(W(e.$id)),p({id:"dev.esm.pinia",label:"Pinia 🍍",logo:"https://pinia.vuejs.org/logo.svg",packageName:"pinia",homepage:"https://pinia.vuejs.org",componentStateTypes:V,app:t,settings:{logStoreChanges:{label:"Notify about new/deleted stores",type:"boolean",defaultValue:!0}}},(t=>{const n="function"==typeof t.now?t.now.bind(t):Date.now;e.$onAction((({after:s,onError:i,name:r,args:o})=>{const a=K++;t.addTimelineEvent({layerId:$,event:{time:n(),title:"🛫 "+r,subtitle:"start",data:{store:O(e.$id),action:O(r),args:o},groupId:a}}),s((s=>{Y=void 0,t.addTimelineEvent({layerId:$,event:{time:n(),title:"🛬 "+r,subtitle:"end",data:{store:O(e.$id),action:O(r),args:o,result:s},groupId:a}})})),i((s=>{Y=void 0,t.addTimelineEvent({layerId:$,event:{time:n(),logType:"error",title:"💥 "+r,subtitle:"end",data:{store:O(e.$id),action:O(r),args:o,error:s},groupId:a}})}))}),!0),e._customProperties.forEach((s=>{(0,r.wB)((()=>(0,r.R1)(e[s])),((e,i)=>{t.notifyComponentUpdate(),t.sendInspectorState(q),R&&t.addTimelineEvent({layerId:$,event:{time:n(),title:"Change",subtitle:s,data:{newValue:e,oldValue:i},groupId:Y}})}),{deep:!0})})),e.$subscribe((({events:s,type:i},r)=>{if(t.notifyComponentUpdate(),t.sendInspectorState(q),!R)return;const o={time:n(),title:M(i),data:H({store:O(e.$id)},z(s)),groupId:Y};i===w.patchFunction?o.subtitle="⤵️":i===w.patchObject?o.subtitle="🧩":s&&!Array.isArray(s)&&(o.subtitle=s.type),s&&(o.data["rawEvent(s)"]={_custom:{display:"DebuggerEvent",type:"object",tooltip:"raw DebuggerEvent[]",value:s}}),t.addTimelineEvent({layerId:$,event:o})}),{detached:!0,flush:"sync"});const s=e._hotUpdate;e._hotUpdate=(0,r.IG)((i=>{s(i),t.addTimelineEvent({layerId:$,event:{time:n(),title:"🔥 "+e.$id,subtitle:"HMR update",data:{store:O(e.$id),info:O("HMR update")}}}),t.notifyComponentUpdate(),t.sendInspectorTree(q),t.sendInspectorState(q)}));const{$dispose:i}=e;e.$dispose=()=>{i(),t.notifyComponentUpdate(),t.sendInspectorTree(q),t.sendInspectorState(q),t.getSettings().logStoreChanges&&L(`Disposed "${e.$id}" store 🗑`)},t.notifyComponentUpdate(),t.sendInspectorTree(q),t.sendInspectorState(q),t.getSettings().logStoreChanges&&L(`"${e.$id}" store installed 🆕`)}))}(t,e)}const J=()=>{};function Z(t,e,n,s=J){t.push(e);const i=()=>{const n=t.indexOf(e);n>-1&&(t.splice(n,1),s())};return!n&&(0,r.o5)()&&(0,r.jr)(i),i}function tt(t,...e){t.slice().forEach((t=>{t(...e)}))}const et=t=>t();function nt(t,e){t instanceof Map&&e instanceof Map&&e.forEach(((e,n)=>t.set(n,e))),t instanceof Set&&e instanceof Set&&e.forEach(t.add,t);for(const n in e){if(!e.hasOwnProperty(n))continue;const s=e[n],i=t[n];A(i)&&A(s)&&t.hasOwnProperty(n)&&!(0,r.i9)(s)&&!(0,r.g8)(s)?t[n]=nt(i,s):t[n]=s}return t}const st=Symbol(),it=new WeakMap,{assign:rt}=Object;function ot(t,e,n={},s,i,a){let l;const c=rt({actions:{}},n),d={deep:!0};let u,m,p,f=[],g=[];const v=s.state.value[t];a||v||(o?(0,r.hZ)(s.state.value,t,{}):s.state.value[t]={});const y=(0,r.KR)({});let C;function x(e){let n;u=m=!1,"function"==typeof e?(e(s.state.value[t]),n={type:w.patchFunction,storeId:t,events:p}):(nt(s.state.value[t],e),n={type:w.patchObject,payload:e,storeId:t,events:p});const i=C=Symbol();(0,r.dY)().then((()=>{C===i&&(u=!0)})),m=!0,tt(f,n,s.state.value[t])}const _=a?function(){const{state:t}=n,e=t?t():{};this.$patch((t=>{rt(t,e)}))}:J;function T(e,n){return function(){h(s);const i=Array.from(arguments),r=[],o=[];let a;tt(g,{args:i,name:e,store:S,after:function(t){r.push(t)},onError:function(t){o.push(t)}});try{a=n.apply(this&&this.$id===t?this:S,i)}catch(t){throw tt(o,t),t}return a instanceof Promise?a.then((t=>(tt(r,t),t))).catch((t=>(tt(o,t),Promise.reject(t)))):(tt(r,a),a)}}const k=(0,r.IG)({actions:{},getters:{},state:[],hotState:y}),E={_p:s,$id:t,$onAction:Z.bind(null,g),$patch:x,$reset:_,$subscribe(e,n={}){const i=Z(f,e,n.detached,(()=>o())),o=l.run((()=>(0,r.wB)((()=>s.state.value[t]),(s=>{("sync"===n.flush?m:u)&&e({storeId:t,type:w.direct,events:p},s)}),rt({},d,n))));return i},$dispose:function(){l.stop(),f=[],g=[],s._s.delete(t)}};o&&(E._r=!1);const S=(0,r.Kh)(b?rt({_hmrPayload:k,_customProperties:(0,r.IG)(new Set)},E):E);s._s.set(t,S);const L=(s._a&&s._a.runWithContext||et)((()=>s._e.run((()=>(l=(0,r.uY)()).run(e)))));for(const e in L){const n=L[e];if((0,r.i9)(n)&&(I=n,!(0,r.i9)(I)||!I.effect)||(0,r.g8)(n))a||(!v||(N=n,o?it.has(N):A(N)&&N.hasOwnProperty(st))||((0,r.i9)(n)?n.value=v[e]:nt(n,v[e])),o?(0,r.hZ)(s.state.value[t],e,n):s.state.value[t][e]=n);else if("function"==typeof n){const t=T(e,n);o?(0,r.hZ)(L,e,t):L[e]=t,c.actions[e]=n}}var N,I;if(o?Object.keys(L).forEach((t=>{(0,r.hZ)(S,t,L[t])})):(rt(S,L),rt((0,r.ux)(S),L)),Object.defineProperty(S,"$state",{get:()=>s.state.value[t],set:t=>{x((e=>{rt(e,t)}))}}),b){const t={writable:!0,configurable:!0,enumerable:!1};["_p","_hmrPayload","_getters","_customProperties"].forEach((e=>{Object.defineProperty(S,e,rt({value:S[e]},t))}))}return o&&(S._r=!0),s._p.forEach((t=>{if(b){const e=l.run((()=>t({store:S,app:s._a,pinia:s,options:c})));Object.keys(e||{}).forEach((t=>S._customProperties.add(t))),rt(S,e)}else rt(S,l.run((()=>t({store:S,app:s._a,pinia:s,options:c}))))})),v&&a&&n.hydrate&&n.hydrate(S.$state,v),u=!0,m=!0,S}function at(t,e,n){let s,i;const a="function"==typeof e;function l(t,n){const l=!!(0,r.nI)();return(t=t||(l?(0,r.WQ)(v,null):null))&&h(t),(t=g)._s.has(s)||(a?ot(s,e,i,t):function(t,e,n,s){const{state:i,actions:a,getters:l}=e,c=n.state.value[t];let d;d=ot(t,(function(){c||(o?(0,r.hZ)(n.state.value,t,i?i():{}):n.state.value[t]=i?i():{});const e=(0,r.QW)(n.state.value[t]);return rt(e,a,Object.keys(l||{}).reduce(((e,s)=>(e[s]=(0,r.IG)((0,r.EW)((()=>{h(n);const e=n._s.get(t);if(!o||e._r)return l[s].call(e,e)}))),e)),{}))}),e,n,0,!0)}(s,i,t)),t._s.get(s)}return"string"==typeof t?(s=t,i=a?n:e):(i=t,s=t.id),l.$id=s,l}var lt=s(35810),ct=s(92457),dt=s(99498);const ut="%[a-f0-9]{2}",mt=new RegExp("("+ut+")|([^%]+?)","gi"),pt=new RegExp("("+ut+")+","gi");function ft(t,e){try{return[decodeURIComponent(t.join(""))]}catch{}if(1===t.length)return t;e=e||1;const n=t.slice(0,e),s=t.slice(e);return Array.prototype.concat.call([],ft(n),ft(s))}function gt(t){try{return decodeURIComponent(t)}catch{let e=t.match(mt)||[];for(let n=1;n<e.length;n++)e=(t=ft(e,n).join("")).match(mt)||[];return t}}function ht(t,e){if("string"!=typeof t||"string"!=typeof e)throw new TypeError("Expected the arguments to be of type `string`");if(""===t||""===e)return[];const n=t.indexOf(e);return-1===n?[]:[t.slice(0,n),t.slice(n+e.length)]}function vt(t,e){const n={};if(Array.isArray(e))for(const s of e){const e=Object.getOwnPropertyDescriptor(t,s);e?.enumerable&&Object.defineProperty(n,s,e)}else for(const s of Reflect.ownKeys(t)){const i=Object.getOwnPropertyDescriptor(t,s);i.enumerable&&e(s,t[s],t)&&Object.defineProperty(n,s,i)}return n}const At=t=>null==t,wt=t=>encodeURIComponent(t).replace(/[!'()*]/g,(t=>`%${t.charCodeAt(0).toString(16).toUpperCase()}`)),yt=Symbol("encodeFragmentIdentifier");function bt(t){if("string"!=typeof t||1!==t.length)throw new TypeError("arrayFormatSeparator must be single character string")}function Ct(t,e){return e.encode?e.strict?wt(t):encodeURIComponent(t):t}function xt(t,e){return e.decode?function(t){if("string"!=typeof t)throw new TypeError("Expected `encodedURI` to be of type `string`, got `"+typeof t+"`");try{return decodeURIComponent(t)}catch{return function(t){const e={"%FE%FF":"��","%FF%FE":"��"};let n=pt.exec(t);for(;n;){try{e[n[0]]=decodeURIComponent(n[0])}catch{const t=gt(n[0]);t!==n[0]&&(e[n[0]]=t)}n=pt.exec(t)}e["%C2"]="�";const s=Object.keys(e);for(const n of s)t=t.replace(new RegExp(n,"g"),e[n]);return t}(t)}}(t):t}function _t(t){return Array.isArray(t)?t.sort():"object"==typeof t?_t(Object.keys(t)).sort(((t,e)=>Number(t)-Number(e))).map((e=>t[e])):t}function Tt(t){const e=t.indexOf("#");return-1!==e&&(t=t.slice(0,e)),t}function kt(t,e){return e.parseNumbers&&!Number.isNaN(Number(t))&&"string"==typeof t&&""!==t.trim()?t=Number(t):!e.parseBooleans||null===t||"true"!==t.toLowerCase()&&"false"!==t.toLowerCase()||(t="true"===t.toLowerCase()),t}function Et(t){const e=(t=Tt(t)).indexOf("?");return-1===e?"":t.slice(e+1)}function St(t,e){bt((e={decode:!0,sort:!0,arrayFormat:"none",arrayFormatSeparator:",",parseNumbers:!1,parseBooleans:!1,...e}).arrayFormatSeparator);const n=function(t){let e;switch(t.arrayFormat){case"index":return(t,n,s)=>{e=/\[(\d*)]$/.exec(t),t=t.replace(/\[\d*]$/,""),e?(void 0===s[t]&&(s[t]={}),s[t][e[1]]=n):s[t]=n};case"bracket":return(t,n,s)=>{e=/(\[])$/.exec(t),t=t.replace(/\[]$/,""),e?void 0!==s[t]?s[t]=[...s[t],n]:s[t]=[n]:s[t]=n};case"colon-list-separator":return(t,n,s)=>{e=/(:list)$/.exec(t),t=t.replace(/:list$/,""),e?void 0!==s[t]?s[t]=[...s[t],n]:s[t]=[n]:s[t]=n};case"comma":case"separator":return(e,n,s)=>{const i="string"==typeof n&&n.includes(t.arrayFormatSeparator),r="string"==typeof n&&!i&&xt(n,t).includes(t.arrayFormatSeparator);n=r?xt(n,t):n;const o=i||r?n.split(t.arrayFormatSeparator).map((e=>xt(e,t))):null===n?n:xt(n,t);s[e]=o};case"bracket-separator":return(e,n,s)=>{const i=/(\[])$/.test(e);if(e=e.replace(/\[]$/,""),!i)return void(s[e]=n?xt(n,t):n);const r=null===n?[]:n.split(t.arrayFormatSeparator).map((e=>xt(e,t)));void 0!==s[e]?s[e]=[...s[e],...r]:s[e]=r};default:return(t,e,n)=>{void 0!==n[t]?n[t]=[...[n[t]].flat(),e]:n[t]=e}}}(e),s=Object.create(null);if("string"!=typeof t)return s;if(!(t=t.trim().replace(/^[?#&]/,"")))return s;for(const i of t.split("&")){if(""===i)continue;const t=e.decode?i.replace(/\+/g," "):i;let[r,o]=ht(t,"=");void 0===r&&(r=t),o=void 0===o?null:["comma","separator","bracket-separator"].includes(e.arrayFormat)?o:xt(o,e),n(xt(r,e),o,s)}for(const[t,n]of Object.entries(s))if("object"==typeof n&&null!==n)for(const[t,s]of Object.entries(n))n[t]=kt(s,e);else s[t]=kt(n,e);return!1===e.sort?s:(!0===e.sort?Object.keys(s).sort():Object.keys(s).sort(e.sort)).reduce(((t,e)=>{const n=s[e];return t[e]=Boolean(n)&&"object"==typeof n&&!Array.isArray(n)?_t(n):n,t}),Object.create(null))}function Lt(t,e){if(!t)return"";bt((e={encode:!0,strict:!0,arrayFormat:"none",arrayFormatSeparator:",",...e}).arrayFormatSeparator);const n=n=>e.skipNull&&At(t[n])||e.skipEmptyString&&""===t[n],s=function(t){switch(t.arrayFormat){case"index":return e=>(n,s)=>{const i=n.length;return void 0===s||t.skipNull&&null===s||t.skipEmptyString&&""===s?n:null===s?[...n,[Ct(e,t),"[",i,"]"].join("")]:[...n,[Ct(e,t),"[",Ct(i,t),"]=",Ct(s,t)].join("")]};case"bracket":return e=>(n,s)=>void 0===s||t.skipNull&&null===s||t.skipEmptyString&&""===s?n:null===s?[...n,[Ct(e,t),"[]"].join("")]:[...n,[Ct(e,t),"[]=",Ct(s,t)].join("")];case"colon-list-separator":return e=>(n,s)=>void 0===s||t.skipNull&&null===s||t.skipEmptyString&&""===s?n:null===s?[...n,[Ct(e,t),":list="].join("")]:[...n,[Ct(e,t),":list=",Ct(s,t)].join("")];case"comma":case"separator":case"bracket-separator":{const e="bracket-separator"===t.arrayFormat?"[]=":"=";return n=>(s,i)=>void 0===i||t.skipNull&&null===i||t.skipEmptyString&&""===i?s:(i=null===i?"":i,0===s.length?[[Ct(n,t),e,Ct(i,t)].join("")]:[[s,Ct(i,t)].join(t.arrayFormatSeparator)])}default:return e=>(n,s)=>void 0===s||t.skipNull&&null===s||t.skipEmptyString&&""===s?n:null===s?[...n,Ct(e,t)]:[...n,[Ct(e,t),"=",Ct(s,t)].join("")]}}(e),i={};for(const[e,s]of Object.entries(t))n(e)||(i[e]=s);const r=Object.keys(i);return!1!==e.sort&&r.sort(e.sort),r.map((n=>{const i=t[n];return void 0===i?"":null===i?Ct(n,e):Array.isArray(i)?0===i.length&&"bracket-separator"===e.arrayFormat?Ct(n,e)+"[]":i.reduce(s(n),[]).join("&"):Ct(n,e)+"="+Ct(i,e)})).filter((t=>t.length>0)).join("&")}function Nt(t,e){e={decode:!0,...e};let[n,s]=ht(t,"#");return void 0===n&&(n=t),{url:n?.split("?")?.[0]??"",query:St(Et(t),e),...e&&e.parseFragmentIdentifier&&s?{fragmentIdentifier:xt(s,e)}:{}}}function It(t,e){e={encode:!0,strict:!0,[yt]:!0,...e};const n=Tt(t.url).split("?")[0]||"";let s=Lt({...St(Et(t.url),{sort:!1}),...t.query},e);s&&(s=`?${s}`);let i=function(t){let e="";const n=t.indexOf("#");return-1!==n&&(e=t.slice(n)),e}(t.url);if(t.fragmentIdentifier){const s=new URL(n);s.hash=t.fragmentIdentifier,i=e[yt]?s.hash:`#${t.fragmentIdentifier}`}return`${n}${s}${i}`}function Ft(t,e,n){n={parseFragmentIdentifier:!0,[yt]:!1,...n};const{url:s,query:i,fragmentIdentifier:r}=Nt(t,n);return It({url:s,query:vt(i,e),fragmentIdentifier:r},n)}function Pt(t,e,n){return Ft(t,Array.isArray(e)?t=>!e.includes(t):(t,n)=>!e(t,n),n)}const Bt=i;var Ot=s(96763);function Dt(t,e){for(var n in e)t[n]=e[n];return t}var Ut=/[!'()*]/g,jt=function(t){return"%"+t.charCodeAt(0).toString(16)},zt=/%2C/g,Mt=function(t){return encodeURIComponent(t).replace(Ut,jt).replace(zt,",")};function Rt(t){try{return decodeURIComponent(t)}catch(t){}return t}var Vt=function(t){return null==t||"object"==typeof t?t:String(t)};function $t(t){var e={};return(t=t.trim().replace(/^(\?|#|&)/,""))?(t.split("&").forEach((function(t){var n=t.replace(/\+/g," ").split("="),s=Rt(n.shift()),i=n.length>0?Rt(n.join("=")):null;void 0===e[s]?e[s]=i:Array.isArray(e[s])?e[s].push(i):e[s]=[e[s],i]})),e):e}function qt(t){var e=t?Object.keys(t).map((function(e){var n=t[e];if(void 0===n)return"";if(null===n)return Mt(e);if(Array.isArray(n)){var s=[];return n.forEach((function(t){void 0!==t&&(null===t?s.push(Mt(e)):s.push(Mt(e)+"="+Mt(t)))})),s.join("&")}return Mt(e)+"="+Mt(n)})).filter((function(t){return t.length>0})).join("&"):null;return e?"?"+e:""}var Ht=/\/?$/;function Wt(t,e,n,s){var i=s&&s.options.stringifyQuery,r=e.query||{};try{r=Gt(r)}catch(t){}var o={name:e.name||t&&t.name,meta:t&&t.meta||{},path:e.path||"/",hash:e.hash||"",query:r,params:e.params||{},fullPath:Qt(e,i),matched:t?Kt(t):[]};return n&&(o.redirectedFrom=Qt(n,i)),Object.freeze(o)}function Gt(t){if(Array.isArray(t))return t.map(Gt);if(t&&"object"==typeof t){var e={};for(var n in t)e[n]=Gt(t[n]);return e}return t}var Yt=Wt(null,{path:"/"});function Kt(t){for(var e=[];t;)e.unshift(t),t=t.parent;return e}function Qt(t,e){var n=t.path,s=t.query;void 0===s&&(s={});var i=t.hash;return void 0===i&&(i=""),(n||"/")+(e||qt)(s)+i}function Xt(t,e,n){return e===Yt?t===e:!!e&&(t.path&&e.path?t.path.replace(Ht,"")===e.path.replace(Ht,"")&&(n||t.hash===e.hash&&Jt(t.query,e.query)):!(!t.name||!e.name)&&t.name===e.name&&(n||t.hash===e.hash&&Jt(t.query,e.query)&&Jt(t.params,e.params)))}function Jt(t,e){if(void 0===t&&(t={}),void 0===e&&(e={}),!t||!e)return t===e;var n=Object.keys(t).sort(),s=Object.keys(e).sort();return n.length===s.length&&n.every((function(n,i){var r=t[n];if(s[i]!==n)return!1;var o=e[n];return null==r||null==o?r===o:"object"==typeof r&&"object"==typeof o?Jt(r,o):String(r)===String(o)}))}function Zt(t){for(var e=0;e<t.matched.length;e++){var n=t.matched[e];for(var s in n.instances){var i=n.instances[s],r=n.enteredCbs[s];if(i&&r){delete n.enteredCbs[s];for(var o=0;o<r.length;o++)i._isBeingDestroyed||r[o](i)}}}}var te={name:"RouterView",functional:!0,props:{name:{type:String,default:"default"}},render:function(t,e){var n=e.props,s=e.children,i=e.parent,r=e.data;r.routerView=!0;for(var o=i.$createElement,a=n.name,l=i.$route,c=i._routerViewCache||(i._routerViewCache={}),d=0,u=!1;i&&i._routerRoot!==i;){var m=i.$vnode?i.$vnode.data:{};m.routerView&&d++,m.keepAlive&&i._directInactive&&i._inactive&&(u=!0),i=i.$parent}if(r.routerViewDepth=d,u){var p=c[a],f=p&&p.component;return f?(p.configProps&&ee(f,r,p.route,p.configProps),o(f,r,s)):o()}var g=l.matched[d],h=g&&g.components[a];if(!g||!h)return c[a]=null,o();c[a]={component:h},r.registerRouteInstance=function(t,e){var n=g.instances[a];(e&&n!==t||!e&&n===t)&&(g.instances[a]=e)},(r.hook||(r.hook={})).prepatch=function(t,e){g.instances[a]=e.componentInstance},r.hook.init=function(t){t.data.keepAlive&&t.componentInstance&&t.componentInstance!==g.instances[a]&&(g.instances[a]=t.componentInstance),Zt(l)};var v=g.props&&g.props[a];return v&&(Dt(c[a],{route:l,configProps:v}),ee(h,r,l,v)),o(h,r,s)}};function ee(t,e,n,s){var i=e.props=function(t,e){switch(typeof e){case"undefined":return;case"object":return e;case"function":return e(t);case"boolean":return e?t.params:void 0}}(n,s);if(i){i=e.props=Dt({},i);var r=e.attrs=e.attrs||{};for(var o in i)t.props&&o in t.props||(r[o]=i[o],delete i[o])}}function ne(t,e,n){var s=t.charAt(0);if("/"===s)return t;if("?"===s||"#"===s)return e+t;var i=e.split("/");n&&i[i.length-1]||i.pop();for(var r=t.replace(/^\//,"").split("/"),o=0;o<r.length;o++){var a=r[o];".."===a?i.pop():"."!==a&&i.push(a)}return""!==i[0]&&i.unshift(""),i.join("/")}function se(t){return t.replace(/\/(?:\s*\/)+/g,"/")}var ie=Array.isArray||function(t){return"[object Array]"==Object.prototype.toString.call(t)},re=function t(e,n,s){return ie(n)||(s=n||s,n=[]),s=s||{},e instanceof RegExp?function(t,e){var n=t.source.match(/\((?!\?)/g);if(n)for(var s=0;s<n.length;s++)e.push({name:s,prefix:null,delimiter:null,optional:!1,repeat:!1,partial:!1,asterisk:!1,pattern:null});return ge(t,e)}(e,n):ie(e)?function(e,n,s){for(var i=[],r=0;r<e.length;r++)i.push(t(e[r],n,s).source);return ge(new RegExp("(?:"+i.join("|")+")",he(s)),n)}(e,n,s):function(t,e,n){return ve(de(t,n),e,n)}(e,n,s)},oe=de,ae=me,le=ve,ce=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function de(t,e){for(var n,s=[],i=0,r=0,o="",a=e&&e.delimiter||"/";null!=(n=ce.exec(t));){var l=n[0],c=n[1],d=n.index;if(o+=t.slice(r,d),r=d+l.length,c)o+=c[1];else{var u=t[r],m=n[2],p=n[3],f=n[4],g=n[5],h=n[6],v=n[7];o&&(s.push(o),o="");var A=null!=m&&null!=u&&u!==m,w="+"===h||"*"===h,y="?"===h||"*"===h,b=n[2]||a,C=f||g;s.push({name:p||i++,prefix:m||"",delimiter:b,optional:y,repeat:w,partial:A,asterisk:!!v,pattern:C?fe(C):v?".*":"[^"+pe(b)+"]+?"})}}return r<t.length&&(o+=t.substr(r)),o&&s.push(o),s}function ue(t){return encodeURI(t).replace(/[\/?#]/g,(function(t){return"%"+t.charCodeAt(0).toString(16).toUpperCase()}))}function me(t,e){for(var n=new Array(t.length),s=0;s<t.length;s++)"object"==typeof t[s]&&(n[s]=new RegExp("^(?:"+t[s].pattern+")$",he(e)));return function(e,s){for(var i="",r=e||{},o=(s||{}).pretty?ue:encodeURIComponent,a=0;a<t.length;a++){var l=t[a];if("string"!=typeof l){var c,d=r[l.name];if(null==d){if(l.optional){l.partial&&(i+=l.prefix);continue}throw new TypeError('Expected "'+l.name+'" to be defined')}if(ie(d)){if(!l.repeat)throw new TypeError('Expected "'+l.name+'" to not repeat, but received `'+JSON.stringify(d)+"`");if(0===d.length){if(l.optional)continue;throw new TypeError('Expected "'+l.name+'" to not be empty')}for(var u=0;u<d.length;u++){if(c=o(d[u]),!n[a].test(c))throw new TypeError('Expected all "'+l.name+'" to match "'+l.pattern+'", but received `'+JSON.stringify(c)+"`");i+=(0===u?l.prefix:l.delimiter)+c}}else{if(c=l.asterisk?encodeURI(d).replace(/[?#]/g,(function(t){return"%"+t.charCodeAt(0).toString(16).toUpperCase()})):o(d),!n[a].test(c))throw new TypeError('Expected "'+l.name+'" to match "'+l.pattern+'", but received "'+c+'"');i+=l.prefix+c}}else i+=l}return i}}function pe(t){return t.replace(/([.+*?=^!:${}()[\]|\/\\])/g,"\\$1")}function fe(t){return t.replace(/([=!:$\/()])/g,"\\$1")}function ge(t,e){return t.keys=e,t}function he(t){return t&&t.sensitive?"":"i"}function ve(t,e,n){ie(e)||(n=e||n,e=[]);for(var s=(n=n||{}).strict,i=!1!==n.end,r="",o=0;o<t.length;o++){var a=t[o];if("string"==typeof a)r+=pe(a);else{var l=pe(a.prefix),c="(?:"+a.pattern+")";e.push(a),a.repeat&&(c+="(?:"+l+c+")*"),r+=c=a.optional?a.partial?l+"("+c+")?":"(?:"+l+"("+c+"))?":l+"("+c+")"}}var d=pe(n.delimiter||"/"),u=r.slice(-d.length)===d;return s||(r=(u?r.slice(0,-d.length):r)+"(?:"+d+"(?=$))?"),r+=i?"$":s&&u?"":"(?="+d+"|$)",ge(new RegExp("^"+r,he(n)),e)}re.parse=oe,re.compile=function(t,e){return me(de(t,e),e)},re.tokensToFunction=ae,re.tokensToRegExp=le;var Ae=Object.create(null);function we(t,e,n){e=e||{};try{var s=Ae[t]||(Ae[t]=re.compile(t));return"string"==typeof e.pathMatch&&(e[0]=e.pathMatch),s(e,{pretty:!0})}catch(t){return""}finally{delete e[0]}}function ye(t,e,n,s){var i="string"==typeof t?{path:t}:t;if(i._normalized)return i;if(i.name){var r=(i=Dt({},t)).params;return r&&"object"==typeof r&&(i.params=Dt({},r)),i}if(!i.path&&i.params&&e){(i=Dt({},i))._normalized=!0;var o=Dt(Dt({},e.params),i.params);if(e.name)i.name=e.name,i.params=o;else if(e.matched.length){var a=e.matched[e.matched.length-1].path;i.path=we(a,o,e.path)}return i}var l=function(t){var e="",n="",s=t.indexOf("#");s>=0&&(e=t.slice(s),t=t.slice(0,s));var i=t.indexOf("?");return i>=0&&(n=t.slice(i+1),t=t.slice(0,i)),{path:t,query:n,hash:e}}(i.path||""),c=e&&e.path||"/",d=l.path?ne(l.path,c,n||i.append):c,u=function(t,e,n){void 0===e&&(e={});var s,i=n||$t;try{s=i(t||"")}catch(t){s={}}for(var r in e){var o=e[r];s[r]=Array.isArray(o)?o.map(Vt):Vt(o)}return s}(l.query,i.query,s&&s.options.parseQuery),m=i.hash||l.hash;return m&&"#"!==m.charAt(0)&&(m="#"+m),{_normalized:!0,path:d,query:u,hash:m}}var be,Ce=function(){},xe={name:"RouterLink",props:{to:{type:[String,Object],required:!0},tag:{type:String,default:"a"},custom:Boolean,exact:Boolean,exactPath:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,ariaCurrentValue:{type:String,default:"page"},event:{type:[String,Array],default:"click"}},render:function(t){var e=this,n=this.$router,s=this.$route,i=n.resolve(this.to,s,this.append),r=i.location,o=i.route,a=i.href,l={},c=n.options.linkActiveClass,d=n.options.linkExactActiveClass,u=null==c?"router-link-active":c,m=null==d?"router-link-exact-active":d,p=null==this.activeClass?u:this.activeClass,f=null==this.exactActiveClass?m:this.exactActiveClass,g=o.redirectedFrom?Wt(null,ye(o.redirectedFrom),null,n):o;l[f]=Xt(s,g,this.exactPath),l[p]=this.exact||this.exactPath?l[f]:function(t,e){return 0===t.path.replace(Ht,"/").indexOf(e.path.replace(Ht,"/"))&&(!e.hash||t.hash===e.hash)&&function(t,e){for(var n in e)if(!(n in t))return!1;return!0}(t.query,e.query)}(s,g);var h=l[f]?this.ariaCurrentValue:null,v=function(t){_e(t)&&(e.replace?n.replace(r,Ce):n.push(r,Ce))},A={click:_e};Array.isArray(this.event)?this.event.forEach((function(t){A[t]=v})):A[this.event]=v;var w={class:l},y=!this.$scopedSlots.$hasNormal&&this.$scopedSlots.default&&this.$scopedSlots.default({href:a,route:o,navigate:v,isActive:l[p],isExactActive:l[f]});if(y){if(1===y.length)return y[0];if(y.length>1||!y.length)return 0===y.length?t():t("span",{},y)}if("a"===this.tag)w.on=A,w.attrs={href:a,"aria-current":h};else{var b=Te(this.$slots.default);if(b){b.isStatic=!1;var C=b.data=Dt({},b.data);for(var x in C.on=C.on||{},C.on){var _=C.on[x];x in A&&(C.on[x]=Array.isArray(_)?_:[_])}for(var T in A)T in C.on?C.on[T].push(A[T]):C.on[T]=v;var k=b.data.attrs=Dt({},b.data.attrs);k.href=a,k["aria-current"]=h}else w.on=A}return t(this.tag,w,this.$slots.default)}};function _e(t){if(!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey||t.defaultPrevented||void 0!==t.button&&0!==t.button)){if(t.currentTarget&&t.currentTarget.getAttribute){var e=t.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(e))return}return t.preventDefault&&t.preventDefault(),!0}}function Te(t){if(t)for(var e,n=0;n<t.length;n++){if("a"===(e=t[n]).tag)return e;if(e.children&&(e=Te(e.children)))return e}}var ke="undefined"!=typeof window;function Ee(t,e,n,s,i){var r=e||[],o=n||Object.create(null),a=s||Object.create(null);t.forEach((function(t){Se(r,o,a,t,i)}));for(var l=0,c=r.length;l<c;l++)"*"===r[l]&&(r.push(r.splice(l,1)[0]),c--,l--);return{pathList:r,pathMap:o,nameMap:a}}function Se(t,e,n,s,i,r){var o=s.path,a=s.name,l=s.pathToRegexpOptions||{},c=function(t,e,n){return n||(t=t.replace(/\/$/,"")),"/"===t[0]||null==e?t:se(e.path+"/"+t)}(o,i,l.strict);"boolean"==typeof s.caseSensitive&&(l.sensitive=s.caseSensitive);var d={path:c,regex:Le(c,l),components:s.components||{default:s.component},alias:s.alias?"string"==typeof s.alias?[s.alias]:s.alias:[],instances:{},enteredCbs:{},name:a,parent:i,matchAs:r,redirect:s.redirect,beforeEnter:s.beforeEnter,meta:s.meta||{},props:null==s.props?{}:s.components?s.props:{default:s.props}};if(s.children&&s.children.forEach((function(s){var i=r?se(r+"/"+s.path):void 0;Se(t,e,n,s,d,i)})),e[d.path]||(t.push(d.path),e[d.path]=d),void 0!==s.alias)for(var u=Array.isArray(s.alias)?s.alias:[s.alias],m=0;m<u.length;++m){var p={path:u[m],children:s.children};Se(t,e,n,p,i,d.path||"/")}a&&(n[a]||(n[a]=d))}function Le(t,e){return re(t,[],e)}function Ne(t,e){var n=Ee(t),s=n.pathList,i=n.pathMap,r=n.nameMap;function o(t,n,o){var l=ye(t,n,!1,e),c=l.name;if(c){var d=r[c];if(!d)return a(null,l);var u=d.regex.keys.filter((function(t){return!t.optional})).map((function(t){return t.name}));if("object"!=typeof l.params&&(l.params={}),n&&"object"==typeof n.params)for(var m in n.params)!(m in l.params)&&u.indexOf(m)>-1&&(l.params[m]=n.params[m]);return l.path=we(d.path,l.params),a(d,l,o)}if(l.path){l.params={};for(var p=0;p<s.length;p++){var f=s[p],g=i[f];if(Ie(g.regex,l.path,l.params))return a(g,l,o)}}return a(null,l)}function a(t,n,s){return t&&t.redirect?function(t,n){var s=t.redirect,i="function"==typeof s?s(Wt(t,n,null,e)):s;if("string"==typeof i&&(i={path:i}),!i||"object"!=typeof i)return a(null,n);var l=i,c=l.name,d=l.path,u=n.query,m=n.hash,p=n.params;if(u=l.hasOwnProperty("query")?l.query:u,m=l.hasOwnProperty("hash")?l.hash:m,p=l.hasOwnProperty("params")?l.params:p,c)return r[c],o({_normalized:!0,name:c,query:u,hash:m,params:p},void 0,n);if(d){var f=function(t,e){return ne(t,e.parent?e.parent.path:"/",!0)}(d,t);return o({_normalized:!0,path:we(f,p),query:u,hash:m},void 0,n)}return a(null,n)}(t,s||n):t&&t.matchAs?function(t,e,n){var s=o({_normalized:!0,path:we(n,e.params)});if(s){var i=s.matched,r=i[i.length-1];return e.params=s.params,a(r,e)}return a(null,e)}(0,n,t.matchAs):Wt(t,n,s,e)}return{match:o,addRoute:function(t,e){var n="object"!=typeof t?r[t]:void 0;Ee([e||t],s,i,r,n),n&&n.alias.length&&Ee(n.alias.map((function(t){return{path:t,children:[e]}})),s,i,r,n)},getRoutes:function(){return s.map((function(t){return i[t]}))},addRoutes:function(t){Ee(t,s,i,r)}}}function Ie(t,e,n){var s=e.match(t);if(!s)return!1;if(!n)return!0;for(var i=1,r=s.length;i<r;++i){var o=t.keys[i-1];o&&(n[o.name||"pathMatch"]="string"==typeof s[i]?Rt(s[i]):s[i])}return!0}var Fe=ke&&window.performance&&window.performance.now?window.performance:Date;function Pe(){return Fe.now().toFixed(3)}var Be=Pe();function Oe(){return Be}function De(t){return Be=t}var Ue=Object.create(null);function je(){"scrollRestoration"in window.history&&(window.history.scrollRestoration="manual");var t=window.location.protocol+"//"+window.location.host,e=window.location.href.replace(t,""),n=Dt({},window.history.state);return n.key=Oe(),window.history.replaceState(n,"",e),window.addEventListener("popstate",Re),function(){window.removeEventListener("popstate",Re)}}function ze(t,e,n,s){if(t.app){var i=t.options.scrollBehavior;i&&t.app.$nextTick((function(){var r=function(){var t=Oe();if(t)return Ue[t]}(),o=i.call(t,e,n,s?r:null);o&&("function"==typeof o.then?o.then((function(t){We(t,r)})).catch((function(t){})):We(o,r))}))}}function Me(){var t=Oe();t&&(Ue[t]={x:window.pageXOffset,y:window.pageYOffset})}function Re(t){Me(),t.state&&t.state.key&&De(t.state.key)}function Ve(t){return qe(t.x)||qe(t.y)}function $e(t){return{x:qe(t.x)?t.x:window.pageXOffset,y:qe(t.y)?t.y:window.pageYOffset}}function qe(t){return"number"==typeof t}var He=/^#\d/;function We(t,e){var n,s="object"==typeof t;if(s&&"string"==typeof t.selector){var i=He.test(t.selector)?document.getElementById(t.selector.slice(1)):document.querySelector(t.selector);if(i){var r=t.offset&&"object"==typeof t.offset?t.offset:{};e=function(t,e){var n=document.documentElement.getBoundingClientRect(),s=t.getBoundingClientRect();return{x:s.left-n.left-e.x,y:s.top-n.top-e.y}}(i,r={x:qe((n=r).x)?n.x:0,y:qe(n.y)?n.y:0})}else Ve(t)&&(e=$e(t))}else s&&Ve(t)&&(e=$e(t));e&&("scrollBehavior"in document.documentElement.style?window.scrollTo({left:e.x,top:e.y,behavior:t.behavior}):window.scrollTo(e.x,e.y))}var Ge,Ye=ke&&(-1===(Ge=window.navigator.userAgent).indexOf("Android 2.")&&-1===Ge.indexOf("Android 4.0")||-1===Ge.indexOf("Mobile Safari")||-1!==Ge.indexOf("Chrome")||-1!==Ge.indexOf("Windows Phone"))&&window.history&&"function"==typeof window.history.pushState;function Ke(t,e){Me();var n=window.history;try{if(e){var s=Dt({},n.state);s.key=Oe(),n.replaceState(s,"",t)}else n.pushState({key:De(Pe())},"",t)}catch(n){window.location[e?"replace":"assign"](t)}}function Qe(t){Ke(t,!0)}var Xe={redirected:2,aborted:4,cancelled:8,duplicated:16};function Je(t,e){return Ze(t,e,Xe.cancelled,'Navigation cancelled from "'+t.fullPath+'" to "'+e.fullPath+'" with a new navigation.')}function Ze(t,e,n,s){var i=new Error(s);return i._isRouter=!0,i.from=t,i.to=e,i.type=n,i}var tn=["params","query","hash"];function en(t){return Object.prototype.toString.call(t).indexOf("Error")>-1}function nn(t,e){return en(t)&&t._isRouter&&(null==e||t.type===e)}function sn(t,e,n){var s=function(i){i>=t.length?n():t[i]?e(t[i],(function(){s(i+1)})):s(i+1)};s(0)}function rn(t,e){return on(t.map((function(t){return Object.keys(t.components).map((function(n){return e(t.components[n],t.instances[n],t,n)}))})))}function on(t){return Array.prototype.concat.apply([],t)}var an="function"==typeof Symbol&&"symbol"==typeof Symbol.toStringTag;function ln(t){var e=!1;return function(){for(var n=[],s=arguments.length;s--;)n[s]=arguments[s];if(!e)return e=!0,t.apply(this,n)}}var cn=function(t,e){this.router=t,this.base=function(t){if(!t)if(ke){var e=document.querySelector("base");t=(t=e&&e.getAttribute("href")||"/").replace(/^https?:\/\/[^\/]+/,"")}else t="/";return"/"!==t.charAt(0)&&(t="/"+t),t.replace(/\/$/,"")}(e),this.current=Yt,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[],this.listeners=[]};function dn(t,e,n,s){var i=rn(t,(function(t,s,i,r){var o=function(t,e){return"function"!=typeof t&&(t=be.extend(t)),t.options[e]}(t,e);if(o)return Array.isArray(o)?o.map((function(t){return n(t,s,i,r)})):n(o,s,i,r)}));return on(s?i.reverse():i)}function un(t,e){if(e)return function(){return t.apply(e,arguments)}}cn.prototype.listen=function(t){this.cb=t},cn.prototype.onReady=function(t,e){this.ready?t():(this.readyCbs.push(t),e&&this.readyErrorCbs.push(e))},cn.prototype.onError=function(t){this.errorCbs.push(t)},cn.prototype.transitionTo=function(t,e,n){var s,i=this;try{s=this.router.match(t,this.current)}catch(t){throw this.errorCbs.forEach((function(e){e(t)})),t}var r=this.current;this.confirmTransition(s,(function(){i.updateRoute(s),e&&e(s),i.ensureURL(),i.router.afterHooks.forEach((function(t){t&&t(s,r)})),i.ready||(i.ready=!0,i.readyCbs.forEach((function(t){t(s)})))}),(function(t){n&&n(t),t&&!i.ready&&(nn(t,Xe.redirected)&&r===Yt||(i.ready=!0,i.readyErrorCbs.forEach((function(e){e(t)}))))}))},cn.prototype.confirmTransition=function(t,e,n){var s=this,i=this.current;this.pending=t;var r,o,a=function(t){!nn(t)&&en(t)&&(s.errorCbs.length?s.errorCbs.forEach((function(e){e(t)})):Ot.error(t)),n&&n(t)},l=t.matched.length-1,c=i.matched.length-1;if(Xt(t,i)&&l===c&&t.matched[l]===i.matched[c])return this.ensureURL(),t.hash&&ze(this.router,i,t,!1),a(((o=Ze(r=i,t,Xe.duplicated,'Avoided redundant navigation to current location: "'+r.fullPath+'".')).name="NavigationDuplicated",o));var d,u=function(t,e){var n,s=Math.max(t.length,e.length);for(n=0;n<s&&t[n]===e[n];n++);return{updated:e.slice(0,n),activated:e.slice(n),deactivated:t.slice(n)}}(this.current.matched,t.matched),m=u.updated,p=u.deactivated,f=u.activated,g=[].concat(function(t){return dn(t,"beforeRouteLeave",un,!0)}(p),this.router.beforeHooks,function(t){return dn(t,"beforeRouteUpdate",un)}(m),f.map((function(t){return t.beforeEnter})),(d=f,function(t,e,n){var s=!1,i=0,r=null;rn(d,(function(t,e,o,a){if("function"==typeof t&&void 0===t.cid){s=!0,i++;var l,c=ln((function(e){var s;((s=e).__esModule||an&&"Module"===s[Symbol.toStringTag])&&(e=e.default),t.resolved="function"==typeof e?e:be.extend(e),o.components[a]=e,--i<=0&&n()})),d=ln((function(t){var e="Failed to resolve async component "+a+": "+t;r||(r=en(t)?t:new Error(e),n(r))}));try{l=t(c,d)}catch(t){d(t)}if(l)if("function"==typeof l.then)l.then(c,d);else{var u=l.component;u&&"function"==typeof u.then&&u.then(c,d)}}})),s||n()})),h=function(e,n){if(s.pending!==t)return a(Je(i,t));try{e(t,i,(function(e){!1===e?(s.ensureURL(!0),a(function(t,e){return Ze(t,e,Xe.aborted,'Navigation aborted from "'+t.fullPath+'" to "'+e.fullPath+'" via a navigation guard.')}(i,t))):en(e)?(s.ensureURL(!0),a(e)):"string"==typeof e||"object"==typeof e&&("string"==typeof e.path||"string"==typeof e.name)?(a(function(t,e){return Ze(t,e,Xe.redirected,'Redirected when going from "'+t.fullPath+'" to "'+function(t){if("string"==typeof t)return t;if("path"in t)return t.path;var e={};return tn.forEach((function(n){n in t&&(e[n]=t[n])})),JSON.stringify(e,null,2)}(e)+'" via a navigation guard.')}(i,t)),"object"==typeof e&&e.replace?s.replace(e):s.push(e)):n(e)}))}catch(t){a(t)}};sn(g,h,(function(){var n=function(t){return dn(t,"beforeRouteEnter",(function(t,e,n,s){return function(t,e,n){return function(s,i,r){return t(s,i,(function(t){"function"==typeof t&&(e.enteredCbs[n]||(e.enteredCbs[n]=[]),e.enteredCbs[n].push(t)),r(t)}))}}(t,n,s)}))}(f);sn(n.concat(s.router.resolveHooks),h,(function(){if(s.pending!==t)return a(Je(i,t));s.pending=null,e(t),s.router.app&&s.router.app.$nextTick((function(){Zt(t)}))}))}))},cn.prototype.updateRoute=function(t){this.current=t,this.cb&&this.cb(t)},cn.prototype.setupListeners=function(){},cn.prototype.teardown=function(){this.listeners.forEach((function(t){t()})),this.listeners=[],this.current=Yt,this.pending=null};var mn=function(t){function e(e,n){t.call(this,e,n),this._startLocation=pn(this.base)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setupListeners=function(){var t=this;if(!(this.listeners.length>0)){var e=this.router,n=e.options.scrollBehavior,s=Ye&&n;s&&this.listeners.push(je());var i=function(){var n=t.current,i=pn(t.base);t.current===Yt&&i===t._startLocation||t.transitionTo(i,(function(t){s&&ze(e,t,n,!0)}))};window.addEventListener("popstate",i),this.listeners.push((function(){window.removeEventListener("popstate",i)}))}},e.prototype.go=function(t){window.history.go(t)},e.prototype.push=function(t,e,n){var s=this,i=this.current;this.transitionTo(t,(function(t){Ke(se(s.base+t.fullPath)),ze(s.router,t,i,!1),e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var s=this,i=this.current;this.transitionTo(t,(function(t){Qe(se(s.base+t.fullPath)),ze(s.router,t,i,!1),e&&e(t)}),n)},e.prototype.ensureURL=function(t){if(pn(this.base)!==this.current.fullPath){var e=se(this.base+this.current.fullPath);t?Ke(e):Qe(e)}},e.prototype.getCurrentLocation=function(){return pn(this.base)},e}(cn);function pn(t){var e=window.location.pathname,n=e.toLowerCase(),s=t.toLowerCase();return!t||n!==s&&0!==n.indexOf(se(s+"/"))||(e=e.slice(t.length)),(e||"/")+window.location.search+window.location.hash}var fn=function(t){function e(e,n,s){t.call(this,e,n),s&&function(t){var e=pn(t);if(!/^\/#/.test(e))return window.location.replace(se(t+"/#"+e)),!0}(this.base)||gn()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setupListeners=function(){var t=this;if(!(this.listeners.length>0)){var e=this.router.options.scrollBehavior,n=Ye&&e;n&&this.listeners.push(je());var s=function(){var e=t.current;gn()&&t.transitionTo(hn(),(function(s){n&&ze(t.router,s,e,!0),Ye||wn(s.fullPath)}))},i=Ye?"popstate":"hashchange";window.addEventListener(i,s),this.listeners.push((function(){window.removeEventListener(i,s)}))}},e.prototype.push=function(t,e,n){var s=this,i=this.current;this.transitionTo(t,(function(t){An(t.fullPath),ze(s.router,t,i,!1),e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var s=this,i=this.current;this.transitionTo(t,(function(t){wn(t.fullPath),ze(s.router,t,i,!1),e&&e(t)}),n)},e.prototype.go=function(t){window.history.go(t)},e.prototype.ensureURL=function(t){var e=this.current.fullPath;hn()!==e&&(t?An(e):wn(e))},e.prototype.getCurrentLocation=function(){return hn()},e}(cn);function gn(){var t=hn();return"/"===t.charAt(0)||(wn("/"+t),!1)}function hn(){var t=window.location.href,e=t.indexOf("#");return e<0?"":t=t.slice(e+1)}function vn(t){var e=window.location.href,n=e.indexOf("#");return(n>=0?e.slice(0,n):e)+"#"+t}function An(t){Ye?Ke(vn(t)):window.location.hash=t}function wn(t){Ye?Qe(vn(t)):window.location.replace(vn(t))}var yn=function(t){function e(e,n){t.call(this,e,n),this.stack=[],this.index=-1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.push=function(t,e,n){var s=this;this.transitionTo(t,(function(t){s.stack=s.stack.slice(0,s.index+1).concat(t),s.index++,e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var s=this;this.transitionTo(t,(function(t){s.stack=s.stack.slice(0,s.index).concat(t),e&&e(t)}),n)},e.prototype.go=function(t){var e=this,n=this.index+t;if(!(n<0||n>=this.stack.length)){var s=this.stack[n];this.confirmTransition(s,(function(){var t=e.current;e.index=n,e.updateRoute(s),e.router.afterHooks.forEach((function(e){e&&e(s,t)}))}),(function(t){nn(t,Xe.duplicated)&&(e.index=n)}))}},e.prototype.getCurrentLocation=function(){var t=this.stack[this.stack.length-1];return t?t.fullPath:"/"},e.prototype.ensureURL=function(){},e}(cn),bn=function(t){void 0===t&&(t={}),this.app=null,this.apps=[],this.options=t,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=Ne(t.routes||[],this);var e=t.mode||"hash";switch(this.fallback="history"===e&&!Ye&&!1!==t.fallback,this.fallback&&(e="hash"),ke||(e="abstract"),this.mode=e,e){case"history":this.history=new mn(this,t.base);break;case"hash":this.history=new fn(this,t.base,this.fallback);break;case"abstract":this.history=new yn(this,t.base)}},Cn={currentRoute:{configurable:!0}};bn.prototype.match=function(t,e,n){return this.matcher.match(t,e,n)},Cn.currentRoute.get=function(){return this.history&&this.history.current},bn.prototype.init=function(t){var e=this;if(this.apps.push(t),t.$once("hook:destroyed",(function(){var n=e.apps.indexOf(t);n>-1&&e.apps.splice(n,1),e.app===t&&(e.app=e.apps[0]||null),e.app||e.history.teardown()})),!this.app){this.app=t;var n=this.history;if(n instanceof mn||n instanceof fn){var s=function(t){n.setupListeners(),function(t){var s=n.current,i=e.options.scrollBehavior;Ye&&i&&"fullPath"in t&&ze(e,t,s,!1)}(t)};n.transitionTo(n.getCurrentLocation(),s,s)}n.listen((function(t){e.apps.forEach((function(e){e._route=t}))}))}},bn.prototype.beforeEach=function(t){return _n(this.beforeHooks,t)},bn.prototype.beforeResolve=function(t){return _n(this.resolveHooks,t)},bn.prototype.afterEach=function(t){return _n(this.afterHooks,t)},bn.prototype.onReady=function(t,e){this.history.onReady(t,e)},bn.prototype.onError=function(t){this.history.onError(t)},bn.prototype.push=function(t,e,n){var s=this;if(!e&&!n&&"undefined"!=typeof Promise)return new Promise((function(e,n){s.history.push(t,e,n)}));this.history.push(t,e,n)},bn.prototype.replace=function(t,e,n){var s=this;if(!e&&!n&&"undefined"!=typeof Promise)return new Promise((function(e,n){s.history.replace(t,e,n)}));this.history.replace(t,e,n)},bn.prototype.go=function(t){this.history.go(t)},bn.prototype.back=function(){this.go(-1)},bn.prototype.forward=function(){this.go(1)},bn.prototype.getMatchedComponents=function(t){var e=t?t.matched?t:this.resolve(t).route:this.currentRoute;return e?[].concat.apply([],e.matched.map((function(t){return Object.keys(t.components).map((function(e){return t.components[e]}))}))):[]},bn.prototype.resolve=function(t,e,n){var s=ye(t,e=e||this.history.current,n,this),i=this.match(s,e),r=i.redirectedFrom||i.fullPath,o=function(t,e,n){var s="hash"===n?"#"+e:e;return t?se(t+"/"+s):s}(this.history.base,r,this.mode);return{location:s,route:i,href:o,normalizedTo:s,resolved:i}},bn.prototype.getRoutes=function(){return this.matcher.getRoutes()},bn.prototype.addRoute=function(t,e){this.matcher.addRoute(t,e),this.history.current!==Yt&&this.history.transitionTo(this.history.getCurrentLocation())},bn.prototype.addRoutes=function(t){this.matcher.addRoutes(t),this.history.current!==Yt&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(bn.prototype,Cn);var xn=bn;function _n(t,e){return t.push(e),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}bn.install=function t(e){if(!t.installed||be!==e){t.installed=!0,be=e;var n=function(t){return void 0!==t},s=function(t,e){var s=t.$options._parentVnode;n(s)&&n(s=s.data)&&n(s=s.registerRouteInstance)&&s(t,e)};e.mixin({beforeCreate:function(){n(this.$options.router)?(this._routerRoot=this,this._router=this.$options.router,this._router.init(this),e.util.defineReactive(this,"_route",this._router.history.current)):this._routerRoot=this.$parent&&this.$parent._routerRoot||this,s(this,this)},destroyed:function(){s(this)}}),Object.defineProperty(e.prototype,"$router",{get:function(){return this._routerRoot._router}}),Object.defineProperty(e.prototype,"$route",{get:function(){return this._routerRoot._route}}),e.component("RouterView",te),e.component("RouterLink",xe);var i=e.config.optionMergeStrategies;i.beforeRouteEnter=i.beforeRouteLeave=i.beforeRouteUpdate=i.created}},bn.version="3.6.5",bn.isNavigationFailure=nn,bn.NavigationFailureType=Xe,bn.START_LOCATION=Yt,ke&&window.Vue&&window.Vue.use(bn),r.Ay.use(xn);const Tn=xn.prototype.push;xn.prototype.push=function(t,e,n){return e||n?Tn.call(this,t,e,n):Tn.call(this,t).catch((t=>t))};const kn=new xn({mode:"history",base:(0,dt.Jv)("/apps/files"),linkActiveClass:"active",routes:[{path:"/",redirect:{name:"filelist",params:{view:"files"}}},{path:"/:view/:fileid(\\d+)?",name:"filelist",props:!0}],stringifyQuery(t){const e=Bt.stringify(t).replace(/%2F/gim,"/");return e?"?"+e:""}});function En(t,e,n){return(e=function(t){var e=function(t,e){if("object"!=typeof t||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var s=n.call(t,"string");if("object"!=typeof s)return s;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==typeof e?e:e+""}(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var Sn=s(96763);var Ln=s(22378),Nn=s(61338),In=s(53334);const Fn={name:"CogIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}};var Pn=s(14486);const Bn=(0,Pn.A)(Fn,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon cog-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M12,15.5A3.5,3.5 0 0,1 8.5,12A3.5,3.5 0 0,1 12,8.5A3.5,3.5 0 0,1 15.5,12A3.5,3.5 0 0,1 12,15.5M19.43,12.97C19.47,12.65 19.5,12.33 19.5,12C19.5,11.67 19.47,11.34 19.43,11L21.54,9.37C21.73,9.22 21.78,8.95 21.66,8.73L19.66,5.27C19.54,5.05 19.27,4.96 19.05,5.05L16.56,6.05C16.04,5.66 15.5,5.32 14.87,5.07L14.5,2.42C14.46,2.18 14.25,2 14,2H10C9.75,2 9.54,2.18 9.5,2.42L9.13,5.07C8.5,5.32 7.96,5.66 7.44,6.05L4.95,5.05C4.73,4.96 4.46,5.05 4.34,5.27L2.34,8.73C2.21,8.95 2.27,9.22 2.46,9.37L4.57,11C4.53,11.34 4.5,11.67 4.5,12C4.5,12.33 4.53,12.65 4.57,12.97L2.46,14.63C2.27,14.78 2.21,15.05 2.34,15.27L4.34,18.73C4.46,18.95 4.73,19.03 4.95,18.95L7.44,17.94C7.96,18.34 8.5,18.68 9.13,18.93L9.5,21.58C9.54,21.82 9.75,22 10,22H14C14.25,22 14.46,21.82 14.5,21.58L14.87,18.93C15.5,18.67 16.04,18.34 16.56,17.94L19.05,18.95C19.27,19.03 19.54,18.95 19.66,18.73L21.66,15.27C21.78,15.05 21.73,14.78 21.54,14.63L19.43,12.97Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports;var On=s(42530),Dn=s(52439),Un=s(6695),jn=s(38613),zn=s(26287);const Mn=(0,jn.C)("files","viewConfigs",{}),Rn=function(){const t=at("viewconfig",{state:()=>({viewConfig:Mn}),getters:{getConfig:t=>e=>t.viewConfig[e]||{}},actions:{onUpdate(t,e,n){this.viewConfig[t]||r.Ay.set(this.viewConfig,t,{}),r.Ay.set(this.viewConfig[t],e,n)},async update(t,e,n){zn.A.put((0,dt.Jv)("/apps/files/api/v1/views/".concat(t,"/").concat(e)),{value:n}),(0,Nn.Ic)("files:viewconfig:updated",{view:t,key:e,value:n})},setSortingBy(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"basename",e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"files";this.update(e,"sorting_mode",t),this.update(e,"sorting_direction","asc")},toggleSortingDirection(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"files";const e="asc"===(this.getConfig(t)||{sorting_direction:"asc"}).sorting_direction?"desc":"asc";this.update(t,"sorting_direction",e)}}}),e=t(...arguments);return e._initialized||((0,Nn.B1)("files:viewconfig:updated",(function(t){let{view:n,key:s,value:i}=t;e.onUpdate(n,s,i)})),e._initialized=!0),e},Vn=(0,s(53529).YK)().setApp("files").detectUser().build();function $n(t,e,n){var s,i=n||{},r=i.noTrailing,o=void 0!==r&&r,a=i.noLeading,l=void 0!==a&&a,c=i.debounceMode,d=void 0===c?void 0:c,u=!1,m=0;function p(){s&&clearTimeout(s)}function f(){for(var n=arguments.length,i=new Array(n),r=0;r<n;r++)i[r]=arguments[r];var a=this,c=Date.now()-m;function f(){m=Date.now(),e.apply(a,i)}function g(){s=void 0}u||(l||!d||s||f(),p(),void 0===d&&c>t?l?(m=Date.now(),o||(s=setTimeout(d?g:f,t))):f():!0!==o&&(s=setTimeout(d?g:f,void 0===d?t-c:t)))}return f.cancel=function(t){var e=(t||{}).upcomingOnly,n=void 0!==e&&e;p(),u=!n},f}var qn=s(85168);const Hn={name:"ChartPieIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Wn=(0,Pn.A)(Hn,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon chart-pie-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M11,2V22C5.9,21.5 2,17.2 2,12C2,6.8 5.9,2.5 11,2M13,2V11H22C21.5,6.2 17.8,2.5 13,2M13,13V22C17.7,21.5 21.5,17.8 22,13H13Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports;var Gn=s(95101);const Yn={name:"NavigationQuota",components:{ChartPie:Wn,NcAppNavigationItem:Dn.A,NcProgressBar:Gn.A},data:()=>({loadingStorageStats:!1,storageStats:(0,jn.C)("files","storageStats",null)}),computed:{storageStatsTitle(){var t,e,n;const s=(0,lt.v7)(null===(t=this.storageStats)||void 0===t?void 0:t.used,!1,!1),i=(0,lt.v7)(null===(e=this.storageStats)||void 0===e?void 0:e.quota,!1,!1);return(null===(n=this.storageStats)||void 0===n?void 0:n.quota)<0?this.t("files","{usedQuotaByte} used",{usedQuotaByte:s}):this.t("files","{used} of {quota} used",{used:s,quota:i})},storageStatsTooltip(){return this.storageStats.relative?this.t("files","{relative}% used",this.storageStats):""}},beforeMount(){setInterval(this.throttleUpdateStorageStats,6e4),(0,Nn.B1)("files:node:created",this.throttleUpdateStorageStats),(0,Nn.B1)("files:node:deleted",this.throttleUpdateStorageStats),(0,Nn.B1)("files:node:moved",this.throttleUpdateStorageStats),(0,Nn.B1)("files:node:updated",this.throttleUpdateStorageStats)},mounted(){var t,e;(null===(t=this.storageStats)||void 0===t?void 0:t.quota)>0&&(null===(e=this.storageStats)||void 0===e?void 0:e.free)<=0&&this.showStorageFullWarning()},methods:{debounceUpdateStorageStats:(Kn={}.atBegin,$n(200,(function(t){this.updateStorageStats(t)}),{debounceMode:!1!==(void 0!==Kn&&Kn)})),throttleUpdateStorageStats:$n(1e3,(function(t){this.updateStorageStats(t)})),async updateStorageStats(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;if(!this.loadingStorageStats){this.loadingStorageStats=!0;try{var n,s,i,r;const t=await zn.A.get((0,dt.Jv)("/apps/files/api/v1/stats"));if(null==t||null===(n=t.data)||void 0===n||!n.data)throw new Error("Invalid storage stats");(null===(s=this.storageStats)||void 0===s?void 0:s.free)>0&&(null===(i=t.data.data)||void 0===i?void 0:i.free)<=0&&(null===(r=t.data.data)||void 0===r?void 0:r.quota)>0&&this.showStorageFullWarning(),this.storageStats=t.data.data}catch(n){Vn.error("Could not refresh storage stats",{error:n}),e&&(0,qn.Qg)(t("files","Could not refresh storage stats"))}finally{this.loadingStorageStats=!1}}},showStorageFullWarning(){(0,qn.Qg)(this.t("files","Your storage is full, files can not be updated or synced anymore!"))},t:In.Tl}};var Kn,Qn=s(85072),Xn=s.n(Qn),Jn=s(97825),Zn=s.n(Jn),ts=s(77659),es=s.n(ts),ns=s(55056),ss=s.n(ns),is=s(10540),rs=s.n(is),os=s(41113),as=s.n(os),ls=s(33149),cs={};cs.styleTagTransform=as(),cs.setAttributes=ss(),cs.insert=es().bind(null,"head"),cs.domAPI=Zn(),cs.insertStyleElement=rs(),Xn()(ls.A,cs),ls.A&&ls.A.locals&&ls.A.locals;const ds=(0,Pn.A)(Yn,(function(){var t=this,e=t._self._c;return t.storageStats?e("NcAppNavigationItem",{staticClass:"app-navigation-entry__settings-quota",class:{"app-navigation-entry__settings-quota--not-unlimited":t.storageStats.quota>=0},attrs:{"aria-label":t.t("files","Storage informations"),loading:t.loadingStorageStats,name:t.storageStatsTitle,title:t.storageStatsTooltip,"data-cy-files-navigation-settings-quota":""},on:{click:function(e){return e.stopPropagation(),e.preventDefault(),t.debounceUpdateStorageStats.apply(null,arguments)}}},[e("ChartPie",{attrs:{slot:"icon",size:20},slot:"icon"}),t._v(" "),t.storageStats.quota>=0?e("NcProgressBar",{attrs:{slot:"extra",error:t.storageStats.relative>80,value:Math.min(t.storageStats.relative,100)},slot:"extra"}):t._e()],1):t._e()}),[],!1,null,"063ed938",null).exports;var us=s(85517),ms=s(947),ps=s(32073);const fs={name:"ClipboardIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},gs=(0,Pn.A)(fs,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon clipboard-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19,3H14.82C14.4,1.84 13.3,1 12,1C10.7,1 9.6,1.84 9.18,3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5A2,2 0 0,0 19,3M12,3A1,1 0 0,1 13,4A1,1 0 0,1 12,5A1,1 0 0,1 11,4A1,1 0 0,1 12,3"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports;var hs=s(44492);const vs={name:"Setting",props:{el:{type:Function,required:!0}},mounted(){this.$el.appendChild(this.el())}},As=(0,Pn.A)(vs,(function(){return(0,this._self._c)("div")}),[],!1,null,null,null).exports,ws=(0,jn.C)("files","config",{show_hidden:!1,crop_image_previews:!0,sort_favorites_first:!0,sort_folders_first:!0,grid_view:!1}),ys=function(){const t=at("userconfig",{state:()=>({userConfig:ws}),actions:{onUpdate(t,e){r.Ay.set(this.userConfig,t,e)},async update(t,e){await zn.A.put((0,dt.Jv)("/apps/files/api/v1/config/"+t),{value:e}),(0,Nn.Ic)("files:config:updated",{key:t,value:e})}}})(...arguments);return t._initialized||((0,Nn.B1)("files:config:updated",(function(e){let{key:n,value:s}=e;t.onUpdate(n,s)})),t._initialized=!0),t},bs={name:"Settings",components:{Clipboard:gs,NcAppSettingsDialog:us.N,NcAppSettingsSection:ms.A,NcCheckboxRadioSwitch:ps.A,NcInputField:hs.A,Setting:As},props:{open:{type:Boolean,default:!1}},setup:()=>({userConfigStore:ys()}),data(){var t,e,n;return{settings:(null===(t=window.OCA)||void 0===t||null===(t=t.Files)||void 0===t||null===(t=t.Settings)||void 0===t?void 0:t.settings)||[],webdavUrl:(0,dt.dC)("dav/files/"+encodeURIComponent(null===(e=(0,ct.HW)())||void 0===e?void 0:e.uid)),webdavDocs:"https://docs.nextcloud.com/server/stable/go.php?to=user-webdav",appPasswordUrl:(0,dt.Jv)("/settings/user/security#generate-app-token-section"),webdavUrlCopied:!1,enableGridView:null===(n=(0,jn.C)("core","config",[])["enable_non-accessible_features"])||void 0===n||n}},computed:{userConfig(){return this.userConfigStore.userConfig}},beforeMount(){this.settings.forEach((t=>t.open()))},beforeDestroy(){this.settings.forEach((t=>t.close()))},methods:{onClose(){this.$emit("close")},setConfig(t,e){this.userConfigStore.update(t,e)},async copyCloudId(){document.querySelector("input#webdav-url-input").select(),navigator.clipboard?(await navigator.clipboard.writeText(this.webdavUrl),this.webdavUrlCopied=!0,(0,qn.Te)(t("files","WebDAV URL copied to clipboard")),setTimeout((()=>{this.webdavUrlCopied=!1}),5e3)):(0,qn.Qg)(t("files","Clipboard is not available"))},t:In.Tl}},Cs=bs;var xs=s(73309),_s={};_s.styleTagTransform=as(),_s.setAttributes=ss(),_s.insert=es().bind(null,"head"),_s.domAPI=Zn(),_s.insertStyleElement=rs(),Xn()(xs.A,_s),xs.A&&xs.A.locals&&xs.A.locals;const Ts=(0,Pn.A)(Cs,(function(){var t=this,e=t._self._c;return e("NcAppSettingsDialog",{attrs:{open:t.open,"show-navigation":!0,name:t.t("files","Files settings")},on:{"update:open":t.onClose}},[e("NcAppSettingsSection",{attrs:{id:"settings",name:t.t("files","Files settings")}},[e("NcCheckboxRadioSwitch",{attrs:{checked:t.userConfig.sort_favorites_first},on:{"update:checked":function(e){return t.setConfig("sort_favorites_first",e)}}},[t._v("\n\t\t\t"+t._s(t.t("files","Sort favorites first"))+"\n\t\t")]),t._v(" "),e("NcCheckboxRadioSwitch",{attrs:{checked:t.userConfig.sort_folders_first},on:{"update:checked":function(e){return t.setConfig("sort_folders_first",e)}}},[t._v("\n\t\t\t"+t._s(t.t("files","Sort folders before files"))+"\n\t\t")]),t._v(" "),e("NcCheckboxRadioSwitch",{attrs:{checked:t.userConfig.show_hidden},on:{"update:checked":function(e){return t.setConfig("show_hidden",e)}}},[t._v("\n\t\t\t"+t._s(t.t("files","Show hidden files"))+"\n\t\t")]),t._v(" "),e("NcCheckboxRadioSwitch",{attrs:{checked:t.userConfig.crop_image_previews},on:{"update:checked":function(e){return t.setConfig("crop_image_previews",e)}}},[t._v("\n\t\t\t"+t._s(t.t("files","Crop image previews"))+"\n\t\t")]),t._v(" "),t.enableGridView?e("NcCheckboxRadioSwitch",{attrs:{checked:t.userConfig.grid_view},on:{"update:checked":function(e){return t.setConfig("grid_view",e)}}},[t._v("\n\t\t\t"+t._s(t.t("files","Enable the grid view"))+"\n\t\t")]):t._e()],1),t._v(" "),0!==t.settings.length?e("NcAppSettingsSection",{attrs:{id:"more-settings",name:t.t("files","Additional settings")}},[t._l(t.settings,(function(t){return[e("Setting",{key:t.name,attrs:{el:t.el}})]}))],2):t._e(),t._v(" "),e("NcAppSettingsSection",{attrs:{id:"webdav",name:t.t("files","WebDAV")}},[e("NcInputField",{attrs:{id:"webdav-url-input",label:t.t("files","WebDAV URL"),"show-trailing-button":!0,success:t.webdavUrlCopied,"trailing-button-label":t.t("files","Copy to clipboard"),value:t.webdavUrl,readonly:"readonly",type:"url"},on:{focus:function(t){return t.target.select()},"trailing-button-click":t.copyCloudId},scopedSlots:t._u([{key:"trailing-button-icon",fn:function(){return[e("Clipboard",{attrs:{size:20}})]},proxy:!0}])}),t._v(" "),e("em",[e("a",{staticClass:"setting-link",attrs:{href:t.webdavDocs,target:"_blank",rel:"noreferrer noopener"}},[t._v("\n\t\t\t\t"+t._s(t.t("files","Use this address to access your Files via WebDAV"))+" ↗\n\t\t\t")])]),t._v(" "),e("br"),t._v(" "),e("em",[e("a",{staticClass:"setting-link",attrs:{href:t.appPasswordUrl}},[t._v("\n\t\t\t\t"+t._s(t.t("files","If you have enabled 2FA, you must create and use a new app password by clicking here."))+" ↗\n\t\t\t")])])],1)],1)}),[],!1,null,"6d63c120",null).exports,ks={name:"Navigation",components:{Cog:Bn,NavigationQuota:ds,NcAppNavigation:On.A,NcAppNavigationItem:Dn.A,NcIconSvgWrapper:Un.A,SettingsModal:Ts},setup:()=>({viewConfigStore:Rn()}),data:()=>({settingsOpened:!1}),computed:{currentViewId(){var t;return(null===(t=this.$route)||void 0===t||null===(t=t.params)||void 0===t?void 0:t.view)||"files"},currentView(){return this.views.find((t=>t.id===this.currentViewId))},views(){return this.$navigation.views},parentViews(){return this.views.filter((t=>!t.parent)).sort(((t,e)=>t.order-e.order))},childViews(){return this.views.filter((t=>!!t.parent)).reduce(((t,e)=>(t[e.parent]=[...t[e.parent]||[],e],t[e.parent].sort(((t,e)=>t.order-e.order)),t)),{})}},watch:{currentView(t,e){t.id!==(null==e?void 0:e.id)&&(this.$navigation.setActive(t),Vn.debug("Navigation changed",{id:t.id,view:t}),this.showView(t))}},beforeMount(){this.currentView&&(Vn.debug("Navigation mounted. Showing requested view",{view:this.currentView}),this.showView(this.currentView))},methods:{useExactRouteMatching(t){var e;return(null===(e=this.childViews[t.id])||void 0===e?void 0:e.length)>0},showView(t){var e,n;null===(e=window)||void 0===e||null===(e=e.OCA)||void 0===e||null===(e=e.Files)||void 0===e||null===(e=e.Sidebar)||void 0===e||null===(n=e.close)||void 0===n||n.call(e),this.$navigation.setActive(t),(0,Nn.Ic)("files:navigation:changed",t)},onToggleExpand(t){const e=this.isExpanded(t);t.expanded=!e,this.viewConfigStore.update(t.id,"expanded",!e)},isExpanded(t){var e;return"boolean"==typeof(null===(e=this.viewConfigStore.getConfig(t.id))||void 0===e?void 0:e.expanded)?!0===this.viewConfigStore.getConfig(t.id).expanded:!0===t.expanded},generateToNavigation(t){if(t.params){const{dir:e}=t.params;return{name:"filelist",params:t.params,query:{dir:e}}}return{name:"filelist",params:{view:t.id}}},openSettings(){this.settingsOpened=!0},onSettingsClose(){this.settingsOpened=!1},t:In.Tl}};var Es=s(59062),Ss={};Ss.styleTagTransform=as(),Ss.setAttributes=ss(),Ss.insert=es().bind(null,"head"),Ss.domAPI=Zn(),Ss.insertStyleElement=rs(),Xn()(Es.A,Ss),Es.A&&Es.A.locals&&Es.A.locals;const Ls=(0,Pn.A)(ks,(function(){var t=this,e=t._self._c;return e("NcAppNavigation",{attrs:{"data-cy-files-navigation":"","aria-label":t.t("files","Files")},scopedSlots:t._u([{key:"list",fn:function(){return t._l(t.parentViews,(function(n){return e("NcAppNavigationItem",{key:n.id,attrs:{"allow-collapse":!0,"data-cy-files-navigation-item":n.id,exact:t.useExactRouteMatching(n),icon:n.iconClass,name:n.name,open:t.isExpanded(n),pinned:n.sticky,to:t.generateToNavigation(n)},on:{"update:open":function(e){return t.onToggleExpand(n)}}},[n.icon?e("NcIconSvgWrapper",{attrs:{slot:"icon",svg:n.icon},slot:"icon"}):t._e(),t._v(" "),t._l(t.childViews[n.id],(function(n){return e("NcAppNavigationItem",{key:n.id,attrs:{"data-cy-files-navigation-item":n.id,"exact-path":!0,icon:n.iconClass,name:n.name,to:t.generateToNavigation(n)}},[n.icon?e("NcIconSvgWrapper",{attrs:{slot:"icon",svg:n.icon},slot:"icon"}):t._e()],1)}))],2)}))},proxy:!0},{key:"footer",fn:function(){return[e("ul",{staticClass:"app-navigation-entry__settings"},[e("NavigationQuota"),t._v(" "),e("NcAppNavigationItem",{attrs:{"aria-label":t.t("files","Open the files app settings"),name:t.t("files","Files settings"),"data-cy-files-navigation-settings-button":""},on:{click:function(e){return e.preventDefault(),e.stopPropagation(),t.openSettings.apply(null,arguments)}}},[e("Cog",{attrs:{slot:"icon",size:20},slot:"icon"})],1)],1)]},proxy:!0}])},[t._v(" "),t._v(" "),e("SettingsModal",{attrs:{open:t.settingsOpened,"data-cy-files-navigation-settings":""},on:{close:t.onSettingsClose}})],1)}),[],!1,null,"8291caa8",null).exports;var Ns=s(22843),Is=s(43627),Fs=function(t,e){return t<e?-1:t>e?1:0},Ps=function(t,e){var n=t.localeCompare(e);return n?n/Math.abs(n):0},Bs=/(^0x[\da-fA-F]+$|^([+-]?(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?(?!\.\d+)(?=\D|\s|$))|\d+)/g,Os=/^\s+|\s+$/g,Ds=/\s+/g,Us=/^[+-]?(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?$/,js=/(^([\w ]+,?[\w ]+)?[\w ]+,?[\w ]+\d+:\d+(:\d+)?[\w ]?|^\d{1,4}[/-]\d{1,4}[/-]\d{1,4}|^\w+, \w+ \d+, \d{4})/,zs=/^0+[1-9]{1}[0-9]*$/,Ms=/[^\x00-\x80]/,Rs=function(t,e){return t<e?-1:t>e?1:0},Vs=function(t){return t.replace(Ds," ").replace(Os,"")},$s=function(t){if(0!==t.length){var e=Number(t);if(!Number.isNaN(e))return e}},qs=function(t,e,n){if(Us.test(t)&&(!zs.test(t)||0===e||"."!==n[e-1]))return $s(t)||0},Hs=function(t,e,n){return{parsedNumber:qs(t,e,n),normalizedString:Vs(t)}},Ws=function(t){var e=function(t){return t.replace(Bs,"\0$1\0").replace(/\0$/,"").replace(/^\0/,"").split("\0")}(t).map(Hs);return e},Gs=function(t){return"function"==typeof t},Ys=function(t){return Number.isNaN(t)||t instanceof Number&&Number.isNaN(t.valueOf())},Ks=function(t){return null===t},Qs=function(t){return!(null===t||"object"!=typeof t||Array.isArray(t)||t instanceof Number||t instanceof String||t instanceof Boolean||t instanceof Date)},Xs=function(t){return"symbol"==typeof t},Js=function(t){return void 0===t},Zs=function(t){if("string"==typeof t||t instanceof String||("number"==typeof t||t instanceof Number)&&!Ys(t)||"boolean"==typeof t||t instanceof Boolean||t instanceof Date){var e=function(t){return"boolean"==typeof t||t instanceof Boolean?Number(t).toString():"number"==typeof t||t instanceof Number?t.toString():t instanceof Date?t.getTime().toString():"string"==typeof t||t instanceof String?t.toLowerCase().replace(Os,""):""}(t),n=function(t){var e=$s(t);return void 0!==e?e:function(t){try{var e=Date.parse(t);return!Number.isNaN(e)&&js.test(t)?e:void 0}catch(t){return}}(t)}(e);return{parsedNumber:n,chunks:Ws(n?""+n:e),value:t}}return{isArray:Array.isArray(t),isFunction:Gs(t),isNaN:Ys(t),isNull:Ks(t),isObject:Qs(t),isSymbol:Xs(t),isUndefined:Js(t),value:t}},ti=function(t){return"function"==typeof t?t:function(e){if(Array.isArray(e)){var n=Number(t);if(Number.isInteger(n))return e[n]}else if(e&&"object"==typeof e){var s=Object.getOwnPropertyDescriptor(e,t);return null==s?void 0:s.value}return e}};function ei(t,e,n){if(!t||!Array.isArray(t))return[];var s=function(t){if(!t)return[];var e=Array.isArray(t)?[].concat(t):[t];return e.some((function(t){return"string"!=typeof t&&"number"!=typeof t&&"function"!=typeof t}))?[]:e}(e),i=function(t){if(!t)return[];var e=Array.isArray(t)?[].concat(t):[t];return e.some((function(t){return"asc"!==t&&"desc"!==t&&"function"!=typeof t}))?[]:e}(n);return function(t,e,n){var s=e.length?e.map(ti):[function(t){return t}],i=t.map((function(t,e){return{index:e,values:s.map((function(e){return e(t)})).map(Zs)}}));return i.sort((function(t,e){return function(t,e,n){for(var s=t.index,i=t.values,r=e.index,o=e.values,a=i.length,l=n.length,c=0;c<a;c++){var d=c<l?n[c]:null;if(d&&"function"==typeof d){var u=d(i[c].value,o[c].value);if(u)return u}else{var m=(p=i[c],f=o[c],p.value===f.value?0:void 0!==p.parsedNumber&&void 0!==f.parsedNumber?Fs(p.parsedNumber,f.parsedNumber):p.chunks&&f.chunks?function(t,e){for(var n=t.length,s=e.length,i=Math.min(n,s),r=0;r<i;r++){var o=t[r],a=e[r];if(o.normalizedString!==a.normalizedString){if(""===o.normalizedString!=(""===a.normalizedString))return""===o.normalizedString?-1:1;if(void 0!==o.parsedNumber&&void 0!==a.parsedNumber){var l=Fs(o.parsedNumber,a.parsedNumber);return 0===l?Rs(o.normalizedString,a.normalizedString):l}return void 0!==o.parsedNumber||void 0!==a.parsedNumber?void 0!==o.parsedNumber?-1:1:Ms.test(o.normalizedString+a.normalizedString)?Ps(o.normalizedString,a.normalizedString):Rs(o.normalizedString,a.normalizedString)}}return n>i||s>i?n<=i?-1:1:0}(p.chunks,f.chunks):function(t,e){return(t.chunks?!e.chunks:e.chunks)?t.chunks?-1:1:(t.isNaN?!e.isNaN:e.isNaN)?t.isNaN?-1:1:(t.isSymbol?!e.isSymbol:e.isSymbol)?t.isSymbol?-1:1:(t.isObject?!e.isObject:e.isObject)?t.isObject?-1:1:(t.isArray?!e.isArray:e.isArray)?t.isArray?-1:1:(t.isFunction?!e.isFunction:e.isFunction)?t.isFunction?-1:1:(t.isNull?!e.isNull:e.isNull)?t.isNull?-1:1:0}(p,f));if(m)return m*("desc"===d?-1:1)}}var p,f;return s-r}(t,e,n)})),i.map((function(e){return function(t,e){return t[e]}(t,e.index)}))}(t,s,i)}var ni=s(38805),si=s(52129),ii=s(82606),ri=s(89979);const oi={name:"FormatListBulletedSquareIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},ai=(0,Pn.A)(oi,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon format-list-bulleted-square-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3,4H7V8H3V4M9,5V7H21V5H9M3,10H7V14H3V10M9,11V13H21V11H9M3,16H7V20H3V16M9,17V19H21V17H9"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports;var li=s(18195),ci=s(9518),di=s(10833),ui=s(46222),mi=s(27577);const pi={name:"AccountPlusIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},fi=(0,Pn.A)(pi,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon account-plus-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M15,14C12.33,14 7,15.33 7,18V20H23V18C23,15.33 17.67,14 15,14M6,10V7H4V10H1V12H4V15H6V12H9V10M15,12A4,4 0 0,0 19,8A4,4 0 0,0 15,4A4,4 0 0,0 11,8A4,4 0 0,0 15,12Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,gi={name:"ViewGridIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},hi=(0,Pn.A)(gi,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon view-grid-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M3,11H11V3H3M3,21H11V13H3M13,21H21V13H13M13,3V11H21V3"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports;var vi=s(49981);const Ai=new lt.hY({id:"details",displayName:()=>(0,In.Tl)("files","Open details"),iconSvgInline:()=>vi,enabled:t=>{var e,n,s;return 1===t.length&&!!t[0]&&!(null===(e=window)||void 0===e||null===(e=e.OCA)||void 0===e||null===(e=e.Files)||void 0===e||!e.Sidebar)&&null!==(n=(null===(s=t[0].root)||void 0===s?void 0:s.startsWith("/files/"))&&t[0].permissions!==lt.aX.NONE)&&void 0!==n&&n},async exec(t,e,n){try{return await window.OCA.Files.Sidebar.open(t.path),window.OCP.Files.Router.goToRoute(null,{view:e.id,fileid:t.fileid},{dir:n},!0),null}catch(t){return Vn.error("Error while opening sidebar",{error:t}),!1}},order:-50}),wi=function(){const t=at("files",{state:()=>({files:{},roots:{}}),getters:{getNode:t=>e=>t.files[e],getNodes:t=>e=>e.map((e=>t.files[e])).filter(Boolean),getRoot:t=>e=>t.roots[e]},actions:{updateNodes(t){const e=t.reduce(((t,e)=>e.fileid?(t[e.fileid]=e,t):(Vn.error("Trying to update/set a node without fileid",e),t)),{});r.Ay.set(this,"files",{...this.files,...e})},deleteNodes(t){t.forEach((t=>{t.fileid&&r.Ay.delete(this.files,t.fileid)}))},setRoot(t){let{service:e,root:n}=t;r.Ay.set(this.roots,e,n)},onDeletedNode(t){this.deleteNodes([t])},onCreatedNode(t){this.updateNodes([t])},onUpdatedNode(t){this.updateNodes([t])}}})(...arguments);return t._initialized||((0,Nn.B1)("files:node:created",t.onCreatedNode),(0,Nn.B1)("files:node:deleted",t.onDeletedNode),(0,Nn.B1)("files:node:updated",t.onUpdatedNode),t._initialized=!0),t},yi=function(){const t=wi(),e=at("paths",{state:()=>({paths:{}}),getters:{getPath:t=>(e,n)=>{if(t.paths[e])return t.paths[e][n]}},actions:{addPath(t){this.paths[t.service]||r.Ay.set(this.paths,t.service,{}),r.Ay.set(this.paths[t.service],t.path,t.fileid)},onCreatedNode(e){var n;const s=(null===(n=(0,lt.bh)())||void 0===n||null===(n=n.active)||void 0===n?void 0:n.id)||"files";if(e.fileid){if(e.type===lt.pt.Folder&&this.addPath({service:s,path:e.path,fileid:e.fileid}),"/"===e.dirname){const n=t.getRoot(s);return n._children||r.Ay.set(n,"_children",[]),void n._children.push(e.fileid)}if(this.paths[s][e.dirname]){const n=this.paths[s][e.dirname],i=t.getNode(n);return Vn.debug("Path already exists, updating children",{parentFolder:i,node:e}),i?(i._children||r.Ay.set(i,"_children",[]),void i._children.push(e.fileid)):void Vn.error("Parent folder not found",{parentId:n})}Vn.debug("Parent path does not exists, skipping children update",{node:e})}else Vn.error("Node has no fileid",{node:e})}}})(...arguments);return e._initialized||((0,Nn.B1)("files:node:created",e.onCreatedNode),e._initialized=!0),e},bi=at("selection",{state:()=>({selected:[],lastSelection:[],lastSelectedIndex:null}),actions:{set(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];r.Ay.set(this,"selected",[...new Set(t)])},setLastIndex(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;r.Ay.set(this,"lastSelection",t?this.selected:[]),r.Ay.set(this,"lastSelectedIndex",t)},reset(){r.Ay.set(this,"selected",[]),r.Ay.set(this,"lastSelection",[]),r.Ay.set(this,"lastSelectedIndex",null)}}});let Ci;const xi=function(){return Ci=(0,ii.g)(),at("uploader",{state:()=>({queue:Ci.queue})})(...arguments)};var _i=s(37215),Ti=s(42937),ki=s(71089),Ei=s(96763);class Si extends File{constructor(t){let e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];var n,s,i;super([],t,{type:"httpd/unix-directory"}),n=this,i=void 0,(s=function(t){var e=function(t,e){if("object"!=typeof t||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var s=n.call(t,"string");if("object"!=typeof s)return s;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==typeof e?e:e+""}(s="_contents"))in n?Object.defineProperty(n,s,{value:i,enumerable:!0,configurable:!0,writable:!0}):n[s]=i,this._contents=e}set contents(t){this._contents=t}get contents(){return this._contents}get size(){return this._computeDirectorySize(this)}get lastModified(){return 0===this._contents.length?Date.now():this._computeDirectoryMtime(this)}_computeDirectoryMtime(t){return t.contents.reduce(((t,e)=>e.lastModified>t?e.lastModified:t),0)}_computeDirectorySize(t){return t.contents.reduce(((t,e)=>t+e.size),0)}}const Li=async t=>{if(t.isFile)return new Promise(((e,n)=>{t.file(e,n)}));Vn.debug("Handling recursive file tree",{entry:t.name});const e=t,n=await Ni(e),s=(await Promise.all(n.map(Li))).flat();return new Si(e.name,s)},Ni=t=>{const e=t.createReader();return new Promise(((t,n)=>{const s=[],i=()=>{e.readEntries((e=>{e.length?(s.push(...e),i()):t(s)}),(t=>{n(t)}))};i()}))},Ii=async t=>{const e=(0,lt.H4)();if(!await e.exists(t)){Vn.debug("Directory does not exist, creating it",{absolutePath:t}),await e.createDirectory(t,{recursive:!0});const n=await e.stat(t,{details:!0,data:(0,lt.VL)()});(0,Nn.Ic)("files:node:created",(0,lt.Al)(n.data))}},Fi=async(t,e,n)=>{try{const s=t.filter((t=>n.find((e=>e.basename===(t instanceof File?t.name:t.basename))))).filter(Boolean),i=t.filter((t=>!s.includes(t))),{selected:r,renamed:o}=await(0,ii.o)(e.path,s,n);return Vn.debug("Conflict resolution",{uploads:i,selected:r,renamed:o}),0===r.length&&0===o.length?((0,qn.cf)((0,In.Tl)("files","Conflicts resolution skipped")),Vn.info("User skipped the conflict resolution"),[]):[...i,...r,...o]}catch(t){Ei.error(t),(0,qn.Qg)((0,In.Tl)("files","Upload cancelled")),Vn.error("User cancelled the upload")}return[]};var Pi=s(14456),Bi={};Bi.styleTagTransform=as(),Bi.setAttributes=ss(),Bi.insert=es().bind(null,"head"),Bi.domAPI=Zn(),Bi.insertStyleElement=rs(),Xn()(Pi.A,Bi),Pi.A&&Pi.A.locals&&Pi.A.locals;var Oi=s(53110),Di=s(36882),Ui=s(39285),ji=s(49264);let zi;const Mi=()=>(zi||(zi=new ji.A({concurrency:3})),zi);var Ri;!function(t){t.MOVE="Move",t.COPY="Copy",t.MOVE_OR_COPY="move-or-copy"}(Ri||(Ri={}));const Vi=t=>!!(t.reduce(((t,e)=>Math.min(t,e.permissions)),lt.aX.ALL)&lt.aX.UPDATE),$i=t=>(t=>t.every((t=>{var e,n;return!JSON.parse(null!==(e=null===(n=t.attributes)||void 0===n?void 0:n["share-attributes"])&&void 0!==e?e:"[]").some((t=>"permissions"===t.scope&&!1===t.enabled&&"download"===t.key))})))(t);var qi,Hi=s(36117),Wi=s(44719),Gi=s(34515);const Yi="/files/".concat(null===(qi=(0,ct.HW)())||void 0===qi?void 0:qi.uid),Ki=(0,dt.dC)("dav"+Yi),Qi=function(t){return t.split("").reduce((function(t,e){return 0|(t<<5)-t+e.charCodeAt(0)}),0)},Xi=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Ki;const e=(0,Wi.UU)(t,{headers:{requesttoken:(0,ct.do)()||""}});return(0,Wi.Gu)().patch("request",(t=>{var e;return null!==(e=t.headers)&&void 0!==e&&e.method&&(t.method=t.headers.method,delete t.headers.method),(0,Gi.E)(t)})),e}(),Ji=function(t){var e;const n=null===(e=(0,ct.HW)())||void 0===e?void 0:e.uid;if(!n)throw new Error("No user id found");const s=t.props,i=(0,lt.vb)(null==s?void 0:s.permissions),r=(s["owner-id"]||n).toString(),o=(0,dt.dC)("dav"+Yi+t.filename),a={id:(null==s?void 0:s.fileid)<0?Qi(o):(null==s?void 0:s.fileid)||0,source:o,mtime:new Date(t.lastmod),mime:t.mime||"application/octet-stream",size:(null==s?void 0:s.size)||0,permissions:i,owner:r,root:Yi,attributes:{...t,...s,hasPreview:null==s?void 0:s["has-preview"],failed:(null==s?void 0:s.fileid)<0}};return delete a.attributes.props,"file"===t.type?new lt.ZH(a):new lt.vd(a)},Zi=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"/";const e=new AbortController,n=(0,lt.VL)();return new Hi.CancelablePromise((async(s,i,r)=>{r((()=>e.abort()));try{const i=await Xi.getDirectoryContents(t,{details:!0,data:n,includeSelf:!0,signal:e.signal}),r=i.data[0],o=i.data.slice(1);if(r.filename!==t)throw new Error("Root node does not match requested path");s({folder:Ji(r),contents:o.map((t=>{try{return Ji(t)}catch(e){return Vn.error("Invalid node detected '".concat(t.basename,"'"),{error:e}),null}})).filter(Boolean)})}catch(t){i(t)}}))},tr=t=>{const e=t.filter((t=>t.type===lt.pt.File)).length,n=t.filter((t=>t.type===lt.pt.Folder)).length;return 0===e?(0,In.zw)("files","{folderCount} folder","{folderCount} folders",n,{folderCount:n}):0===n?(0,In.zw)("files","{fileCount} file","{fileCount} files",e,{fileCount:e}):1===e?(0,In.zw)("files","1 file and {folderCount} folder","1 file and {folderCount} folders",n,{folderCount:n}):1===n?(0,In.zw)("files","{fileCount} file and 1 folder","{fileCount} files and 1 folder",e,{fileCount:e}):(0,In.Tl)("files","{fileCount} files and {folderCount} folders",{fileCount:e,folderCount:n})},er=t=>Vi(t)?$i(t)?Ri.MOVE_OR_COPY:Ri.MOVE:Ri.COPY,nr=async function(t,e,n){let s=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if(!e)return;if(e.type!==lt.pt.Folder)throw new Error((0,In.Tl)("files","Destination is not a folder"));if(n===Ri.MOVE&&t.dirname===e.path)throw new Error((0,In.Tl)("files","This file/folder is already in that directory"));if("".concat(e.path,"/").startsWith("".concat(t.path,"/")))throw new Error((0,In.Tl)("files","You cannot move a file/folder onto itself or into a subfolder of itself"));r.Ay.set(t,"status",lt.zI.LOADING);const i=Mi();return await i.add((async()=>{const i=t=>1===t?(0,In.Tl)("files","(copy)"):(0,In.Tl)("files","(copy %n)",void 0,t);try{const r=(0,lt.H4)(),o=(0,Is.join)(lt.lJ,t.path),a=(0,Is.join)(lt.lJ,e.path);if(n===Ri.COPY){let n=t.basename;if(!s){const e=await r.getDirectoryContents(a);n=function(t,e){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:t=>"(".concat(t,")"),s=t,i=1;for(;e.includes(s);){const e=(0,Is.extname)(t);s="".concat((0,Is.basename)(t,e)," ").concat(n(i++)).concat(e)}return s}(t.basename,e.map((t=>t.basename)),i)}if(await r.copyFile(o,(0,Is.join)(a,n)),t.dirname===e.path){const{data:t}=await r.stat((0,Is.join)(a,n),{details:!0,data:(0,lt.VL)()});(0,Nn.Ic)("files:node:created",(0,lt.Al)(t))}}else{const n=await Zi(e.path);if((0,ii.h)([t],n.contents))try{const{selected:s,renamed:i}=await(0,ii.o)(e.path,[t],n.contents);if(!s.length&&!i.length)return await r.deleteFile(o),void(0,Nn.Ic)("files:node:deleted",t)}catch(t){return void(0,qn.Qg)((0,In.Tl)("files","Move cancelled"))}await r.moveFile(o,(0,Is.join)(a,t.basename)),(0,Nn.Ic)("files:node:deleted",t)}}catch(t){if(t instanceof Oi.pe){var o,a,l;if(412===(null==t||null===(o=t.response)||void 0===o?void 0:o.status))throw new Error((0,In.Tl)("files","A file or folder with that name already exists in this folder"));if(423===(null==t||null===(a=t.response)||void 0===a?void 0:a.status))throw new Error((0,In.Tl)("files","The files is locked"));if(404===(null==t||null===(l=t.response)||void 0===l?void 0:l.status))throw new Error((0,In.Tl)("files","The file does not exist anymore"));if(t.message)throw new Error(t.message)}throw Vn.debug(t),new Error}finally{r.Ay.set(t,"status",void 0)}}))},sr=async function(t){let e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"/",n=arguments.length>2?arguments[2]:void 0;const s=n.map((t=>t.fileid)).filter(Boolean),i=(0,qn.a1)((0,In.Tl)("files","Choose destination")).allowDirectories(!0).setFilter((t=>!!(t.permissions&lt.aX.CREATE)&&!s.includes(t.fileid))).setMimeTypeFilter([]).setMultiSelect(!1).startAt(e);return new Promise(((e,s)=>{i.setButtonFactory(((s,i)=>{const r=[],o=(0,Is.basename)(i),a=n.map((t=>t.dirname)),l=n.map((t=>t.path));return t!==Ri.COPY&&t!==Ri.MOVE_OR_COPY||r.push({label:o?(0,In.Tl)("files","Copy to {target}",{target:o}):(0,In.Tl)("files","Copy"),type:"primary",icon:Di,async callback(t){e({destination:t[0],action:Ri.COPY})}}),a.includes(i)||l.includes(i)||t!==Ri.MOVE&&t!==Ri.MOVE_OR_COPY||r.push({label:o?(0,In.Tl)("files","Move to {target}",{target:o}):(0,In.Tl)("files","Move"),type:t===Ri.MOVE?"primary":"secondary",icon:Ui,async callback(t){e({destination:t[0],action:Ri.MOVE})}}),r})),i.build().pick().catch((t=>{Vn.debug(t),t instanceof qn.vT?s(new Error((0,In.Tl)("files","Cancelled move or copy operation"))):s(new Error((0,In.Tl)("files","Move or copy operation failed")))}))}))};new lt.hY({id:"move-copy",displayName(t){switch(er(t)){case Ri.MOVE:return(0,In.Tl)("files","Move");case Ri.COPY:return(0,In.Tl)("files","Copy");case Ri.MOVE_OR_COPY:return(0,In.Tl)("files","Move or copy")}},iconSvgInline:()=>Ui,enabled:t=>!!t.every((t=>{var e;return null===(e=t.root)||void 0===e?void 0:e.startsWith("/files/")}))&&t.length>0&&(Vi(t)||$i(t)),async exec(t,e,n){const s=er([t]);let i;try{i=await sr(s,n,[t])}catch(t){return Vn.error(t),!1}try{return await nr(t,i.destination,i.action),!0}catch(t){return!!(t instanceof Error&&t.message)&&((0,qn.Qg)(t.message),null)}},async execBatch(t,e,n){const s=er(t),i=await sr(s,n,t),r=t.map((async t=>{try{return await nr(t,i.destination,i.action),!0}catch(e){return Vn.error("Failed to ".concat(i.action," node"),{node:t,error:e}),!1}}));return await Promise.all(r)},order:15});var ir=s(96763);const rr=async t=>{const e=t.filter((t=>"file"===t.kind||(Vn.debug("Skipping dropped item",{kind:t.kind,type:t.type}),!1))).map((t=>{var e,n,s,i;return null!==(e=null!==(n=null==t||null===(s=t.getAsEntry)||void 0===s?void 0:s.call(t))&&void 0!==n?n:null==t||null===(i=t.webkitGetAsEntry)||void 0===i?void 0:i.call(t))&&void 0!==e?e:t}));let n=!1;const s=new Si("root");for(const t of e)if(t instanceof DataTransferItem){Vn.warn("Could not get FilesystemEntry of item, falling back to file");const e=t.getAsFile();if(null===e){Vn.warn("Could not process DataTransferItem",{type:t.type,kind:t.kind}),(0,qn.Qg)((0,In.Tl)("files","One of the dropped files could not be processed"));continue}if("httpd/unix-directory"===e.type||!e.type){n||(Vn.warn("Browser does not support Filesystem API. Directories will not be uploaded"),(0,qn.I9)((0,In.Tl)("files","Your browser does not support the Filesystem API. Directories will not be uploaded")),n=!0);continue}s.contents.push(e)}else try{s.contents.push(await Li(t))}catch(t){Vn.error("Error while traversing file tree",{error:t})}return s},or=async(t,e,n)=>{const s=(0,ii.g)();if(await(0,ii.h)(t.contents,n)&&(t.contents=await Fi(t.contents,e,n)),0===t.contents.length)return Vn.info("No files to upload",{root:t}),(0,qn.cf)((0,In.Tl)("files","No files to upload")),[];Vn.debug("Uploading files to ".concat(e.path),{root:t,contents:t.contents});const i=[],r=async(t,n)=>{for(const o of t.contents){const t=(0,Is.join)(n,o.name);if(o instanceof Si){const n=(0,ki.HS)(lt.lJ,e.path,t);try{ir.debug("Processing directory",{relativePath:t}),await Ii(n),await r(o,t)}catch(t){(0,qn.Qg)((0,In.Tl)("files","Unable to create the directory {directory}",{directory:o.name})),Vn.error("",{error:t,absolutePath:n,directory:o})}}else Vn.debug("Uploading file to "+(0,Is.join)(e.path,t),{file:o}),i.push(s.upload(t,o,e.source))}};s.pause(),await r(t,"/"),s.start();const o=(await Promise.allSettled(i)).filter((t=>"rejected"===t.status));return o.length>0?(Vn.error("Error while uploading files",{errors:o}),(0,qn.Qg)((0,In.Tl)("files","Some files could not be uploaded")),[]):(Vn.debug("Files uploaded successfully"),(0,qn.Te)((0,In.Tl)("files","Files uploaded successfully")),Promise.all(i))},ar=async function(t,e,n){let s=arguments.length>3&&void 0!==arguments[3]&&arguments[3];const i=[];if(await(0,ii.h)(t,n)&&(t=await Fi(t,e,n)),0===t.length)return Vn.info("No files to process",{nodes:t}),void(0,qn.cf)((0,In.Tl)("files","No files to process"));for(const n of t)r.Ay.set(n,"status",lt.zI.LOADING),i.push(nr(n,e,s?Ri.COPY:Ri.MOVE));const o=await Promise.allSettled(i);t.forEach((t=>r.Ay.set(t,"status",void 0)));const a=o.filter((t=>"rejected"===t.status));if(a.length>0)return Vn.error("Error while copying or moving files",{errors:a}),void(0,qn.Qg)(s?(0,In.Tl)("files","Some files could not be copied"):(0,In.Tl)("files","Some files could not be moved"));Vn.debug("Files copy/move successful"),(0,qn.Te)(s?(0,In.Tl)("files","Files copied successfully"):(0,In.Tl)("files","Files moved successfully"))},lr=at("dragging",{state:()=>({dragging:[]}),actions:{set(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];r.Ay.set(this,"dragging",t)},reset(){r.Ay.set(this,"dragging",[])}}}),cr=r.Ay.extend({data:()=>({filesListWidth:null}),mounted(){var t;const e=document.querySelector("#app-content-vue");this.filesListWidth=null!==(t=null==e?void 0:e.clientWidth)&&void 0!==t?t:null,this.$resizeObserver=new ResizeObserver((t=>{t.length>0&&t[0].target===e&&(this.filesListWidth=t[0].contentRect.width)})),this.$resizeObserver.observe(e)},beforeDestroy(){this.$resizeObserver.disconnect()}}),dr=(0,r.pM)({name:"BreadCrumbs",components:{NcBreadcrumbs:Ti.N,NcBreadcrumb:_i.N,NcIconSvgWrapper:Un.A},mixins:[cr],props:{path:{type:String,default:"/"}},setup:()=>({draggingStore:lr(),filesStore:wi(),pathsStore:yi(),selectionStore:bi(),uploaderStore:xi()}),computed:{currentView(){return this.$navigation.active},dirs(){var t;return["/",...this.path.split("/").filter(Boolean).map((t="/",e=>t+="".concat(e,"/"))).map((t=>t.replace(/^(.+)\/$/,"$1")))]},sections(){return this.dirs.map(((t,e)=>{const n=this.getFileIdFromPath(t),s={...this.$route,params:{fileid:n},query:{dir:t}};return{dir:t,exact:!0,name:this.getDirDisplayName(t),to:s,disableDrop:e===this.dirs.length-1}}))},isUploadInProgress(){return 0!==this.uploaderStore.queue.length},shouldShowBreadcrumbs(){return this.isUploadInProgress?this.filesListWidth>768:this.filesListWidth>400},viewIcon(){var t,e;return null!==(t=null===(e=this.currentView)||void 0===e?void 0:e.icon)&&void 0!==t?t:'<svg xmlns="http://www.w3.org/2000/svg" id="mdi-home" viewBox="0 0 24 24"><path d="M10,20V14H14V20H19V12H22L12,3L2,12H5V20H10Z" /></svg>'},selectedFiles(){return this.selectionStore.selected},draggingFiles(){return this.draggingStore.dragging}},methods:{getNodeFromId(t){return this.filesStore.getNode(t)},getFileIdFromPath(t){var e;return this.pathsStore.getPath(null===(e=this.currentView)||void 0===e?void 0:e.id,t)},getDirDisplayName(t){var e,n;if("/"===t)return(null===(n=this.$navigation)||void 0===n||null===(n=n.active)||void 0===n?void 0:n.name)||(0,In.Tl)("files","Home");const s=this.getFileIdFromPath(t),i=s?this.getNodeFromId(s):void 0;return(null==i||null===(e=i.attributes)||void 0===e?void 0:e.displayName)||(0,Is.basename)(t)},onClick(t){var e;(null==t||null===(e=t.query)||void 0===e?void 0:e.dir)===this.$route.query.dir&&this.$emit("reload")},onDragOver(t,e){e!==this.dirs[this.dirs.length-1]?t.ctrlKey?t.dataTransfer.dropEffect="copy":t.dataTransfer.dropEffect="move":t.dataTransfer.dropEffect="none"},async onDrop(t,e){var n,s,i;if(!(this.draggingFiles||null!==(n=t.dataTransfer)&&void 0!==n&&null!==(n=n.items)&&void 0!==n&&n.length))return;t.preventDefault();const r=this.draggingFiles,o=[...(null===(s=t.dataTransfer)||void 0===s?void 0:s.items)||[]],a=await rr(o),l=await(null===(i=this.currentView)||void 0===i?void 0:i.getContents(e)),c=null==l?void 0:l.folder;if(!c)return void(0,qn.Qg)(this.t("files","Target folder does not exist any more"));const d=!!(c.permissions&lt.aX.CREATE),u=t.ctrlKey;if(!d||0!==t.button)return;if(Vn.debug("Dropped",{event:t,folder:c,selection:r,fileTree:a}),a.contents.length>0)return void await or(a,c,l.contents);const m=r.map((t=>this.filesStore.getNode(t)));await ar(m,c,l.contents,u),r.some((t=>this.selectedFiles.includes(t)))&&(Vn.debug("Dropped selection, resetting select store..."),this.selectionStore.reset())},titleForSection(t,e){var n;return(null==e||null===(n=e.to)||void 0===n||null===(n=n.query)||void 0===n?void 0:n.dir)===this.$route.query.dir?(0,In.Tl)("files","Reload current directory"):0===t?(0,In.Tl)("files",'Go to the "{dir}" directory',e):null},ariaForSection(t){var e;return(null==t||null===(e=t.to)||void 0===e||null===(e=e.query)||void 0===e?void 0:e.dir)===this.$route.query.dir?(0,In.Tl)("files","Reload current directory"):null},t:In.Tl}});var ur=s(68694),mr={};mr.styleTagTransform=as(),mr.setAttributes=ss(),mr.insert=es().bind(null,"head"),mr.domAPI=Zn(),mr.insertStyleElement=rs(),Xn()(ur.A,mr),ur.A&&ur.A.locals&&ur.A.locals;const pr=(0,Pn.A)(dr,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("NcBreadcrumbs",{attrs:{"data-cy-files-content-breadcrumbs":"","aria-label":t.t("files","Current directory path")},scopedSlots:t._u([{key:"actions",fn:function(){return[t._t("actions")]},proxy:!0}],null,!0)},t._l(t.sections,(function(n,s){return e("NcBreadcrumb",t._b({directives:[{name:"show",rawName:"v-show",value:t.shouldShowBreadcrumbs,expression:"shouldShowBreadcrumbs"}],key:n.dir,attrs:{dir:"auto",to:n.to,"force-icon-text":!0,title:t.titleForSection(s,n),"aria-description":t.ariaForSection(n)},on:{drop:function(e){return t.onDrop(e,n.dir)}},nativeOn:{click:function(e){return t.onClick(n.to)},dragover:function(e){return t.onDragOver(e,n.dir)}},scopedSlots:t._u([0===s?{key:"icon",fn:function(){return[e("NcIconSvgWrapper",{attrs:{size:20,svg:t.viewIcon}})]},proxy:!0}:null],null,!0)},"NcBreadcrumb",n,!1))})),1)}),[],!1,null,"88ea2982",null).exports;var fr=s(51651);const gr=at("actionsmenu",{state:()=>({opened:null})}),hr=function(){const t=at("renaming",{state:()=>({renamingNode:void 0,newName:""})})(...arguments);return t._initialized||((0,Nn.B1)("files:node:rename",(function(e){t.renamingNode=e,t.newName=e.basename})),t._initialized=!0),t};var vr=s(55042);const Ar={name:"FileMultipleIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},wr=(0,Pn.A)(Ar,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon file-multiple-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M15,7H20.5L15,1.5V7M8,0H16L22,6V18A2,2 0 0,1 20,20H8C6.89,20 6,19.1 6,18V2A2,2 0 0,1 8,0M4,4V22H20V24H4A2,2 0 0,1 2,22V4H4Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,yr={name:"FolderIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},br=(0,Pn.A)(yr,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon folder-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6H12L10,4Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,Cr=r.Ay.extend({name:"DragAndDropPreview",components:{FileMultipleIcon:wr,FolderIcon:br},data:()=>({nodes:[]}),computed:{isSingleNode(){return 1===this.nodes.length},isSingleFolder(){return this.isSingleNode&&this.nodes[0].type===lt.pt.Folder},name(){return this.size?"".concat(this.summary," – ").concat(this.size):this.summary},size(){const t=this.nodes.reduce(((t,e)=>t+e.size||0),0),e=parseInt(t,10)||0;return"number"!=typeof e||e<0?null:(0,lt.v7)(e,!0)},summary(){if(this.isSingleNode){var t;const e=this.nodes[0];return(null===(t=e.attributes)||void 0===t?void 0:t.displayName)||e.basename}return tr(this.nodes)}},methods:{update(t){this.nodes=t,this.$refs.previewImg.replaceChildren(),t.slice(0,3).forEach((t=>{const e=document.querySelector('[data-cy-files-list-row-fileid="'.concat(t.fileid,'"] .files-list__row-icon img'));e&&this.$refs.previewImg.appendChild(e.parentNode.cloneNode(!0))})),this.$nextTick((()=>{this.$emit("loaded",this.$el)}))}}}),xr=Cr;var _r=s(52608),Tr={};Tr.styleTagTransform=as(),Tr.setAttributes=ss(),Tr.insert=es().bind(null,"head"),Tr.domAPI=Zn(),Tr.insertStyleElement=rs(),Xn()(_r.A,Tr),_r.A&&_r.A.locals&&_r.A.locals;const kr=(0,Pn.A)(xr,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("div",{staticClass:"files-list-drag-image"},[e("span",{staticClass:"files-list-drag-image__icon"},[e("span",{ref:"previewImg"}),t._v(" "),t.isSingleFolder?e("FolderIcon"):e("FileMultipleIcon")],1),t._v(" "),e("span",{staticClass:"files-list-drag-image__name"},[t._v(t._s(t.name))])])}),[],!1,null,null,null).exports,Er=r.Ay.extend(kr);let Sr;r.Ay.directive("onClickOutside",vr.z0);const Lr=(0,r.pM)({props:{source:{type:[lt.vd,lt.ZH,lt.bP],required:!0},nodes:{type:Array,required:!0},filesListWidth:{type:Number,default:0}},data:()=>({loading:"",dragover:!1,gridMode:!1}),computed:{currentView(){return this.$navigation.active},currentDir(){var t;return((null===(t=this.$route)||void 0===t||null===(t=t.query)||void 0===t||null===(t=t.dir)||void 0===t?void 0:t.toString())||"/").replace(/^(.+)\/$/,"$1")},currentFileId(){var t,e;return(null===(t=this.$route.params)||void 0===t?void 0:t.fileid)||(null===(e=this.$route.query)||void 0===e?void 0:e.fileid)||null},fileid(){var t;return null===(t=this.source)||void 0===t?void 0:t.fileid},uniqueId(){return Qi(this.source.source)},isLoading(){return this.source.status===lt.zI.LOADING},extension(){var t;return null!==(t=this.source.attributes)&&void 0!==t&&t.displayName?(0,Is.extname)(this.source.attributes.displayName):this.source.extension||""},displayName(){const t=this.extension,e=this.source.attributes.displayName||this.source.basename;return t?e.slice(0,0-t.length):e},draggingFiles(){return this.draggingStore.dragging},selectedFiles(){return this.selectionStore.selected},isSelected(){return this.fileid&&this.selectedFiles.includes(this.fileid)},isRenaming(){return this.renamingStore.renamingNode===this.source},isRenamingSmallScreen(){return this.isRenaming&&this.filesListWidth<512},isActive(){var t,e,n,s;return(null===(t=this.fileid)||void 0===t||null===(e=t.toString)||void 0===e?void 0:e.call(t))===(null===(n=this.currentFileId)||void 0===n||null===(s=n.toString)||void 0===s?void 0:s.call(n))},canDrag(){if(this.isRenaming)return!1;const t=t=>!!((null==t?void 0:t.permissions)&lt.aX.UPDATE);return this.selectedFiles.length>0?this.selectedFiles.map((t=>this.filesStore.getNode(t))).every(t):t(this.source)},canDrop(){return!(this.source.type!==lt.pt.Folder||this.fileid&&this.draggingFiles.includes(this.fileid)||!(this.source.permissions&lt.aX.CREATE))},openedMenu:{get(){return this.actionsMenuStore.opened===this.uniqueId.toString()},set(t){if(t){var e;const t=null===(e=this.$el)||void 0===e?void 0:e.closest("main.app-content");t.style.removeProperty("--mouse-pos-x"),t.style.removeProperty("--mouse-pos-y")}this.actionsMenuStore.opened=t?this.uniqueId.toString():null}}},watch:{source(){this.resetState()}},beforeDestroy(){this.resetState()},methods:{resetState(){this.loading="",this.$refs.preview.reset(),this.openedMenu=!1},onRightClick(t){if(this.openedMenu)return;if(!this.gridMode){var e;const n=null===(e=this.$el)||void 0===e?void 0:e.closest("main.app-content"),s=n.getBoundingClientRect();n.style.setProperty("--mouse-pos-x",Math.max(0,t.clientX-s.left-200)+"px"),n.style.setProperty("--mouse-pos-y",Math.max(0,t.clientY-s.top)+"px")}const n=this.selectedFiles.length>1;this.actionsMenuStore.opened=this.isSelected&&n?"global":this.uniqueId.toString(),t.preventDefault(),t.stopPropagation()},execDefaultAction(t){if(t.ctrlKey||t.metaKey)return t.preventDefault(),window.open((0,dt.Jv)("/f/{fileId}",{fileId:this.fileid})),!1;this.$refs.actions.execDefaultAction(t)},openDetailsIfAvailable(t){var e;t.preventDefault(),t.stopPropagation(),null!=Ai&&null!==(e=Ai.enabled)&&void 0!==e&&e.call(Ai,[this.source],this.currentView)&&Ai.exec(this.source,this.currentView,this.currentDir)},onDragOver(t){this.dragover=this.canDrop,this.canDrop?t.ctrlKey?t.dataTransfer.dropEffect="copy":t.dataTransfer.dropEffect="move":t.dataTransfer.dropEffect="none"},onDragLeave(t){const e=t.currentTarget;null!=e&&e.contains(t.relatedTarget)||(this.dragover=!1)},async onDragStart(t){var e,n,s;if(t.stopPropagation(),!this.canDrag||!this.fileid)return t.preventDefault(),void t.stopPropagation();Vn.debug("Drag started",{event:t}),null===(e=t.dataTransfer)||void 0===e||null===(n=e.clearData)||void 0===n||n.call(e),this.renamingStore.$reset(),this.selectedFiles.includes(this.fileid)?this.draggingStore.set(this.selectedFiles):this.draggingStore.set([this.fileid]);const i=this.draggingStore.dragging.map((t=>this.filesStore.getNode(t))),r=await(async t=>new Promise((e=>{Sr||(Sr=(new Er).$mount(),document.body.appendChild(Sr.$el)),Sr.update(t),Sr.$on("loaded",(()=>{e(Sr.$el),Sr.$off("loaded")}))})))(i);null===(s=t.dataTransfer)||void 0===s||s.setDragImage(r,-10,-10)},onDragEnd(){this.draggingStore.reset(),this.dragover=!1,Vn.debug("Drag ended")},async onDrop(t){var e,n,s;if(!(this.draggingFiles||null!==(e=t.dataTransfer)&&void 0!==e&&null!==(e=e.items)&&void 0!==e&&e.length))return;t.preventDefault(),t.stopPropagation();const i=this.draggingFiles,r=[...(null===(n=t.dataTransfer)||void 0===n?void 0:n.items)||[]],o=await rr(r),a=await(null===(s=this.currentView)||void 0===s?void 0:s.getContents(this.source.path)),l=null==a?void 0:a.folder;if(!l)return void(0,qn.Qg)(this.t("files","Target folder does not exist any more"));if(!this.canDrop||t.button)return;const c=t.ctrlKey;if(this.dragover=!1,Vn.debug("Dropped",{event:t,folder:l,selection:i,fileTree:o}),o.contents.length>0)return void await or(o,l,a.contents);const d=i.map((t=>this.filesStore.getNode(t)));await ar(d,l,a.contents,c),i.some((t=>this.selectedFiles.includes(t)))&&(Vn.debug("Dropped selection, resetting select store..."),this.selectionStore.reset())},t:In.Tl}});var Nr=s(4604);const Ir={name:"CustomElementRender",props:{source:{type:Object,required:!0},currentView:{type:Object,required:!0},render:{type:Function,required:!0}},watch:{source(){this.updateRootElement()},currentView(){this.updateRootElement()}},mounted(){this.updateRootElement()},methods:{async updateRootElement(){const t=await this.render(this.source,this.currentView);t?this.$el.replaceChildren(t):this.$el.replaceChildren()}}},Fr=(0,Pn.A)(Ir,(function(){return(0,this._self._c)("span")}),[],!1,null,null,null).exports,Pr={name:"ArrowLeftIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Br=(0,Pn.A)(Pr,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon arrow-left-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,Or={name:"ChevronRightIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},Dr=(0,Pn.A)(Or,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon chevron-right-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports;var Ur=s(63420),jr=s(24764),zr=s(10501);const Mr=(0,lt.qK)(),Rr=r.Ay.extend({name:"FileEntryActions",components:{ArrowLeftIcon:Br,ChevronRightIcon:Dr,CustomElementRender:Fr,NcActionButton:Ur.A,NcActions:jr.A,NcActionSeparator:zr.A,NcIconSvgWrapper:Un.A,NcLoadingIcon:ui.A},props:{filesListWidth:{type:Number,required:!0},loading:{type:String,required:!0},opened:{type:Boolean,default:!1},source:{type:Object,required:!0},gridMode:{type:Boolean,default:!1}},data:()=>({openedSubmenu:null}),computed:{currentDir(){var t;return((null===(t=this.$route)||void 0===t||null===(t=t.query)||void 0===t||null===(t=t.dir)||void 0===t?void 0:t.toString())||"/").replace(/^(.+)\/$/,"$1")},currentView(){return this.$navigation.active},isLoading(){return this.source.status===lt.zI.LOADING},enabledActions(){return this.source.attributes.failed?[]:Mr.filter((t=>!t.enabled||t.enabled([this.source],this.currentView))).sort(((t,e)=>(t.order||0)-(e.order||0)))},enabledInlineActions(){return this.filesListWidth<768||this.gridMode?[]:this.enabledActions.filter((t=>{var e;return null==t||null===(e=t.inline)||void 0===e?void 0:e.call(t,this.source,this.currentView)}))},enabledRenderActions(){return this.gridMode?[]:this.enabledActions.filter((t=>"function"==typeof t.renderInline))},enabledDefaultActions(){return this.enabledActions.filter((t=>!(null==t||!t.default)))},enabledMenuActions(){if(this.openedSubmenu)return this.enabledInlineActions;const t=[...this.enabledInlineActions,...this.enabledActions.filter((t=>t.default!==lt.m9.HIDDEN&&"function"!=typeof t.renderInline))].filter(((t,e,n)=>e===n.findIndex((e=>e.id===t.id)))),e=t.filter((t=>!t.parent)).map((t=>t.id));return t.filter((t=>!(t.parent&&e.includes(t.parent))))},enabledSubmenuActions(){return this.enabledActions.filter((t=>t.parent)).reduce(((t,e)=>(t[e.parent]||(t[e.parent]=[]),t[e.parent].push(e),t)),{})},openedMenu:{get(){return this.opened},set(t){this.$emit("update:opened",t)}},getBoundariesElement:()=>document.querySelector(".app-content > .files-list"),mountType(){return this.source._attributes["mount-type"]}},methods:{actionDisplayName(t){if((this.gridMode||this.filesListWidth<768&&t.inline)&&"function"==typeof t.title){const e=t.title([this.source],this.currentView);if(e)return e}return t.displayName([this.source],this.currentView)},async onActionClick(t){let e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(this.isLoading||""!==this.loading)return;if(this.enabledSubmenuActions[t.id])return void(this.openedSubmenu=t);const n=t.displayName([this.source],this.currentView);try{this.$emit("update:loading",t.id),r.Ay.set(this.source,"status",lt.zI.LOADING);const e=await t.exec(this.source,this.currentView,this.currentDir);if(null==e)return;if(e)return void(0,qn.Te)((0,In.Tl)("files",'"{displayName}" action executed successfully',{displayName:n}));(0,qn.Qg)((0,In.Tl)("files",'"{displayName}" action failed',{displayName:n}))}catch(e){Vn.error("Error while executing action",{action:t,e}),(0,qn.Qg)((0,In.Tl)("files",'"{displayName}" action failed',{displayName:n}))}finally{this.$emit("update:loading",""),r.Ay.set(this.source,"status",void 0),e&&(this.openedSubmenu=null)}},execDefaultAction(t){this.enabledDefaultActions.length>0&&(t.preventDefault(),t.stopPropagation(),this.enabledDefaultActions[0].exec(this.source,this.currentView,this.currentDir))},isMenu(t){var e;return(null===(e=this.enabledSubmenuActions[t])||void 0===e?void 0:e.length)>0},async onBackToMenuClick(t){this.openedSubmenu=null,await this.$nextTick(),this.$nextTick((()=>{const e=this.$refs["action-".concat(t.id)][0];var n;e&&(null===(n=e.$el.querySelector("button"))||void 0===n||n.focus())}))},t:In.Tl}}),Vr=Rr;var $r=s(91613),qr={};qr.styleTagTransform=as(),qr.setAttributes=ss(),qr.insert=es().bind(null,"head"),qr.domAPI=Zn(),qr.insertStyleElement=rs(),Xn()($r.A,qr),$r.A&&$r.A.locals&&$r.A.locals;var Hr=s(63337),Wr={};Wr.styleTagTransform=as(),Wr.setAttributes=ss(),Wr.insert=es().bind(null,"head"),Wr.domAPI=Zn(),Wr.insertStyleElement=rs(),Xn()(Hr.A,Wr),Hr.A&&Hr.A.locals&&Hr.A.locals;var Gr=(0,Pn.A)(Vr,(function(){var t,e,n=this,s=n._self._c;return n._self._setupProxy,s("td",{staticClass:"files-list__row-actions",attrs:{"data-cy-files-list-row-actions":""}},[n._l(n.enabledRenderActions,(function(t){return s("CustomElementRender",{key:t.id,staticClass:"files-list__row-action--inline",class:"files-list__row-action-"+t.id,attrs:{"current-view":n.currentView,render:t.renderInline,source:n.source}})})),n._v(" "),s("NcActions",{ref:"actionsMenu",attrs:{"boundaries-element":n.getBoundariesElement,container:n.getBoundariesElement,"force-name":!0,type:"tertiary","force-menu":0===n.enabledInlineActions.length,inline:n.enabledInlineActions.length,open:n.openedMenu},on:{"update:open":function(t){n.openedMenu=t},close:function(t){n.openedSubmenu=null}}},[n._l(n.enabledMenuActions,(function(t){var e;return s("NcActionButton",{key:t.id,ref:"action-".concat(t.id),refInFor:!0,class:{["files-list__row-action-".concat(t.id)]:!0,"files-list__row-action--menu":n.isMenu(t.id)},attrs:{"close-after-click":!n.isMenu(t.id),"data-cy-files-list-row-action":t.id,"is-menu":n.isMenu(t.id),title:null===(e=t.title)||void 0===e?void 0:e.call(t,[n.source],n.currentView)},on:{click:function(e){return n.onActionClick(t)}},scopedSlots:n._u([{key:"icon",fn:function(){return[n.loading===t.id?s("NcLoadingIcon",{attrs:{size:18}}):s("NcIconSvgWrapper",{attrs:{svg:t.iconSvgInline([n.source],n.currentView)}})]},proxy:!0}],null,!0)},[n._v("\n\t\t\t"+n._s("shared"===n.mountType&&"sharing-status"===t.id?"":n.actionDisplayName(t))+"\n\t\t")])})),n._v(" "),n.openedSubmenu&&n.enabledSubmenuActions[null===(t=n.openedSubmenu)||void 0===t?void 0:t.id]?[s("NcActionButton",{staticClass:"files-list__row-action-back",on:{click:function(t){return n.onBackToMenuClick(n.openedSubmenu)}},scopedSlots:n._u([{key:"icon",fn:function(){return[s("ArrowLeftIcon")]},proxy:!0}],null,!1,3001860362)},[n._v("\n\t\t\t\t"+n._s(n.actionDisplayName(n.openedSubmenu))+"\n\t\t\t")]),n._v(" "),s("NcActionSeparator"),n._v(" "),n._l(n.enabledSubmenuActions[null===(e=n.openedSubmenu)||void 0===e?void 0:e.id],(function(t){var e;return s("NcActionButton",{key:t.id,staticClass:"files-list__row-action--submenu",class:"files-list__row-action-".concat(t.id),attrs:{"close-after-click":!1,"data-cy-files-list-row-action":t.id,title:null===(e=t.title)||void 0===e?void 0:e.call(t,[n.source],n.currentView)},on:{click:function(e){return n.onActionClick(t)}},scopedSlots:n._u([{key:"icon",fn:function(){return[n.loading===t.id?s("NcLoadingIcon",{attrs:{size:18}}):s("NcIconSvgWrapper",{attrs:{svg:t.iconSvgInline([n.source],n.currentView)}})]},proxy:!0}],null,!0)},[n._v("\n\t\t\t\t"+n._s(n.actionDisplayName(t))+"\n\t\t\t")])}))]:n._e()],2)],2)}),[],!1,null,"6168180a",null);const Yr=Gr.exports,Kr=(0,r.pM)({name:"FileEntryCheckbox",components:{NcCheckboxRadioSwitch:ps.A,NcLoadingIcon:ui.A},props:{fileid:{type:Number,required:!0},isLoading:{type:Boolean,default:!1},nodes:{type:Array,required:!0},source:{type:Object,required:!0}},setup(){const t=bi(),e=function(){const t=at("keyboard",{state:()=>({altKey:!1,ctrlKey:!1,metaKey:!1,shiftKey:!1}),actions:{onEvent(t){t||(t=window.event),r.Ay.set(this,"altKey",!!t.altKey),r.Ay.set(this,"ctrlKey",!!t.ctrlKey),r.Ay.set(this,"metaKey",!!t.metaKey),r.Ay.set(this,"shiftKey",!!t.shiftKey)}}})(...arguments);return t._initialized||(window.addEventListener("keydown",t.onEvent),window.addEventListener("keyup",t.onEvent),window.addEventListener("mousemove",t.onEvent),t._initialized=!0),t}();return{keyboardStore:e,selectionStore:t}},computed:{selectedFiles(){return this.selectionStore.selected},isSelected(){return this.selectedFiles.includes(this.fileid)},index(){return this.nodes.findIndex((t=>t.fileid===this.fileid))},isFile(){return this.source.type===lt.pt.File},ariaLabel(){return this.isFile?(0,In.Tl)("files",'Toggle selection for file "{displayName}"',{displayName:this.source.basename}):(0,In.Tl)("files",'Toggle selection for folder "{displayName}"',{displayName:this.source.basename})}},methods:{onSelectionChange(t){var e;const n=this.index,s=this.selectionStore.lastSelectedIndex;if(null!==(e=this.keyboardStore)&&void 0!==e&&e.shiftKey&&null!==s){const t=this.selectedFiles.includes(this.fileid),e=Math.min(n,s),i=Math.max(s,n),r=this.selectionStore.lastSelection,o=this.nodes.map((t=>t.fileid)).slice(e,i+1).filter(Boolean),a=[...r,...o].filter((e=>!t||e!==this.fileid));return Vn.debug("Shift key pressed, selecting all files in between",{start:e,end:i,filesToSelect:o,isAlreadySelected:t}),void this.selectionStore.set(a)}const i=t?[...this.selectedFiles,this.fileid]:this.selectedFiles.filter((t=>t!==this.fileid));Vn.debug("Updating selection",{selection:i}),this.selectionStore.set(i),this.selectionStore.setLastIndex(n)},resetSelection(){this.selectionStore.reset()},t:In.Tl}}),Qr=(0,Pn.A)(Kr,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("td",{staticClass:"files-list__row-checkbox",on:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"])||e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:t.resetSelection.apply(null,arguments)}}},[t.isLoading?e("NcLoadingIcon"):e("NcCheckboxRadioSwitch",{attrs:{"aria-label":t.ariaLabel,checked:t.isSelected},on:{"update:checked":t.onSelectionChange}})],1)}),[],!1,null,null,null).exports;var Xr=s(82182);const Jr=(0,jn.C)("files","forbiddenCharacters",""),Zr=r.Ay.extend({name:"FileEntryName",components:{NcTextField:Xr.A},props:{displayName:{type:String,required:!0},extension:{type:String,required:!0},filesListWidth:{type:Number,required:!0},nodes:{type:Array,required:!0},source:{type:Object,required:!0},gridMode:{type:Boolean,default:!1}},setup:()=>({renamingStore:hr()}),computed:{isRenaming(){return this.renamingStore.renamingNode===this.source},isRenamingSmallScreen(){return this.isRenaming&&this.filesListWidth<512},newName:{get(){return this.renamingStore.newName},set(t){this.renamingStore.newName=t}},renameLabel(){return{[lt.pt.File]:(0,In.Tl)("files","File name"),[lt.pt.Folder]:(0,In.Tl)("files","Folder name")}[this.source.type]},linkTo(){var t,e;if(this.source.attributes.failed)return{is:"span",params:{title:(0,In.Tl)("files","This node is unavailable")}};const n=null===(t=this.$parent)||void 0===t||null===(t=t.$refs)||void 0===t||null===(t=t.actions)||void 0===t?void 0:t.enabledDefaultActions;return(null==n?void 0:n.length)>0?{is:"a",params:{title:n[0].displayName([this.source],this.currentView),role:"button",tabindex:"0"}}:(null===(e=this.source)||void 0===e?void 0:e.permissions)&lt.aX.READ?{is:"a",params:{download:this.source.basename,href:this.source.source,title:(0,In.Tl)("files","Download file {name}",{name:this.displayName}),tabindex:"0"}}:{is:"span"}}},watch:{isRenaming:{immediate:!0,handler(t){t&&this.startRenaming()}}},methods:{checkInputValidity(t){var e,n;const s=t.target,i=(null===(e=(n=this.newName).trim)||void 0===e?void 0:e.call(n))||"";Vn.debug("Checking input validity",{newName:i});try{this.isFileNameValid(i),s.setCustomValidity(""),s.title=""}catch(t){s.setCustomValidity(t.message),s.title=t.message}finally{s.reportValidity()}},isFileNameValid(t){const e=t.trim();if("."===e||".."===e)throw new Error((0,In.Tl)("files",'"{name}" is an invalid file name.',{name:t}));if(0===e.length)throw new Error((0,In.Tl)("files","File name cannot be empty."));if(-1!==e.indexOf("/"))throw new Error((0,In.Tl)("files",'"/" is not allowed inside a file name.'));if(e.match(OC.config.blacklist_files_regex))throw new Error((0,In.Tl)("files",'"{name}" is not an allowed filetype.',{name:t}));if(this.checkIfNodeExists(t))throw new Error((0,In.Tl)("files","{newName} already exists.",{newName:t}));return e.split("").forEach((t=>{if(-1!==Jr.indexOf(t))throw new Error(this.t("files",'"{char}" is not allowed inside a file name.',{char:t}))})),!0},checkIfNodeExists(t){return this.nodes.find((e=>e.basename===t&&e!==this.source))},startRenaming(){this.$nextTick((()=>{var t;const e=(this.source.extension||"").split("").length,n=this.source.basename.split("").length-e,s=null===(t=this.$refs.renameInput)||void 0===t||null===(t=t.$refs)||void 0===t||null===(t=t.inputField)||void 0===t||null===(t=t.$refs)||void 0===t?void 0:t.input;s?(s.setSelectionRange(0,n),s.focus(),s.dispatchEvent(new Event("keyup"))):Vn.error("Could not find the rename input")}))},stopRenaming(){this.isRenaming&&this.renamingStore.$reset()},async onRename(){var t,e;const n=this.source.basename,s=this.source.encodedSource,i=(null===(t=(e=this.newName).trim)||void 0===t?void 0:t.call(e))||"";if(""!==i)if(n!==i)if(this.checkIfNodeExists(i))(0,qn.Qg)((0,In.Tl)("files","Another entry with the same name already exists"));else{this.loading="renaming",r.Ay.set(this.source,"status",lt.zI.LOADING),this.source.rename(i),Vn.debug("Moving file to",{destination:this.source.encodedSource,oldEncodedSource:s});try{await(0,zn.A)({method:"MOVE",url:s,headers:{Destination:this.source.encodedSource,Overwrite:"F"}}),(0,Nn.Ic)("files:node:updated",this.source),(0,Nn.Ic)("files:node:renamed",this.source),(0,qn.Te)((0,In.Tl)("files",'Renamed "{oldName}" to "{newName}"',{oldName:n,newName:i})),this.stopRenaming(),this.$nextTick((()=>{this.$refs.basename.focus()}))}catch(t){var o,a;if(Vn.error("Error while renaming file",{error:t}),this.source.rename(n),this.$refs.renameInput.focus(),404===(null==t||null===(o=t.response)||void 0===o?void 0:o.status))return void(0,qn.Qg)((0,In.Tl)("files",'Could not rename "{oldName}", it does not exist any more',{oldName:n}));if(412===(null==t||null===(a=t.response)||void 0===a?void 0:a.status))return void(0,qn.Qg)((0,In.Tl)("files",'The name "{newName}" is already used in the folder "{dir}". Please choose a different name.',{newName:i,dir:this.currentDir}));(0,qn.Qg)((0,In.Tl)("files",'Could not rename "{oldName}"',{oldName:n}))}finally{this.loading=!1,r.Ay.set(this.source,"status",void 0)}}else this.stopRenaming();else(0,qn.Qg)((0,In.Tl)("files","Name cannot be empty"))},t:In.Tl}}),to=(0,Pn.A)(Zr,(function(){var t=this,e=t._self._c;return t._self._setupProxy,t.isRenaming?e("form",{directives:[{name:"on-click-outside",rawName:"v-on-click-outside",value:t.stopRenaming,expression:"stopRenaming"}],staticClass:"files-list__row-rename",attrs:{"aria-label":t.t("files","Rename file")},on:{submit:function(e){return e.preventDefault(),e.stopPropagation(),t.onRename.apply(null,arguments)}}},[e("NcTextField",{ref:"renameInput",attrs:{label:t.renameLabel,autofocus:!0,minlength:1,required:!0,value:t.newName,enterkeyhint:"done"},on:{"update:value":function(e){t.newName=e},keyup:[t.checkInputValidity,function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"])?null:t.stopRenaming.apply(null,arguments)}]}})],1):e(t.linkTo.is,t._b({ref:"basename",tag:"component",staticClass:"files-list__row-name-link",attrs:{"aria-hidden":t.isRenaming,"data-cy-files-list-row-name-link":""},on:{click:function(e){return t.$emit("click",e)}}},"component",t.linkTo.params,!1),[e("span",{staticClass:"files-list__row-name-text"},[e("span",{staticClass:"files-list__row-name-",domProps:{textContent:t._s(t.displayName)}}),t._v(" "),e("span",{staticClass:"files-list__row-name-ext",domProps:{textContent:t._s(t.extension)}})])])}),[],!1,null,null,null).exports;var eo=s(72755);const no={name:"FileIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},so=(0,Pn.A)(no,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon file-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M13,9V3.5L18.5,9M6,2C4.89,2 4,2.89 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2H6Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,io={name:"FolderOpenIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},ro=(0,Pn.A)(io,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon folder-open-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19,20H4C2.89,20 2,19.1 2,18V6C2,4.89 2.89,4 4,4H10L12,6H19A2,2 0 0,1 21,8H21L4,8V18L6.14,10H23.21L20.93,18.5C20.7,19.37 19.92,20 19,20Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,oo={name:"KeyIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},ao=(0,Pn.A)(oo,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon key-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M7 14C5.9 14 5 13.1 5 12S5.9 10 7 10 9 10.9 9 12 8.1 14 7 14M12.6 10C11.8 7.7 9.6 6 7 6C3.7 6 1 8.7 1 12S3.7 18 7 18C9.6 18 11.8 16.3 12.6 14H16V18H20V14H23V10H12.6Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,lo={name:"NetworkIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},co=(0,Pn.A)(lo,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon network-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M17,3A2,2 0 0,1 19,5V15A2,2 0 0,1 17,17H13V19H14A1,1 0 0,1 15,20H22V22H15A1,1 0 0,1 14,23H10A1,1 0 0,1 9,22H2V20H9A1,1 0 0,1 10,19H11V17H7C5.89,17 5,16.1 5,15V5A2,2 0 0,1 7,3H17Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,uo={name:"TagIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},mo=(0,Pn.A)(uo,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon tag-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M5.5,7A1.5,1.5 0 0,1 4,5.5A1.5,1.5 0 0,1 5.5,4A1.5,1.5 0 0,1 7,5.5A1.5,1.5 0 0,1 5.5,7M21.41,11.58L12.41,2.58C12.05,2.22 11.55,2 11,2H4C2.89,2 2,2.89 2,4V11C2,11.55 2.22,12.05 2.59,12.41L11.58,21.41C11.95,21.77 12.45,22 13,22C13.55,22 14.05,21.77 14.41,21.41L21.41,14.41C21.78,14.05 22,13.55 22,13C22,12.44 21.77,11.94 21.41,11.58Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,po={name:"PlayCircleIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},fo=(0,Pn.A)(po,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon play-circle-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M10,16.5V7.5L16,12M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,go={name:"CollectivesIcon",props:{title:{type:String,default:""},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},ho=(0,Pn.A)(go,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon collectives-icon",attrs:{"aria-hidden":!t.title,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 16 16"}},[e("path",{attrs:{d:"M2.9,8.8c0-1.2,0.4-2.4,1.2-3.3L0.3,6c-0.2,0-0.3,0.3-0.1,0.4l2.7,2.6C2.9,9,2.9,8.9,2.9,8.8z"}}),t._v(" "),e("path",{attrs:{d:"M8,3.7c0.7,0,1.3,0.1,1.9,0.4L8.2,0.6c-0.1-0.2-0.3-0.2-0.4,0L6.1,4C6.7,3.8,7.3,3.7,8,3.7z"}}),t._v(" "),e("path",{attrs:{d:"M3.7,11.5L3,15.2c0,0.2,0.2,0.4,0.4,0.3l3.3-1.7C5.4,13.4,4.4,12.6,3.7,11.5z"}}),t._v(" "),e("path",{attrs:{d:"M15.7,6l-3.7-0.5c0.7,0.9,1.2,2,1.2,3.3c0,0.1,0,0.2,0,0.3l2.7-2.6C15.9,6.3,15.9,6.1,15.7,6z"}}),t._v(" "),e("path",{attrs:{d:"M12.3,11.5c-0.7,1.1-1.8,1.9-3,2.2l3.3,1.7c0.2,0.1,0.4-0.1,0.4-0.3L12.3,11.5z"}}),t._v(" "),e("path",{attrs:{d:"M9.6,10.1c-0.4,0.5-1,0.8-1.6,0.8c-1.1,0-2-0.9-2.1-2C5.9,7.7,6.8,6.7,8,6.7c0.6,0,1.1,0.3,1.5,0.7 c0.1,0.1,0.1,0.1,0.2,0.1h1.4c0.2,0,0.4-0.2,0.3-0.5c-0.7-1.3-2.1-2.2-3.8-2.1C5.8,5,4.3,6.6,4.1,8.5C4,10.8,5.8,12.7,8,12.7 c1.6,0,2.9-0.9,3.5-2.3c0.1-0.2-0.1-0.4-0.3-0.4H9.9C9.8,10,9.7,10,9.6,10.1z"}})])])}),[],!1,null,null,null).exports,vo=(0,r.pM)({name:"FavoriteIcon",components:{NcIconSvgWrapper:Un.A},data:()=>({StarSvg:'<svg xmlns="http://www.w3.org/2000/svg" id="mdi-star" viewBox="0 0 24 24"><path d="M12,17.27L18.18,21L16.54,13.97L22,9.24L14.81,8.62L12,2L9.19,8.62L2,9.24L7.45,13.97L5.82,21L12,17.27Z" /></svg>'}),async mounted(){var t;await this.$nextTick();const e=this.$el.querySelector("svg");null==e||null===(t=e.setAttribute)||void 0===t||t.call(e,"viewBox","-4 -4 30 30")},methods:{t:In.Tl}});var Ao=s(55559),wo={};wo.styleTagTransform=as(),wo.setAttributes=ss(),wo.insert=es().bind(null,"head"),wo.domAPI=Zn(),wo.insertStyleElement=rs(),Xn()(Ao.A,wo),Ao.A&&Ao.A.locals&&Ao.A.locals;const yo=(0,Pn.A)(vo,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("NcIconSvgWrapper",{staticClass:"favorite-marker-icon",attrs:{name:t.t("files","Favorite"),svg:t.StarSvg}})}),[],!1,null,"04e52abc",null).exports,bo=r.Ay.extend({name:"FileEntryPreview",components:{AccountGroupIcon:eo.A,AccountPlusIcon:fi,CollectivesIcon:ho,FavoriteIcon:yo,FileIcon:so,FolderIcon:br,FolderOpenIcon:ro,KeyIcon:ao,LinkIcon:ri.A,NetworkIcon:co,TagIcon:mo},props:{source:{type:Object,required:!0},dragover:{type:Boolean,default:!1},gridMode:{type:Boolean,default:!1}},setup:()=>({userConfigStore:ys()}),data:()=>({backgroundFailed:void 0}),computed:{fileid(){var t,e;return null===(t=this.source)||void 0===t||null===(t=t.fileid)||void 0===t||null===(e=t.toString)||void 0===e?void 0:e.call(t)},isFavorite(){return 1===this.source.attributes.favorite},userConfig(){return this.userConfigStore.userConfig},cropPreviews(){return!0===this.userConfig.crop_image_previews},previewUrl(){if(this.source.type===lt.pt.Folder)return null;if(!0===this.backgroundFailed)return null;try{const t=this.source.attributes.previewUrl||(0,dt.Jv)("/core/preview?fileId={fileid}",{fileid:this.fileid}),e=new URL(window.location.origin+t);return e.searchParams.set("x",this.gridMode?"128":"32"),e.searchParams.set("y",this.gridMode?"128":"32"),e.searchParams.set("mimeFallback","true"),e.searchParams.set("a",!0===this.cropPreviews?"0":"1"),e.href}catch(t){return null}},fileOverlay(){return void 0!==this.source.attributes["metadata-files-live-photo"]?fo:null},folderOverlay(){var t,e,n,s;if(this.source.type!==lt.pt.Folder)return null;if(1===(null===(t=this.source)||void 0===t||null===(t=t.attributes)||void 0===t?void 0:t["is-encrypted"]))return ao;if(null!==(e=this.source)&&void 0!==e&&null!==(e=e.attributes)&&void 0!==e&&e["is-tag"])return mo;const i=Object.values((null===(n=this.source)||void 0===n||null===(n=n.attributes)||void 0===n?void 0:n["share-types"])||{}).flat();if(i.some((t=>t===si.Z.SHARE_TYPE_LINK||t===si.Z.SHARE_TYPE_EMAIL)))return ri.A;if(i.length>0)return fi;switch(null===(s=this.source)||void 0===s||null===(s=s.attributes)||void 0===s?void 0:s["mount-type"]){case"external":case"external-session":return co;case"group":return eo.A;case"collective":return ho}return null}},methods:{reset(){!0===this.backgroundFailed&&this.$refs.previewImg&&(this.$refs.previewImg.src=""),this.backgroundFailed=void 0},t:In.Tl}}),Co=(0,Pn.A)(bo,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("span",{staticClass:"files-list__row-icon"},["folder"===t.source.type?[t.dragover?t._m(0):[t._m(1),t._v(" "),t.folderOverlay?e(t.folderOverlay,{tag:"OverlayIcon",staticClass:"files-list__row-icon-overlay"}):t._e()]]:t.previewUrl&&!0!==t.backgroundFailed?e("img",{ref:"previewImg",staticClass:"files-list__row-icon-preview",class:{"files-list__row-icon-preview--loaded":!1===t.backgroundFailed},attrs:{alt:"",loading:"lazy",src:t.previewUrl},on:{error:function(e){t.backgroundFailed=!0},load:function(e){t.backgroundFailed=!1}}}):t._m(2),t._v(" "),t.isFavorite?e("span",{staticClass:"files-list__row-icon-favorite"},[t._m(3)],1):t._e(),t._v(" "),t.fileOverlay?e(t.fileOverlay,{tag:"OverlayIcon",staticClass:"files-list__row-icon-overlay files-list__row-icon-overlay--file"}):t._e()],2)}),[function(){var t=this._self._c;return this._self._setupProxy,t("FolderOpenIcon")},function(){var t=this._self._c;return this._self._setupProxy,t("FolderIcon")},function(){var t=this._self._c;return this._self._setupProxy,t("FileIcon")},function(){var t=this._self._c;return this._self._setupProxy,t("FavoriteIcon")}],!1,null,null,null).exports,xo=(0,r.pM)({name:"FileEntry",components:{CustomElementRender:Fr,FileEntryActions:Yr,FileEntryCheckbox:Qr,FileEntryName:to,FileEntryPreview:Co,NcDateTime:Nr.A},mixins:[Lr],props:{isMtimeAvailable:{type:Boolean,default:!1},isSizeAvailable:{type:Boolean,default:!1},compact:{type:Boolean,default:!1}},setup:()=>({actionsMenuStore:gr(),draggingStore:lr(),filesStore:wi(),renamingStore:hr(),selectionStore:bi()}),computed:{rowListeners(){return{...this.isRenaming?{}:{dragstart:this.onDragStart,dragover:this.onDragOver},contextmenu:this.onRightClick,dragleave:this.onDragLeave,dragend:this.onDragEnd,drop:this.onDrop}},columns(){var t;return this.filesListWidth<512||this.compact?[]:(null===(t=this.currentView)||void 0===t?void 0:t.columns)||[]},size(){const t=parseInt(this.source.size,10)||0;return"number"!=typeof t||t<0?this.t("files","Pending"):(0,lt.v7)(t,!0)},sizeOpacity(){const t=parseInt(this.source.size,10)||0;if(!t||t<0)return{};const e=Math.round(Math.min(100,100*Math.pow(this.source.size/10485760,2)));return{color:"color-mix(in srgb, var(--color-main-text) ".concat(e,"%, var(--color-text-maxcontrast))")}},mtimeOpacity(){var t,e;const n=26784e5,s=null===(t=this.source.mtime)||void 0===t||null===(e=t.getTime)||void 0===e?void 0:e.call(t);if(!s)return{};const i=Math.round(Math.min(100,100*(n-(Date.now()-s))/n));return i<0?{}:{color:"color-mix(in srgb, var(--color-main-text) ".concat(i,"%, var(--color-text-maxcontrast))")}},mtimeTitle(){return this.source.mtime?(0,fr.A)(this.source.mtime).format("LLL"):""},isActive(){var t,e;return this.fileid===(null===(t=this.currentFileId)||void 0===t||null===(e=t.toString)||void 0===e?void 0:e.call(t))}},methods:{formatFileSize:lt.v7}}),_o=(0,Pn.A)(xo,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("tr",t._g({staticClass:"files-list__row",class:{"files-list__row--dragover":t.dragover,"files-list__row--loading":t.isLoading,"files-list__row--active":t.isActive},attrs:{"data-cy-files-list-row":"","data-cy-files-list-row-fileid":t.fileid,"data-cy-files-list-row-name":t.source.basename,draggable:t.canDrag}},t.rowListeners),[t.source.attributes.failed?e("span",{staticClass:"files-list__row--failed"}):t._e(),t._v(" "),e("FileEntryCheckbox",{attrs:{fileid:t.fileid,"is-loading":t.isLoading,nodes:t.nodes,source:t.source}}),t._v(" "),e("td",{staticClass:"files-list__row-name",attrs:{"data-cy-files-list-row-name":""}},[e("FileEntryPreview",{ref:"preview",attrs:{source:t.source,dragover:t.dragover},nativeOn:{click:function(e){return t.execDefaultAction.apply(null,arguments)}}}),t._v(" "),e("FileEntryName",{ref:"name",attrs:{"display-name":t.displayName,extension:t.extension,"files-list-width":t.filesListWidth,nodes:t.nodes,source:t.source},on:{click:t.execDefaultAction}})],1),t._v(" "),e("FileEntryActions",{directives:[{name:"show",rawName:"v-show",value:!t.isRenamingSmallScreen,expression:"!isRenamingSmallScreen"}],ref:"actions",class:"files-list__row-actions-".concat(t.uniqueId),attrs:{"files-list-width":t.filesListWidth,loading:t.loading,opened:t.openedMenu,source:t.source},on:{"update:loading":function(e){t.loading=e},"update:opened":function(e){t.openedMenu=e}}}),t._v(" "),!t.compact&&t.isSizeAvailable?e("td",{staticClass:"files-list__row-size",style:t.sizeOpacity,attrs:{"data-cy-files-list-row-size":""},on:{click:t.openDetailsIfAvailable}},[e("span",[t._v(t._s(t.size))])]):t._e(),t._v(" "),!t.compact&&t.isMtimeAvailable?e("td",{staticClass:"files-list__row-mtime",style:t.mtimeOpacity,attrs:{"data-cy-files-list-row-mtime":""},on:{click:t.openDetailsIfAvailable}},[e("NcDateTime",{attrs:{timestamp:t.source.mtime,"ignore-seconds":!0}})],1):t._e(),t._v(" "),t._l(t.columns,(function(n){var s;return e("td",{key:n.id,staticClass:"files-list__row-column-custom",class:"files-list__row-".concat(null===(s=t.currentView)||void 0===s?void 0:s.id,"-").concat(n.id),attrs:{"data-cy-files-list-row-column-custom":n.id},on:{click:t.openDetailsIfAvailable}},[e("CustomElementRender",{attrs:{"current-view":t.currentView,render:n.render,source:t.source}})],1)}))],2)}),[],!1,null,null,null).exports,To=(0,r.pM)({name:"FileEntryGrid",components:{FileEntryActions:Yr,FileEntryCheckbox:Qr,FileEntryName:to,FileEntryPreview:Co},mixins:[Lr],inheritAttrs:!1,setup:()=>({actionsMenuStore:gr(),draggingStore:lr(),filesStore:wi(),renamingStore:hr(),selectionStore:bi()}),data:()=>({gridMode:!0})}),ko=(0,Pn.A)(To,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("tr",{staticClass:"files-list__row",class:{"files-list__row--active":t.isActive,"files-list__row--dragover":t.dragover,"files-list__row--loading":t.isLoading},attrs:{"data-cy-files-list-row":"","data-cy-files-list-row-fileid":t.fileid,"data-cy-files-list-row-name":t.source.basename,draggable:t.canDrag},on:{contextmenu:t.onRightClick,dragover:t.onDragOver,dragleave:t.onDragLeave,dragstart:t.onDragStart,dragend:t.onDragEnd,drop:t.onDrop}},[t.source.attributes.failed?e("span",{staticClass:"files-list__row--failed"}):t._e(),t._v(" "),e("FileEntryCheckbox",{attrs:{fileid:t.fileid,"is-loading":t.isLoading,nodes:t.nodes,source:t.source}}),t._v(" "),e("td",{staticClass:"files-list__row-name",attrs:{"data-cy-files-list-row-name":""}},[e("FileEntryPreview",{ref:"preview",attrs:{dragover:t.dragover,"grid-mode":!0,source:t.source},nativeOn:{click:function(e){return t.execDefaultAction.apply(null,arguments)}}}),t._v(" "),e("FileEntryName",{ref:"name",attrs:{"display-name":t.displayName,extension:t.extension,"files-list-width":t.filesListWidth,"grid-mode":!0,nodes:t.nodes,source:t.source},on:{click:t.execDefaultAction}})],1),t._v(" "),e("FileEntryActions",{ref:"actions",class:"files-list__row-actions-".concat(t.uniqueId),attrs:{"files-list-width":t.filesListWidth,"grid-mode":!0,loading:t.loading,opened:t.openedMenu,source:t.source},on:{"update:loading":function(e){t.loading=e},"update:opened":function(e){t.openedMenu=e}}})],1)}),[],!1,null,null,null).exports;var Eo=s(96763);const So={name:"FilesListHeader",props:{header:{type:Object,required:!0},currentFolder:{type:Object,required:!0},currentView:{type:Object,required:!0}},computed:{enabled(){return this.header.enabled(this.currentFolder,this.currentView)}},watch:{enabled(t){t&&this.header.updated(this.currentFolder,this.currentView)},currentFolder(){this.header.updated(this.currentFolder,this.currentView)}},mounted(){Eo.debug("Mounted",this.header.id),this.header.render(this.$refs.mount,this.currentFolder,this.currentView)}},Lo=(0,Pn.A)(So,(function(){var t=this,e=t._self._c;return e("div",{directives:[{name:"show",rawName:"v-show",value:t.enabled,expression:"enabled"}],class:"files-list__header-".concat(t.header.id)},[e("span",{ref:"mount"})])}),[],!1,null,null,null).exports,No=r.Ay.extend({name:"FilesListTableFooter",components:{},props:{isMtimeAvailable:{type:Boolean,default:!1},isSizeAvailable:{type:Boolean,default:!1},nodes:{type:Array,required:!0},summary:{type:String,default:""},filesListWidth:{type:Number,default:0}},setup(){const t=yi();return{filesStore:wi(),pathsStore:t}},computed:{currentView(){return this.$navigation.active},dir(){var t;return((null===(t=this.$route)||void 0===t||null===(t=t.query)||void 0===t?void 0:t.dir)||"/").replace(/^(.+)\/$/,"$1")},currentFolder(){var t;if(null===(t=this.currentView)||void 0===t||!t.id)return;if("/"===this.dir)return this.filesStore.getRoot(this.currentView.id);const e=this.pathsStore.getPath(this.currentView.id,this.dir);return this.filesStore.getNode(e)},columns(){var t;return this.filesListWidth<512?[]:(null===(t=this.currentView)||void 0===t?void 0:t.columns)||[]},totalSize(){var t;return null!==(t=this.currentFolder)&&void 0!==t&&t.size?(0,lt.v7)(this.currentFolder.size,!0):(0,lt.v7)(this.nodes.reduce(((t,e)=>t+e.size||0),0),!0)}},methods:{classForColumn(t){return{"files-list__row-column-custom":!0,["files-list__row-".concat(this.currentView.id,"-").concat(t.id)]:!0}},t:In.Tl}});var Io=s(31840),Fo={};Fo.styleTagTransform=as(),Fo.setAttributes=ss(),Fo.insert=es().bind(null,"head"),Fo.domAPI=Zn(),Fo.insertStyleElement=rs(),Xn()(Io.A,Fo),Io.A&&Io.A.locals&&Io.A.locals;const Po=(0,Pn.A)(No,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("tr",[e("th",{staticClass:"files-list__row-checkbox"},[e("span",{staticClass:"hidden-visually"},[t._v(t._s(t.t("files","Total rows summary")))])]),t._v(" "),e("td",{staticClass:"files-list__row-name"},[e("span",{staticClass:"files-list__row-icon"}),t._v(" "),e("span",[t._v(t._s(t.summary))])]),t._v(" "),e("td",{staticClass:"files-list__row-actions"}),t._v(" "),t.isSizeAvailable?e("td",{staticClass:"files-list__column files-list__row-size"},[e("span",[t._v(t._s(t.totalSize))])]):t._e(),t._v(" "),t.isMtimeAvailable?e("td",{staticClass:"files-list__column files-list__row-mtime"}):t._e(),t._v(" "),t._l(t.columns,(function(n){var s;return e("th",{key:n.id,class:t.classForColumn(n)},[e("span",[t._v(t._s(null===(s=n.summary)||void 0===s?void 0:s.call(n,t.nodes,t.currentView)))])])}))],2)}),[],!1,null,"a85bde20",null).exports;var Bo=s(1795),Oo=s(33017);const Do=r.Ay.extend({computed:{...(jo=Rn,zo=["getConfig","setSortingBy","toggleSortingDirection"],Array.isArray(zo)?zo.reduce(((t,e)=>(t[e]=function(){return jo(this.$pinia)[e]},t)),{}):Object.keys(zo).reduce(((t,e)=>(t[e]=function(){const t=jo(this.$pinia),n=zo[e];return"function"==typeof n?n.call(this,t):t[n]},t)),{})),currentView(){return this.$navigation.active},sortingMode(){var t,e;return(null===(t=this.getConfig(this.currentView.id))||void 0===t?void 0:t.sorting_mode)||(null===(e=this.currentView)||void 0===e?void 0:e.defaultSortKey)||"basename"},isAscSorting(){var t;return"desc"!==(null===(t=this.getConfig(this.currentView.id))||void 0===t?void 0:t.sorting_direction)}},methods:{toggleSortBy(t){this.sortingMode!==t?this.setSortingBy(t,this.currentView.id):this.toggleSortingDirection(this.currentView.id)}}}),Uo=(0,r.pM)({name:"FilesListTableHeaderButton",components:{MenuDown:Bo.A,MenuUp:Oo.A,NcButton:ci.A},mixins:[Do],props:{name:{type:String,required:!0},mode:{type:String,required:!0}},methods:{t:In.Tl}});var jo,zo,Mo=s(75290),Ro={};Ro.styleTagTransform=as(),Ro.setAttributes=ss(),Ro.insert=es().bind(null,"head"),Ro.domAPI=Zn(),Ro.insertStyleElement=rs(),Xn()(Mo.A,Ro),Mo.A&&Mo.A.locals&&Mo.A.locals;const Vo=(0,Pn.A)(Uo,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("NcButton",{class:["files-list__column-sort-button",{"files-list__column-sort-button--active":t.sortingMode===t.mode,"files-list__column-sort-button--size":"size"===t.sortingMode}],attrs:{alignment:"size"===t.mode?"end":"start-reverse",type:"tertiary"},on:{click:function(e){return t.toggleSortBy(t.mode)}},scopedSlots:t._u([{key:"icon",fn:function(){return[t.sortingMode!==t.mode||t.isAscSorting?e("MenuUp",{staticClass:"files-list__column-sort-button-icon"}):e("MenuDown",{staticClass:"files-list__column-sort-button-icon"})]},proxy:!0}])},[t._v(" "),e("span",{staticClass:"files-list__column-sort-button-text"},[t._v(t._s(t.name))])])}),[],!1,null,"097f69d4",null).exports,$o=(0,r.pM)({name:"FilesListTableHeader",components:{FilesListTableHeaderButton:Vo,NcCheckboxRadioSwitch:ps.A},mixins:[Do],props:{isMtimeAvailable:{type:Boolean,default:!1},isSizeAvailable:{type:Boolean,default:!1},nodes:{type:Array,required:!0},filesListWidth:{type:Number,default:0}},setup:()=>({filesStore:wi(),selectionStore:bi()}),computed:{currentView(){return this.$navigation.active},columns(){var t;return this.filesListWidth<512?[]:(null===(t=this.currentView)||void 0===t?void 0:t.columns)||[]},dir(){var t;return((null===(t=this.$route)||void 0===t||null===(t=t.query)||void 0===t?void 0:t.dir)||"/").replace(/^(.+)\/$/,"$1")},selectAllBind(){const t=(0,In.Tl)("files","Toggle selection for all files and folders");return{"aria-label":t,checked:this.isAllSelected,indeterminate:this.isSomeSelected,title:t}},selectedNodes(){return this.selectionStore.selected},isAllSelected(){return this.selectedNodes.length===this.nodes.length},isNoneSelected(){return 0===this.selectedNodes.length},isSomeSelected(){return!this.isAllSelected&&!this.isNoneSelected}},methods:{ariaSortForMode(t){return this.sortingMode===t?this.isAscSorting?"ascending":"descending":null},classForColumn(t){var e;return{"files-list__column":!0,"files-list__column--sortable":!!t.sort,"files-list__row-column-custom":!0,["files-list__row-".concat(null===(e=this.currentView)||void 0===e?void 0:e.id,"-").concat(t.id)]:!0}},onToggleAll(t){if(t){const t=this.nodes.map((t=>t.fileid)).filter(Boolean);Vn.debug("Added all nodes to selection",{selection:t}),this.selectionStore.setLastIndex(null),this.selectionStore.set(t)}else Vn.debug("Cleared selection"),this.selectionStore.reset()},resetSelection(){this.selectionStore.reset()},t:In.Tl}});var qo=s(60799),Ho={};Ho.styleTagTransform=as(),Ho.setAttributes=ss(),Ho.insert=es().bind(null,"head"),Ho.domAPI=Zn(),Ho.insertStyleElement=rs(),Xn()(qo.A,Ho),qo.A&&qo.A.locals&&qo.A.locals;const Wo=(0,Pn.A)($o,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("tr",{staticClass:"files-list__row-head"},[e("th",{staticClass:"files-list__column files-list__row-checkbox",on:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"])||e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:t.resetSelection.apply(null,arguments)}}},[e("NcCheckboxRadioSwitch",t._b({on:{"update:checked":t.onToggleAll}},"NcCheckboxRadioSwitch",t.selectAllBind,!1))],1),t._v(" "),e("th",{staticClass:"files-list__column files-list__row-name files-list__column--sortable",attrs:{"aria-sort":t.ariaSortForMode("basename")}},[e("span",{staticClass:"files-list__row-icon"}),t._v(" "),e("FilesListTableHeaderButton",{attrs:{name:t.t("files","Name"),mode:"basename"}})],1),t._v(" "),e("th",{staticClass:"files-list__row-actions"}),t._v(" "),t.isSizeAvailable?e("th",{staticClass:"files-list__column files-list__row-size",class:{"files-list__column--sortable":t.isSizeAvailable},attrs:{"aria-sort":t.ariaSortForMode("size")}},[e("FilesListTableHeaderButton",{attrs:{name:t.t("files","Size"),mode:"size"}})],1):t._e(),t._v(" "),t.isMtimeAvailable?e("th",{staticClass:"files-list__column files-list__row-mtime",class:{"files-list__column--sortable":t.isMtimeAvailable},attrs:{"aria-sort":t.ariaSortForMode("mtime")}},[e("FilesListTableHeaderButton",{attrs:{name:t.t("files","Modified"),mode:"mtime"}})],1):t._e(),t._v(" "),t._l(t.columns,(function(n){return e("th",{key:n.id,class:t.classForColumn(n),attrs:{"aria-sort":t.ariaSortForMode(n.id)}},[n.sort?e("FilesListTableHeaderButton",{attrs:{name:n.title,mode:n.id}}):e("span",[t._v("\n\t\t\t"+t._s(n.title)+"\n\t\t")])],1)}))],2)}),[],!1,null,"952162c2",null).exports;var Go=s(17334),Yo=s.n(Go),Ko=s(96763);const Qo=r.Ay.extend({name:"VirtualList",mixins:[cr],props:{dataComponent:{type:[Object,Function],required:!0},dataKey:{type:String,required:!0},dataSources:{type:Array,required:!0},extraProps:{type:Object,default:()=>({})},scrollToIndex:{type:Number,default:0},gridMode:{type:Boolean,default:!1},caption:{type:String,default:""}},data(){return{index:this.scrollToIndex,beforeHeight:0,headerHeight:0,tableHeight:0,resizeObserver:null}},computed:{isReady(){return this.tableHeight>0},bufferItems(){return this.gridMode?this.columnCount:3},itemHeight(){return this.gridMode?197:55},itemWidth:()=>175,rowCount(){return Math.ceil((this.tableHeight-this.headerHeight)/this.itemHeight)+this.bufferItems/this.columnCount*2+1},columnCount(){return this.gridMode?Math.floor(this.filesListWidth/this.itemWidth):1},startIndex(){return Math.max(0,this.index-this.bufferItems)},shownItems(){return this.gridMode?this.rowCount*this.columnCount:this.rowCount},renderedItems(){if(!this.isReady)return[];const t=this.dataSources.slice(this.startIndex,this.startIndex+this.shownItems),e=t.filter((t=>Object.values(this.$_recycledPool).includes(t[this.dataKey]))).map((t=>t[this.dataKey])),n=Object.keys(this.$_recycledPool).filter((t=>!e.includes(this.$_recycledPool[t])));return t.map((t=>{const e=Object.values(this.$_recycledPool).indexOf(t[this.dataKey]);if(-1!==e)return{key:Object.keys(this.$_recycledPool)[e],item:t};const s=n.pop()||Math.random().toString(36).substr(2);return this.$_recycledPool[s]=t[this.dataKey],{key:s,item:t}}))},tbodyStyle(){const t=this.startIndex+this.rowCount>this.dataSources.length,e=this.dataSources.length-this.startIndex-this.shownItems,n=Math.floor(Math.min(this.dataSources.length-this.startIndex,e)/this.columnCount);return{paddingTop:"".concat(Math.floor(this.startIndex/this.columnCount)*this.itemHeight,"px"),paddingBottom:t?0:"".concat(n*this.itemHeight,"px")}}},watch:{scrollToIndex(t){this.scrollTo(t)},columnCount(t,e){0!==e?this.scrollTo(this.index):Ko.debug("VirtualList: columnCount is 0, skipping scroll")}},mounted(){var t,e;const n=null===(t=this.$refs)||void 0===t?void 0:t.before,s=this.$el,i=null===(e=this.$refs)||void 0===e?void 0:e.thead;this.resizeObserver=new ResizeObserver((0,Go.debounce)((()=>{var t,e,r;this.beforeHeight=null!==(t=null==n?void 0:n.clientHeight)&&void 0!==t?t:0,this.headerHeight=null!==(e=null==i?void 0:i.clientHeight)&&void 0!==e?e:0,this.tableHeight=null!==(r=null==s?void 0:s.clientHeight)&&void 0!==r?r:0,Vn.debug("VirtualList: resizeObserver updated"),this.onScroll()}),100,!1)),this.resizeObserver.observe(n),this.resizeObserver.observe(s),this.resizeObserver.observe(i),this.scrollToIndex&&this.scrollTo(this.scrollToIndex),this.$el.addEventListener("scroll",this.onScroll,{passive:!0}),this.$_recycledPool={}},beforeDestroy(){this.resizeObserver&&this.resizeObserver.disconnect()},methods:{scrollTo(t){const e=Math.ceil(this.dataSources.length/this.columnCount);if(e<this.rowCount)return void Vn.debug("VirtualList: Skip scrolling. nothing to scroll",{index:t,targetRow:e,rowCount:this.rowCount});this.index=t;const n=(Math.floor(t/this.columnCount)-.5)*this.itemHeight+this.beforeHeight;Vn.debug("VirtualList: scrolling to index "+t,{scrollTop:n,columnCount:this.columnCount}),this.$el.scrollTop=n},onScroll(){var t;null!==(t=this._onScrollHandle)&&void 0!==t||(this._onScrollHandle=requestAnimationFrame((()=>{this._onScrollHandle=null;const t=this.$el.scrollTop-this.beforeHeight,e=Math.floor(t/this.itemHeight)*this.columnCount;this.index=Math.max(0,e),this.$emit("scroll")})))}}}),Xo=(0,Pn.A)(Qo,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("div",{staticClass:"files-list",attrs:{"data-cy-files-list":""}},[e("div",{ref:"before",staticClass:"files-list__before"},[t._t("before")],2),t._v(" "),t.$scopedSlots["header-overlay"]?e("div",{staticClass:"files-list__thead-overlay"},[t._t("header-overlay")],2):t._e(),t._v(" "),e("table",{staticClass:"files-list__table",class:{"files-list__table--with-thead-overlay":!!t.$scopedSlots["header-overlay"]}},[t.caption?e("caption",{staticClass:"hidden-visually"},[t._v("\n\t\t\t"+t._s(t.caption)+"\n\t\t")]):t._e(),t._v(" "),e("thead",{ref:"thead",staticClass:"files-list__thead",attrs:{"data-cy-files-list-thead":""}},[t._t("header")],2),t._v(" "),e("tbody",{staticClass:"files-list__tbody",class:t.gridMode?"files-list__tbody--grid":"files-list__tbody--list",style:t.tbodyStyle,attrs:{"data-cy-files-list-tbody":""}},t._l(t.renderedItems,(function(n,s){let{key:i,item:r}=n;return e(t.dataComponent,t._b({key:i,tag:"component",attrs:{source:r,index:s}},"component",t.extraProps,!1))})),1),t._v(" "),e("tfoot",{directives:[{name:"show",rawName:"v-show",value:t.isReady,expression:"isReady"}],staticClass:"files-list__tfoot",attrs:{"data-cy-files-list-tfoot":""}},[t._t("footer")],2)])])}),[],!1,null,null,null).exports,Jo=(0,lt.qK)(),Zo=(0,r.pM)({name:"FilesListTableHeaderActions",components:{NcActions:jr.A,NcActionButton:Ur.A,NcIconSvgWrapper:Un.A,NcLoadingIcon:ui.A},mixins:[cr],props:{currentView:{type:Object,required:!0},selectedNodes:{type:Array,default:()=>[]}},setup:()=>({actionsMenuStore:gr(),filesStore:wi(),selectionStore:bi()}),data:()=>({loading:null}),computed:{dir(){var t;return((null===(t=this.$route)||void 0===t||null===(t=t.query)||void 0===t?void 0:t.dir)||"/").replace(/^(.+)\/$/,"$1")},enabledActions(){return Jo.filter((t=>t.execBatch)).filter((t=>!t.enabled||t.enabled(this.nodes,this.currentView))).sort(((t,e)=>(t.order||0)-(e.order||0)))},nodes(){return this.selectedNodes.map((t=>this.getNode(t))).filter(Boolean)},areSomeNodesLoading(){return this.nodes.some((t=>t.status===lt.zI.LOADING))},openedMenu:{get(){return"global"===this.actionsMenuStore.opened},set(t){this.actionsMenuStore.opened=t?"global":null}},inlineActions(){return this.filesListWidth<512?0:this.filesListWidth<768?1:this.filesListWidth<1024?2:3}},methods:{getNode(t){return this.filesStore.getNode(t)},async onActionClick(t){const e=t.displayName(this.nodes,this.currentView),n=this.selectedNodes;try{this.loading=t.id,this.nodes.forEach((t=>{r.Ay.set(t,"status",lt.zI.LOADING)}));const s=await t.execBatch(this.nodes,this.currentView,this.dir);if(!s.some((t=>null!==t)))return void this.selectionStore.reset();if(s.some((t=>!1===t))){const t=n.filter(((t,e)=>!1===s[e]));if(this.selectionStore.set(t),s.some((t=>null===t)))return;return void(0,qn.Qg)(this.t("files",'"{displayName}" failed on some elements ',{displayName:e}))}(0,qn.Te)(this.t("files",'"{displayName}" batch action executed successfully',{displayName:e})),this.selectionStore.reset()}catch(n){Vn.error("Error while executing action",{action:t,e:n}),(0,qn.Qg)(this.t("files",'"{displayName}" action failed',{displayName:e}))}finally{this.loading=null,this.nodes.forEach((t=>{r.Ay.set(t,"status",void 0)}))}},t:In.Tl}}),ta=Zo;var ea=s(58017),na={};na.styleTagTransform=as(),na.setAttributes=ss(),na.insert=es().bind(null,"head"),na.domAPI=Zn(),na.insertStyleElement=rs(),Xn()(ea.A,na),ea.A&&ea.A.locals&&ea.A.locals;var sa=(0,Pn.A)(ta,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("div",{staticClass:"files-list__column files-list__row-actions-batch"},[e("NcActions",{ref:"actionsMenu",attrs:{disabled:!!t.loading||t.areSomeNodesLoading,"force-name":!0,inline:t.inlineActions,"menu-name":t.inlineActions<=1?t.t("files","Actions"):null,open:t.openedMenu},on:{"update:open":function(e){t.openedMenu=e}}},t._l(t.enabledActions,(function(n){return e("NcActionButton",{key:n.id,class:"files-list__row-actions-batch-"+n.id,on:{click:function(e){return t.onActionClick(n)}},scopedSlots:t._u([{key:"icon",fn:function(){return[t.loading===n.id?e("NcLoadingIcon",{attrs:{size:18}}):e("NcIconSvgWrapper",{attrs:{svg:n.iconSvgInline(t.nodes,t.currentView)}})]},proxy:!0}],null,!0)},[t._v("\n\t\t\t"+t._s(n.displayName(t.nodes,t.currentView))+"\n\t\t")])})),1)],1)}),[],!1,null,"d939292c",null);const ia=sa.exports,ra=(0,r.pM)({name:"FilesListVirtual",components:{FilesListHeader:Lo,FilesListTableFooter:Po,FilesListTableHeader:Wo,VirtualList:Xo,FilesListTableHeaderActions:ia},mixins:[cr],props:{currentView:{type:lt.Ss,required:!0},currentFolder:{type:lt.vd,required:!0},nodes:{type:Array,required:!0}},setup:()=>({userConfigStore:ys(),selectionStore:bi()}),data:()=>({FileEntry:_o,FileEntryGrid:ko,headers:(0,lt.By)(),scrollToIndex:0,openFileId:null}),computed:{userConfig(){return this.userConfigStore.userConfig},fileId(){return parseInt(this.$route.params.fileid)||null},openFile(){return!!this.$route.query.openfile},summary(){return tr(this.nodes)},isMtimeAvailable(){return!(this.filesListWidth<768)&&this.nodes.some((t=>void 0!==t.mtime))},isSizeAvailable(){return!(this.filesListWidth<768)&&this.nodes.some((t=>void 0!==t.attributes.size))},sortedHeaders(){return this.currentFolder&&this.currentView?[...this.headers].sort(((t,e)=>t.order-e.order)):[]},caption(){const t=(0,In.Tl)("files","List of files and folders."),e=this.currentView.caption||t,n=(0,In.Tl)("files","Column headers with buttons are sortable."),s=(0,In.Tl)("files","This list is not fully rendered for performance reasons. The files will be rendered as you navigate through the list.");return"".concat(e,"\n").concat(n,"\n").concat(s)},selectedNodes(){return this.selectionStore.selected},isNoneSelected(){return 0===this.selectedNodes.length}},watch:{fileId(t){this.scrollToFile(t,!1)},openFile(t){t&&this.$nextTick((()=>this.handleOpenFile(this.fileId)))}},mounted(){window.document.querySelector("main.app-content").addEventListener("dragover",this.onDragOver);const{id:t}=(0,jn.C)("files","openFileInfo",{});this.scrollToFile(null!=t?t:this.fileId),this.openSidebarForFile(null!=t?t:this.fileId),this.handleOpenFile(null!=t?t:null)},beforeDestroy(){window.document.querySelector("main.app-content").removeEventListener("dragover",this.onDragOver)},methods:{openSidebarForFile(t){if(document.documentElement.clientWidth>1024&&this.currentFolder.fileid!==t){var e;const n=this.nodes.find((e=>e.fileid===t));n&&null!=Ai&&null!==(e=Ai.enabled)&&void 0!==e&&e.call(Ai,[n],this.currentView)&&(Vn.debug("Opening sidebar on file "+n.path,{node:n}),Ai.exec(n,this.currentView,this.currentFolder.path))}},scrollToFile(t){let e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];if(t){const n=this.nodes.findIndex((e=>e.fileid===t));e&&-1===n&&t!==this.currentFolder.fileid&&(0,qn.Qg)(this.t("files","File not found")),this.scrollToIndex=Math.max(0,n)}},handleOpenFile(t){if(null===t||this.openFileId===t)return;const e=this.nodes.find((e=>e.fileid===t));void 0!==e&&e.type!==lt.pt.Folder&&(Vn.debug("Opening file "+e.path,{node:e}),this.openFileId=t,(0,lt.qK)().filter((t=>!t.enabled||t.enabled([e],this.currentView))).sort(((t,e)=>(t.order||0)-(e.order||0))).filter((t=>!(null==t||!t.default)))[0].exec(e,this.currentView,this.currentFolder.path))},getFileId:t=>t.fileid,onDragOver(t){var e;if(null===(e=t.dataTransfer)||void 0===e?void 0:e.types.includes("Files"))return;t.preventDefault(),t.stopPropagation();const n=this.$refs.table.$el.getBoundingClientRect().top,s=n+this.$refs.table.$el.getBoundingClientRect().height;t.clientY<n+100?this.$refs.table.$el.scrollTop=this.$refs.table.$el.scrollTop-25:t.clientY>s-50&&(this.$refs.table.$el.scrollTop=this.$refs.table.$el.scrollTop+25)},t:In.Tl}});var oa=s(8524),aa={};aa.styleTagTransform=as(),aa.setAttributes=ss(),aa.insert=es().bind(null,"head"),aa.domAPI=Zn(),aa.insertStyleElement=rs(),Xn()(oa.A,aa),oa.A&&oa.A.locals&&oa.A.locals;var la=s(66936),ca={};ca.styleTagTransform=as(),ca.setAttributes=ss(),ca.insert=es().bind(null,"head"),ca.domAPI=Zn(),ca.insertStyleElement=rs(),Xn()(la.A,ca),la.A&&la.A.locals&&la.A.locals;const da=(0,Pn.A)(ra,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("VirtualList",{ref:"table",attrs:{"data-component":t.userConfig.grid_view?t.FileEntryGrid:t.FileEntry,"data-key":"source","data-sources":t.nodes,"grid-mode":t.userConfig.grid_view,"extra-props":{isMtimeAvailable:t.isMtimeAvailable,isSizeAvailable:t.isSizeAvailable,nodes:t.nodes,filesListWidth:t.filesListWidth},"scroll-to-index":t.scrollToIndex,caption:t.caption},scopedSlots:t._u([t.isNoneSelected?null:{key:"header-overlay",fn:function(){return[e("FilesListTableHeaderActions",{attrs:{"current-view":t.currentView,"selected-nodes":t.selectedNodes}})]},proxy:!0},{key:"before",fn:function(){return t._l(t.sortedHeaders,(function(n){return e("FilesListHeader",{key:n.id,attrs:{"current-folder":t.currentFolder,"current-view":t.currentView,header:n}})}))},proxy:!0},{key:"header",fn:function(){return[e("FilesListTableHeader",{ref:"thead",attrs:{"files-list-width":t.filesListWidth,"is-mtime-available":t.isMtimeAvailable,"is-size-available":t.isSizeAvailable,nodes:t.nodes}})]},proxy:!0},{key:"footer",fn:function(){return[e("FilesListTableFooter",{attrs:{"files-list-width":t.filesListWidth,"is-mtime-available":t.isMtimeAvailable,"is-size-available":t.isSizeAvailable,nodes:t.nodes,summary:t.summary}})]},proxy:!0}],null,!0)})}),[],!1,null,"2bbbfb12",null).exports,ua={name:"TrayArrowDownIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},ma=(0,Pn.A)(ua,(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon tray-arrow-down-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M2 12H4V17H20V12H22V17C22 18.11 21.11 19 20 19H4C2.9 19 2 18.11 2 17V12M12 15L17.55 9.54L16.13 8.13L13 11.25V2H11V11.25L7.88 8.13L6.46 9.55L12 15Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null).exports,pa=(0,r.pM)({name:"DragAndDropNotice",components:{TrayArrowDownIcon:ma},props:{currentFolder:{type:lt.vd,required:!0}},data:()=>({dragover:!1}),computed:{currentView(){return this.$navigation.active},canUpload(){return this.currentFolder&&!!(this.currentFolder.permissions&lt.aX.CREATE)},isQuotaExceeded(){var t;return 0===(null===(t=this.currentFolder)||void 0===t||null===(t=t.attributes)||void 0===t?void 0:t["quota-available-bytes"])},cantUploadLabel(){return this.isQuotaExceeded?this.t("files","Your have used your space quota and cannot upload files anymore"):this.canUpload?null:this.t("files","You don’t have permission to upload or create files here")}},mounted(){const t=window.document.querySelector("main.app-content");t.addEventListener("dragover",this.onDragOver),t.addEventListener("dragleave",this.onDragLeave),t.addEventListener("drop",this.onContentDrop)},beforeDestroy(){const t=window.document.querySelector("main.app-content");t.removeEventListener("dragover",this.onDragOver),t.removeEventListener("dragleave",this.onDragLeave),t.removeEventListener("drop",this.onContentDrop)},methods:{onDragOver(t){var e;t.preventDefault(),(null===(e=t.dataTransfer)||void 0===e?void 0:e.types.includes("Files"))&&(this.dragover=!0)},onDragLeave(t){var e;const n=t.currentTarget;null!=n&&n.contains(null!==(e=t.relatedTarget)&&void 0!==e?e:t.target)||this.dragover&&(this.dragover=!1)},onContentDrop(t){Vn.debug("Drag and drop cancelled, dropped on empty space",{event:t}),t.preventDefault(),this.dragover&&(this.dragover=!1)},async onDrop(t){var e,n,s;if(this.cantUploadLabel)return void(0,qn.Qg)(this.cantUploadLabel);if(null!==(e=this.$el.querySelector("tbody"))&&void 0!==e&&e.contains(t.target))return;t.preventDefault(),t.stopPropagation();const i=[...(null===(n=t.dataTransfer)||void 0===n?void 0:n.items)||[]],r=await rr(i),o=await(null===(s=this.currentView)||void 0===s?void 0:s.getContents(this.currentFolder.path)),a=null==o?void 0:o.folder;if(!a)return void(0,qn.Qg)(this.t("files","Target folder does not exist any more"));if(t.button)return;Vn.debug("Dropped",{event:t,folder:a,fileTree:r});const l=(await or(r,a,o.contents)).findLast((t=>{var e;return t.status!==ii.c.FAILED&&!t.file.webkitRelativePath.includes("/")&&(null===(e=t.response)||void 0===e||null===(e=e.headers)||void 0===e?void 0:e["oc-fileid"])&&2===t.source.replace(a.source,"").split("/").length}));var c,d;void 0!==l&&(Vn.debug("Scrolling to last upload in current folder",{lastUpload:l}),this.$router.push({...this.$route,params:{view:null!==(c=null===(d=this.$route.params)||void 0===d?void 0:d.view)&&void 0!==c?c:"files",fileid:parseInt(l.response.headers["oc-fileid"])}})),this.dragover=!1},t:In.Tl}});var fa=s(82915),ga={};ga.styleTagTransform=as(),ga.setAttributes=ss(),ga.insert=es().bind(null,"head"),ga.domAPI=Zn(),ga.insertStyleElement=rs(),Xn()(fa.A,ga),fa.A&&fa.A.locals&&fa.A.locals;const ha=(0,Pn.A)(pa,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("div",{directives:[{name:"show",rawName:"v-show",value:t.dragover,expression:"dragover"}],staticClass:"files-list__drag-drop-notice",attrs:{"data-cy-files-drag-drop-area":""},on:{drop:t.onDrop}},[e("div",{staticClass:"files-list__drag-drop-notice-wrapper"},[t.canUpload&&!t.isQuotaExceeded?[e("TrayArrowDownIcon",{attrs:{size:48}}),t._v(" "),e("h3",{staticClass:"files-list-drag-drop-notice__title"},[t._v("\n\t\t\t\t"+t._s(t.t("files","Drag and drop files here to upload"))+"\n\t\t\t")])]:[e("h3",{staticClass:"files-list-drag-drop-notice__title"},[t._v("\n\t\t\t\t"+t._s(t.cantUploadLabel)+"\n\t\t\t")])]],2)])}),[],!1,null,"02c943a6",null).exports;var va,Aa=s(96763);const wa=void 0!==(null===(va=(0,Ns.F)())||void 0===va?void 0:va.files_sharing),ya=(0,r.pM)({name:"FilesList",components:{BreadCrumbs:pr,DragAndDropNotice:ha,FilesListVirtual:da,LinkIcon:ri.A,ListViewIcon:ai,NcAppContent:li.A,NcButton:ci.A,NcEmptyContent:di.A,NcIconSvgWrapper:Un.A,NcLoadingIcon:ui.A,PlusIcon:mi.A,AccountPlusIcon:fi,UploadPicker:ii.U,ViewGridIcon:hi},mixins:[cr,Do],setup(){var t;return{filesStore:wi(),pathsStore:yi(),selectionStore:bi(),uploaderStore:xi(),userConfigStore:ys(),viewConfigStore:Rn(),enableGridView:null===(t=(0,jn.C)("core","config",[])["enable_non-accessible_features"])||void 0===t||t}},data:()=>({filterText:"",loading:!0,promise:null,Type:si.Z}),computed:{userConfig(){return this.userConfigStore.userConfig},currentView(){return this.$navigation.active||this.$navigation.views.find((t=>{var e,n;return t.id===(null!==(e=null===(n=this.$route.params)||void 0===n?void 0:n.view)&&void 0!==e?e:"files")}))},pageHeading(){var t,e;return null!==(t=null===(e=this.currentView)||void 0===e?void 0:e.name)&&void 0!==t?t:this.t("files","Files")},dir(){var t;return((null===(t=this.$route)||void 0===t||null===(t=t.query)||void 0===t||null===(t=t.dir)||void 0===t?void 0:t.toString())||"/").replace(/^(.+)\/$/,"$1")},currentFolder(){var t;if(null===(t=this.currentView)||void 0===t||!t.id)return;if("/"===this.dir)return this.filesStore.getRoot(this.currentView.id);const e=this.pathsStore.getPath(this.currentView.id,this.dir);return this.filesStore.getNode(e)},sortingParameters(){return[[...this.userConfig.sort_favorites_first?[t=>{var e;return 1!==(null===(e=t.attributes)||void 0===e?void 0:e.favorite)}]:[],...this.userConfig.sort_folders_first?[t=>"folder"!==t.type]:[],..."basename"!==this.sortingMode?[t=>t[this.sortingMode]]:[],t=>{var e;return(null===(e=t.attributes)||void 0===e?void 0:e.displayName)||t.basename},t=>t.basename],[...this.userConfig.sort_favorites_first?["asc"]:[],...this.userConfig.sort_folders_first?["asc"]:[],..."mtime"===this.sortingMode?[this.isAscSorting?"desc":"asc"]:[],..."mtime"!==this.sortingMode&&"basename"!==this.sortingMode?[this.isAscSorting?"asc":"desc"]:[],this.isAscSorting?"asc":"desc",this.isAscSorting?"asc":"desc"]]},dirContentsSorted(){var t;if(!this.currentView)return[];let e=[...this.dirContents];this.filterText&&(e=e.filter((t=>t.attributes.basename.toLowerCase().includes(this.filterText.toLowerCase()))),Aa.debug("Files view filtered",e));const n=((null===(t=this.currentView)||void 0===t?void 0:t.columns)||[]).find((t=>t.id===this.sortingMode));if(null!=n&&n.sort&&"function"==typeof n.sort){const t=[...this.dirContents].sort(n.sort);return this.isAscSorting?t:t.reverse()}return ei(e,...this.sortingParameters)},dirContents(){var t,e;const n=null===(t=this.userConfigStore)||void 0===t?void 0:t.userConfig.show_hidden;return((null===(e=this.currentFolder)||void 0===e?void 0:e._children)||[]).map(this.getNode).filter((t=>{var e;return n?!!t:t&&!0!==(null==t||null===(e=t.attributes)||void 0===e?void 0:e.hidden)&&!(null!=t&&t.basename.startsWith("."))}))},isEmptyDir(){return 0===this.dirContents.length},isRefreshing(){return void 0!==this.currentFolder&&!this.isEmptyDir&&this.loading},toPreviousDir(){const t=this.dir.split("/").slice(0,-1).join("/")||"/";return{...this.$route,query:{dir:t}}},shareAttributes(){var t,e;if(null!==(t=this.currentFolder)&&void 0!==t&&null!==(t=t.attributes)&&void 0!==t&&t["share-types"])return Object.values((null===(e=this.currentFolder)||void 0===e||null===(e=e.attributes)||void 0===e?void 0:e["share-types"])||{}).flat()},shareButtonLabel(){return this.shareAttributes?this.shareButtonType===si.Z.SHARE_TYPE_LINK?this.t("files","Shared by link"):this.t("files","Shared"):this.t("files","Share")},shareButtonType(){return this.shareAttributes?this.shareAttributes.some((t=>t===si.Z.SHARE_TYPE_LINK))?si.Z.SHARE_TYPE_LINK:si.Z.SHARE_TYPE_USER:null},gridViewButtonLabel(){return this.userConfig.grid_view?this.t("files","Switch to list view"):this.t("files","Switch to grid view")},canUpload(){return this.currentFolder&&!!(this.currentFolder.permissions&lt.aX.CREATE)},isQuotaExceeded(){var t;return 0===(null===(t=this.currentFolder)||void 0===t||null===(t=t.attributes)||void 0===t?void 0:t["quota-available-bytes"])},cantUploadLabel(){return this.isQuotaExceeded?this.t("files","Your have used your space quota and cannot upload files anymore"):this.t("files","You don’t have permission to upload or create files here")},canShare(){return wa&&this.currentFolder&&!!(this.currentFolder.permissions&lt.aX.SHARE)}},watch:{currentView(t,e){(null==t?void 0:t.id)!==(null==e?void 0:e.id)&&(Vn.debug("View changed",{newView:t,oldView:e}),this.selectionStore.reset(),this.fetchContent())},dir(t,e){var n;Vn.debug("Directory changed",{newDir:t,oldDir:e}),this.selectionStore.reset(),this.fetchContent(),null!==(n=this.$refs)&&void 0!==n&&null!==(n=n.filesListVirtual)&&void 0!==n&&n.$el&&(this.$refs.filesListVirtual.$el.scrollTop=0)},dirContents(t){Vn.debug("Directory contents changed",{view:this.currentView,folder:this.currentFolder,contents:t}),(0,Nn.Ic)("files:list:updated",{view:this.currentView,folder:this.currentFolder,contents:t})}},mounted(){this.fetchContent(),(0,Nn.B1)("files:node:updated",this.onUpdatedNode),(0,Nn.B1)("nextcloud:unified-search.search",this.onSearch),(0,Nn.B1)("nextcloud:unified-search.reset",this.onSearch)},unmounted(){(0,Nn.al)("files:node:updated",this.onUpdatedNode)},methods:{async fetchContent(){var t;this.loading=!0;const e=this.dir,n=this.currentView;if(n){"function"==typeof(null===(t=this.promise)||void 0===t?void 0:t.cancel)&&(this.promise.cancel(),Vn.debug("Cancelled previous ongoing fetch")),this.promise=n.getContents(e);try{const{folder:t,contents:s}=await this.promise;Vn.debug("Fetched contents",{dir:e,folder:t,contents:s}),this.filesStore.updateNodes(s),this.$set(t,"_children",s.map((t=>t.fileid))),"/"===e?this.filesStore.setRoot({service:n.id,root:t}):t.fileid?(this.filesStore.updateNodes([t]),this.pathsStore.addPath({service:n.id,fileid:t.fileid,path:e})):Vn.error("Invalid root folder returned",{dir:e,folder:t,currentView:n}),s.filter((t=>"folder"===t.type)).forEach((t=>{this.pathsStore.addPath({service:n.id,fileid:t.fileid,path:(0,Is.join)(e,t.basename)})}))}catch(t){Vn.error("Error while fetching content",{error:t})}finally{this.loading=!1}}else Vn.debug("The current view doesn't exists or is not ready.",{currentView:n})},getNode(t){return this.filesStore.getNode(t)},onUpload(t){var e;(0,Is.dirname)(t.source)===(null===(e=this.currentFolder)||void 0===e?void 0:e.source)&&this.fetchContent()},async onUploadFail(t){var e;const n=(null===(e=t.response)||void 0===e?void 0:e.status)||0;if(507!==n)if(404!==n&&409!==n)if(403!==n){try{var s;const e=new ni.Parser({trim:!0,explicitRoot:!1}),n=(await e.parseStringPromise(null===(s=t.response)||void 0===s?void 0:s.data))["s:message"][0];if("string"==typeof n&&""!==n.trim())return void(0,qn.Qg)(this.t("files","Error during upload: {message}",{message:n}))}catch(t){Vn.error("Error while parsing",{error:t})}0===n?(0,qn.Qg)(this.t("files","Unknown error during upload")):(0,qn.Qg)(this.t("files","Error during upload, status code {status}",{status:n}))}else(0,qn.Qg)(this.t("files","Operation is blocked by access control"));else(0,qn.Qg)(this.t("files","Target folder does not exist any more"));else(0,qn.Qg)(this.t("files","Not enough free space"))},onUpdatedNode(t){var e;(null==t?void 0:t.fileid)===(null===(e=this.currentFolder)||void 0===e?void 0:e.fileid)&&this.fetchContent()},onSearch:Yo()((function(t){Aa.debug("Files app handling search event from unified search...",t),this.filterText=t.query}),500),openSharingSidebar(){var t;this.currentFolder?(null!==(t=window)&&void 0!==t&&null!==(t=t.OCA)&&void 0!==t&&null!==(t=t.Files)&&void 0!==t&&null!==(t=t.Sidebar)&&void 0!==t&&t.setActiveTab&&window.OCA.Files.Sidebar.setActiveTab("sharing"),Ai.exec(this.currentFolder,this.currentView,this.currentFolder.path)):Vn.debug("No current folder found for opening sharing sidebar")},toggleGridView(){this.userConfigStore.update("grid_view",!this.userConfig.grid_view)},t:In.Tl,n:In.zw}});var ba=s(60912),Ca={};Ca.styleTagTransform=as(),Ca.setAttributes=ss(),Ca.insert=es().bind(null,"head"),Ca.domAPI=Zn(),Ca.insertStyleElement=rs(),Xn()(ba.A,Ca),ba.A&&ba.A.locals&&ba.A.locals;const xa=(0,Pn.A)(ya,(function(){var t,e,n=this,s=n._self._c;return n._self._setupProxy,s("NcAppContent",{attrs:{"page-heading":n.pageHeading,"data-cy-files-content":""}},[s("div",{staticClass:"files-list__header"},[s("BreadCrumbs",{attrs:{path:n.dir},on:{reload:n.fetchContent},scopedSlots:n._u([{key:"actions",fn:function(){return[n.canShare&&n.filesListWidth>=512?s("NcButton",{staticClass:"files-list__header-share-button",class:{"files-list__header-share-button--shared":n.shareButtonType},attrs:{"aria-label":n.shareButtonLabel,title:n.shareButtonLabel,type:"tertiary"},on:{click:n.openSharingSidebar},scopedSlots:n._u([{key:"icon",fn:function(){return[n.shareButtonType===n.Type.SHARE_TYPE_LINK?s("LinkIcon"):s("AccountPlusIcon",{attrs:{size:20}})]},proxy:!0}],null,!1,2969853559)}):n._e(),n._v(" "),!n.canUpload||n.isQuotaExceeded?s("NcButton",{staticClass:"files-list__header-upload-button--disabled",attrs:{"aria-label":n.cantUploadLabel,title:n.cantUploadLabel,disabled:!0,type:"secondary"},scopedSlots:n._u([{key:"icon",fn:function(){return[s("PlusIcon",{attrs:{size:20}})]},proxy:!0}],null,!1,2953566425)},[n._v("\n\t\t\t\t\t"+n._s(n.t("files","New"))+"\n\t\t\t\t")]):n.currentFolder?s("UploadPicker",{staticClass:"files-list__header-upload-button",attrs:{content:n.dirContents,destination:n.currentFolder,multiple:!0},on:{failed:n.onUploadFail,uploaded:n.onUpload}}):n._e()]},proxy:!0}])}),n._v(" "),n.filesListWidth>=512&&n.enableGridView?s("NcButton",{staticClass:"files-list__header-grid-button",attrs:{"aria-label":n.gridViewButtonLabel,title:n.gridViewButtonLabel,type:"tertiary"},on:{click:n.toggleGridView},scopedSlots:n._u([{key:"icon",fn:function(){return[n.userConfig.grid_view?s("ListViewIcon"):s("ViewGridIcon")]},proxy:!0}],null,!1,1682960703)}):n._e(),n._v(" "),n.isRefreshing?s("NcLoadingIcon",{staticClass:"files-list__refresh-icon"}):n._e()],1),n._v(" "),!n.loading&&n.canUpload?s("DragAndDropNotice",{attrs:{"current-folder":n.currentFolder}}):n._e(),n._v(" "),n.loading&&!n.isRefreshing?s("NcLoadingIcon",{staticClass:"files-list__loading-icon",attrs:{size:38,name:n.t("files","Loading current folder")}}):!n.loading&&n.isEmptyDir?s("NcEmptyContent",{attrs:{name:(null===(t=n.currentView)||void 0===t?void 0:t.emptyTitle)||n.t("files","No files in here"),description:(null===(e=n.currentView)||void 0===e?void 0:e.emptyCaption)||n.t("files","Upload some content or sync with your devices!"),"data-cy-files-content-empty":""},scopedSlots:n._u([{key:"action",fn:function(){return["/"!==n.dir?s("NcButton",{attrs:{"aria-label":n.t("files","Go to the previous folder"),type:"primary",to:n.toPreviousDir}},[n._v("\n\t\t\t\t"+n._s(n.t("files","Go back"))+"\n\t\t\t")]):n._e()]},proxy:!0},{key:"icon",fn:function(){return[s("NcIconSvgWrapper",{attrs:{svg:n.currentView.icon}})]},proxy:!0}])}):s("FilesListVirtual",{ref:"filesListVirtual",attrs:{"current-folder":n.currentFolder,"current-view":n.currentView,nodes:n.dirContentsSorted}})],1)}),[],!1,null,"1b7c1ce0",null).exports,_a=(0,r.pM)({name:"FilesApp",components:{NcContent:Ln.A,FilesList:xa,Navigation:Ls}}),Ta=(0,Pn.A)(_a,(function(){var t=this,e=t._self._c;return t._self._setupProxy,e("NcContent",{attrs:{"app-name":"files"}},[e("Navigation"),t._v(" "),e("FilesList")],1)}),[],!1,null,null,null).exports;var ka,Ea;s.nc=btoa((0,ct.do)()),window.OCA.Files=null!==(ka=window.OCA.Files)&&void 0!==ka?ka:{},window.OCP.Files=null!==(Ea=window.OCP.Files)&&void 0!==Ea?Ea:{};const Sa=new class{constructor(t){var e,n,s;e=this,s=void 0,(n=function(t){var e=function(t,e){if("object"!=typeof t||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var s=n.call(t,"string");if("object"!=typeof s)return s;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==typeof e?e:e+""}(n="_router"))in e?Object.defineProperty(e,n,{value:s,enumerable:!0,configurable:!0,writable:!0}):e[n]=s,this._router=t}get name(){return this._router.currentRoute.name}get query(){return this._router.currentRoute.query||{}}get params(){return this._router.currentRoute.params||{}}goTo(t){let e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return this._router.push({path:t,replace:e})}goToRoute(t,e,n,s){return this._router.push({name:t,query:n,params:e,replace:s})}}(kn);Object.assign(window.OCP.Files,{Router:Sa}),r.Ay.use((function(t){t.mixin({beforeCreate(){const t=this.$options;if(t.pinia){const e=t.pinia;if(!this._provided){const t={};Object.defineProperty(this,"_provided",{get:()=>t,set:e=>Object.assign(t,e)})}this._provided[v]=e,this.$pinia||(this.$pinia=e),e._a=this,y&&h(e),b&&G(e._a,e)}else!this.$pinia&&t.parent&&t.parent.$pinia&&(this.$pinia=t.parent.$pinia)},destroyed(){delete this._pStores}})}));const La=function(){const t=(0,r.uY)(!0),e=t.run((()=>(0,r.KR)({})));let n=[],s=[];const i=(0,r.IG)({install(t){h(i),o||(i._a=t,t.provide(v,i),t.config.globalProperties.$pinia=i,b&&G(t,i),s.forEach((t=>n.push(t))),s=[])},use(t){return this._a||o?n.push(t):s.push(t),this},_p:n,_a:null,_e:t,_s:new Map,state:e});return b&&"undefined"!=typeof Proxy&&i.use(X),i}(),Na=r.Ay.observable((0,lt.bh)());r.Ay.prototype.$navigation=Na;const Ia=new class{constructor(){var t,e,n;t=this,n=void 0,(e=function(t){var e=function(t,e){if("object"!=typeof t||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var s=n.call(t,"string");if("object"!=typeof s)return s;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"==typeof e?e:e+""}(e="_settings"))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,this._settings=[],Sn.debug("OCA.Files.Settings initialized")}register(t){return this._settings.filter((e=>e.name===t.name)).length>0?(Sn.error("A setting with the same name is already registered"),!1):(this._settings.push(t),!0)}get settings(){return this._settings}};Object.assign(window.OCA.Files,{Settings:Ia}),Object.assign(window.OCA.Files.Settings,{Setting:class{constructor(t,e){let{el:n,open:s,close:i}=e;En(this,"_close",void 0),En(this,"_el",void 0),En(this,"_name",void 0),En(this,"_open",void 0),this._name=t,this._el=n,this._open=s,this._close=i,"function"!=typeof this._open&&(this._open=()=>{}),"function"!=typeof this._close&&(this._close=()=>{})}get name(){return this._name}get el(){return this._el}get open(){return this._open}get close(){return this._close}}}),new(r.Ay.extend(Ta))({router:kn,pinia:La}).$mount("#content")},36117:function(t,e,n){var s,i,r=n(96763);function o(t){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},o(t)}"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,s=function(t){"use strict";function e(t,n){return e=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},e(t,n)}function n(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,i=s(t);if(e){var r=s(this).constructor;n=Reflect.construct(i,arguments,r)}else n=i.apply(this,arguments);return function(t,e){if(e&&("object"===o(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,n)}}function s(t){return s=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},s(t)}function i(t,e){var n="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!n){if(Array.isArray(t)||(n=function(t,e){if(t){if("string"==typeof t)return a(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(t):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?a(t,e):void 0}}(t))||e&&t&&"number"==typeof t.length){n&&(t=n);var s=0,i=function(){};return{s:i,n:function(){return s>=t.length?{done:!0}:{done:!1,value:t[s++]}},e:function(t){throw t},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var r,o=!0,l=!1;return{s:function(){n=n.call(t)},n:function(){var t=n.next();return o=t.done,t},e:function(t){l=!0,r=t},f:function(){try{o||null==n.return||n.return()}finally{if(l)throw r}}}}function a(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,s=new Array(e);n<e;n++)s[n]=t[n];return s}function l(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function c(t,e){for(var n=0;n<e.length;n++){var s=e[n];s.enumerable=s.enumerable||!1,s.configurable=!0,"value"in s&&(s.writable=!0),Object.defineProperty(t,s.key,s)}}function d(t,e,n){return e&&c(t.prototype,e),n&&c(t,n),Object.defineProperty(t,"prototype",{writable:!1}),t}function u(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function m(t,e,n){(function(t,e){if(e.has(t))throw new TypeError("Cannot initialize the same private elements twice on an object")})(t,e),e.set(t,n)}function p(t,e){return function(t,e){return e.get?e.get.call(t):e.value}(t,g(t,e,"get"))}function f(t,e,n){return function(t,e,n){if(e.set)e.set.call(t,n);else{if(!e.writable)throw new TypeError("attempted to set read only private field");e.value=n}}(t,g(t,e,"set"),n),n}function g(t,e,n){if(!e.has(t))throw new TypeError("attempted to "+n+" private field on non-instance");return e.get(t)}Object.defineProperty(t,"__esModule",{value:!0}),t.CancelablePromise=void 0,t.cancelable=C,t.default=void 0,t.isCancelablePromise=x;var h="undefined"!=typeof Symbol?Symbol.toStringTag:"@@toStringTag",v=new WeakMap,A=new WeakMap,w=function(){function t(e){var n=e.executor,s=void 0===n?function(){}:n,i=e.internals,r=void 0===i?{isCanceled:!1,onCancelList:[]}:i,o=e.promise,a=void 0===o?new Promise((function(t,e){return s(t,e,(function(t){r.onCancelList.push(t)}))})):o;l(this,t),m(this,v,{writable:!0,value:void 0}),m(this,A,{writable:!0,value:void 0}),u(this,h,"CancelablePromise"),this.cancel=this.cancel.bind(this),f(this,v,r),f(this,A,a||new Promise((function(t,e){return s(t,e,(function(t){r.onCancelList.push(t)}))})))}return d(t,[{key:"then",value:function(t,e){return T(p(this,A).then(_(t,p(this,v)),_(e,p(this,v))),p(this,v))}},{key:"catch",value:function(t){return T(p(this,A).catch(_(t,p(this,v))),p(this,v))}},{key:"finally",value:function(t,e){var n=this;return e&&p(this,v).onCancelList.push(t),T(p(this,A).finally(_((function(){if(t)return e&&(p(n,v).onCancelList=p(n,v).onCancelList.filter((function(e){return e!==t}))),t()}),p(this,v))),p(this,v))}},{key:"cancel",value:function(){p(this,v).isCanceled=!0;var t=p(this,v).onCancelList;p(this,v).onCancelList=[];var e,n=i(t);try{for(n.s();!(e=n.n()).done;){var s=e.value;if("function"==typeof s)try{s()}catch(t){r.error(t)}}}catch(t){n.e(t)}finally{n.f()}}},{key:"isCanceled",value:function(){return!0===p(this,v).isCanceled}}]),t}(),y=function(t){!function(t,n){if("function"!=typeof n&&null!==n)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(n&&n.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),n&&e(t,n)}(i,t);var s=n(i);function i(t){return l(this,i),s.call(this,{executor:t})}return d(i)}(w);t.CancelablePromise=y,u(y,"all",(function(t){return k(t,Promise.all(t))})),u(y,"allSettled",(function(t){return k(t,Promise.allSettled(t))})),u(y,"any",(function(t){return k(t,Promise.any(t))})),u(y,"race",(function(t){return k(t,Promise.race(t))})),u(y,"resolve",(function(t){return C(Promise.resolve(t))})),u(y,"reject",(function(t){return C(Promise.reject(t))})),u(y,"isCancelable",x);var b=y;function C(t){return T(t,{isCanceled:!1,onCancelList:[]})}function x(t){return t instanceof y||t instanceof w}function _(t,e){if(t)return function(n){if(!e.isCanceled){var s=t(n);return x(s)&&e.onCancelList.push(s.cancel),s}return n}}function T(t,e){return new w({internals:e,promise:t})}function k(t,e){var n={isCanceled:!1,onCancelList:[]};return n.onCancelList.push((function(){var e,n=i(t);try{for(n.s();!(e=n.n()).done;){var s=e.value;x(s)&&s.cancel()}}catch(t){n.e(t)}finally{n.f()}})),new w({internals:n,promise:e})}t.default=b},void 0===(i=s.apply(e,[e]))||(t.exports=i)},14456:(t,e,n)=>{"use strict";n.d(e,{A:()=>f});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r),a=n(4417),l=n.n(a),c=new URL(n(57273),n.b),d=new URL(n(63710),n.b),u=o()(i()),m=l()(c),p=l()(d);u.push([t.id,`@charset "UTF-8";\n/**\n * @copyright Copyright (c) 2019 Julius Härtl <jus@bitgrid.net>\n *\n * @author Julius Härtl <jus@bitgrid.net>\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n */\n.toastify.dialogs {\n min-width: 200px;\n background: none;\n background-color: var(--color-main-background);\n color: var(--color-main-text);\n box-shadow: 0 0 6px 0 var(--color-box-shadow);\n padding: 0 12px;\n margin-top: 45px;\n position: fixed;\n z-index: 10100;\n border-radius: var(--border-radius);\n display: flex;\n align-items: center;\n}\n.toastify.dialogs .toast-undo-container {\n display: flex;\n align-items: center;\n}\n.toastify.dialogs .toast-undo-button,\n.toastify.dialogs .toast-close {\n position: static;\n overflow: hidden;\n box-sizing: border-box;\n min-width: 44px;\n height: 100%;\n padding: 12px;\n white-space: nowrap;\n background-repeat: no-repeat;\n background-position: center;\n background-color: transparent;\n min-height: 0;\n}\n.toastify.dialogs .toast-undo-button.toast-close,\n.toastify.dialogs .toast-close.toast-close {\n text-indent: 0;\n opacity: .4;\n border: none;\n min-height: 44px;\n margin-left: 10px;\n font-size: 0;\n}\n.toastify.dialogs .toast-undo-button.toast-close:before,\n.toastify.dialogs .toast-close.toast-close:before {\n background-image: url(${m});\n content: " ";\n filter: var(--background-invert-if-dark);\n display: inline-block;\n width: 16px;\n height: 16px;\n}\n.toastify.dialogs .toast-undo-button.toast-undo-button,\n.toastify.dialogs .toast-close.toast-undo-button {\n height: calc(100% - 6px);\n margin: 3px 3px 3px 12px;\n}\n.toastify.dialogs .toast-undo-button:hover,\n.toastify.dialogs .toast-undo-button:focus,\n.toastify.dialogs .toast-undo-button:active,\n.toastify.dialogs .toast-close:hover,\n.toastify.dialogs .toast-close:focus,\n.toastify.dialogs .toast-close:active {\n cursor: pointer;\n opacity: 1;\n}\n.toastify.dialogs.toastify-top {\n right: 10px;\n}\n.toastify.dialogs.toast-with-click {\n cursor: pointer;\n}\n.toastify.dialogs.toast-error {\n border-left: 3px solid var(--color-error);\n}\n.toastify.dialogs.toast-info {\n border-left: 3px solid var(--color-primary);\n}\n.toastify.dialogs.toast-warning {\n border-left: 3px solid var(--color-warning);\n}\n.toastify.dialogs.toast-success,\n.toastify.dialogs.toast-undo {\n border-left: 3px solid var(--color-success);\n}\n.theme--dark .toastify.dialogs .toast-close.toast-close:before {\n background-image: url(${p});\n}\n._file-picker__file-icon_1vgv4_5 {\n width: 32px;\n height: 32px;\n min-width: 32px;\n min-height: 32px;\n background-repeat: no-repeat;\n background-size: contain;\n display: flex;\n justify-content: center;\n}\ntr.file-picker__row[data-v-6aded0d9] {\n height: var(--row-height, 50px);\n}\ntr.file-picker__row td[data-v-6aded0d9] {\n cursor: pointer;\n overflow: hidden;\n text-overflow: ellipsis;\n border-bottom: none;\n}\ntr.file-picker__row td.row-checkbox[data-v-6aded0d9] {\n padding: 0 2px;\n}\ntr.file-picker__row td[data-v-6aded0d9]:not(.row-checkbox) {\n padding-inline: 14px 0;\n}\ntr.file-picker__row td.row-size[data-v-6aded0d9] {\n text-align: end;\n padding-inline: 0 14px;\n}\ntr.file-picker__row td.row-name[data-v-6aded0d9] {\n padding-inline: 2px 0;\n}\n@keyframes gradient-6aded0d9 {\n 0% {\n background-position: 0% 50%;\n }\n 50% {\n background-position: 100% 50%;\n }\n to {\n background-position: 0% 50%;\n }\n}\n.loading-row .row-checkbox[data-v-6aded0d9] {\n text-align: center !important;\n}\n.loading-row span[data-v-6aded0d9] {\n display: inline-block;\n height: 24px;\n background: linear-gradient(to right, var(--color-background-darker), var(--color-text-maxcontrast), var(--color-background-darker));\n background-size: 600px 100%;\n border-radius: var(--border-radius);\n animation: gradient-6aded0d9 12s ease infinite;\n}\n.loading-row .row-wrapper[data-v-6aded0d9] {\n display: inline-flex;\n align-items: center;\n}\n.loading-row .row-checkbox span[data-v-6aded0d9] {\n width: 24px;\n}\n.loading-row .row-name span[data-v-6aded0d9]:last-of-type {\n margin-inline-start: 6px;\n width: 130px;\n}\n.loading-row .row-size span[data-v-6aded0d9] {\n width: 80px;\n}\n.loading-row .row-modified span[data-v-6aded0d9] {\n width: 90px;\n}\ntr.file-picker__row[data-v-48df4f27] {\n height: var(--row-height, 50px);\n}\ntr.file-picker__row td[data-v-48df4f27] {\n cursor: pointer;\n overflow: hidden;\n text-overflow: ellipsis;\n border-bottom: none;\n}\ntr.file-picker__row td.row-checkbox[data-v-48df4f27] {\n padding: 0 2px;\n}\ntr.file-picker__row td[data-v-48df4f27]:not(.row-checkbox) {\n padding-inline: 14px 0;\n}\ntr.file-picker__row td.row-size[data-v-48df4f27] {\n text-align: end;\n padding-inline: 0 14px;\n}\ntr.file-picker__row td.row-name[data-v-48df4f27] {\n padding-inline: 2px 0;\n}\n.file-picker__row--selected[data-v-48df4f27] {\n background-color: var(--color-background-dark);\n}\n.file-picker__row[data-v-48df4f27]:hover {\n background-color: var(--color-background-hover);\n}\n.file-picker__name-container[data-v-48df4f27] {\n display: flex;\n justify-content: start;\n align-items: center;\n height: 100%;\n}\n.file-picker__file-name[data-v-48df4f27] {\n padding-inline-start: 6px;\n min-width: 0;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.file-picker__file-extension[data-v-48df4f27] {\n color: var(--color-text-maxcontrast);\n min-width: fit-content;\n}\n.file-picker__header-preview[data-v-d3c94818] {\n width: 22px;\n height: 32px;\n flex: 0 0 auto;\n}\n.file-picker__files[data-v-d3c94818] {\n margin: 2px;\n margin-inline-start: 12px;\n overflow: scroll auto;\n}\n.file-picker__files table[data-v-d3c94818] {\n width: 100%;\n max-height: 100%;\n table-layout: fixed;\n}\n.file-picker__files th[data-v-d3c94818] {\n position: sticky;\n z-index: 1;\n top: 0;\n background-color: var(--color-main-background);\n padding: 2px;\n}\n.file-picker__files th .header-wrapper[data-v-d3c94818] {\n display: flex;\n}\n.file-picker__files th.row-checkbox[data-v-d3c94818] {\n width: 44px;\n}\n.file-picker__files th.row-name[data-v-d3c94818] {\n width: 230px;\n}\n.file-picker__files th.row-size[data-v-d3c94818] {\n width: 100px;\n}\n.file-picker__files th.row-modified[data-v-d3c94818] {\n width: 120px;\n}\n.file-picker__files th[data-v-d3c94818]:not(.row-size) .button-vue__wrapper {\n justify-content: start;\n flex-direction: row-reverse;\n}\n.file-picker__files th[data-v-d3c94818]:not(.row-size) .button-vue {\n padding-inline: 16px 4px;\n}\n.file-picker__files th.row-size[data-v-d3c94818] .button-vue__wrapper {\n justify-content: end;\n}\n.file-picker__files th[data-v-d3c94818] .button-vue__wrapper {\n color: var(--color-text-maxcontrast);\n}\n.file-picker__files th[data-v-d3c94818] .button-vue__wrapper .button-vue__text {\n font-weight: 400;\n}\n.file-picker__breadcrumbs[data-v-a25a2652] {\n flex-grow: 0 !important;\n}\n.file-picker__side[data-v-a06474d4] {\n display: flex;\n flex-direction: column;\n align-items: stretch;\n gap: .5rem;\n min-width: 200px;\n padding: 2px;\n margin-block-start: 7px;\n overflow: auto;\n}\n.file-picker__side[data-v-a06474d4] .button-vue__wrapper {\n justify-content: start;\n}\n.file-picker__filter-input[data-v-a06474d4] {\n margin-block: 7px;\n max-width: 260px;\n}\n@media (max-width: 736px) {\n .file-picker__side[data-v-a06474d4] {\n flex-direction: row;\n min-width: unset;\n }\n}\n@media (max-width: 512px) {\n .file-picker__side[data-v-a06474d4] {\n flex-direction: row;\n min-width: unset;\n }\n .file-picker__filter-input[data-v-a06474d4] {\n max-width: unset;\n }\n}\n.file-picker__navigation {\n padding-inline: 8px 2px;\n}\n.file-picker__navigation,\n.file-picker__navigation * {\n box-sizing: border-box;\n}\n.file-picker__navigation .v-select.select {\n min-width: 220px;\n}\n@media (min-width: 513px) and (max-width: 736px) {\n .file-picker__navigation {\n gap: 11px;\n }\n}\n@media (max-width: 512px) {\n .file-picker__navigation {\n flex-direction: column-reverse !important;\n }\n}\n.file-picker__view[data-v-9def3ca4] {\n height: 50px;\n display: flex;\n justify-content: start;\n align-items: center;\n}\n.file-picker__view h3[data-v-9def3ca4] {\n font-weight: 700;\n height: fit-content;\n margin: 0;\n}\n.file-picker__main[data-v-9def3ca4] {\n box-sizing: border-box;\n width: 100%;\n display: flex;\n flex-direction: column;\n min-height: 0;\n flex: 1;\n padding-inline: 2px;\n}\n.file-picker__main *[data-v-9def3ca4] {\n box-sizing: border-box;\n}\n[data-v-9def3ca4] .file-picker {\n height: min(80vh, 800px) !important;\n}\n@media (max-width: 512px) {\n [data-v-9def3ca4] .file-picker {\n height: calc(100% - 16px - var(--default-clickable-area)) !important;\n }\n}\n[data-v-9def3ca4] .file-picker__content {\n display: flex;\n flex-direction: column;\n overflow: hidden;\n}\n`,"",{version:3,sources:["webpack://./node_modules/@nextcloud/dialogs/dist/style.css"],names:[],mappings:"AAAA,gBAAgB;AAChB;;;;;;;;;;;;;;;;;;;;EAoBE;AACF;EACE,gBAAgB;EAChB,gBAAgB;EAChB,8CAA8C;EAC9C,6BAA6B;EAC7B,6CAA6C;EAC7C,eAAe;EACf,gBAAgB;EAChB,eAAe;EACf,cAAc;EACd,mCAAmC;EACnC,aAAa;EACb,mBAAmB;AACrB;AACA;EACE,aAAa;EACb,mBAAmB;AACrB;AACA;;EAEE,gBAAgB;EAChB,gBAAgB;EAChB,sBAAsB;EACtB,eAAe;EACf,YAAY;EACZ,aAAa;EACb,mBAAmB;EACnB,4BAA4B;EAC5B,2BAA2B;EAC3B,6BAA6B;EAC7B,aAAa;AACf;AACA;;EAEE,cAAc;EACd,WAAW;EACX,YAAY;EACZ,gBAAgB;EAChB,iBAAiB;EACjB,YAAY;AACd;AACA;;EAEE,yDAA8Q;EAC9Q,YAAY;EACZ,wCAAwC;EACxC,qBAAqB;EACrB,WAAW;EACX,YAAY;AACd;AACA;;EAEE,wBAAwB;EACxB,wBAAwB;AAC1B;AACA;;;;;;EAME,eAAe;EACf,UAAU;AACZ;AACA;EACE,WAAW;AACb;AACA;EACE,eAAe;AACjB;AACA;EACE,yCAAyC;AAC3C;AACA;EACE,2CAA2C;AAC7C;AACA;EACE,2CAA2C;AAC7C;AACA;;EAEE,2CAA2C;AAC7C;AACA;EACE,yDAAsT;AACxT;AACA;EACE,WAAW;EACX,YAAY;EACZ,eAAe;EACf,gBAAgB;EAChB,4BAA4B;EAC5B,wBAAwB;EACxB,aAAa;EACb,uBAAuB;AACzB;AACA;EACE,+BAA+B;AACjC;AACA;EACE,eAAe;EACf,gBAAgB;EAChB,uBAAuB;EACvB,mBAAmB;AACrB;AACA;EACE,cAAc;AAChB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,eAAe;EACf,sBAAsB;AACxB;AACA;EACE,qBAAqB;AACvB;AACA;EACE;IACE,2BAA2B;EAC7B;EACA;IACE,6BAA6B;EAC/B;EACA;IACE,2BAA2B;EAC7B;AACF;AACA;EACE,6BAA6B;AAC/B;AACA;EACE,qBAAqB;EACrB,YAAY;EACZ,oIAAoI;EACpI,2BAA2B;EAC3B,mCAAmC;EACnC,8CAA8C;AAChD;AACA;EACE,oBAAoB;EACpB,mBAAmB;AACrB;AACA;EACE,WAAW;AACb;AACA;EACE,wBAAwB;EACxB,YAAY;AACd;AACA;EACE,WAAW;AACb;AACA;EACE,WAAW;AACb;AACA;EACE,+BAA+B;AACjC;AACA;EACE,eAAe;EACf,gBAAgB;EAChB,uBAAuB;EACvB,mBAAmB;AACrB;AACA;EACE,cAAc;AAChB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,eAAe;EACf,sBAAsB;AACxB;AACA;EACE,qBAAqB;AACvB;AACA;EACE,8CAA8C;AAChD;AACA;EACE,+CAA+C;AACjD;AACA;EACE,aAAa;EACb,sBAAsB;EACtB,mBAAmB;EACnB,YAAY;AACd;AACA;EACE,yBAAyB;EACzB,YAAY;EACZ,gBAAgB;EAChB,uBAAuB;AACzB;AACA;EACE,oCAAoC;EACpC,sBAAsB;AACxB;AACA;EACE,WAAW;EACX,YAAY;EACZ,cAAc;AAChB;AACA;EACE,WAAW;EACX,yBAAyB;EACzB,qBAAqB;AACvB;AACA;EACE,WAAW;EACX,gBAAgB;EAChB,mBAAmB;AACrB;AACA;EACE,gBAAgB;EAChB,UAAU;EACV,MAAM;EACN,8CAA8C;EAC9C,YAAY;AACd;AACA;EACE,aAAa;AACf;AACA;EACE,WAAW;AACb;AACA;EACE,YAAY;AACd;AACA;EACE,YAAY;AACd;AACA;EACE,YAAY;AACd;AACA;EACE,sBAAsB;EACtB,2BAA2B;AAC7B;AACA;EACE,wBAAwB;AAC1B;AACA;EACE,oBAAoB;AACtB;AACA;EACE,oCAAoC;AACtC;AACA;EACE,gBAAgB;AAClB;AACA;EACE,uBAAuB;AACzB;AACA;EACE,aAAa;EACb,sBAAsB;EACtB,oBAAoB;EACpB,UAAU;EACV,gBAAgB;EAChB,YAAY;EACZ,uBAAuB;EACvB,cAAc;AAChB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,iBAAiB;EACjB,gBAAgB;AAClB;AACA;EACE;IACE,mBAAmB;IACnB,gBAAgB;EAClB;AACF;AACA;EACE;IACE,mBAAmB;IACnB,gBAAgB;EAClB;EACA;IACE,gBAAgB;EAClB;AACF;AACA;EACE,uBAAuB;AACzB;AACA;;EAEE,sBAAsB;AACxB;AACA;EACE,gBAAgB;AAClB;AACA;EACE;IACE,SAAS;EACX;AACF;AACA;EACE;IACE,yCAAyC;EAC3C;AACF;AACA;EACE,YAAY;EACZ,aAAa;EACb,sBAAsB;EACtB,mBAAmB;AACrB;AACA;EACE,gBAAgB;EAChB,mBAAmB;EACnB,SAAS;AACX;AACA;EACE,sBAAsB;EACtB,WAAW;EACX,aAAa;EACb,sBAAsB;EACtB,aAAa;EACb,OAAO;EACP,mBAAmB;AACrB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,mCAAmC;AACrC;AACA;EACE;IACE,oEAAoE;EACtE;AACF;AACA;EACE,aAAa;EACb,sBAAsB;EACtB,gBAAgB;AAClB",sourcesContent:["@charset \"UTF-8\";\n/**\n * @copyright Copyright (c) 2019 Julius Härtl <jus@bitgrid.net>\n *\n * @author Julius Härtl <jus@bitgrid.net>\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n */\n.toastify.dialogs {\n min-width: 200px;\n background: none;\n background-color: var(--color-main-background);\n color: var(--color-main-text);\n box-shadow: 0 0 6px 0 var(--color-box-shadow);\n padding: 0 12px;\n margin-top: 45px;\n position: fixed;\n z-index: 10100;\n border-radius: var(--border-radius);\n display: flex;\n align-items: center;\n}\n.toastify.dialogs .toast-undo-container {\n display: flex;\n align-items: center;\n}\n.toastify.dialogs .toast-undo-button,\n.toastify.dialogs .toast-close {\n position: static;\n overflow: hidden;\n box-sizing: border-box;\n min-width: 44px;\n height: 100%;\n padding: 12px;\n white-space: nowrap;\n background-repeat: no-repeat;\n background-position: center;\n background-color: transparent;\n min-height: 0;\n}\n.toastify.dialogs .toast-undo-button.toast-close,\n.toastify.dialogs .toast-close.toast-close {\n text-indent: 0;\n opacity: .4;\n border: none;\n min-height: 44px;\n margin-left: 10px;\n font-size: 0;\n}\n.toastify.dialogs .toast-undo-button.toast-close:before,\n.toastify.dialogs .toast-close.toast-close:before {\n background-image: url(\"data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20height='16'%20width='16'%3e%3cpath%20d='M14%2012.3L12.3%2014%208%209.7%203.7%2014%202%2012.3%206.3%208%202%203.7%203.7%202%208%206.3%2012.3%202%2014%203.7%209.7%208z'/%3e%3c/svg%3e\");\n content: \" \";\n filter: var(--background-invert-if-dark);\n display: inline-block;\n width: 16px;\n height: 16px;\n}\n.toastify.dialogs .toast-undo-button.toast-undo-button,\n.toastify.dialogs .toast-close.toast-undo-button {\n height: calc(100% - 6px);\n margin: 3px 3px 3px 12px;\n}\n.toastify.dialogs .toast-undo-button:hover,\n.toastify.dialogs .toast-undo-button:focus,\n.toastify.dialogs .toast-undo-button:active,\n.toastify.dialogs .toast-close:hover,\n.toastify.dialogs .toast-close:focus,\n.toastify.dialogs .toast-close:active {\n cursor: pointer;\n opacity: 1;\n}\n.toastify.dialogs.toastify-top {\n right: 10px;\n}\n.toastify.dialogs.toast-with-click {\n cursor: pointer;\n}\n.toastify.dialogs.toast-error {\n border-left: 3px solid var(--color-error);\n}\n.toastify.dialogs.toast-info {\n border-left: 3px solid var(--color-primary);\n}\n.toastify.dialogs.toast-warning {\n border-left: 3px solid var(--color-warning);\n}\n.toastify.dialogs.toast-success,\n.toastify.dialogs.toast-undo {\n border-left: 3px solid var(--color-success);\n}\n.theme--dark .toastify.dialogs .toast-close.toast-close:before {\n background-image: url(\"data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20height='16'%20width='16'%3e%3cpath%20d='M14%2012.3L12.3%2014%208%209.7%203.7%2014%202%2012.3%206.3%208%202%203.7%203.7%202%208%206.3%2012.3%202%2014%203.7%209.7%208z'%20style='fill-opacity:1;fill:%23ffffff'/%3e%3c/svg%3e\");\n}\n._file-picker__file-icon_1vgv4_5 {\n width: 32px;\n height: 32px;\n min-width: 32px;\n min-height: 32px;\n background-repeat: no-repeat;\n background-size: contain;\n display: flex;\n justify-content: center;\n}\ntr.file-picker__row[data-v-6aded0d9] {\n height: var(--row-height, 50px);\n}\ntr.file-picker__row td[data-v-6aded0d9] {\n cursor: pointer;\n overflow: hidden;\n text-overflow: ellipsis;\n border-bottom: none;\n}\ntr.file-picker__row td.row-checkbox[data-v-6aded0d9] {\n padding: 0 2px;\n}\ntr.file-picker__row td[data-v-6aded0d9]:not(.row-checkbox) {\n padding-inline: 14px 0;\n}\ntr.file-picker__row td.row-size[data-v-6aded0d9] {\n text-align: end;\n padding-inline: 0 14px;\n}\ntr.file-picker__row td.row-name[data-v-6aded0d9] {\n padding-inline: 2px 0;\n}\n@keyframes gradient-6aded0d9 {\n 0% {\n background-position: 0% 50%;\n }\n 50% {\n background-position: 100% 50%;\n }\n to {\n background-position: 0% 50%;\n }\n}\n.loading-row .row-checkbox[data-v-6aded0d9] {\n text-align: center !important;\n}\n.loading-row span[data-v-6aded0d9] {\n display: inline-block;\n height: 24px;\n background: linear-gradient(to right, var(--color-background-darker), var(--color-text-maxcontrast), var(--color-background-darker));\n background-size: 600px 100%;\n border-radius: var(--border-radius);\n animation: gradient-6aded0d9 12s ease infinite;\n}\n.loading-row .row-wrapper[data-v-6aded0d9] {\n display: inline-flex;\n align-items: center;\n}\n.loading-row .row-checkbox span[data-v-6aded0d9] {\n width: 24px;\n}\n.loading-row .row-name span[data-v-6aded0d9]:last-of-type {\n margin-inline-start: 6px;\n width: 130px;\n}\n.loading-row .row-size span[data-v-6aded0d9] {\n width: 80px;\n}\n.loading-row .row-modified span[data-v-6aded0d9] {\n width: 90px;\n}\ntr.file-picker__row[data-v-48df4f27] {\n height: var(--row-height, 50px);\n}\ntr.file-picker__row td[data-v-48df4f27] {\n cursor: pointer;\n overflow: hidden;\n text-overflow: ellipsis;\n border-bottom: none;\n}\ntr.file-picker__row td.row-checkbox[data-v-48df4f27] {\n padding: 0 2px;\n}\ntr.file-picker__row td[data-v-48df4f27]:not(.row-checkbox) {\n padding-inline: 14px 0;\n}\ntr.file-picker__row td.row-size[data-v-48df4f27] {\n text-align: end;\n padding-inline: 0 14px;\n}\ntr.file-picker__row td.row-name[data-v-48df4f27] {\n padding-inline: 2px 0;\n}\n.file-picker__row--selected[data-v-48df4f27] {\n background-color: var(--color-background-dark);\n}\n.file-picker__row[data-v-48df4f27]:hover {\n background-color: var(--color-background-hover);\n}\n.file-picker__name-container[data-v-48df4f27] {\n display: flex;\n justify-content: start;\n align-items: center;\n height: 100%;\n}\n.file-picker__file-name[data-v-48df4f27] {\n padding-inline-start: 6px;\n min-width: 0;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.file-picker__file-extension[data-v-48df4f27] {\n color: var(--color-text-maxcontrast);\n min-width: fit-content;\n}\n.file-picker__header-preview[data-v-d3c94818] {\n width: 22px;\n height: 32px;\n flex: 0 0 auto;\n}\n.file-picker__files[data-v-d3c94818] {\n margin: 2px;\n margin-inline-start: 12px;\n overflow: scroll auto;\n}\n.file-picker__files table[data-v-d3c94818] {\n width: 100%;\n max-height: 100%;\n table-layout: fixed;\n}\n.file-picker__files th[data-v-d3c94818] {\n position: sticky;\n z-index: 1;\n top: 0;\n background-color: var(--color-main-background);\n padding: 2px;\n}\n.file-picker__files th .header-wrapper[data-v-d3c94818] {\n display: flex;\n}\n.file-picker__files th.row-checkbox[data-v-d3c94818] {\n width: 44px;\n}\n.file-picker__files th.row-name[data-v-d3c94818] {\n width: 230px;\n}\n.file-picker__files th.row-size[data-v-d3c94818] {\n width: 100px;\n}\n.file-picker__files th.row-modified[data-v-d3c94818] {\n width: 120px;\n}\n.file-picker__files th[data-v-d3c94818]:not(.row-size) .button-vue__wrapper {\n justify-content: start;\n flex-direction: row-reverse;\n}\n.file-picker__files th[data-v-d3c94818]:not(.row-size) .button-vue {\n padding-inline: 16px 4px;\n}\n.file-picker__files th.row-size[data-v-d3c94818] .button-vue__wrapper {\n justify-content: end;\n}\n.file-picker__files th[data-v-d3c94818] .button-vue__wrapper {\n color: var(--color-text-maxcontrast);\n}\n.file-picker__files th[data-v-d3c94818] .button-vue__wrapper .button-vue__text {\n font-weight: 400;\n}\n.file-picker__breadcrumbs[data-v-a25a2652] {\n flex-grow: 0 !important;\n}\n.file-picker__side[data-v-a06474d4] {\n display: flex;\n flex-direction: column;\n align-items: stretch;\n gap: .5rem;\n min-width: 200px;\n padding: 2px;\n margin-block-start: 7px;\n overflow: auto;\n}\n.file-picker__side[data-v-a06474d4] .button-vue__wrapper {\n justify-content: start;\n}\n.file-picker__filter-input[data-v-a06474d4] {\n margin-block: 7px;\n max-width: 260px;\n}\n@media (max-width: 736px) {\n .file-picker__side[data-v-a06474d4] {\n flex-direction: row;\n min-width: unset;\n }\n}\n@media (max-width: 512px) {\n .file-picker__side[data-v-a06474d4] {\n flex-direction: row;\n min-width: unset;\n }\n .file-picker__filter-input[data-v-a06474d4] {\n max-width: unset;\n }\n}\n.file-picker__navigation {\n padding-inline: 8px 2px;\n}\n.file-picker__navigation,\n.file-picker__navigation * {\n box-sizing: border-box;\n}\n.file-picker__navigation .v-select.select {\n min-width: 220px;\n}\n@media (min-width: 513px) and (max-width: 736px) {\n .file-picker__navigation {\n gap: 11px;\n }\n}\n@media (max-width: 512px) {\n .file-picker__navigation {\n flex-direction: column-reverse !important;\n }\n}\n.file-picker__view[data-v-9def3ca4] {\n height: 50px;\n display: flex;\n justify-content: start;\n align-items: center;\n}\n.file-picker__view h3[data-v-9def3ca4] {\n font-weight: 700;\n height: fit-content;\n margin: 0;\n}\n.file-picker__main[data-v-9def3ca4] {\n box-sizing: border-box;\n width: 100%;\n display: flex;\n flex-direction: column;\n min-height: 0;\n flex: 1;\n padding-inline: 2px;\n}\n.file-picker__main *[data-v-9def3ca4] {\n box-sizing: border-box;\n}\n[data-v-9def3ca4] .file-picker {\n height: min(80vh, 800px) !important;\n}\n@media (max-width: 512px) {\n [data-v-9def3ca4] .file-picker {\n height: calc(100% - 16px - var(--default-clickable-area)) !important;\n }\n}\n[data-v-9def3ca4] .file-picker__content {\n display: flex;\n flex-direction: column;\n overflow: hidden;\n}\n"],sourceRoot:""}]);const f=u},61872:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".upload-picker[data-v-eca9500a] {\n display: inline-flex;\n align-items: center;\n height: 44px;\n}\n.upload-picker__progress[data-v-eca9500a] {\n width: 200px;\n max-width: 0;\n transition: max-width var(--animation-quick) ease-in-out;\n margin-top: 8px;\n}\n.upload-picker__progress p[data-v-eca9500a] {\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.upload-picker--uploading .upload-picker__progress[data-v-eca9500a] {\n max-width: 200px;\n margin-right: 20px;\n margin-left: 8px;\n}\n.upload-picker--paused .upload-picker__progress[data-v-eca9500a] {\n animation: breathing-eca9500a 3s ease-out infinite normal;\n}\n@keyframes breathing-eca9500a {\n 0% {\n opacity: .5;\n }\n 25% {\n opacity: 1;\n }\n 60% {\n opacity: .5;\n }\n to {\n opacity: .5;\n }\n}\n","",{version:3,sources:["webpack://./node_modules/@nextcloud/upload/dist/assets/index-FLLHP6Jd.css"],names:[],mappings:"AAAA;EACE,oBAAoB;EACpB,mBAAmB;EACnB,YAAY;AACd;AACA;EACE,YAAY;EACZ,YAAY;EACZ,wDAAwD;EACxD,eAAe;AACjB;AACA;EACE,gBAAgB;EAChB,mBAAmB;EACnB,uBAAuB;AACzB;AACA;EACE,gBAAgB;EAChB,kBAAkB;EAClB,gBAAgB;AAClB;AACA;EACE,yDAAyD;AAC3D;AACA;EACE;IACE,WAAW;EACb;EACA;IACE,UAAU;EACZ;EACA;IACE,WAAW;EACb;EACA;IACE,WAAW;EACb;AACF",sourcesContent:[".upload-picker[data-v-eca9500a] {\n display: inline-flex;\n align-items: center;\n height: 44px;\n}\n.upload-picker__progress[data-v-eca9500a] {\n width: 200px;\n max-width: 0;\n transition: max-width var(--animation-quick) ease-in-out;\n margin-top: 8px;\n}\n.upload-picker__progress p[data-v-eca9500a] {\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.upload-picker--uploading .upload-picker__progress[data-v-eca9500a] {\n max-width: 200px;\n margin-right: 20px;\n margin-left: 8px;\n}\n.upload-picker--paused .upload-picker__progress[data-v-eca9500a] {\n animation: breathing-eca9500a 3s ease-out infinite normal;\n}\n@keyframes breathing-eca9500a {\n 0% {\n opacity: .5;\n }\n 25% {\n opacity: 1;\n }\n 60% {\n opacity: .5;\n }\n to {\n opacity: .5;\n }\n}\n"],sourceRoot:""}]);const a=o},68694:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".breadcrumb[data-v-88ea2982]{flex:1 1 100% !important;width:100%;margin-inline:0px 10px 0px 10px}.breadcrumb[data-v-88ea2982] a{cursor:pointer !important}","",{version:3,sources:["webpack://./apps/files/src/components/BreadCrumbs.vue"],names:[],mappings:"AACA,6BAEC,wBAAA,CACA,UAAA,CACA,+BAAA,CAEA,+BACC,yBAAA",sourcesContent:["\n.breadcrumb {\n\t// Take as much space as possible\n\tflex: 1 1 100% !important;\n\twidth: 100%;\n\tmargin-inline: 0px 10px 0px 10px;\n\n\t::v-deep a {\n\t\tcursor: pointer !important;\n\t}\n}\n\n"],sourceRoot:""}]);const a=o},82915:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".files-list__drag-drop-notice[data-v-02c943a6]{display:flex;align-items:center;justify-content:center;width:100%;min-height:113px;margin:0;user-select:none;color:var(--color-text-maxcontrast);background-color:var(--color-main-background);border-color:#000}.files-list__drag-drop-notice h3[data-v-02c943a6]{margin-left:16px;color:inherit}.files-list__drag-drop-notice-wrapper[data-v-02c943a6]{display:flex;align-items:center;justify-content:center;height:15vh;max-height:70%;padding:0 5vw;border:2px var(--color-border-dark) dashed;border-radius:var(--border-radius-large)}","",{version:3,sources:["webpack://./apps/files/src/components/DragAndDropNotice.vue"],names:[],mappings:"AACA,+CACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAEA,gBAAA,CACA,QAAA,CACA,gBAAA,CACA,mCAAA,CACA,6CAAA,CACA,iBAAA,CAEA,kDACC,gBAAA,CACA,aAAA,CAGD,uDACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,WAAA,CACA,cAAA,CACA,aAAA,CACA,0CAAA,CACA,wCAAA",sourcesContent:["\n.files-list__drag-drop-notice {\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\twidth: 100%;\n\t// Breadcrumbs height + row thead height\n\tmin-height: calc(58px + 55px);\n\tmargin: 0;\n\tuser-select: none;\n\tcolor: var(--color-text-maxcontrast);\n\tbackground-color: var(--color-main-background);\n\tborder-color: black;\n\n\th3 {\n\t\tmargin-left: 16px;\n\t\tcolor: inherit;\n\t}\n\n\t&-wrapper {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\theight: 15vh;\n\t\tmax-height: 70%;\n\t\tpadding: 0 5vw;\n\t\tborder: 2px var(--color-border-dark) dashed;\n\t\tborder-radius: var(--border-radius-large);\n\t}\n}\n\n"],sourceRoot:""}]);const a=o},52608:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".files-list-drag-image{position:absolute;top:-9999px;left:-9999px;display:flex;overflow:hidden;align-items:center;height:44px;padding:6px 12px;background:var(--color-main-background)}.files-list-drag-image__icon,.files-list-drag-image .files-list__row-icon{display:flex;overflow:hidden;align-items:center;justify-content:center;width:32px;height:32px;border-radius:var(--border-radius)}.files-list-drag-image__icon{overflow:visible;margin-right:12px}.files-list-drag-image__icon img{max-width:100%;max-height:100%}.files-list-drag-image__icon .material-design-icon{color:var(--color-text-maxcontrast)}.files-list-drag-image__icon .material-design-icon.folder-icon{color:var(--color-primary-element)}.files-list-drag-image__icon>span{display:flex}.files-list-drag-image__icon>span .files-list__row-icon+.files-list__row-icon{margin-top:6px;margin-left:-26px}.files-list-drag-image__icon>span .files-list__row-icon+.files-list__row-icon+.files-list__row-icon{margin-top:12px}.files-list-drag-image__icon>span:not(:empty)+*{display:none}.files-list-drag-image__name{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}","",{version:3,sources:["webpack://./apps/files/src/components/DragAndDropPreview.vue"],names:[],mappings:"AAIA,uBACC,iBAAA,CACA,WAAA,CACA,YAAA,CACA,YAAA,CACA,eAAA,CACA,kBAAA,CACA,WAAA,CACA,gBAAA,CACA,uCAAA,CAEA,0EAEC,YAAA,CACA,eAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CACA,WAAA,CACA,kCAAA,CAGD,6BACC,gBAAA,CACA,iBAAA,CAEA,iCACC,cAAA,CACA,eAAA,CAGD,mDACC,mCAAA,CACA,+DACC,kCAAA,CAKF,kCACC,YAAA,CAGA,8EACC,cA9CU,CA+CV,iBAAA,CACA,oGACC,eAAA,CAKF,gDACC,YAAA,CAKH,6BACC,eAAA,CACA,kBAAA,CACA,sBAAA",sourcesContent:["\n$size: 32px;\n$stack-shift: 6px;\n\n.files-list-drag-image {\n\tposition: absolute;\n\ttop: -9999px;\n\tleft: -9999px;\n\tdisplay: flex;\n\toverflow: hidden;\n\talign-items: center;\n\theight: 44px;\n\tpadding: 6px 12px;\n\tbackground: var(--color-main-background);\n\n\t&__icon,\n\t.files-list__row-icon {\n\t\tdisplay: flex;\n\t\toverflow: hidden;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\twidth: 32px;\n\t\theight: 32px;\n\t\tborder-radius: var(--border-radius);\n\t}\n\n\t&__icon {\n\t\toverflow: visible;\n\t\tmargin-right: 12px;\n\n\t\timg {\n\t\t\tmax-width: 100%;\n\t\t\tmax-height: 100%;\n\t\t}\n\n\t\t.material-design-icon {\n\t\t\tcolor: var(--color-text-maxcontrast);\n\t\t\t&.folder-icon {\n\t\t\t\tcolor: var(--color-primary-element);\n\t\t\t}\n\t\t}\n\n\t\t// Previews container\n\t\t> span {\n\t\t\tdisplay: flex;\n\n\t\t\t// Stack effect if more than one element\n\t\t\t.files-list__row-icon + .files-list__row-icon {\n\t\t\t\tmargin-top: $stack-shift;\n\t\t\t\tmargin-left: $stack-shift - $size;\n\t\t\t\t& + .files-list__row-icon {\n\t\t\t\t\tmargin-top: $stack-shift * 2;\n\t\t\t\t}\n\t\t\t}\n\t\t\t// If we have manually clone the preview,\n\t\t\t// let's hide any fallback icons\n\t\t\t&:not(:empty) + * {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\t}\n\n\t&__name {\n\t\toverflow: hidden;\n\t\twhite-space: nowrap;\n\t\ttext-overflow: ellipsis;\n\t}\n}\n\n"],sourceRoot:""}]);const a=o},55559:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".favorite-marker-icon[data-v-04e52abc]{color:#a08b00;min-width:unset !important;min-height:unset !important}.favorite-marker-icon[data-v-04e52abc] svg{width:26px !important;height:26px !important;max-width:unset !important;max-height:unset !important}.favorite-marker-icon[data-v-04e52abc] svg path{stroke:var(--color-main-background);stroke-width:8px;stroke-linejoin:round;paint-order:stroke}","",{version:3,sources:["webpack://./apps/files/src/components/FileEntry/FavoriteIcon.vue"],names:[],mappings:"AACA,uCACC,aAAA,CAEA,0BAAA,CACG,2BAAA,CAGF,4CAEC,qBAAA,CACA,sBAAA,CAGA,0BAAA,CACA,2BAAA,CAGA,iDACC,mCAAA,CACA,gBAAA,CACA,qBAAA,CACA,kBAAA",sourcesContent:["\n.favorite-marker-icon {\n\tcolor: #a08b00;\n\t// Override NcIconSvgWrapper defaults (clickable area)\n\tmin-width: unset !important;\n min-height: unset !important;\n\n\t:deep() {\n\t\tsvg {\n\t\t\t// We added a stroke for a11y so we must increase the size to include the stroke\n\t\t\twidth: 26px !important;\n\t\t\theight: 26px !important;\n\n\t\t\t// Override NcIconSvgWrapper defaults of 20px\n\t\t\tmax-width: unset !important;\n\t\t\tmax-height: unset !important;\n\n\t\t\t// Sow a border around the icon for better contrast\n\t\t\tpath {\n\t\t\t\tstroke: var(--color-main-background);\n\t\t\t\tstroke-width: 8px;\n\t\t\t\tstroke-linejoin: round;\n\t\t\t\tpaint-order: stroke;\n\t\t\t}\n\t\t}\n\t}\n}\n"],sourceRoot:""}]);const a=o},91613:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,"main.app-content[style*=mouse-pos-x] .v-popper__popper{transform:translate3d(var(--mouse-pos-x), var(--mouse-pos-y), 0px) !important}main.app-content[style*=mouse-pos-x] .v-popper__popper[data-popper-placement=top]{transform:translate3d(var(--mouse-pos-x), calc(var(--mouse-pos-y) - 50vh + 34px), 0px) !important}main.app-content[style*=mouse-pos-x] .v-popper__popper .v-popper__arrow-container{display:none}","",{version:3,sources:["webpack://./apps/files/src/components/FileEntry/FileEntryActions.vue"],names:[],mappings:"AAGA,uDACC,6EAAA,CAGA,kFAEC,iGAAA,CAGD,kFACC,YAAA",sourcesContent:['\n// Allow right click to define the position of the menu\n// only if defined\nmain.app-content[style*="mouse-pos-x"] .v-popper__popper {\n\ttransform: translate3d(var(--mouse-pos-x), var(--mouse-pos-y), 0px) !important;\n\n\t// If the menu is too close to the bottom, we move it up\n\t&[data-popper-placement="top"] {\n\t\t// 34px added to align with the top of the cursor\n\t\ttransform: translate3d(var(--mouse-pos-x), calc(var(--mouse-pos-y) - 50vh + 34px), 0px) !important;\n\t}\n\t// Hide arrow if floating\n\t.v-popper__arrow-container {\n\t\tdisplay: none;\n\t}\n}\n'],sourceRoot:""}]);const a=o},63337:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,"[data-v-6168180a] .button-vue--icon-and-text .button-vue__text{color:var(--color-primary-element)}[data-v-6168180a] .button-vue--icon-and-text .button-vue__icon{color:var(--color-primary-element)}","",{version:3,sources:["webpack://./apps/files/src/components/FileEntry/FileEntryActions.vue"],names:[],mappings:"AAEC,+DACC,kCAAA,CAED,+DACC,kCAAA",sourcesContent:["\n:deep(.button-vue--icon-and-text, .files-list__row-action-sharing-status) {\n\t.button-vue__text {\n\t\tcolor: var(--color-primary-element);\n\t}\n\t.button-vue__icon {\n\t\tcolor: var(--color-primary-element);\n\t}\n}\n"],sourceRoot:""}]);const a=o},31840:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,"tr[data-v-a85bde20]{margin-bottom:300px;border-top:1px solid var(--color-border);background-color:rgba(0,0,0,0) !important;border-bottom:none !important}tr td[data-v-a85bde20]{user-select:none;color:var(--color-text-maxcontrast) !important}","",{version:3,sources:["webpack://./apps/files/src/components/FilesListTableFooter.vue"],names:[],mappings:"AAEA,oBACC,mBAAA,CACA,wCAAA,CAEA,yCAAA,CACA,6BAAA,CAEA,uBACC,gBAAA,CAEA,8CAAA",sourcesContent:["\n// Scoped row\ntr {\n\tmargin-bottom: 300px;\n\tborder-top: 1px solid var(--color-border);\n\t// Prevent hover effect on the whole row\n\tbackground-color: transparent !important;\n\tborder-bottom: none !important;\n\n\ttd {\n\t\tuser-select: none;\n\t\t// Make sure the cell colors don't apply to column headers\n\t\tcolor: var(--color-text-maxcontrast) !important;\n\t}\n}\n"],sourceRoot:""}]);const a=o},60799:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".files-list__column[data-v-952162c2]{user-select:none;color:var(--color-text-maxcontrast) !important}.files-list__column--sortable[data-v-952162c2]{cursor:pointer}","",{version:3,sources:["webpack://./apps/files/src/components/FilesListTableHeader.vue"],names:[],mappings:"AACA,qCACC,gBAAA,CAEA,8CAAA,CAEA,+CACC,cAAA",sourcesContent:["\n.files-list__column {\n\tuser-select: none;\n\t// Make sure the cell colors don't apply to column headers\n\tcolor: var(--color-text-maxcontrast) !important;\n\n\t&--sortable {\n\t\tcursor: pointer;\n\t}\n}\n\n"],sourceRoot:""}]);const a=o},58017:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".files-list__row-actions-batch[data-v-d939292c]{flex:1 1 100% !important;max-width:100%}","",{version:3,sources:["webpack://./apps/files/src/components/FilesListTableHeaderActions.vue"],names:[],mappings:"AACA,gDACC,wBAAA,CACA,cAAA",sourcesContent:["\n.files-list__row-actions-batch {\n\tflex: 1 1 100% !important;\n\tmax-width: 100%;\n}\n"],sourceRoot:""}]);const a=o},75290:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".files-list__column-sort-button[data-v-097f69d4]{margin:0 calc(var(--cell-margin)*-1);min-width:calc(100% - 3*var(--cell-margin)) !important}.files-list__column-sort-button-text[data-v-097f69d4]{color:var(--color-text-maxcontrast);font-weight:normal}.files-list__column-sort-button-icon[data-v-097f69d4]{color:var(--color-text-maxcontrast);opacity:0;transition:opacity var(--animation-quick);inset-inline-start:-10px}.files-list__column-sort-button--size .files-list__column-sort-button-icon[data-v-097f69d4]{inset-inline-start:10px}.files-list__column-sort-button--active .files-list__column-sort-button-icon[data-v-097f69d4],.files-list__column-sort-button:hover .files-list__column-sort-button-icon[data-v-097f69d4],.files-list__column-sort-button:focus .files-list__column-sort-button-icon[data-v-097f69d4],.files-list__column-sort-button:active .files-list__column-sort-button-icon[data-v-097f69d4]{opacity:1}","",{version:3,sources:["webpack://./apps/files/src/components/FilesListTableHeaderButton.vue"],names:[],mappings:"AACA,iDAEC,oCAAA,CACA,sDAAA,CAEA,sDACC,mCAAA,CACA,kBAAA,CAGD,sDACC,mCAAA,CACA,SAAA,CACA,yCAAA,CACA,wBAAA,CAGD,4FACC,uBAAA,CAGD,mXAIC,SAAA",sourcesContent:["\n.files-list__column-sort-button {\n\t// Compensate for cells margin\n\tmargin: 0 calc(var(--cell-margin) * -1);\n\tmin-width: calc(100% - 3 * var(--cell-margin))!important;\n\n\t&-text {\n\t\tcolor: var(--color-text-maxcontrast);\n\t\tfont-weight: normal;\n\t}\n\n\t&-icon {\n\t\tcolor: var(--color-text-maxcontrast);\n\t\topacity: 0;\n\t\ttransition: opacity var(--animation-quick);\n\t\tinset-inline-start: -10px;\n\t}\n\n\t&--size &-icon {\n\t\tinset-inline-start: 10px;\n\t}\n\n\t&--active &-icon,\n\t&:hover &-icon,\n\t&:focus &-icon,\n\t&:active &-icon {\n\t\topacity: 1;\n\t}\n}\n"],sourceRoot:""}]);const a=o},8524:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".files-list[data-v-2bbbfb12]{--row-height: 55px;--cell-margin: 14px;--checkbox-padding: calc((var(--row-height) - var(--checkbox-size)) / 2);--checkbox-size: 24px;--clickable-area: 44px;--icon-preview-size: 32px;overflow:auto;height:100%;will-change:scroll-position}.files-list[data-v-2bbbfb12] tbody{will-change:padding;contain:layout paint style;display:flex;flex-direction:column;width:100%;position:relative}.files-list[data-v-2bbbfb12] tbody tr{contain:strict}.files-list[data-v-2bbbfb12] tbody tr:hover,.files-list[data-v-2bbbfb12] tbody tr:focus{background-color:var(--color-background-dark)}.files-list[data-v-2bbbfb12] .files-list__before{display:flex;flex-direction:column}.files-list[data-v-2bbbfb12] .files-list__table{display:block}.files-list[data-v-2bbbfb12] .files-list__table.files-list__table--with-thead-overlay{margin-top:calc(-1*var(--row-height))}.files-list[data-v-2bbbfb12] .files-list__thead-overlay{position:sticky;top:0;margin-left:var(--row-height);z-index:20;display:flex;align-items:center;background-color:var(--color-main-background);border-bottom:1px solid var(--color-border);height:var(--row-height)}.files-list[data-v-2bbbfb12] .files-list__thead,.files-list[data-v-2bbbfb12] .files-list__tfoot{display:flex;flex-direction:column;width:100%;background-color:var(--color-main-background)}.files-list[data-v-2bbbfb12] .files-list__thead{position:sticky;z-index:10;top:0}.files-list[data-v-2bbbfb12] .files-list__tfoot{min-height:300px}.files-list[data-v-2bbbfb12] tr{position:relative;display:flex;align-items:center;width:100%;user-select:none;border-bottom:1px solid var(--color-border);box-sizing:border-box;user-select:none;height:var(--row-height)}.files-list[data-v-2bbbfb12] td,.files-list[data-v-2bbbfb12] th{display:flex;align-items:center;flex:0 0 auto;justify-content:left;width:var(--row-height);height:var(--row-height);margin:0;padding:0;color:var(--color-text-maxcontrast);border:none}.files-list[data-v-2bbbfb12] td span,.files-list[data-v-2bbbfb12] th span{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.files-list[data-v-2bbbfb12] .files-list__row--failed{position:absolute;display:block;top:0;left:0;right:0;bottom:0;opacity:.1;z-index:-1;background:var(--color-error)}.files-list[data-v-2bbbfb12] .files-list__row-checkbox{justify-content:center}.files-list[data-v-2bbbfb12] .files-list__row-checkbox .checkbox-radio-switch{display:flex;justify-content:center;--icon-size: var(--checkbox-size)}.files-list[data-v-2bbbfb12] .files-list__row-checkbox .checkbox-radio-switch label.checkbox-radio-switch__label{width:var(--clickable-area);height:var(--clickable-area);margin:0;padding:calc((var(--clickable-area) - var(--checkbox-size))/2)}.files-list[data-v-2bbbfb12] .files-list__row-checkbox .checkbox-radio-switch .checkbox-radio-switch__icon{margin:0 !important}.files-list[data-v-2bbbfb12] .files-list__row:hover,.files-list[data-v-2bbbfb12] .files-list__row:focus,.files-list[data-v-2bbbfb12] .files-list__row:active,.files-list[data-v-2bbbfb12] .files-list__row--active,.files-list[data-v-2bbbfb12] .files-list__row--dragover{background-color:var(--color-background-hover);--color-text-maxcontrast: var(--color-main-text)}.files-list[data-v-2bbbfb12] .files-list__row:hover>*,.files-list[data-v-2bbbfb12] .files-list__row:focus>*,.files-list[data-v-2bbbfb12] .files-list__row:active>*,.files-list[data-v-2bbbfb12] .files-list__row--active>*,.files-list[data-v-2bbbfb12] .files-list__row--dragover>*{--color-border: var(--color-border-dark)}.files-list[data-v-2bbbfb12] .files-list__row:hover .favorite-marker-icon svg path,.files-list[data-v-2bbbfb12] .files-list__row:focus .favorite-marker-icon svg path,.files-list[data-v-2bbbfb12] .files-list__row:active .favorite-marker-icon svg path,.files-list[data-v-2bbbfb12] .files-list__row--active .favorite-marker-icon svg path,.files-list[data-v-2bbbfb12] .files-list__row--dragover .favorite-marker-icon svg path{stroke:var(--color-background-hover)}.files-list[data-v-2bbbfb12] .files-list__row--dragover *{pointer-events:none}.files-list[data-v-2bbbfb12] .files-list__row-icon{position:relative;display:flex;overflow:visible;align-items:center;flex:0 0 var(--icon-preview-size);justify-content:center;width:var(--icon-preview-size);height:100%;margin-right:var(--checkbox-padding);color:var(--color-primary-element)}.files-list[data-v-2bbbfb12] .files-list__row-icon *{cursor:pointer}.files-list[data-v-2bbbfb12] .files-list__row-icon>span{justify-content:flex-start}.files-list[data-v-2bbbfb12] .files-list__row-icon>span:not(.files-list__row-icon-favorite) svg{width:var(--icon-preview-size);height:var(--icon-preview-size)}.files-list[data-v-2bbbfb12] .files-list__row-icon>span.folder-icon,.files-list[data-v-2bbbfb12] .files-list__row-icon>span.folder-open-icon{margin:-3px}.files-list[data-v-2bbbfb12] .files-list__row-icon>span.folder-icon svg,.files-list[data-v-2bbbfb12] .files-list__row-icon>span.folder-open-icon svg{width:calc(var(--icon-preview-size) + 6px);height:calc(var(--icon-preview-size) + 6px)}.files-list[data-v-2bbbfb12] .files-list__row-icon-preview{overflow:hidden;width:var(--icon-preview-size);height:var(--icon-preview-size);border-radius:var(--border-radius);object-fit:contain;object-position:center}.files-list[data-v-2bbbfb12] .files-list__row-icon-preview:not(.files-list__row-icon-preview--loaded){background:var(--color-loading-dark)}.files-list[data-v-2bbbfb12] .files-list__row-icon-favorite{position:absolute;top:0px;right:-10px}.files-list[data-v-2bbbfb12] .files-list__row-icon-overlay{position:absolute;max-height:calc(var(--icon-preview-size)*.5);max-width:calc(var(--icon-preview-size)*.5);color:var(--color-primary-element-text);margin-top:2px}.files-list[data-v-2bbbfb12] .files-list__row-icon-overlay--file{color:var(--color-main-text);background:var(--color-main-background);border-radius:100%}.files-list[data-v-2bbbfb12] .files-list__row-name{overflow:hidden;flex:1 1 auto}.files-list[data-v-2bbbfb12] .files-list__row-name a{display:flex;align-items:center;width:100%;height:100%;min-width:0}.files-list[data-v-2bbbfb12] .files-list__row-name a:focus-visible{outline:none}.files-list[data-v-2bbbfb12] .files-list__row-name a:focus .files-list__row-name-text{outline:2px solid var(--color-main-text) !important;border-radius:20px}.files-list[data-v-2bbbfb12] .files-list__row-name a:focus:not(:focus-visible) .files-list__row-name-text{outline:none !important}.files-list[data-v-2bbbfb12] .files-list__row-name .files-list__row-name-text{color:var(--color-main-text);padding:5px 10px;margin-left:-10px;display:inline-flex}.files-list[data-v-2bbbfb12] .files-list__row-name .files-list__row-name-ext{color:var(--color-text-maxcontrast);overflow:visible}.files-list[data-v-2bbbfb12] .files-list__row-rename{width:100%;max-width:600px}.files-list[data-v-2bbbfb12] .files-list__row-rename input{width:100%;margin-left:-8px;padding:2px 6px;border-width:2px}.files-list[data-v-2bbbfb12] .files-list__row-rename input:invalid{border-color:var(--color-error);color:red}.files-list[data-v-2bbbfb12] .files-list__row-actions{width:auto}.files-list[data-v-2bbbfb12] .files-list__row-actions~td,.files-list[data-v-2bbbfb12] .files-list__row-actions~th{margin:0 var(--cell-margin)}.files-list[data-v-2bbbfb12] .files-list__row-actions button .button-vue__text{font-weight:normal}.files-list[data-v-2bbbfb12] .files-list__row-action--inline{margin-right:7px}.files-list[data-v-2bbbfb12] .files-list__row-mtime,.files-list[data-v-2bbbfb12] .files-list__row-size{color:var(--color-text-maxcontrast)}.files-list[data-v-2bbbfb12] .files-list__row-size{width:calc(var(--row-height)*1.5);justify-content:flex-end}.files-list[data-v-2bbbfb12] .files-list__row-mtime{width:calc(var(--row-height)*2)}.files-list[data-v-2bbbfb12] .files-list__row-column-custom{width:calc(var(--row-height)*2)}","",{version:3,sources:["webpack://./apps/files/src/components/FilesListVirtual.vue"],names:[],mappings:"AACA,6BACC,kBAAA,CACA,mBAAA,CAEA,wEAAA,CACA,qBAAA,CACA,sBAAA,CACA,yBAAA,CAEA,aAAA,CACA,WAAA,CACA,2BAAA,CAIC,oCACC,mBAAA,CACA,0BAAA,CACA,YAAA,CACA,qBAAA,CACA,UAAA,CAEA,iBAAA,CAGA,uCACC,cAAA,CACA,0FAEC,6CAAA,CAMH,kDACC,YAAA,CACA,qBAAA,CAGD,iDACC,aAAA,CAEA,uFAEC,qCAAA,CAIF,yDAEC,eAAA,CACA,KAAA,CAEA,6BAAA,CAEA,UAAA,CAEA,YAAA,CACA,kBAAA,CAGA,6CAAA,CACA,2CAAA,CACA,wBAAA,CAGD,kGAEC,YAAA,CACA,qBAAA,CACA,UAAA,CACA,6CAAA,CAKD,iDAEC,eAAA,CACA,UAAA,CACA,KAAA,CAID,iDACC,gBAAA,CAGD,iCACC,iBAAA,CACA,YAAA,CACA,kBAAA,CACA,UAAA,CACA,gBAAA,CACA,2CAAA,CACA,qBAAA,CACA,gBAAA,CACA,wBAAA,CAGD,kEACC,YAAA,CACA,kBAAA,CACA,aAAA,CACA,oBAAA,CACA,uBAAA,CACA,wBAAA,CACA,QAAA,CACA,SAAA,CACA,mCAAA,CACA,WAAA,CAKA,4EACC,eAAA,CACA,kBAAA,CACA,sBAAA,CAIF,uDACC,iBAAA,CACA,aAAA,CACA,KAAA,CACA,MAAA,CACA,OAAA,CACA,QAAA,CACA,UAAA,CACA,UAAA,CACA,6BAAA,CAGD,wDACC,sBAAA,CAEA,+EACC,YAAA,CACA,sBAAA,CAEA,iCAAA,CAEA,kHACC,2BAAA,CACA,4BAAA,CACA,QAAA,CACA,8DAAA,CAGD,4GACC,mBAAA,CAMF,gRAEC,8CAAA,CAGA,gDAAA,CACA,0RACC,wCAAA,CAID,2aACC,oCAAA,CAIF,2DAEC,mBAAA,CAKF,oDACC,iBAAA,CACA,YAAA,CACA,gBAAA,CACA,kBAAA,CAEA,iCAAA,CACA,sBAAA,CACA,8BAAA,CACA,WAAA,CAEA,oCAAA,CACA,kCAAA,CAGA,sDACC,cAAA,CAGD,yDACC,0BAAA,CAEA,iGACC,8BAAA,CACA,+BAAA,CAID,+IAEC,WAAA,CACA,uJACC,0CAAA,CACA,2CAAA,CAKH,4DACC,eAAA,CACA,8BAAA,CACA,+BAAA,CACA,kCAAA,CAEA,kBAAA,CACA,sBAAA,CAGA,uGACC,oCAAA,CAKF,6DACC,iBAAA,CACA,OAAA,CACA,WAAA,CAID,4DACC,iBAAA,CACA,4CAAA,CACA,2CAAA,CACA,uCAAA,CAEA,cAAA,CAGA,kEACC,4BAAA,CACA,uCAAA,CACA,kBAAA,CAMH,oDAEC,eAAA,CAEA,aAAA,CAEA,sDACC,YAAA,CACA,kBAAA,CAEA,UAAA,CACA,WAAA,CAEA,WAAA,CAGA,oEACC,YAAA,CAID,uFACC,mDAAA,CACA,kBAAA,CAED,2GACC,uBAAA,CAIF,+EACC,4BAAA,CAEA,gBAAA,CACA,iBAAA,CAEA,mBAAA,CAGD,8EACC,mCAAA,CAEA,gBAAA,CAKF,sDACC,UAAA,CACA,eAAA,CACA,4DACC,UAAA,CAEA,gBAAA,CACA,eAAA,CACA,gBAAA,CAEA,oEAEC,+BAAA,CACA,SAAA,CAKH,uDAEC,UAAA,CAGA,oHAEC,2BAAA,CAIA,gFAEC,kBAAA,CAKH,8DACC,gBAAA,CAGD,yGAEC,mCAAA,CAED,oDACC,iCAAA,CAEA,wBAAA,CAGD,qDACC,+BAAA,CAGD,6DACC,+BAAA",sourcesContent:["\n.files-list {\n\t--row-height: 55px;\n\t--cell-margin: 14px;\n\n\t--checkbox-padding: calc((var(--row-height) - var(--checkbox-size)) / 2);\n\t--checkbox-size: 24px;\n\t--clickable-area: 44px;\n\t--icon-preview-size: 32px;\n\n\toverflow: auto;\n\theight: 100%;\n\twill-change: scroll-position;\n\n\t& :deep() {\n\t\t// Table head, body and footer\n\t\ttbody {\n\t\t\twill-change: padding;\n\t\t\tcontain: layout paint style;\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t\twidth: 100%;\n\t\t\t// Necessary for virtual scrolling absolute\n\t\t\tposition: relative;\n\n\t\t\t/* Hover effect on tbody lines only */\n\t\t\ttr {\n\t\t\t\tcontain: strict;\n\t\t\t\t&:hover,\n\t\t\t\t&:focus {\n\t\t\t\t\tbackground-color: var(--color-background-dark);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Before table and thead\n\t\t.files-list__before {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t}\n\n\t\t.files-list__table {\n\t\t\tdisplay: block;\n\n\t\t\t&.files-list__table--with-thead-overlay {\n\t\t\t\t// Hide the table header below the overlay\n\t\t\t\tmargin-top: calc(-1 * var(--row-height));\n\t\t\t}\n\t\t}\n\n\t\t.files-list__thead-overlay {\n\t\t\t// Pinned on top when scrolling\n\t\t\tposition: sticky;\n\t\t\ttop: 0;\n\t\t\t// Save space for a row checkbox\n\t\t\tmargin-left: var(--row-height);\n\t\t\t// More than .files-list__thead\n\t\t\tz-index: 20;\n\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\n\t\t\t// Reuse row styles\n\t\t\tbackground-color: var(--color-main-background);\n\t\t\tborder-bottom: 1px solid var(--color-border);\n\t\t\theight: var(--row-height);\n\t\t}\n\n\t\t.files-list__thead,\n\t\t.files-list__tfoot {\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t\twidth: 100%;\n\t\t\tbackground-color: var(--color-main-background);\n\n\t\t}\n\n\t\t// Table header\n\t\t.files-list__thead {\n\t\t\t// Pinned on top when scrolling\n\t\t\tposition: sticky;\n\t\t\tz-index: 10;\n\t\t\ttop: 0;\n\t\t}\n\n\t\t// Table footer\n\t\t.files-list__tfoot {\n\t\t\tmin-height: 300px;\n\t\t}\n\n\t\ttr {\n\t\t\tposition: relative;\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\twidth: 100%;\n\t\t\tuser-select: none;\n\t\t\tborder-bottom: 1px solid var(--color-border);\n\t\t\tbox-sizing: border-box;\n\t\t\tuser-select: none;\n\t\t\theight: var(--row-height);\n\t\t}\n\n\t\ttd, th {\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\tflex: 0 0 auto;\n\t\t\tjustify-content: left;\n\t\t\twidth: var(--row-height);\n\t\t\theight: var(--row-height);\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\t\t\tcolor: var(--color-text-maxcontrast);\n\t\t\tborder: none;\n\n\t\t\t// Columns should try to add any text\n\t\t\t// node wrapped in a span. That should help\n\t\t\t// with the ellipsis on overflow.\n\t\t\tspan {\n\t\t\t\toverflow: hidden;\n\t\t\t\twhite-space: nowrap;\n\t\t\t\ttext-overflow: ellipsis;\n\t\t\t}\n\t\t}\n\n\t\t.files-list__row--failed {\n\t\t\tposition: absolute;\n\t\t\tdisplay: block;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\topacity: .1;\n\t\t\tz-index: -1;\n\t\t\tbackground: var(--color-error);\n\t\t}\n\n\t\t.files-list__row-checkbox {\n\t\t\tjustify-content: center;\n\n\t\t\t.checkbox-radio-switch {\n\t\t\t\tdisplay: flex;\n\t\t\t\tjustify-content: center;\n\n\t\t\t\t--icon-size: var(--checkbox-size);\n\n\t\t\t\tlabel.checkbox-radio-switch__label {\n\t\t\t\t\twidth: var(--clickable-area);\n\t\t\t\t\theight: var(--clickable-area);\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\tpadding: calc((var(--clickable-area) - var(--checkbox-size)) / 2);\n\t\t\t\t}\n\n\t\t\t\t.checkbox-radio-switch__icon {\n\t\t\t\t\tmargin: 0 !important;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.files-list__row {\n\t\t\t&:hover, &:focus, &:active, &--active, &--dragover {\n\t\t\t\t// WCAG AA compliant\n\t\t\t\tbackground-color: var(--color-background-hover);\n\t\t\t\t// text-maxcontrast have been designed to pass WCAG AA over\n\t\t\t\t// a white background, we need to adjust then.\n\t\t\t\t--color-text-maxcontrast: var(--color-main-text);\n\t\t\t\t> * {\n\t\t\t\t\t--color-border: var(--color-border-dark);\n\t\t\t\t}\n\n\t\t\t\t// Hover state of the row should also change the favorite markers background\n\t\t\t\t.favorite-marker-icon svg path {\n\t\t\t\t\tstroke: var(--color-background-hover);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&--dragover * {\n\t\t\t\t// Prevent dropping on row children\n\t\t\t\tpointer-events: none;\n\t\t\t}\n\t\t}\n\n\t\t// Entry preview or mime icon\n\t\t.files-list__row-icon {\n\t\t\tposition: relative;\n\t\t\tdisplay: flex;\n\t\t\toverflow: visible;\n\t\t\talign-items: center;\n\t\t\t// No shrinking or growing allowed\n\t\t\tflex: 0 0 var(--icon-preview-size);\n\t\t\tjustify-content: center;\n\t\t\twidth: var(--icon-preview-size);\n\t\t\theight: 100%;\n\t\t\t// Show same padding as the checkbox right padding for visual balance\n\t\t\tmargin-right: var(--checkbox-padding);\n\t\t\tcolor: var(--color-primary-element);\n\n\t\t\t// Icon is also clickable\n\t\t\t* {\n\t\t\t\tcursor: pointer;\n\t\t\t}\n\n\t\t\t& > span {\n\t\t\t\tjustify-content: flex-start;\n\n\t\t\t\t&:not(.files-list__row-icon-favorite) svg {\n\t\t\t\t\twidth: var(--icon-preview-size);\n\t\t\t\t\theight: var(--icon-preview-size);\n\t\t\t\t}\n\n\t\t\t\t// Slightly increase the size of the folder icon\n\t\t\t\t&.folder-icon,\n\t\t\t\t&.folder-open-icon {\n\t\t\t\t\tmargin: -3px;\n\t\t\t\t\tsvg {\n\t\t\t\t\t\twidth: calc(var(--icon-preview-size) + 6px);\n\t\t\t\t\t\theight: calc(var(--icon-preview-size) + 6px);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&-preview {\n\t\t\t\toverflow: hidden;\n\t\t\t\twidth: var(--icon-preview-size);\n\t\t\t\theight: var(--icon-preview-size);\n\t\t\t\tborder-radius: var(--border-radius);\n\t\t\t\t// Center and contain the preview\n\t\t\t\tobject-fit: contain;\n\t\t\t\tobject-position: center;\n\n\t\t\t\t/* Preview not loaded animation effect */\n\t\t\t\t&:not(.files-list__row-icon-preview--loaded) {\n\t\t\t\t\tbackground: var(--color-loading-dark);\n\t\t\t\t\t// animation: preview-gradient-fade 1.2s ease-in-out infinite;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&-favorite {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 0px;\n\t\t\t\tright: -10px;\n\t\t\t}\n\n\t\t\t// File and folder overlay\n\t\t\t&-overlay {\n\t\t\t\tposition: absolute;\n\t\t\t\tmax-height: calc(var(--icon-preview-size) * 0.5);\n\t\t\t\tmax-width: calc(var(--icon-preview-size) * 0.5);\n\t\t\t\tcolor: var(--color-primary-element-text);\n\t\t\t\t// better alignment with the folder icon\n\t\t\t\tmargin-top: 2px;\n\n\t\t\t\t// Improve icon contrast with a background for files\n\t\t\t\t&--file {\n\t\t\t\t\tcolor: var(--color-main-text);\n\t\t\t\t\tbackground: var(--color-main-background);\n\t\t\t\t\tborder-radius: 100%;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Entry link\n\t\t.files-list__row-name {\n\t\t\t// Prevent link from overflowing\n\t\t\toverflow: hidden;\n\t\t\t// Take as much space as possible\n\t\t\tflex: 1 1 auto;\n\n\t\t\ta {\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\t// Fill cell height and width\n\t\t\t\twidth: 100%;\n\t\t\t\theight: 100%;\n\t\t\t\t// Necessary for flex grow to work\n\t\t\t\tmin-width: 0;\n\n\t\t\t\t// Already added to the inner text, see rule below\n\t\t\t\t&:focus-visible {\n\t\t\t\t\toutline: none;\n\t\t\t\t}\n\n\t\t\t\t// Keyboard indicator a11y\n\t\t\t\t&:focus .files-list__row-name-text {\n\t\t\t\t\toutline: 2px solid var(--color-main-text) !important;\n\t\t\t\t\tborder-radius: 20px;\n\t\t\t\t}\n\t\t\t\t&:focus:not(:focus-visible) .files-list__row-name-text {\n\t\t\t\t\toutline: none !important;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.files-list__row-name-text {\n\t\t\t\tcolor: var(--color-main-text);\n\t\t\t\t// Make some space for the outline\n\t\t\t\tpadding: 5px 10px;\n\t\t\t\tmargin-left: -10px;\n\t\t\t\t// Align two name and ext\n\t\t\t\tdisplay: inline-flex;\n\t\t\t}\n\n\t\t\t.files-list__row-name-ext {\n\t\t\t\tcolor: var(--color-text-maxcontrast);\n\t\t\t\t// always show the extension\n\t\t\t\toverflow: visible;\n\t\t\t}\n\t\t}\n\n\t\t// Rename form\n\t\t.files-list__row-rename {\n\t\t\twidth: 100%;\n\t\t\tmax-width: 600px;\n\t\t\tinput {\n\t\t\t\twidth: 100%;\n\t\t\t\t// Align with text, 0 - padding - border\n\t\t\t\tmargin-left: -8px;\n\t\t\t\tpadding: 2px 6px;\n\t\t\t\tborder-width: 2px;\n\n\t\t\t\t&:invalid {\n\t\t\t\t\t// Show red border on invalid input\n\t\t\t\t\tborder-color: var(--color-error);\n\t\t\t\t\tcolor: red;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.files-list__row-actions {\n\t\t\t// take as much space as necessary\n\t\t\twidth: auto;\n\n\t\t\t// Add margin to all cells after the actions\n\t\t\t& ~ td,\n\t\t\t& ~ th {\n\t\t\t\tmargin: 0 var(--cell-margin);\n\t\t\t}\n\n\t\t\tbutton {\n\t\t\t\t.button-vue__text {\n\t\t\t\t\t// Remove bold from default button styling\n\t\t\t\t\tfont-weight: normal;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.files-list__row-action--inline {\n\t\t\tmargin-right: 7px;\n\t\t}\n\n\t\t.files-list__row-mtime,\n\t\t.files-list__row-size {\n\t\t\tcolor: var(--color-text-maxcontrast);\n\t\t}\n\t\t.files-list__row-size {\n\t\t\twidth: calc(var(--row-height) * 1.5);\n\t\t\t// Right align content/text\n\t\t\tjustify-content: flex-end;\n\t\t}\n\n\t\t.files-list__row-mtime {\n\t\t\twidth: calc(var(--row-height) * 2);\n\t\t}\n\n\t\t.files-list__row-column-custom {\n\t\t\twidth: calc(var(--row-height) * 2);\n\t\t}\n\t}\n}\n"],sourceRoot:""}]);const a=o},66936:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,"tbody.files-list__tbody.files-list__tbody--grid{--half-clickable-area: calc(var(--clickable-area) / 2);--row-width: 160px;--row-height: calc(var(--row-width) - var(--half-clickable-area));--icon-preview-size: calc(var(--row-width) - var(--clickable-area));--checkbox-padding: 0px;display:grid;grid-template-columns:repeat(auto-fill, var(--row-width));grid-gap:15px;row-gap:15px;align-content:center;align-items:center;justify-content:space-around;justify-items:center}tbody.files-list__tbody.files-list__tbody--grid tr{width:var(--row-width);height:calc(var(--row-height) + var(--clickable-area));border:none;border-radius:var(--border-radius)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-checkbox{position:absolute;z-index:9;top:0;left:0;overflow:hidden;width:var(--clickable-area);height:var(--clickable-area);border-radius:var(--half-clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-icon-favorite{position:absolute;top:0;right:0;display:flex;align-items:center;justify-content:center;width:var(--clickable-area);height:var(--clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name{display:grid;justify-content:stretch;width:100%;height:100%;grid-auto-rows:var(--row-height) var(--clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name span.files-list__row-icon{width:100%;height:100%;padding-top:var(--half-clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name a.files-list__row-name-link{width:calc(100% - var(--clickable-area));height:var(--clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name .files-list__row-name-text{margin:0;padding-right:0}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-actions{position:absolute;right:0;bottom:0;width:var(--clickable-area);height:var(--clickable-area)}","",{version:3,sources:["webpack://./apps/files/src/components/FilesListVirtual.vue"],names:[],mappings:"AAEA,gDACC,sDAAA,CACA,kBAAA,CAEA,iEAAA,CACA,mEAAA,CACA,uBAAA,CAEA,YAAA,CACA,yDAAA,CACA,aAAA,CACA,YAAA,CAEA,oBAAA,CACA,kBAAA,CACA,4BAAA,CACA,oBAAA,CAEA,mDACC,sBAAA,CACA,sDAAA,CACA,WAAA,CACA,kCAAA,CAID,0EACC,iBAAA,CACA,SAAA,CACA,KAAA,CACA,MAAA,CACA,eAAA,CACA,2BAAA,CACA,4BAAA,CACA,wCAAA,CAID,+EACC,iBAAA,CACA,KAAA,CACA,OAAA,CACA,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,2BAAA,CACA,4BAAA,CAGD,sEACC,YAAA,CACA,uBAAA,CACA,UAAA,CACA,WAAA,CACA,sDAAA,CAEA,gGACC,UAAA,CACA,WAAA,CAGA,sCAAA,CAGD,kGAEC,wCAAA,CACA,4BAAA,CAGD,iGACC,QAAA,CACA,eAAA,CAIF,yEACC,iBAAA,CACA,OAAA,CACA,QAAA,CACA,2BAAA,CACA,4BAAA",sourcesContent:["\n// Grid mode\ntbody.files-list__tbody.files-list__tbody--grid {\n\t--half-clickable-area: calc(var(--clickable-area) / 2);\n\t--row-width: 160px;\n\t// We use half of the clickable area as visual balance margin\n\t--row-height: calc(var(--row-width) - var(--half-clickable-area));\n\t--icon-preview-size: calc(var(--row-width) - var(--clickable-area));\n\t--checkbox-padding: 0px;\n\n\tdisplay: grid;\n\tgrid-template-columns: repeat(auto-fill, var(--row-width));\n\tgrid-gap: 15px;\n\trow-gap: 15px;\n\n\talign-content: center;\n\talign-items: center;\n\tjustify-content: space-around;\n\tjustify-items: center;\n\n\ttr {\n\t\twidth: var(--row-width);\n\t\theight: calc(var(--row-height) + var(--clickable-area));\n\t\tborder: none;\n\t\tborder-radius: var(--border-radius);\n\t}\n\n\t// Checkbox in the top left\n\t.files-list__row-checkbox {\n\t\tposition: absolute;\n\t\tz-index: 9;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\toverflow: hidden;\n\t\twidth: var(--clickable-area);\n\t\theight: var(--clickable-area);\n\t\tborder-radius: var(--half-clickable-area);\n\t}\n\n\t// Star icon in the top right\n\t.files-list__row-icon-favorite {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tright: 0;\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\twidth: var(--clickable-area);\n\t\theight: var(--clickable-area);\n\t}\n\n\t.files-list__row-name {\n\t\tdisplay: grid;\n\t\tjustify-content: stretch;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tgrid-auto-rows: var(--row-height) var(--clickable-area);\n\n\t\tspan.files-list__row-icon {\n\t\t\twidth: 100%;\n\t\t\theight: 100%;\n\t\t\t// Visual balance, we use half of the clickable area\n\t\t\t// as a margin around the preview\n\t\t\tpadding-top: var(--half-clickable-area);\n\t\t}\n\n\t\ta.files-list__row-name-link {\n\t\t\t// Minus action menu\n\t\t\twidth: calc(100% - var(--clickable-area));\n\t\t\theight: var(--clickable-area);\n\t\t}\n\n\t\t.files-list__row-name-text {\n\t\t\tmargin: 0;\n\t\t\tpadding-right: 0;\n\t\t}\n\t}\n\n\t.files-list__row-actions {\n\t\tposition: absolute;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\twidth: var(--clickable-area);\n\t\theight: var(--clickable-area);\n\t}\n}\n"],sourceRoot:""}]);const a=o},33149:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".app-navigation-entry__settings-quota--not-unlimited[data-v-063ed938] .app-navigation-entry__name{margin-top:-6px}.app-navigation-entry__settings-quota progress[data-v-063ed938]{position:absolute;bottom:12px;margin-left:44px;width:calc(100% - 44px - 22px)}","",{version:3,sources:["webpack://./apps/files/src/components/NavigationQuota.vue"],names:[],mappings:"AAIC,kGACC,eAAA,CAGD,gEACC,iBAAA,CACA,WAAA,CACA,gBAAA,CACA,8BAAA",sourcesContent:["\n// User storage stats display\n.app-navigation-entry__settings-quota {\n\t// Align title with progress and icon\n\t&--not-unlimited::v-deep .app-navigation-entry__name {\n\t\tmargin-top: -6px;\n\t}\n\n\tprogress {\n\t\tposition: absolute;\n\t\tbottom: 12px;\n\t\tmargin-left: 44px;\n\t\twidth: calc(100% - 44px - 22px);\n\t}\n}\n"],sourceRoot:""}]);const a=o},60912:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".app-content[data-v-1b7c1ce0]{display:flex;overflow:hidden;flex-direction:column;max-height:100%;position:relative !important}.files-list__header[data-v-1b7c1ce0]{display:flex;align-items:center;flex:0 0;margin:4px 4px 4px 50px;max-width:100%}.files-list__header>*[data-v-1b7c1ce0]{flex:0 0}.files-list__header-share-button[data-v-1b7c1ce0]{color:var(--color-text-maxcontrast) !important}.files-list__header-share-button--shared[data-v-1b7c1ce0]{color:var(--color-main-text) !important}.files-list__refresh-icon[data-v-1b7c1ce0]{flex:0 0 44px;width:44px;height:44px}.files-list__loading-icon[data-v-1b7c1ce0]{margin:auto}","",{version:3,sources:["webpack://./apps/files/src/views/FilesList.vue"],names:[],mappings:"AACA,8BAEC,YAAA,CACA,eAAA,CACA,qBAAA,CACA,eAAA,CACA,4BAAA,CAOA,qCACC,YAAA,CACA,kBAAA,CAEA,QAAA,CAEA,uBAAA,CACA,cAAA,CAEA,uCAGC,QAAA,CAGD,kDACC,8CAAA,CAEA,0DACC,uCAAA,CAKH,2CACC,aAAA,CACA,UAAA,CACA,WAAA,CAGD,2CACC,WAAA",sourcesContent:["\n.app-content {\n\t// Virtual list needs to be full height and is scrollable\n\tdisplay: flex;\n\toverflow: hidden;\n\tflex-direction: column;\n\tmax-height: 100%;\n\tposition: relative !important;\n}\n\n$margin: 4px;\n$navigationToggleSize: 50px;\n\n.files-list {\n\t&__header {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\t// Do not grow or shrink (vertically)\n\t\tflex: 0 0;\n\t\t// Align with the navigation toggle icon\n\t\tmargin: $margin $margin $margin $navigationToggleSize;\n\t\tmax-width: 100%;\n\n\t\t>* {\n\t\t\t// Do not grow or shrink (horizontally)\n\t\t\t// Only the breadcrumbs shrinks\n\t\t\tflex: 0 0;\n\t\t}\n\n\t\t&-share-button {\n\t\t\tcolor: var(--color-text-maxcontrast) !important;\n\n\t\t\t&--shared {\n\t\t\t\tcolor: var(--color-main-text) !important;\n\t\t\t}\n\t\t}\n\t}\n\n\t&__refresh-icon {\n\t\tflex: 0 0 44px;\n\t\twidth: 44px;\n\t\theight: 44px;\n\t}\n\n\t&__loading-icon {\n\t\tmargin: auto;\n\t}\n}\n"],sourceRoot:""}]);const a=o},59062:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".app-navigation[data-v-8291caa8] .app-navigation-entry-icon{background-repeat:no-repeat;background-position:center}.app-navigation[data-v-8291caa8] .app-navigation-entry.active .button-vue.icon-collapse:not(:hover){color:var(--color-primary-element-text)}.app-navigation>ul.app-navigation__list[data-v-8291caa8]{padding-bottom:var(--default-grid-baseline, 4px)}.app-navigation-entry__settings[data-v-8291caa8]{height:auto !important;overflow:hidden !important;padding-top:0 !important;flex:0 0 auto}","",{version:3,sources:["webpack://./apps/files/src/views/Navigation.vue"],names:[],mappings:"AAEA,4DACC,2BAAA,CACA,0BAAA,CAGD,oGACC,uCAAA,CAGD,yDAEC,gDAAA,CAGD,iDACC,sBAAA,CACA,0BAAA,CACA,wBAAA,CAEA,aAAA",sourcesContent:["\n// TODO: remove when https://github.com/nextcloud/nextcloud-vue/pull/3539 is in\n.app-navigation::v-deep .app-navigation-entry-icon {\n\tbackground-repeat: no-repeat;\n\tbackground-position: center;\n}\n\n.app-navigation::v-deep .app-navigation-entry.active .button-vue.icon-collapse:not(:hover) {\n\tcolor: var(--color-primary-element-text);\n}\n\n.app-navigation > ul.app-navigation__list {\n\t// Use flex gap value for more elegant spacing\n\tpadding-bottom: var(--default-grid-baseline, 4px);\n}\n\n.app-navigation-entry__settings {\n\theight: auto !important;\n\toverflow: hidden !important;\n\tpadding-top: 0 !important;\n\t// Prevent shrinking or growing\n\tflex: 0 0 auto;\n}\n"],sourceRoot:""}]);const a=o},73309:(t,e,n)=>{"use strict";n.d(e,{A:()=>a});var s=n(71354),i=n.n(s),r=n(76314),o=n.n(r)()(i());o.push([t.id,".setting-link[data-v-6d63c120]:hover{text-decoration:underline}","",{version:3,sources:["webpack://./apps/files/src/views/Settings.vue"],names:[],mappings:"AACA,qCACC,yBAAA",sourcesContent:["\n.setting-link:hover {\n\ttext-decoration: underline;\n}\n"],sourceRoot:""}]);const a=o},64043:(t,e,n)=>{var s=n(48287).Buffer;!function(t){t.parser=function(t,e){return new r(t,e)},t.SAXParser=r,t.SAXStream=a,t.createStream=function(t,e){return new a(t,e)},t.MAX_BUFFER_LENGTH=65536;var e,i=["comment","sgmlDecl","textNode","tagName","doctype","procInstName","procInstBody","entity","attribName","attribValue","cdata","script"];function r(e,n){if(!(this instanceof r))return new r(e,n);var s=this;!function(t){for(var e=0,n=i.length;e<n;e++)t[i[e]]=""}(s),s.q=s.c="",s.bufferCheckPosition=t.MAX_BUFFER_LENGTH,s.opt=n||{},s.opt.lowercase=s.opt.lowercase||s.opt.lowercasetags,s.looseCase=s.opt.lowercase?"toLowerCase":"toUpperCase",s.tags=[],s.closed=s.closedRoot=s.sawRoot=!1,s.tag=s.error=null,s.strict=!!e,s.noscript=!(!e&&!s.opt.noscript),s.state=T.BEGIN,s.strictEntities=s.opt.strictEntities,s.ENTITIES=s.strictEntities?Object.create(t.XML_ENTITIES):Object.create(t.ENTITIES),s.attribList=[],s.opt.xmlns&&(s.ns=Object.create(m)),s.trackPosition=!1!==s.opt.position,s.trackPosition&&(s.position=s.line=s.column=0),E(s,"onready")}t.EVENTS=["text","processinginstruction","sgmldeclaration","doctype","comment","opentagstart","attribute","opentag","closetag","opencdata","cdata","closecdata","error","end","ready","script","opennamespace","closenamespace"],Object.create||(Object.create=function(t){function e(){}return e.prototype=t,new e}),Object.keys||(Object.keys=function(t){var e=[];for(var n in t)t.hasOwnProperty(n)&&e.push(n);return e}),r.prototype={end:function(){F(this)},write:function(e){var n=this;if(this.error)throw this.error;if(n.closed)return I(n,"Cannot write after close. Assign an onready handler.");if(null===e)return F(n);"object"==typeof e&&(e=e.toString());for(var s=0,r="";r=R(e,s++),n.c=r,r;)switch(n.trackPosition&&(n.position++,"\n"===r?(n.line++,n.column=0):n.column++),n.state){case T.BEGIN:if(n.state=T.BEGIN_WHITESPACE,"\ufeff"===r)continue;M(n,r);continue;case T.BEGIN_WHITESPACE:M(n,r);continue;case T.TEXT:if(n.sawRoot&&!n.closedRoot){for(var o=s-1;r&&"<"!==r&&"&"!==r;)(r=R(e,s++))&&n.trackPosition&&(n.position++,"\n"===r?(n.line++,n.column=0):n.column++);n.textNode+=e.substring(o,s-1)}"<"!==r||n.sawRoot&&n.closedRoot&&!n.strict?(v(r)||n.sawRoot&&!n.closedRoot||P(n,"Text data outside of root node."),"&"===r?n.state=T.TEXT_ENTITY:n.textNode+=r):(n.state=T.OPEN_WAKA,n.startTagPosition=n.position);continue;case T.SCRIPT:"<"===r?n.state=T.SCRIPT_ENDING:n.script+=r;continue;case T.SCRIPT_ENDING:"/"===r?n.state=T.CLOSE_TAG:(n.script+="<"+r,n.state=T.SCRIPT);continue;case T.OPEN_WAKA:if("!"===r)n.state=T.SGML_DECL,n.sgmlDecl="";else if(v(r));else if(y(p,r))n.state=T.OPEN_TAG,n.tagName=r;else if("/"===r)n.state=T.CLOSE_TAG,n.tagName="";else if("?"===r)n.state=T.PROC_INST,n.procInstName=n.procInstBody="";else{if(P(n,"Unencoded <"),n.startTagPosition+1<n.position){var a=n.position-n.startTagPosition;r=new Array(a).join(" ")+r}n.textNode+="<"+r,n.state=T.TEXT}continue;case T.SGML_DECL:(n.sgmlDecl+r).toUpperCase()===l?(S(n,"onopencdata"),n.state=T.CDATA,n.sgmlDecl="",n.cdata=""):n.sgmlDecl+r==="--"?(n.state=T.COMMENT,n.comment="",n.sgmlDecl=""):(n.sgmlDecl+r).toUpperCase()===c?(n.state=T.DOCTYPE,(n.doctype||n.sawRoot)&&P(n,"Inappropriately located doctype declaration"),n.doctype="",n.sgmlDecl=""):">"===r?(S(n,"onsgmldeclaration",n.sgmlDecl),n.sgmlDecl="",n.state=T.TEXT):A(r)?(n.state=T.SGML_DECL_QUOTED,n.sgmlDecl+=r):n.sgmlDecl+=r;continue;case T.SGML_DECL_QUOTED:r===n.q&&(n.state=T.SGML_DECL,n.q=""),n.sgmlDecl+=r;continue;case T.DOCTYPE:">"===r?(n.state=T.TEXT,S(n,"ondoctype",n.doctype),n.doctype=!0):(n.doctype+=r,"["===r?n.state=T.DOCTYPE_DTD:A(r)&&(n.state=T.DOCTYPE_QUOTED,n.q=r));continue;case T.DOCTYPE_QUOTED:n.doctype+=r,r===n.q&&(n.q="",n.state=T.DOCTYPE);continue;case T.DOCTYPE_DTD:n.doctype+=r,"]"===r?n.state=T.DOCTYPE:A(r)&&(n.state=T.DOCTYPE_DTD_QUOTED,n.q=r);continue;case T.DOCTYPE_DTD_QUOTED:n.doctype+=r,r===n.q&&(n.state=T.DOCTYPE_DTD,n.q="");continue;case T.COMMENT:"-"===r?n.state=T.COMMENT_ENDING:n.comment+=r;continue;case T.COMMENT_ENDING:"-"===r?(n.state=T.COMMENT_ENDED,n.comment=N(n.opt,n.comment),n.comment&&S(n,"oncomment",n.comment),n.comment=""):(n.comment+="-"+r,n.state=T.COMMENT);continue;case T.COMMENT_ENDED:">"!==r?(P(n,"Malformed comment"),n.comment+="--"+r,n.state=T.COMMENT):n.state=T.TEXT;continue;case T.CDATA:"]"===r?n.state=T.CDATA_ENDING:n.cdata+=r;continue;case T.CDATA_ENDING:"]"===r?n.state=T.CDATA_ENDING_2:(n.cdata+="]"+r,n.state=T.CDATA);continue;case T.CDATA_ENDING_2:">"===r?(n.cdata&&S(n,"oncdata",n.cdata),S(n,"onclosecdata"),n.cdata="",n.state=T.TEXT):"]"===r?n.cdata+="]":(n.cdata+="]]"+r,n.state=T.CDATA);continue;case T.PROC_INST:"?"===r?n.state=T.PROC_INST_ENDING:v(r)?n.state=T.PROC_INST_BODY:n.procInstName+=r;continue;case T.PROC_INST_BODY:if(!n.procInstBody&&v(r))continue;"?"===r?n.state=T.PROC_INST_ENDING:n.procInstBody+=r;continue;case T.PROC_INST_ENDING:">"===r?(S(n,"onprocessinginstruction",{name:n.procInstName,body:n.procInstBody}),n.procInstName=n.procInstBody="",n.state=T.TEXT):(n.procInstBody+="?"+r,n.state=T.PROC_INST_BODY);continue;case T.OPEN_TAG:y(f,r)?n.tagName+=r:(B(n),">"===r?U(n):"/"===r?n.state=T.OPEN_TAG_SLASH:(v(r)||P(n,"Invalid character in tag name"),n.state=T.ATTRIB));continue;case T.OPEN_TAG_SLASH:">"===r?(U(n,!0),j(n)):(P(n,"Forward-slash in opening tag not followed by >"),n.state=T.ATTRIB);continue;case T.ATTRIB:if(v(r))continue;">"===r?U(n):"/"===r?n.state=T.OPEN_TAG_SLASH:y(p,r)?(n.attribName=r,n.attribValue="",n.state=T.ATTRIB_NAME):P(n,"Invalid attribute name");continue;case T.ATTRIB_NAME:"="===r?n.state=T.ATTRIB_VALUE:">"===r?(P(n,"Attribute without value"),n.attribValue=n.attribName,D(n),U(n)):v(r)?n.state=T.ATTRIB_NAME_SAW_WHITE:y(f,r)?n.attribName+=r:P(n,"Invalid attribute name");continue;case T.ATTRIB_NAME_SAW_WHITE:if("="===r)n.state=T.ATTRIB_VALUE;else{if(v(r))continue;P(n,"Attribute without value"),n.tag.attributes[n.attribName]="",n.attribValue="",S(n,"onattribute",{name:n.attribName,value:""}),n.attribName="",">"===r?U(n):y(p,r)?(n.attribName=r,n.state=T.ATTRIB_NAME):(P(n,"Invalid attribute name"),n.state=T.ATTRIB)}continue;case T.ATTRIB_VALUE:if(v(r))continue;A(r)?(n.q=r,n.state=T.ATTRIB_VALUE_QUOTED):(P(n,"Unquoted attribute value"),n.state=T.ATTRIB_VALUE_UNQUOTED,n.attribValue=r);continue;case T.ATTRIB_VALUE_QUOTED:if(r!==n.q){"&"===r?n.state=T.ATTRIB_VALUE_ENTITY_Q:n.attribValue+=r;continue}D(n),n.q="",n.state=T.ATTRIB_VALUE_CLOSED;continue;case T.ATTRIB_VALUE_CLOSED:v(r)?n.state=T.ATTRIB:">"===r?U(n):"/"===r?n.state=T.OPEN_TAG_SLASH:y(p,r)?(P(n,"No whitespace between attributes"),n.attribName=r,n.attribValue="",n.state=T.ATTRIB_NAME):P(n,"Invalid attribute name");continue;case T.ATTRIB_VALUE_UNQUOTED:if(!w(r)){"&"===r?n.state=T.ATTRIB_VALUE_ENTITY_U:n.attribValue+=r;continue}D(n),">"===r?U(n):n.state=T.ATTRIB;continue;case T.CLOSE_TAG:if(n.tagName)">"===r?j(n):y(f,r)?n.tagName+=r:n.script?(n.script+="</"+n.tagName,n.tagName="",n.state=T.SCRIPT):(v(r)||P(n,"Invalid tagname in closing tag"),n.state=T.CLOSE_TAG_SAW_WHITE);else{if(v(r))continue;b(p,r)?n.script?(n.script+="</"+r,n.state=T.SCRIPT):P(n,"Invalid tagname in closing tag."):n.tagName=r}continue;case T.CLOSE_TAG_SAW_WHITE:if(v(r))continue;">"===r?j(n):P(n,"Invalid characters in closing tag");continue;case T.TEXT_ENTITY:case T.ATTRIB_VALUE_ENTITY_Q:case T.ATTRIB_VALUE_ENTITY_U:var d,u;switch(n.state){case T.TEXT_ENTITY:d=T.TEXT,u="textNode";break;case T.ATTRIB_VALUE_ENTITY_Q:d=T.ATTRIB_VALUE_QUOTED,u="attribValue";break;case T.ATTRIB_VALUE_ENTITY_U:d=T.ATTRIB_VALUE_UNQUOTED,u="attribValue"}if(";"===r)if(n.opt.unparsedEntities){var m=z(n);n.entity="",n.state=d,n.write(m)}else n[u]+=z(n),n.entity="",n.state=d;else y(n.entity.length?h:g,r)?n.entity+=r:(P(n,"Invalid character in entity name"),n[u]+="&"+n.entity+r,n.entity="",n.state=d);continue;default:throw new Error(n,"Unknown state: "+n.state)}return n.position>=n.bufferCheckPosition&&function(e){for(var n=Math.max(t.MAX_BUFFER_LENGTH,10),s=0,r=0,o=i.length;r<o;r++){var a=e[i[r]].length;if(a>n)switch(i[r]){case"textNode":L(e);break;case"cdata":S(e,"oncdata",e.cdata),e.cdata="";break;case"script":S(e,"onscript",e.script),e.script="";break;default:I(e,"Max buffer length exceeded: "+i[r])}s=Math.max(s,a)}var l=t.MAX_BUFFER_LENGTH-s;e.bufferCheckPosition=l+e.position}(n),n},resume:function(){return this.error=null,this},close:function(){return this.write(null)},flush:function(){var t;L(t=this),""!==t.cdata&&(S(t,"oncdata",t.cdata),t.cdata=""),""!==t.script&&(S(t,"onscript",t.script),t.script="")}};try{e=n(88310).Stream}catch(t){e=function(){}}e||(e=function(){});var o=t.EVENTS.filter((function(t){return"error"!==t&&"end"!==t}));function a(t,n){if(!(this instanceof a))return new a(t,n);e.apply(this),this._parser=new r(t,n),this.writable=!0,this.readable=!0;var s=this;this._parser.onend=function(){s.emit("end")},this._parser.onerror=function(t){s.emit("error",t),s._parser.error=null},this._decoder=null,o.forEach((function(t){Object.defineProperty(s,"on"+t,{get:function(){return s._parser["on"+t]},set:function(e){if(!e)return s.removeAllListeners(t),s._parser["on"+t]=e,e;s.on(t,e)},enumerable:!0,configurable:!1})}))}a.prototype=Object.create(e.prototype,{constructor:{value:a}}),a.prototype.write=function(t){if("function"==typeof s&&"function"==typeof s.isBuffer&&s.isBuffer(t)){if(!this._decoder){var e=n(83141).I;this._decoder=new e("utf8")}t=this._decoder.write(t)}return this._parser.write(t.toString()),this.emit("data",t),!0},a.prototype.end=function(t){return t&&t.length&&this.write(t),this._parser.end(),!0},a.prototype.on=function(t,n){var s=this;return s._parser["on"+t]||-1===o.indexOf(t)||(s._parser["on"+t]=function(){var e=1===arguments.length?[arguments[0]]:Array.apply(null,arguments);e.splice(0,0,t),s.emit.apply(s,e)}),e.prototype.on.call(s,t,n)};var l="[CDATA[",c="DOCTYPE",d="http://www.w3.org/XML/1998/namespace",u="http://www.w3.org/2000/xmlns/",m={xml:d,xmlns:u},p=/[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,f=/[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/,g=/[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,h=/[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/;function v(t){return" "===t||"\n"===t||"\r"===t||"\t"===t}function A(t){return'"'===t||"'"===t}function w(t){return">"===t||v(t)}function y(t,e){return t.test(e)}function b(t,e){return!y(t,e)}var C,x,_,T=0;for(var k in t.STATE={BEGIN:T++,BEGIN_WHITESPACE:T++,TEXT:T++,TEXT_ENTITY:T++,OPEN_WAKA:T++,SGML_DECL:T++,SGML_DECL_QUOTED:T++,DOCTYPE:T++,DOCTYPE_QUOTED:T++,DOCTYPE_DTD:T++,DOCTYPE_DTD_QUOTED:T++,COMMENT_STARTING:T++,COMMENT:T++,COMMENT_ENDING:T++,COMMENT_ENDED:T++,CDATA:T++,CDATA_ENDING:T++,CDATA_ENDING_2:T++,PROC_INST:T++,PROC_INST_BODY:T++,PROC_INST_ENDING:T++,OPEN_TAG:T++,OPEN_TAG_SLASH:T++,ATTRIB:T++,ATTRIB_NAME:T++,ATTRIB_NAME_SAW_WHITE:T++,ATTRIB_VALUE:T++,ATTRIB_VALUE_QUOTED:T++,ATTRIB_VALUE_CLOSED:T++,ATTRIB_VALUE_UNQUOTED:T++,ATTRIB_VALUE_ENTITY_Q:T++,ATTRIB_VALUE_ENTITY_U:T++,CLOSE_TAG:T++,CLOSE_TAG_SAW_WHITE:T++,SCRIPT:T++,SCRIPT_ENDING:T++},t.XML_ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'"},t.ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'",AElig:198,Aacute:193,Acirc:194,Agrave:192,Aring:197,Atilde:195,Auml:196,Ccedil:199,ETH:208,Eacute:201,Ecirc:202,Egrave:200,Euml:203,Iacute:205,Icirc:206,Igrave:204,Iuml:207,Ntilde:209,Oacute:211,Ocirc:212,Ograve:210,Oslash:216,Otilde:213,Ouml:214,THORN:222,Uacute:218,Ucirc:219,Ugrave:217,Uuml:220,Yacute:221,aacute:225,acirc:226,aelig:230,agrave:224,aring:229,atilde:227,auml:228,ccedil:231,eacute:233,ecirc:234,egrave:232,eth:240,euml:235,iacute:237,icirc:238,igrave:236,iuml:239,ntilde:241,oacute:243,ocirc:244,ograve:242,oslash:248,otilde:245,ouml:246,szlig:223,thorn:254,uacute:250,ucirc:251,ugrave:249,uuml:252,yacute:253,yuml:255,copy:169,reg:174,nbsp:160,iexcl:161,cent:162,pound:163,curren:164,yen:165,brvbar:166,sect:167,uml:168,ordf:170,laquo:171,not:172,shy:173,macr:175,deg:176,plusmn:177,sup1:185,sup2:178,sup3:179,acute:180,micro:181,para:182,middot:183,cedil:184,ordm:186,raquo:187,frac14:188,frac12:189,frac34:190,iquest:191,times:215,divide:247,OElig:338,oelig:339,Scaron:352,scaron:353,Yuml:376,fnof:402,circ:710,tilde:732,Alpha:913,Beta:914,Gamma:915,Delta:916,Epsilon:917,Zeta:918,Eta:919,Theta:920,Iota:921,Kappa:922,Lambda:923,Mu:924,Nu:925,Xi:926,Omicron:927,Pi:928,Rho:929,Sigma:931,Tau:932,Upsilon:933,Phi:934,Chi:935,Psi:936,Omega:937,alpha:945,beta:946,gamma:947,delta:948,epsilon:949,zeta:950,eta:951,theta:952,iota:953,kappa:954,lambda:955,mu:956,nu:957,xi:958,omicron:959,pi:960,rho:961,sigmaf:962,sigma:963,tau:964,upsilon:965,phi:966,chi:967,psi:968,omega:969,thetasym:977,upsih:978,piv:982,ensp:8194,emsp:8195,thinsp:8201,zwnj:8204,zwj:8205,lrm:8206,rlm:8207,ndash:8211,mdash:8212,lsquo:8216,rsquo:8217,sbquo:8218,ldquo:8220,rdquo:8221,bdquo:8222,dagger:8224,Dagger:8225,bull:8226,hellip:8230,permil:8240,prime:8242,Prime:8243,lsaquo:8249,rsaquo:8250,oline:8254,frasl:8260,euro:8364,image:8465,weierp:8472,real:8476,trade:8482,alefsym:8501,larr:8592,uarr:8593,rarr:8594,darr:8595,harr:8596,crarr:8629,lArr:8656,uArr:8657,rArr:8658,dArr:8659,hArr:8660,forall:8704,part:8706,exist:8707,empty:8709,nabla:8711,isin:8712,notin:8713,ni:8715,prod:8719,sum:8721,minus:8722,lowast:8727,radic:8730,prop:8733,infin:8734,ang:8736,and:8743,or:8744,cap:8745,cup:8746,int:8747,there4:8756,sim:8764,cong:8773,asymp:8776,ne:8800,equiv:8801,le:8804,ge:8805,sub:8834,sup:8835,nsub:8836,sube:8838,supe:8839,oplus:8853,otimes:8855,perp:8869,sdot:8901,lceil:8968,rceil:8969,lfloor:8970,rfloor:8971,lang:9001,rang:9002,loz:9674,spades:9824,clubs:9827,hearts:9829,diams:9830},Object.keys(t.ENTITIES).forEach((function(e){var n=t.ENTITIES[e],s="number"==typeof n?String.fromCharCode(n):n;t.ENTITIES[e]=s})),t.STATE)t.STATE[t.STATE[k]]=k;function E(t,e,n){t[e]&&t[e](n)}function S(t,e,n){t.textNode&&L(t),E(t,e,n)}function L(t){t.textNode=N(t.opt,t.textNode),t.textNode&&E(t,"ontext",t.textNode),t.textNode=""}function N(t,e){return t.trim&&(e=e.trim()),t.normalize&&(e=e.replace(/\s+/g," ")),e}function I(t,e){return L(t),t.trackPosition&&(e+="\nLine: "+t.line+"\nColumn: "+t.column+"\nChar: "+t.c),e=new Error(e),t.error=e,E(t,"onerror",e),t}function F(t){return t.sawRoot&&!t.closedRoot&&P(t,"Unclosed root tag"),t.state!==T.BEGIN&&t.state!==T.BEGIN_WHITESPACE&&t.state!==T.TEXT&&I(t,"Unexpected end"),L(t),t.c="",t.closed=!0,E(t,"onend"),r.call(t,t.strict,t.opt),t}function P(t,e){if("object"!=typeof t||!(t instanceof r))throw new Error("bad call to strictFail");t.strict&&I(t,e)}function B(t){t.strict||(t.tagName=t.tagName[t.looseCase]());var e=t.tags[t.tags.length-1]||t,n=t.tag={name:t.tagName,attributes:{}};t.opt.xmlns&&(n.ns=e.ns),t.attribList.length=0,S(t,"onopentagstart",n)}function O(t,e){var n=t.indexOf(":")<0?["",t]:t.split(":"),s=n[0],i=n[1];return e&&"xmlns"===t&&(s="xmlns",i=""),{prefix:s,local:i}}function D(t){if(t.strict||(t.attribName=t.attribName[t.looseCase]()),-1!==t.attribList.indexOf(t.attribName)||t.tag.attributes.hasOwnProperty(t.attribName))t.attribName=t.attribValue="";else{if(t.opt.xmlns){var e=O(t.attribName,!0),n=e.prefix,s=e.local;if("xmlns"===n)if("xml"===s&&t.attribValue!==d)P(t,"xml: prefix must be bound to "+d+"\nActual: "+t.attribValue);else if("xmlns"===s&&t.attribValue!==u)P(t,"xmlns: prefix must be bound to "+u+"\nActual: "+t.attribValue);else{var i=t.tag,r=t.tags[t.tags.length-1]||t;i.ns===r.ns&&(i.ns=Object.create(r.ns)),i.ns[s]=t.attribValue}t.attribList.push([t.attribName,t.attribValue])}else t.tag.attributes[t.attribName]=t.attribValue,S(t,"onattribute",{name:t.attribName,value:t.attribValue});t.attribName=t.attribValue=""}}function U(t,e){if(t.opt.xmlns){var n=t.tag,s=O(t.tagName);n.prefix=s.prefix,n.local=s.local,n.uri=n.ns[s.prefix]||"",n.prefix&&!n.uri&&(P(t,"Unbound namespace prefix: "+JSON.stringify(t.tagName)),n.uri=s.prefix);var i=t.tags[t.tags.length-1]||t;n.ns&&i.ns!==n.ns&&Object.keys(n.ns).forEach((function(e){S(t,"onopennamespace",{prefix:e,uri:n.ns[e]})}));for(var r=0,o=t.attribList.length;r<o;r++){var a=t.attribList[r],l=a[0],c=a[1],d=O(l,!0),u=d.prefix,m=d.local,p=""===u?"":n.ns[u]||"",f={name:l,value:c,prefix:u,local:m,uri:p};u&&"xmlns"!==u&&!p&&(P(t,"Unbound namespace prefix: "+JSON.stringify(u)),f.uri=u),t.tag.attributes[l]=f,S(t,"onattribute",f)}t.attribList.length=0}t.tag.isSelfClosing=!!e,t.sawRoot=!0,t.tags.push(t.tag),S(t,"onopentag",t.tag),e||(t.noscript||"script"!==t.tagName.toLowerCase()?t.state=T.TEXT:t.state=T.SCRIPT,t.tag=null,t.tagName=""),t.attribName=t.attribValue="",t.attribList.length=0}function j(t){if(!t.tagName)return P(t,"Weird empty close tag."),t.textNode+="</>",void(t.state=T.TEXT);if(t.script){if("script"!==t.tagName)return t.script+="</"+t.tagName+">",t.tagName="",void(t.state=T.SCRIPT);S(t,"onscript",t.script),t.script=""}var e=t.tags.length,n=t.tagName;t.strict||(n=n[t.looseCase]());for(var s=n;e--&&t.tags[e].name!==s;)P(t,"Unexpected close tag");if(e<0)return P(t,"Unmatched closing tag: "+t.tagName),t.textNode+="</"+t.tagName+">",void(t.state=T.TEXT);t.tagName=n;for(var i=t.tags.length;i-- >e;){var r=t.tag=t.tags.pop();t.tagName=t.tag.name,S(t,"onclosetag",t.tagName);var o={};for(var a in r.ns)o[a]=r.ns[a];var l=t.tags[t.tags.length-1]||t;t.opt.xmlns&&r.ns!==l.ns&&Object.keys(r.ns).forEach((function(e){var n=r.ns[e];S(t,"onclosenamespace",{prefix:e,uri:n})}))}0===e&&(t.closedRoot=!0),t.tagName=t.attribValue=t.attribName="",t.attribList.length=0,t.state=T.TEXT}function z(t){var e,n=t.entity,s=n.toLowerCase(),i="";return t.ENTITIES[n]?t.ENTITIES[n]:t.ENTITIES[s]?t.ENTITIES[s]:("#"===(n=s).charAt(0)&&("x"===n.charAt(1)?(n=n.slice(2),i=(e=parseInt(n,16)).toString(16)):(n=n.slice(1),i=(e=parseInt(n,10)).toString(10))),n=n.replace(/^0+/,""),isNaN(e)||i.toLowerCase()!==n?(P(t,"Invalid character entity"),"&"+t.entity+";"):String.fromCodePoint(e))}function M(t,e){"<"===e?(t.state=T.OPEN_WAKA,t.startTagPosition=t.position):v(e)||(P(t,"Non-whitespace before first tag."),t.textNode=e,t.state=T.TEXT)}function R(t,e){var n="";return e<t.length&&(n=t.charAt(e)),n}T=t.STATE,String.fromCodePoint||(C=String.fromCharCode,x=Math.floor,_=function(){var t,e,n=[],s=-1,i=arguments.length;if(!i)return"";for(var r="";++s<i;){var o=Number(arguments[s]);if(!isFinite(o)||o<0||o>1114111||x(o)!==o)throw RangeError("Invalid code point: "+o);o<=65535?n.push(o):(t=55296+((o-=65536)>>10),e=o%1024+56320,n.push(t,e)),(s+1===i||n.length>16384)&&(r+=C.apply(null,n),n.length=0)}return r},Object.defineProperty?Object.defineProperty(String,"fromCodePoint",{value:_,configurable:!0,writable:!0}):String.fromCodePoint=_)}(e)},42791:function(t,e,n){var s=n(65606);!function(t,e){"use strict";if(!t.setImmediate){var n,i,r,o,a,l=1,c={},d=!1,u=t.document,m=Object.getPrototypeOf&&Object.getPrototypeOf(t);m=m&&m.setTimeout?m:t,"[object process]"==={}.toString.call(t.process)?n=function(t){s.nextTick((function(){f(t)}))}:function(){if(t.postMessage&&!t.importScripts){var e=!0,n=t.onmessage;return t.onmessage=function(){e=!1},t.postMessage("","*"),t.onmessage=n,e}}()?(o="setImmediate$"+Math.random()+"$",a=function(e){e.source===t&&"string"==typeof e.data&&0===e.data.indexOf(o)&&f(+e.data.slice(o.length))},t.addEventListener?t.addEventListener("message",a,!1):t.attachEvent("onmessage",a),n=function(e){t.postMessage(o+e,"*")}):t.MessageChannel?((r=new MessageChannel).port1.onmessage=function(t){f(t.data)},n=function(t){r.port2.postMessage(t)}):u&&"onreadystatechange"in u.createElement("script")?(i=u.documentElement,n=function(t){var e=u.createElement("script");e.onreadystatechange=function(){f(t),e.onreadystatechange=null,i.removeChild(e),e=null},i.appendChild(e)}):n=function(t){setTimeout(f,0,t)},m.setImmediate=function(t){"function"!=typeof t&&(t=new Function(""+t));for(var e=new Array(arguments.length-1),s=0;s<e.length;s++)e[s]=arguments[s+1];var i={callback:t,args:e};return c[l]=i,n(l),l++},m.clearImmediate=p}function p(t){delete c[t]}function f(t){if(d)setTimeout(f,0,t);else{var e=c[t];if(e){d=!0;try{!function(t){var e=t.callback,n=t.args;switch(n.length){case 0:e();break;case 1:e(n[0]);break;case 2:e(n[0],n[1]);break;case 3:e(n[0],n[1],n[2]);break;default:e.apply(undefined,n)}}(e)}finally{p(t),d=!1}}}}}("undefined"==typeof self?void 0===n.g?this:n.g:self)},75270:t=>{function e(t,e){return null==t?e:t}t.exports=function(t){var n,s=e((t=t||{}).max,1),i=e(t.min,0),r=e(t.autostart,!0),o=e(t.ignoreSameProgress,!1),a=null,l=null,c=null,d=(n=e(t.historyTimeConstant,2.5),function(t,e,s){return t+s/(s+n)*(e-t)});function u(){m(i)}function m(t,e){if("number"!=typeof e&&(e=Date.now()),l!==e&&(!o||c!==t)){if(null===l||null===c)return c=t,void(l=e);var n=.001*(e-l),s=(t-c)/n;a=null===a?s:d(a,s,n),c=t,l=e}}return{start:u,reset:function(){a=null,l=null,c=null,r&&u()},report:m,estimate:function(t){if(null===c)return 1/0;if(c>=s)return 0;if(null===a)return 1/0;var e=(s-c)/a;return"number"==typeof t&&"number"==typeof l&&(e-=.001*(t-l)),Math.max(0,e)},rate:function(){return null===a?0:a}}}},97103:function(t,e,n){var s=void 0!==n.g&&n.g||"undefined"!=typeof self&&self||window,i=Function.prototype.apply;function r(t,e){this._id=t,this._clearFn=e}e.setTimeout=function(){return new r(i.call(setTimeout,s,arguments),clearTimeout)},e.setInterval=function(){return new r(i.call(setInterval,s,arguments),clearInterval)},e.clearTimeout=e.clearInterval=function(t){t&&t.close()},r.prototype.unref=r.prototype.ref=function(){},r.prototype.close=function(){this._clearFn.call(s,this._id)},e.enroll=function(t,e){clearTimeout(t._idleTimeoutId),t._idleTimeout=e},e.unenroll=function(t){clearTimeout(t._idleTimeoutId),t._idleTimeout=-1},e._unrefActive=e.active=function(t){clearTimeout(t._idleTimeoutId);var e=t._idleTimeout;e>=0&&(t._idleTimeoutId=setTimeout((function(){t._onTimeout&&t._onTimeout()}),e))},n(42791),e.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==n.g&&n.g.setImmediate||this&&this.setImmediate,e.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==n.g&&n.g.clearImmediate||this&&this.clearImmediate},83177:function(t,e){(function(){"use strict";e.stripBOM=function(t){return"\ufeff"===t[0]?t.substring(1):t}}).call(this)},56712:function(t,e,n){(function(){"use strict";var t,s,i,r,o,a={}.hasOwnProperty;t=n(59665),s=n(66465).defaults,r=function(t){return"string"==typeof t&&(t.indexOf("&")>=0||t.indexOf(">")>=0||t.indexOf("<")>=0)},o=function(t){return"<![CDATA["+i(t)+"]]>"},i=function(t){return t.replace("]]>","]]]]><![CDATA[>")},e.Builder=function(){function e(t){var e,n,i;for(e in this.options={},n=s[.2])a.call(n,e)&&(i=n[e],this.options[e]=i);for(e in t)a.call(t,e)&&(i=t[e],this.options[e]=i)}return e.prototype.buildObject=function(e){var n,i,l,c,d,u;return n=this.options.attrkey,i=this.options.charkey,1===Object.keys(e).length&&this.options.rootName===s[.2].rootName?e=e[d=Object.keys(e)[0]]:d=this.options.rootName,u=this,l=function(t,e){var s,c,d,m,p,f;if("object"!=typeof e)u.options.cdata&&r(e)?t.raw(o(e)):t.txt(e);else if(Array.isArray(e)){for(m in e)if(a.call(e,m))for(p in c=e[m])d=c[p],t=l(t.ele(p),d).up()}else for(p in e)if(a.call(e,p))if(c=e[p],p===n){if("object"==typeof c)for(s in c)f=c[s],t=t.att(s,f)}else if(p===i)t=u.options.cdata&&r(c)?t.raw(o(c)):t.txt(c);else if(Array.isArray(c))for(m in c)a.call(c,m)&&(t="string"==typeof(d=c[m])?u.options.cdata&&r(d)?t.ele(p).raw(o(d)).up():t.ele(p,d).up():l(t.ele(p),d).up());else"object"==typeof c?t=l(t.ele(p),c).up():"string"==typeof c&&u.options.cdata&&r(c)?t=t.ele(p).raw(o(c)).up():(null==c&&(c=""),t=t.ele(p,c.toString()).up());return t},c=t.create(d,this.options.xmldec,this.options.doctype,{headless:this.options.headless,allowSurrogateChars:this.options.allowSurrogateChars}),l(c,e).end(this.options.renderOpts)},e}()}).call(this)},66465:function(t,e){(function(){e.defaults={.1:{explicitCharkey:!1,trim:!0,normalize:!0,normalizeTags:!1,attrkey:"@",charkey:"#",explicitArray:!1,ignoreAttrs:!1,mergeAttrs:!1,explicitRoot:!1,validator:null,xmlns:!1,explicitChildren:!1,childkey:"@@",charsAsChildren:!1,includeWhiteChars:!1,async:!1,strict:!0,attrNameProcessors:null,attrValueProcessors:null,tagNameProcessors:null,valueProcessors:null,emptyTag:""},.2:{explicitCharkey:!1,trim:!1,normalize:!1,normalizeTags:!1,attrkey:"$",charkey:"_",explicitArray:!0,ignoreAttrs:!1,mergeAttrs:!1,explicitRoot:!0,validator:null,xmlns:!1,explicitChildren:!1,preserveChildrenOrder:!1,childkey:"$$",charsAsChildren:!1,includeWhiteChars:!1,async:!1,strict:!0,attrNameProcessors:null,attrValueProcessors:null,tagNameProcessors:null,valueProcessors:null,rootName:"root",xmldec:{version:"1.0",encoding:"UTF-8",standalone:!0},doctype:null,renderOpts:{pretty:!0,indent:" ",newline:"\n"},headless:!1,chunkSize:1e4,emptyTag:"",cdata:!1}}}).call(this)},11912:function(t,e,n){(function(){"use strict";var t,s,i,r,o,a,l,c,d,u=function(t,e){return function(){return t.apply(e,arguments)}},m={}.hasOwnProperty;c=n(64043),r=n(37007),t=n(83177),l=n(92114),d=n(97103).setImmediate,s=n(66465).defaults,o=function(t){return"object"==typeof t&&null!=t&&0===Object.keys(t).length},a=function(t,e,n){var s,i;for(s=0,i=t.length;s<i;s++)e=(0,t[s])(e,n);return e},i=function(t,e,n){var s;return(s=Object.create(null)).value=n,s.writable=!0,s.enumerable=!0,s.configurable=!0,Object.defineProperty(t,e,s)},e.Parser=function(n){function r(t){var n,i,r;if(this.parseStringPromise=u(this.parseStringPromise,this),this.parseString=u(this.parseString,this),this.reset=u(this.reset,this),this.assignOrPush=u(this.assignOrPush,this),this.processAsync=u(this.processAsync,this),!(this instanceof e.Parser))return new e.Parser(t);for(n in this.options={},i=s[.2])m.call(i,n)&&(r=i[n],this.options[n]=r);for(n in t)m.call(t,n)&&(r=t[n],this.options[n]=r);this.options.xmlns&&(this.options.xmlnskey=this.options.attrkey+"ns"),this.options.normalizeTags&&(this.options.tagNameProcessors||(this.options.tagNameProcessors=[]),this.options.tagNameProcessors.unshift(l.normalize)),this.reset()}return function(t,e){for(var n in e)m.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(r,n),r.prototype.processAsync=function(){var t,e;try{return this.remaining.length<=this.options.chunkSize?(t=this.remaining,this.remaining="",this.saxParser=this.saxParser.write(t),this.saxParser.close()):(t=this.remaining.substr(0,this.options.chunkSize),this.remaining=this.remaining.substr(this.options.chunkSize,this.remaining.length),this.saxParser=this.saxParser.write(t),d(this.processAsync))}catch(t){if(e=t,!this.saxParser.errThrown)return this.saxParser.errThrown=!0,this.emit(e)}},r.prototype.assignOrPush=function(t,e,n){return e in t?(t[e]instanceof Array||i(t,e,[t[e]]),t[e].push(n)):this.options.explicitArray?i(t,e,[n]):i(t,e,n)},r.prototype.reset=function(){var t,e,n,s,r;return this.removeAllListeners(),this.saxParser=c.parser(this.options.strict,{trim:!1,normalize:!1,xmlns:this.options.xmlns}),this.saxParser.errThrown=!1,this.saxParser.onerror=(r=this,function(t){if(r.saxParser.resume(),!r.saxParser.errThrown)return r.saxParser.errThrown=!0,r.emit("error",t)}),this.saxParser.onend=function(t){return function(){if(!t.saxParser.ended)return t.saxParser.ended=!0,t.emit("end",t.resultObject)}}(this),this.saxParser.ended=!1,this.EXPLICIT_CHARKEY=this.options.explicitCharkey,this.resultObject=null,s=[],t=this.options.attrkey,e=this.options.charkey,this.saxParser.onopentag=function(n){return function(r){var o,l,c,d,u;if((c={})[e]="",!n.options.ignoreAttrs)for(o in u=r.attributes)m.call(u,o)&&(t in c||n.options.mergeAttrs||(c[t]={}),l=n.options.attrValueProcessors?a(n.options.attrValueProcessors,r.attributes[o],o):r.attributes[o],d=n.options.attrNameProcessors?a(n.options.attrNameProcessors,o):o,n.options.mergeAttrs?n.assignOrPush(c,d,l):i(c[t],d,l));return c["#name"]=n.options.tagNameProcessors?a(n.options.tagNameProcessors,r.name):r.name,n.options.xmlns&&(c[n.options.xmlnskey]={uri:r.uri,local:r.local}),s.push(c)}}(this),this.saxParser.onclosetag=function(t){return function(){var n,r,l,c,d,u,p,f,g,h;if(u=s.pop(),d=u["#name"],t.options.explicitChildren&&t.options.preserveChildrenOrder||delete u["#name"],!0===u.cdata&&(n=u.cdata,delete u.cdata),g=s[s.length-1],u[e].match(/^\s*$/)&&!n?(r=u[e],delete u[e]):(t.options.trim&&(u[e]=u[e].trim()),t.options.normalize&&(u[e]=u[e].replace(/\s{2,}/g," ").trim()),u[e]=t.options.valueProcessors?a(t.options.valueProcessors,u[e],d):u[e],1===Object.keys(u).length&&e in u&&!t.EXPLICIT_CHARKEY&&(u=u[e])),o(u)&&(u="function"==typeof t.options.emptyTag?t.options.emptyTag():""!==t.options.emptyTag?t.options.emptyTag:r),null!=t.options.validator&&(h="/"+function(){var t,e,n;for(n=[],t=0,e=s.length;t<e;t++)c=s[t],n.push(c["#name"]);return n}().concat(d).join("/"),function(){var e;try{return u=t.options.validator(h,g&&g[d],u)}catch(n){return e=n,t.emit("error",e)}}()),t.options.explicitChildren&&!t.options.mergeAttrs&&"object"==typeof u)if(t.options.preserveChildrenOrder){if(g){for(l in g[t.options.childkey]=g[t.options.childkey]||[],p={},u)m.call(u,l)&&i(p,l,u[l]);g[t.options.childkey].push(p),delete u["#name"],1===Object.keys(u).length&&e in u&&!t.EXPLICIT_CHARKEY&&(u=u[e])}}else c={},t.options.attrkey in u&&(c[t.options.attrkey]=u[t.options.attrkey],delete u[t.options.attrkey]),!t.options.charsAsChildren&&t.options.charkey in u&&(c[t.options.charkey]=u[t.options.charkey],delete u[t.options.charkey]),Object.getOwnPropertyNames(u).length>0&&(c[t.options.childkey]=u),u=c;return s.length>0?t.assignOrPush(g,d,u):(t.options.explicitRoot&&(f=u,i(u={},d,f)),t.resultObject=u,t.saxParser.ended=!0,t.emit("end",t.resultObject))}}(this),n=function(t){return function(n){var i,r;if(r=s[s.length-1])return r[e]+=n,t.options.explicitChildren&&t.options.preserveChildrenOrder&&t.options.charsAsChildren&&(t.options.includeWhiteChars||""!==n.replace(/\\n/g,"").trim())&&(r[t.options.childkey]=r[t.options.childkey]||[],(i={"#name":"__text__"})[e]=n,t.options.normalize&&(i[e]=i[e].replace(/\s{2,}/g," ").trim()),r[t.options.childkey].push(i)),r}}(this),this.saxParser.ontext=n,this.saxParser.oncdata=function(t){var e;if(e=n(t))return e.cdata=!0}},r.prototype.parseString=function(e,n){var s;null!=n&&"function"==typeof n&&(this.on("end",(function(t){return this.reset(),n(null,t)})),this.on("error",(function(t){return this.reset(),n(t)})));try{return""===(e=e.toString()).trim()?(this.emit("end",null),!0):(e=t.stripBOM(e),this.options.async?(this.remaining=e,d(this.processAsync),this.saxParser):this.saxParser.write(e).close())}catch(t){if(s=t,!this.saxParser.errThrown&&!this.saxParser.ended)return this.emit("error",s),this.saxParser.errThrown=!0;if(this.saxParser.ended)throw s}},r.prototype.parseStringPromise=function(t){return new Promise((e=this,function(n,s){return e.parseString(t,(function(t,e){return t?s(t):n(e)}))}));var e},r}(r),e.parseString=function(t,n,s){var i,r;return null!=s?("function"==typeof s&&(i=s),"object"==typeof n&&(r=n)):("function"==typeof n&&(i=n),r={}),new e.Parser(r).parseString(t,i)},e.parseStringPromise=function(t,n){var s;return"object"==typeof n&&(s=n),new e.Parser(s).parseStringPromise(t)}}).call(this)},92114:function(t,e){(function(){"use strict";var t;t=new RegExp(/(?!xmlns)^.*:/),e.normalize=function(t){return t.toLowerCase()},e.firstCharLowerCase=function(t){return t.charAt(0).toLowerCase()+t.slice(1)},e.stripPrefix=function(e){return e.replace(t,"")},e.parseNumbers=function(t){return isNaN(t)||(t=t%1==0?parseInt(t,10):parseFloat(t)),t},e.parseBooleans=function(t){return/^(?:true|false)$/i.test(t)&&(t="true"===t.toLowerCase()),t}}).call(this)},38805:function(t,e,n){(function(){"use strict";var t,s,i,r,o={}.hasOwnProperty;s=n(66465),t=n(56712),i=n(11912),r=n(92114),e.defaults=s.defaults,e.processors=r,e.ValidationError=function(t){function e(t){this.message=t}return function(t,e){for(var n in e)o.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(e,Error),e}(),e.Builder=t.Builder,e.Parser=i.Parser,e.parseString=i.parseString,e.parseStringPromise=i.parseStringPromise}).call(this)},34923:function(t){(function(){t.exports={Disconnected:1,Preceding:2,Following:4,Contains:8,ContainedBy:16,ImplementationSpecific:32}}).call(this)},71737:function(t){(function(){t.exports={Element:1,Attribute:2,Text:3,CData:4,EntityReference:5,EntityDeclaration:6,ProcessingInstruction:7,Comment:8,Document:9,DocType:10,DocumentFragment:11,NotationDeclaration:12,Declaration:201,Raw:202,AttributeDeclaration:203,ElementDeclaration:204,Dummy:205}}).call(this)},49241:function(t){(function(){var e,n,s,i,r,o,a,l=[].slice,c={}.hasOwnProperty;e=function(){var t,e,n,s,i,o;if(o=arguments[0],i=2<=arguments.length?l.call(arguments,1):[],r(Object.assign))Object.assign.apply(null,arguments);else for(t=0,n=i.length;t<n;t++)if(null!=(s=i[t]))for(e in s)c.call(s,e)&&(o[e]=s[e]);return o},r=function(t){return!!t&&"[object Function]"===Object.prototype.toString.call(t)},o=function(t){var e;return!!t&&("function"==(e=typeof t)||"object"===e)},s=function(t){return r(Array.isArray)?Array.isArray(t):"[object Array]"===Object.prototype.toString.call(t)},i=function(t){var e;if(s(t))return!t.length;for(e in t)if(c.call(t,e))return!1;return!0},a=function(t){var e,n;return o(t)&&(n=Object.getPrototypeOf(t))&&(e=n.constructor)&&"function"==typeof e&&e instanceof e&&Function.prototype.toString.call(e)===Function.prototype.toString.call(Object)},n=function(t){return r(t.valueOf)?t.valueOf():t},t.exports.assign=e,t.exports.isFunction=r,t.exports.isObject=o,t.exports.isArray=s,t.exports.isEmpty=i,t.exports.isPlainObject=a,t.exports.getValue=n}).call(this)},88753:function(t){(function(){t.exports={None:0,OpenTag:1,InsideTag:2,CloseTag:3}}).call(this)},54238:function(t,e,n){(function(){var e;e=n(71737),n(10468),t.exports=function(){function t(t,n,s){if(this.parent=t,this.parent&&(this.options=this.parent.options,this.stringify=this.parent.stringify),null==n)throw new Error("Missing attribute name. "+this.debugInfo(n));this.name=this.stringify.name(n),this.value=this.stringify.attValue(s),this.type=e.Attribute,this.isId=!1,this.schemaTypeInfo=null}return Object.defineProperty(t.prototype,"nodeType",{get:function(){return this.type}}),Object.defineProperty(t.prototype,"ownerElement",{get:function(){return this.parent}}),Object.defineProperty(t.prototype,"textContent",{get:function(){return this.value},set:function(t){return this.value=t||""}}),Object.defineProperty(t.prototype,"namespaceURI",{get:function(){return""}}),Object.defineProperty(t.prototype,"prefix",{get:function(){return""}}),Object.defineProperty(t.prototype,"localName",{get:function(){return this.name}}),Object.defineProperty(t.prototype,"specified",{get:function(){return!0}}),t.prototype.clone=function(){return Object.create(this)},t.prototype.toString=function(t){return this.options.writer.attribute(this,this.options.writer.filterOptions(t))},t.prototype.debugInfo=function(t){return null==(t=t||this.name)?"parent: <"+this.parent.name+">":"attribute: {"+t+"}, parent: <"+this.parent.name+">"},t.prototype.isEqualNode=function(t){return t.namespaceURI===this.namespaceURI&&t.prefix===this.prefix&&t.localName===this.localName&&t.value===this.value},t}()}).call(this)},92691:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;e=n(71737),s=n(17457),t.exports=function(t){function n(t,s){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing CDATA text. "+this.debugInfo());this.name="#cdata-section",this.type=e.CData,this.value=this.stringify.cdata(s)}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.clone=function(){return Object.create(this)},n.prototype.toString=function(t){return this.options.writer.cdata(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},17457:function(t,e,n){(function(){var e,s={}.hasOwnProperty;e=n(10468),t.exports=function(t){function e(t){e.__super__.constructor.call(this,t),this.value=""}return function(t,e){for(var n in e)s.call(e,n)&&(t[n]=e[n]);function i(){this.constructor=t}i.prototype=e.prototype,t.prototype=new i,t.__super__=e.prototype}(e,t),Object.defineProperty(e.prototype,"data",{get:function(){return this.value},set:function(t){return this.value=t||""}}),Object.defineProperty(e.prototype,"length",{get:function(){return this.value.length}}),Object.defineProperty(e.prototype,"textContent",{get:function(){return this.value},set:function(t){return this.value=t||""}}),e.prototype.clone=function(){return Object.create(this)},e.prototype.substringData=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.appendData=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.insertData=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.deleteData=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.replaceData=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},e.prototype.isEqualNode=function(t){return!!e.__super__.isEqualNode.apply(this,arguments).isEqualNode(t)&&t.data===this.data},e}(e)}).call(this)},32679:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;e=n(71737),s=n(17457),t.exports=function(t){function n(t,s){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing comment text. "+this.debugInfo());this.name="#comment",this.type=e.Comment,this.value=this.stringify.comment(s)}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.clone=function(){return Object.create(this)},n.prototype.toString=function(t){return this.options.writer.comment(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},33074:function(t,e,n){(function(){var e,s;e=n(55660),s=n(92527),t.exports=function(){function t(){this.defaultParams={"canonical-form":!1,"cdata-sections":!1,comments:!1,"datatype-normalization":!1,"element-content-whitespace":!0,entities:!0,"error-handler":new e,infoset:!0,"validate-if-schema":!1,namespaces:!0,"namespace-declarations":!0,"normalize-characters":!1,"schema-location":"","schema-type":"","split-cdata-sections":!0,validate:!1,"well-formed":!0},this.params=Object.create(this.defaultParams)}return Object.defineProperty(t.prototype,"parameterNames",{get:function(){return new s(Object.keys(this.defaultParams))}}),t.prototype.getParameter=function(t){return this.params.hasOwnProperty(t)?this.params[t]:null},t.prototype.canSetParameter=function(t,e){return!0},t.prototype.setParameter=function(t,e){return null!=e?this.params[t]=e:delete this.params[t]},t}()}).call(this)},55660:function(t){(function(){t.exports=function(){function t(){}return t.prototype.handleError=function(t){throw new Error(t)},t}()}).call(this)},67260:function(t){(function(){t.exports=function(){function t(){}return t.prototype.hasFeature=function(t,e){return!0},t.prototype.createDocumentType=function(t,e,n){throw new Error("This DOM method is not implemented.")},t.prototype.createDocument=function(t,e,n){throw new Error("This DOM method is not implemented.")},t.prototype.createHTMLDocument=function(t){throw new Error("This DOM method is not implemented.")},t.prototype.getFeature=function(t,e){throw new Error("This DOM method is not implemented.")},t}()}).call(this)},92527:function(t){(function(){t.exports=function(){function t(t){this.arr=t||[]}return Object.defineProperty(t.prototype,"length",{get:function(){return this.arr.length}}),t.prototype.item=function(t){return this.arr[t]||null},t.prototype.contains=function(t){return-1!==this.arr.indexOf(t)},t}()}).call(this)},34111:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;s=n(10468),e=n(71737),t.exports=function(t){function n(t,s,i,r,o,a){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing DTD element name. "+this.debugInfo());if(null==i)throw new Error("Missing DTD attribute name. "+this.debugInfo(s));if(!r)throw new Error("Missing DTD attribute type. "+this.debugInfo(s));if(!o)throw new Error("Missing DTD attribute default. "+this.debugInfo(s));if(0!==o.indexOf("#")&&(o="#"+o),!o.match(/^(#REQUIRED|#IMPLIED|#FIXED|#DEFAULT)$/))throw new Error("Invalid default value type; expected: #REQUIRED, #IMPLIED, #FIXED or #DEFAULT. "+this.debugInfo(s));if(a&&!o.match(/^(#FIXED|#DEFAULT)$/))throw new Error("Default value only applies to #FIXED or #DEFAULT. "+this.debugInfo(s));this.elementName=this.stringify.name(s),this.type=e.AttributeDeclaration,this.attributeName=this.stringify.name(i),this.attributeType=this.stringify.dtdAttType(r),a&&(this.defaultValue=this.stringify.dtdAttDefault(a)),this.defaultValueType=o}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.toString=function(t){return this.options.writer.dtdAttList(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},67696:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;s=n(10468),e=n(71737),t.exports=function(t){function n(t,s,i){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing DTD element name. "+this.debugInfo());i||(i="(#PCDATA)"),Array.isArray(i)&&(i="("+i.join(",")+")"),this.name=this.stringify.name(s),this.type=e.ElementDeclaration,this.value=this.stringify.dtdElementValue(i)}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.toString=function(t){return this.options.writer.dtdElement(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},5529:function(t,e,n){(function(){var e,s,i,r={}.hasOwnProperty;i=n(49241).isObject,s=n(10468),e=n(71737),t.exports=function(t){function n(t,s,r,o){if(n.__super__.constructor.call(this,t),null==r)throw new Error("Missing DTD entity name. "+this.debugInfo(r));if(null==o)throw new Error("Missing DTD entity value. "+this.debugInfo(r));if(this.pe=!!s,this.name=this.stringify.name(r),this.type=e.EntityDeclaration,i(o)){if(!o.pubID&&!o.sysID)throw new Error("Public and/or system identifiers are required for an external entity. "+this.debugInfo(r));if(o.pubID&&!o.sysID)throw new Error("System identifier is required for a public external entity. "+this.debugInfo(r));if(this.internal=!1,null!=o.pubID&&(this.pubID=this.stringify.dtdPubID(o.pubID)),null!=o.sysID&&(this.sysID=this.stringify.dtdSysID(o.sysID)),null!=o.nData&&(this.nData=this.stringify.dtdNData(o.nData)),this.pe&&this.nData)throw new Error("Notation declaration is not allowed in a parameter entity. "+this.debugInfo(r))}else this.value=this.stringify.dtdEntityValue(o),this.internal=!0}return function(t,e){for(var n in e)r.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),Object.defineProperty(n.prototype,"publicId",{get:function(){return this.pubID}}),Object.defineProperty(n.prototype,"systemId",{get:function(){return this.sysID}}),Object.defineProperty(n.prototype,"notationName",{get:function(){return this.nData||null}}),Object.defineProperty(n.prototype,"inputEncoding",{get:function(){return null}}),Object.defineProperty(n.prototype,"xmlEncoding",{get:function(){return null}}),Object.defineProperty(n.prototype,"xmlVersion",{get:function(){return null}}),n.prototype.toString=function(t){return this.options.writer.dtdEntity(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},28012:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;s=n(10468),e=n(71737),t.exports=function(t){function n(t,s,i){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing DTD notation name. "+this.debugInfo(s));if(!i.pubID&&!i.sysID)throw new Error("Public or system identifiers are required for an external entity. "+this.debugInfo(s));this.name=this.stringify.name(s),this.type=e.NotationDeclaration,null!=i.pubID&&(this.pubID=this.stringify.dtdPubID(i.pubID)),null!=i.sysID&&(this.sysID=this.stringify.dtdSysID(i.sysID))}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),Object.defineProperty(n.prototype,"publicId",{get:function(){return this.pubID}}),Object.defineProperty(n.prototype,"systemId",{get:function(){return this.sysID}}),n.prototype.toString=function(t){return this.options.writer.dtdNotation(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},34130:function(t,e,n){(function(){var e,s,i,r={}.hasOwnProperty;i=n(49241).isObject,s=n(10468),e=n(71737),t.exports=function(t){function n(t,s,r,o){var a;n.__super__.constructor.call(this,t),i(s)&&(s=(a=s).version,r=a.encoding,o=a.standalone),s||(s="1.0"),this.type=e.Declaration,this.version=this.stringify.xmlVersion(s),null!=r&&(this.encoding=this.stringify.xmlEncoding(r)),null!=o&&(this.standalone=this.stringify.xmlStandalone(o))}return function(t,e){for(var n in e)r.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.toString=function(t){return this.options.writer.declaration(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},96376:function(t,e,n){(function(){var e,s,i,r,o,a,l,c,d={}.hasOwnProperty;c=n(49241).isObject,l=n(10468),e=n(71737),s=n(34111),r=n(5529),i=n(67696),o=n(28012),a=n(24797),t.exports=function(t){function n(t,s,i){var r,o,a,l,d,u;if(n.__super__.constructor.call(this,t),this.type=e.DocType,t.children)for(o=0,a=(l=t.children).length;o<a;o++)if((r=l[o]).type===e.Element){this.name=r.name;break}this.documentObject=t,c(s)&&(s=(d=s).pubID,i=d.sysID),null==i&&(i=(u=[s,i])[0],s=u[1]),null!=s&&(this.pubID=this.stringify.dtdPubID(s)),null!=i&&(this.sysID=this.stringify.dtdSysID(i))}return function(t,e){for(var n in e)d.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),Object.defineProperty(n.prototype,"entities",{get:function(){var t,n,s,i,r;for(i={},n=0,s=(r=this.children).length;n<s;n++)(t=r[n]).type!==e.EntityDeclaration||t.pe||(i[t.name]=t);return new a(i)}}),Object.defineProperty(n.prototype,"notations",{get:function(){var t,n,s,i,r;for(i={},n=0,s=(r=this.children).length;n<s;n++)(t=r[n]).type===e.NotationDeclaration&&(i[t.name]=t);return new a(i)}}),Object.defineProperty(n.prototype,"publicId",{get:function(){return this.pubID}}),Object.defineProperty(n.prototype,"systemId",{get:function(){return this.sysID}}),Object.defineProperty(n.prototype,"internalSubset",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),n.prototype.element=function(t,e){var n;return n=new i(this,t,e),this.children.push(n),this},n.prototype.attList=function(t,e,n,i,r){var o;return o=new s(this,t,e,n,i,r),this.children.push(o),this},n.prototype.entity=function(t,e){var n;return n=new r(this,!1,t,e),this.children.push(n),this},n.prototype.pEntity=function(t,e){var n;return n=new r(this,!0,t,e),this.children.push(n),this},n.prototype.notation=function(t,e){var n;return n=new o(this,t,e),this.children.push(n),this},n.prototype.toString=function(t){return this.options.writer.docType(this,this.options.writer.filterOptions(t))},n.prototype.ele=function(t,e){return this.element(t,e)},n.prototype.att=function(t,e,n,s,i){return this.attList(t,e,n,s,i)},n.prototype.ent=function(t,e){return this.entity(t,e)},n.prototype.pent=function(t,e){return this.pEntity(t,e)},n.prototype.not=function(t,e){return this.notation(t,e)},n.prototype.up=function(){return this.root()||this.documentObject},n.prototype.isEqualNode=function(t){return!!n.__super__.isEqualNode.apply(this,arguments).isEqualNode(t)&&t.name===this.name&&t.publicId===this.publicId&&t.systemId===this.systemId},n}(l)}).call(this)},71933:function(t,e,n){(function(){var e,s,i,r,o,a,l,c={}.hasOwnProperty;l=n(49241).isPlainObject,i=n(67260),s=n(33074),r=n(10468),e=n(71737),a=n(43976),o=n(40382),t.exports=function(t){function n(t){n.__super__.constructor.call(this,null),this.name="#document",this.type=e.Document,this.documentURI=null,this.domConfig=new s,t||(t={}),t.writer||(t.writer=new o),this.options=t,this.stringify=new a(t)}return function(t,e){for(var n in e)c.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),Object.defineProperty(n.prototype,"implementation",{value:new i}),Object.defineProperty(n.prototype,"doctype",{get:function(){var t,n,s,i;for(n=0,s=(i=this.children).length;n<s;n++)if((t=i[n]).type===e.DocType)return t;return null}}),Object.defineProperty(n.prototype,"documentElement",{get:function(){return this.rootObject||null}}),Object.defineProperty(n.prototype,"inputEncoding",{get:function(){return null}}),Object.defineProperty(n.prototype,"strictErrorChecking",{get:function(){return!1}}),Object.defineProperty(n.prototype,"xmlEncoding",{get:function(){return 0!==this.children.length&&this.children[0].type===e.Declaration?this.children[0].encoding:null}}),Object.defineProperty(n.prototype,"xmlStandalone",{get:function(){return 0!==this.children.length&&this.children[0].type===e.Declaration&&"yes"===this.children[0].standalone}}),Object.defineProperty(n.prototype,"xmlVersion",{get:function(){return 0!==this.children.length&&this.children[0].type===e.Declaration?this.children[0].version:"1.0"}}),Object.defineProperty(n.prototype,"URL",{get:function(){return this.documentURI}}),Object.defineProperty(n.prototype,"origin",{get:function(){return null}}),Object.defineProperty(n.prototype,"compatMode",{get:function(){return null}}),Object.defineProperty(n.prototype,"characterSet",{get:function(){return null}}),Object.defineProperty(n.prototype,"contentType",{get:function(){return null}}),n.prototype.end=function(t){var e;return e={},t?l(t)&&(e=t,t=this.options.writer):t=this.options.writer,t.document(this,t.filterOptions(e))},n.prototype.toString=function(t){return this.options.writer.document(this,this.options.writer.filterOptions(t))},n.prototype.createElement=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createDocumentFragment=function(){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createTextNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createComment=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createCDATASection=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createProcessingInstruction=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createAttribute=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createEntityReference=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByTagName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.importNode=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createElementNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createAttributeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByTagNameNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementById=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.adoptNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.normalizeDocument=function(){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.renameNode=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByClassName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createEvent=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createRange=function(){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createNodeIterator=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.createTreeWalker=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},n}(r)}).call(this)},80400:function(t,e,n){(function(){var e,s,i,r,o,a,l,c,d,u,m,p,f,g,h,v,A,w,y,b,C,x,_,T={}.hasOwnProperty;_=n(49241),C=_.isObject,b=_.isFunction,x=_.isPlainObject,y=_.getValue,e=n(71737),p=n(71933),f=n(33906),r=n(92691),o=n(32679),h=n(1268),w=n(82535),g=n(85915),u=n(34130),m=n(96376),a=n(34111),c=n(5529),l=n(67696),d=n(28012),i=n(54238),A=n(43976),v=n(40382),s=n(88753),t.exports=function(){function t(t,n,s){var i;this.name="?xml",this.type=e.Document,t||(t={}),i={},t.writer?x(t.writer)&&(i=t.writer,t.writer=new v):t.writer=new v,this.options=t,this.writer=t.writer,this.writerOptions=this.writer.filterOptions(i),this.stringify=new A(t),this.onDataCallback=n||function(){},this.onEndCallback=s||function(){},this.currentNode=null,this.currentLevel=-1,this.openTags={},this.documentStarted=!1,this.documentCompleted=!1,this.root=null}return t.prototype.createChildNode=function(t){var n,s,i,r,o,a,l,c;switch(t.type){case e.CData:this.cdata(t.value);break;case e.Comment:this.comment(t.value);break;case e.Element:for(s in i={},l=t.attribs)T.call(l,s)&&(n=l[s],i[s]=n.value);this.node(t.name,i);break;case e.Dummy:this.dummy();break;case e.Raw:this.raw(t.value);break;case e.Text:this.text(t.value);break;case e.ProcessingInstruction:this.instruction(t.target,t.value);break;default:throw new Error("This XML node type is not supported in a JS object: "+t.constructor.name)}for(o=0,a=(c=t.children).length;o<a;o++)r=c[o],this.createChildNode(r),r.type===e.Element&&this.up();return this},t.prototype.dummy=function(){return this},t.prototype.node=function(t,e,n){var s;if(null==t)throw new Error("Missing node name.");if(this.root&&-1===this.currentLevel)throw new Error("Document can only have one root node. "+this.debugInfo(t));return this.openCurrent(),t=y(t),null==e&&(e={}),e=y(e),C(e)||(n=(s=[e,n])[0],e=s[1]),this.currentNode=new f(this,t,e),this.currentNode.children=!1,this.currentLevel++,this.openTags[this.currentLevel]=this.currentNode,null!=n&&this.text(n),this},t.prototype.element=function(t,n,s){var i,r,o,a,l,c;if(this.currentNode&&this.currentNode.type===e.DocType)this.dtdElement.apply(this,arguments);else if(Array.isArray(t)||C(t)||b(t))for(a=this.options.noValidation,this.options.noValidation=!0,(c=new p(this.options).element("TEMP_ROOT")).element(t),this.options.noValidation=a,r=0,o=(l=c.children).length;r<o;r++)i=l[r],this.createChildNode(i),i.type===e.Element&&this.up();else this.node(t,n,s);return this},t.prototype.attribute=function(t,e){var n,s;if(!this.currentNode||this.currentNode.children)throw new Error("att() can only be used immediately after an ele() call in callback mode. "+this.debugInfo(t));if(null!=t&&(t=y(t)),C(t))for(n in t)T.call(t,n)&&(s=t[n],this.attribute(n,s));else b(e)&&(e=e.apply()),this.options.keepNullAttributes&&null==e?this.currentNode.attribs[t]=new i(this,t,""):null!=e&&(this.currentNode.attribs[t]=new i(this,t,e));return this},t.prototype.text=function(t){var e;return this.openCurrent(),e=new w(this,t),this.onData(this.writer.text(e,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.cdata=function(t){var e;return this.openCurrent(),e=new r(this,t),this.onData(this.writer.cdata(e,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.comment=function(t){var e;return this.openCurrent(),e=new o(this,t),this.onData(this.writer.comment(e,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.raw=function(t){var e;return this.openCurrent(),e=new h(this,t),this.onData(this.writer.raw(e,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.instruction=function(t,e){var n,s,i,r,o;if(this.openCurrent(),null!=t&&(t=y(t)),null!=e&&(e=y(e)),Array.isArray(t))for(n=0,r=t.length;n<r;n++)s=t[n],this.instruction(s);else if(C(t))for(s in t)T.call(t,s)&&(i=t[s],this.instruction(s,i));else b(e)&&(e=e.apply()),o=new g(this,t,e),this.onData(this.writer.processingInstruction(o,this.writerOptions,this.currentLevel+1),this.currentLevel+1);return this},t.prototype.declaration=function(t,e,n){var s;if(this.openCurrent(),this.documentStarted)throw new Error("declaration() must be the first node.");return s=new u(this,t,e,n),this.onData(this.writer.declaration(s,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.doctype=function(t,e,n){if(this.openCurrent(),null==t)throw new Error("Missing root node name.");if(this.root)throw new Error("dtd() must come before the root node.");return this.currentNode=new m(this,e,n),this.currentNode.rootNodeName=t,this.currentNode.children=!1,this.currentLevel++,this.openTags[this.currentLevel]=this.currentNode,this},t.prototype.dtdElement=function(t,e){var n;return this.openCurrent(),n=new l(this,t,e),this.onData(this.writer.dtdElement(n,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.attList=function(t,e,n,s,i){var r;return this.openCurrent(),r=new a(this,t,e,n,s,i),this.onData(this.writer.dtdAttList(r,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.entity=function(t,e){var n;return this.openCurrent(),n=new c(this,!1,t,e),this.onData(this.writer.dtdEntity(n,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.pEntity=function(t,e){var n;return this.openCurrent(),n=new c(this,!0,t,e),this.onData(this.writer.dtdEntity(n,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.notation=function(t,e){var n;return this.openCurrent(),n=new d(this,t,e),this.onData(this.writer.dtdNotation(n,this.writerOptions,this.currentLevel+1),this.currentLevel+1),this},t.prototype.up=function(){if(this.currentLevel<0)throw new Error("The document node has no parent.");return this.currentNode?(this.currentNode.children?this.closeNode(this.currentNode):this.openNode(this.currentNode),this.currentNode=null):this.closeNode(this.openTags[this.currentLevel]),delete this.openTags[this.currentLevel],this.currentLevel--,this},t.prototype.end=function(){for(;this.currentLevel>=0;)this.up();return this.onEnd()},t.prototype.openCurrent=function(){if(this.currentNode)return this.currentNode.children=!0,this.openNode(this.currentNode)},t.prototype.openNode=function(t){var n,i,r,o;if(!t.isOpen){if(this.root||0!==this.currentLevel||t.type!==e.Element||(this.root=t),i="",t.type===e.Element){for(r in this.writerOptions.state=s.OpenTag,i=this.writer.indent(t,this.writerOptions,this.currentLevel)+"<"+t.name,o=t.attribs)T.call(o,r)&&(n=o[r],i+=this.writer.attribute(n,this.writerOptions,this.currentLevel));i+=(t.children?">":"/>")+this.writer.endline(t,this.writerOptions,this.currentLevel),this.writerOptions.state=s.InsideTag}else this.writerOptions.state=s.OpenTag,i=this.writer.indent(t,this.writerOptions,this.currentLevel)+"<!DOCTYPE "+t.rootNodeName,t.pubID&&t.sysID?i+=' PUBLIC "'+t.pubID+'" "'+t.sysID+'"':t.sysID&&(i+=' SYSTEM "'+t.sysID+'"'),t.children?(i+=" [",this.writerOptions.state=s.InsideTag):(this.writerOptions.state=s.CloseTag,i+=">"),i+=this.writer.endline(t,this.writerOptions,this.currentLevel);return this.onData(i,this.currentLevel),t.isOpen=!0}},t.prototype.closeNode=function(t){var n;if(!t.isClosed)return"",this.writerOptions.state=s.CloseTag,n=t.type===e.Element?this.writer.indent(t,this.writerOptions,this.currentLevel)+"</"+t.name+">"+this.writer.endline(t,this.writerOptions,this.currentLevel):this.writer.indent(t,this.writerOptions,this.currentLevel)+"]>"+this.writer.endline(t,this.writerOptions,this.currentLevel),this.writerOptions.state=s.None,this.onData(n,this.currentLevel),t.isClosed=!0},t.prototype.onData=function(t,e){return this.documentStarted=!0,this.onDataCallback(t,e+1)},t.prototype.onEnd=function(){return this.documentCompleted=!0,this.onEndCallback()},t.prototype.debugInfo=function(t){return null==t?"":"node: <"+t+">"},t.prototype.ele=function(){return this.element.apply(this,arguments)},t.prototype.nod=function(t,e,n){return this.node(t,e,n)},t.prototype.txt=function(t){return this.text(t)},t.prototype.dat=function(t){return this.cdata(t)},t.prototype.com=function(t){return this.comment(t)},t.prototype.ins=function(t,e){return this.instruction(t,e)},t.prototype.dec=function(t,e,n){return this.declaration(t,e,n)},t.prototype.dtd=function(t,e,n){return this.doctype(t,e,n)},t.prototype.e=function(t,e,n){return this.element(t,e,n)},t.prototype.n=function(t,e,n){return this.node(t,e,n)},t.prototype.t=function(t){return this.text(t)},t.prototype.d=function(t){return this.cdata(t)},t.prototype.c=function(t){return this.comment(t)},t.prototype.r=function(t){return this.raw(t)},t.prototype.i=function(t,e){return this.instruction(t,e)},t.prototype.att=function(){return this.currentNode&&this.currentNode.type===e.DocType?this.attList.apply(this,arguments):this.attribute.apply(this,arguments)},t.prototype.a=function(){return this.currentNode&&this.currentNode.type===e.DocType?this.attList.apply(this,arguments):this.attribute.apply(this,arguments)},t.prototype.ent=function(t,e){return this.entity(t,e)},t.prototype.pent=function(t,e){return this.pEntity(t,e)},t.prototype.not=function(t,e){return this.notation(t,e)},t}()}).call(this)},21218:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;s=n(10468),e=n(71737),t.exports=function(t){function n(t){n.__super__.constructor.call(this,t),this.type=e.Dummy}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.clone=function(){return Object.create(this)},n.prototype.toString=function(t){return""},n}(s)}).call(this)},33906:function(t,e,n){(function(){var e,s,i,r,o,a,l,c,d={}.hasOwnProperty;c=n(49241),l=c.isObject,a=c.isFunction,o=c.getValue,r=n(10468),e=n(71737),s=n(54238),i=n(24797),t.exports=function(t){function n(t,s,i){var r,o,a,l;if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing element name. "+this.debugInfo());if(this.name=this.stringify.name(s),this.type=e.Element,this.attribs={},this.schemaTypeInfo=null,null!=i&&this.attribute(i),t.type===e.Document&&(this.isRoot=!0,this.documentObject=t,t.rootObject=this,t.children))for(o=0,a=(l=t.children).length;o<a;o++)if((r=l[o]).type===e.DocType){r.name=this.name;break}}return function(t,e){for(var n in e)d.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),Object.defineProperty(n.prototype,"tagName",{get:function(){return this.name}}),Object.defineProperty(n.prototype,"namespaceURI",{get:function(){return""}}),Object.defineProperty(n.prototype,"prefix",{get:function(){return""}}),Object.defineProperty(n.prototype,"localName",{get:function(){return this.name}}),Object.defineProperty(n.prototype,"id",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),Object.defineProperty(n.prototype,"className",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),Object.defineProperty(n.prototype,"classList",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),Object.defineProperty(n.prototype,"attributes",{get:function(){return this.attributeMap&&this.attributeMap.nodes||(this.attributeMap=new i(this.attribs)),this.attributeMap}}),n.prototype.clone=function(){var t,e,n,s;for(e in(n=Object.create(this)).isRoot&&(n.documentObject=null),n.attribs={},s=this.attribs)d.call(s,e)&&(t=s[e],n.attribs[e]=t.clone());return n.children=[],this.children.forEach((function(t){var e;return(e=t.clone()).parent=n,n.children.push(e)})),n},n.prototype.attribute=function(t,e){var n,i;if(null!=t&&(t=o(t)),l(t))for(n in t)d.call(t,n)&&(i=t[n],this.attribute(n,i));else a(e)&&(e=e.apply()),this.options.keepNullAttributes&&null==e?this.attribs[t]=new s(this,t,""):null!=e&&(this.attribs[t]=new s(this,t,e));return this},n.prototype.removeAttribute=function(t){var e,n,s;if(null==t)throw new Error("Missing attribute name. "+this.debugInfo());if(t=o(t),Array.isArray(t))for(n=0,s=t.length;n<s;n++)e=t[n],delete this.attribs[e];else delete this.attribs[t];return this},n.prototype.toString=function(t){return this.options.writer.element(this,this.options.writer.filterOptions(t))},n.prototype.att=function(t,e){return this.attribute(t,e)},n.prototype.a=function(t,e){return this.attribute(t,e)},n.prototype.getAttribute=function(t){return this.attribs.hasOwnProperty(t)?this.attribs[t].value:null},n.prototype.setAttribute=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getAttributeNode=function(t){return this.attribs.hasOwnProperty(t)?this.attribs[t]:null},n.prototype.setAttributeNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.removeAttributeNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByTagName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getAttributeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.setAttributeNS=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.removeAttributeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getAttributeNodeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.setAttributeNodeNS=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByTagNameNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.hasAttribute=function(t){return this.attribs.hasOwnProperty(t)},n.prototype.hasAttributeNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.setIdAttribute=function(t,e){return this.attribs.hasOwnProperty(t)?this.attribs[t].isId:e},n.prototype.setIdAttributeNS=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.setIdAttributeNode=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByTagName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByTagNameNS=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.getElementsByClassName=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.isEqualNode=function(t){var e,s,i;if(!n.__super__.isEqualNode.apply(this,arguments).isEqualNode(t))return!1;if(t.namespaceURI!==this.namespaceURI)return!1;if(t.prefix!==this.prefix)return!1;if(t.localName!==this.localName)return!1;if(t.attribs.length!==this.attribs.length)return!1;for(e=s=0,i=this.attribs.length-1;0<=i?s<=i:s>=i;e=0<=i?++s:--s)if(!this.attribs[e].isEqualNode(t.attribs[e]))return!1;return!0},n}(r)}).call(this)},24797:function(t){(function(){t.exports=function(){function t(t){this.nodes=t}return Object.defineProperty(t.prototype,"length",{get:function(){return Object.keys(this.nodes).length||0}}),t.prototype.clone=function(){return this.nodes=null},t.prototype.getNamedItem=function(t){return this.nodes[t]},t.prototype.setNamedItem=function(t){var e;return e=this.nodes[t.nodeName],this.nodes[t.nodeName]=t,e||null},t.prototype.removeNamedItem=function(t){var e;return e=this.nodes[t],delete this.nodes[t],e||null},t.prototype.item=function(t){return this.nodes[Object.keys(this.nodes)[t]]||null},t.prototype.getNamedItemNS=function(t,e){throw new Error("This DOM method is not implemented.")},t.prototype.setNamedItemNS=function(t){throw new Error("This DOM method is not implemented.")},t.prototype.removeNamedItemNS=function(t,e){throw new Error("This DOM method is not implemented.")},t}()}).call(this)},10468:function(t,e,n){(function(){var e,s,i,r,o,a,l,c,d,u,m,p,f,g,h,v,A,w={}.hasOwnProperty;A=n(49241),v=A.isObject,h=A.isFunction,g=A.isEmpty,f=A.getValue,c=null,i=null,r=null,o=null,a=null,m=null,p=null,u=null,l=null,s=null,d=null,e=null,t.exports=function(){function t(t){this.parent=t,this.parent&&(this.options=this.parent.options,this.stringify=this.parent.stringify),this.value=null,this.children=[],this.baseURI=null,c||(c=n(33906),i=n(92691),r=n(32679),o=n(34130),a=n(96376),m=n(1268),p=n(82535),u=n(85915),l=n(21218),s=n(71737),d=n(16684),n(24797),e=n(34923))}return Object.defineProperty(t.prototype,"nodeName",{get:function(){return this.name}}),Object.defineProperty(t.prototype,"nodeType",{get:function(){return this.type}}),Object.defineProperty(t.prototype,"nodeValue",{get:function(){return this.value}}),Object.defineProperty(t.prototype,"parentNode",{get:function(){return this.parent}}),Object.defineProperty(t.prototype,"childNodes",{get:function(){return this.childNodeList&&this.childNodeList.nodes||(this.childNodeList=new d(this.children)),this.childNodeList}}),Object.defineProperty(t.prototype,"firstChild",{get:function(){return this.children[0]||null}}),Object.defineProperty(t.prototype,"lastChild",{get:function(){return this.children[this.children.length-1]||null}}),Object.defineProperty(t.prototype,"previousSibling",{get:function(){var t;return t=this.parent.children.indexOf(this),this.parent.children[t-1]||null}}),Object.defineProperty(t.prototype,"nextSibling",{get:function(){var t;return t=this.parent.children.indexOf(this),this.parent.children[t+1]||null}}),Object.defineProperty(t.prototype,"ownerDocument",{get:function(){return this.document()||null}}),Object.defineProperty(t.prototype,"textContent",{get:function(){var t,e,n,i,r;if(this.nodeType===s.Element||this.nodeType===s.DocumentFragment){for(r="",e=0,n=(i=this.children).length;e<n;e++)(t=i[e]).textContent&&(r+=t.textContent);return r}return null},set:function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),t.prototype.setParent=function(t){var e,n,s,i,r;for(this.parent=t,t&&(this.options=t.options,this.stringify=t.stringify),r=[],n=0,s=(i=this.children).length;n<s;n++)e=i[n],r.push(e.setParent(this));return r},t.prototype.element=function(t,e,n){var s,i,r,o,a,l,c,d,u,m,p;if(l=null,null===e&&null==n&&(e=(u=[{},null])[0],n=u[1]),null==e&&(e={}),e=f(e),v(e)||(n=(m=[e,n])[0],e=m[1]),null!=t&&(t=f(t)),Array.isArray(t))for(r=0,c=t.length;r<c;r++)i=t[r],l=this.element(i);else if(h(t))l=this.element(t.apply());else if(v(t)){for(a in t)if(w.call(t,a))if(p=t[a],h(p)&&(p=p.apply()),!this.options.ignoreDecorators&&this.stringify.convertAttKey&&0===a.indexOf(this.stringify.convertAttKey))l=this.attribute(a.substr(this.stringify.convertAttKey.length),p);else if(!this.options.separateArrayItems&&Array.isArray(p)&&g(p))l=this.dummy();else if(v(p)&&g(p))l=this.element(a);else if(this.options.keepNullNodes||null!=p)if(!this.options.separateArrayItems&&Array.isArray(p))for(o=0,d=p.length;o<d;o++)i=p[o],(s={})[a]=i,l=this.element(s);else v(p)?!this.options.ignoreDecorators&&this.stringify.convertTextKey&&0===a.indexOf(this.stringify.convertTextKey)?l=this.element(p):(l=this.element(a)).element(p):l=this.element(a,p);else l=this.dummy()}else l=this.options.keepNullNodes||null!==n?!this.options.ignoreDecorators&&this.stringify.convertTextKey&&0===t.indexOf(this.stringify.convertTextKey)?this.text(n):!this.options.ignoreDecorators&&this.stringify.convertCDataKey&&0===t.indexOf(this.stringify.convertCDataKey)?this.cdata(n):!this.options.ignoreDecorators&&this.stringify.convertCommentKey&&0===t.indexOf(this.stringify.convertCommentKey)?this.comment(n):!this.options.ignoreDecorators&&this.stringify.convertRawKey&&0===t.indexOf(this.stringify.convertRawKey)?this.raw(n):!this.options.ignoreDecorators&&this.stringify.convertPIKey&&0===t.indexOf(this.stringify.convertPIKey)?this.instruction(t.substr(this.stringify.convertPIKey.length),n):this.node(t,e,n):this.dummy();if(null==l)throw new Error("Could not create any elements with: "+t+". "+this.debugInfo());return l},t.prototype.insertBefore=function(t,e,n){var s,i,r,o,a;if(null!=t?t.type:void 0)return o=e,(r=t).setParent(this),o?(i=children.indexOf(o),a=children.splice(i),children.push(r),Array.prototype.push.apply(children,a)):children.push(r),r;if(this.isRoot)throw new Error("Cannot insert elements at root level. "+this.debugInfo(t));return i=this.parent.children.indexOf(this),a=this.parent.children.splice(i),s=this.parent.element(t,e,n),Array.prototype.push.apply(this.parent.children,a),s},t.prototype.insertAfter=function(t,e,n){var s,i,r;if(this.isRoot)throw new Error("Cannot insert elements at root level. "+this.debugInfo(t));return i=this.parent.children.indexOf(this),r=this.parent.children.splice(i+1),s=this.parent.element(t,e,n),Array.prototype.push.apply(this.parent.children,r),s},t.prototype.remove=function(){var t;if(this.isRoot)throw new Error("Cannot remove the root element. "+this.debugInfo());return t=this.parent.children.indexOf(this),[].splice.apply(this.parent.children,[t,t-t+1].concat([])),this.parent},t.prototype.node=function(t,e,n){var s,i;return null!=t&&(t=f(t)),e||(e={}),e=f(e),v(e)||(n=(i=[e,n])[0],e=i[1]),s=new c(this,t,e),null!=n&&s.text(n),this.children.push(s),s},t.prototype.text=function(t){var e;return v(t)&&this.element(t),e=new p(this,t),this.children.push(e),this},t.prototype.cdata=function(t){var e;return e=new i(this,t),this.children.push(e),this},t.prototype.comment=function(t){var e;return e=new r(this,t),this.children.push(e),this},t.prototype.commentBefore=function(t){var e,n;return e=this.parent.children.indexOf(this),n=this.parent.children.splice(e),this.parent.comment(t),Array.prototype.push.apply(this.parent.children,n),this},t.prototype.commentAfter=function(t){var e,n;return e=this.parent.children.indexOf(this),n=this.parent.children.splice(e+1),this.parent.comment(t),Array.prototype.push.apply(this.parent.children,n),this},t.prototype.raw=function(t){var e;return e=new m(this,t),this.children.push(e),this},t.prototype.dummy=function(){return new l(this)},t.prototype.instruction=function(t,e){var n,s,i,r,o;if(null!=t&&(t=f(t)),null!=e&&(e=f(e)),Array.isArray(t))for(r=0,o=t.length;r<o;r++)n=t[r],this.instruction(n);else if(v(t))for(n in t)w.call(t,n)&&(s=t[n],this.instruction(n,s));else h(e)&&(e=e.apply()),i=new u(this,t,e),this.children.push(i);return this},t.prototype.instructionBefore=function(t,e){var n,s;return n=this.parent.children.indexOf(this),s=this.parent.children.splice(n),this.parent.instruction(t,e),Array.prototype.push.apply(this.parent.children,s),this},t.prototype.instructionAfter=function(t,e){var n,s;return n=this.parent.children.indexOf(this),s=this.parent.children.splice(n+1),this.parent.instruction(t,e),Array.prototype.push.apply(this.parent.children,s),this},t.prototype.declaration=function(t,e,n){var i,r;return i=this.document(),r=new o(i,t,e,n),0===i.children.length?i.children.unshift(r):i.children[0].type===s.Declaration?i.children[0]=r:i.children.unshift(r),i.root()||i},t.prototype.dtd=function(t,e){var n,i,r,o,l,c,d,u,m;for(n=this.document(),i=new a(n,t,e),r=o=0,c=(u=n.children).length;o<c;r=++o)if(u[r].type===s.DocType)return n.children[r]=i,i;for(r=l=0,d=(m=n.children).length;l<d;r=++l)if(m[r].isRoot)return n.children.splice(r,0,i),i;return n.children.push(i),i},t.prototype.up=function(){if(this.isRoot)throw new Error("The root node has no parent. Use doc() if you need to get the document object.");return this.parent},t.prototype.root=function(){var t;for(t=this;t;){if(t.type===s.Document)return t.rootObject;if(t.isRoot)return t;t=t.parent}},t.prototype.document=function(){var t;for(t=this;t;){if(t.type===s.Document)return t;t=t.parent}},t.prototype.end=function(t){return this.document().end(t)},t.prototype.prev=function(){var t;if((t=this.parent.children.indexOf(this))<1)throw new Error("Already at the first node. "+this.debugInfo());return this.parent.children[t-1]},t.prototype.next=function(){var t;if(-1===(t=this.parent.children.indexOf(this))||t===this.parent.children.length-1)throw new Error("Already at the last node. "+this.debugInfo());return this.parent.children[t+1]},t.prototype.importDocument=function(t){var e;return(e=t.root().clone()).parent=this,e.isRoot=!1,this.children.push(e),this},t.prototype.debugInfo=function(t){var e,n;return null!=(t=t||this.name)||(null!=(e=this.parent)?e.name:void 0)?null==t?"parent: <"+this.parent.name+">":(null!=(n=this.parent)?n.name:void 0)?"node: <"+t+">, parent: <"+this.parent.name+">":"node: <"+t+">":""},t.prototype.ele=function(t,e,n){return this.element(t,e,n)},t.prototype.nod=function(t,e,n){return this.node(t,e,n)},t.prototype.txt=function(t){return this.text(t)},t.prototype.dat=function(t){return this.cdata(t)},t.prototype.com=function(t){return this.comment(t)},t.prototype.ins=function(t,e){return this.instruction(t,e)},t.prototype.doc=function(){return this.document()},t.prototype.dec=function(t,e,n){return this.declaration(t,e,n)},t.prototype.e=function(t,e,n){return this.element(t,e,n)},t.prototype.n=function(t,e,n){return this.node(t,e,n)},t.prototype.t=function(t){return this.text(t)},t.prototype.d=function(t){return this.cdata(t)},t.prototype.c=function(t){return this.comment(t)},t.prototype.r=function(t){return this.raw(t)},t.prototype.i=function(t,e){return this.instruction(t,e)},t.prototype.u=function(){return this.up()},t.prototype.importXMLBuilder=function(t){return this.importDocument(t)},t.prototype.replaceChild=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.removeChild=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.appendChild=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.hasChildNodes=function(){return 0!==this.children.length},t.prototype.cloneNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.normalize=function(){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.isSupported=function(t,e){return!0},t.prototype.hasAttributes=function(){return 0!==this.attribs.length},t.prototype.compareDocumentPosition=function(t){var n,s;return(n=this)===t?0:this.document()!==t.document()?(s=e.Disconnected|e.ImplementationSpecific,Math.random()<.5?s|=e.Preceding:s|=e.Following,s):n.isAncestor(t)?e.Contains|e.Preceding:n.isDescendant(t)?e.Contains|e.Following:n.isPreceding(t)?e.Preceding:e.Following},t.prototype.isSameNode=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.lookupPrefix=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.isDefaultNamespace=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.lookupNamespaceURI=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.isEqualNode=function(t){var e,n,s;if(t.nodeType!==this.nodeType)return!1;if(t.children.length!==this.children.length)return!1;for(e=n=0,s=this.children.length-1;0<=s?n<=s:n>=s;e=0<=s?++n:--n)if(!this.children[e].isEqualNode(t.children[e]))return!1;return!0},t.prototype.getFeature=function(t,e){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.setUserData=function(t,e,n){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.getUserData=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},t.prototype.contains=function(t){return!!t&&(t===this||this.isDescendant(t))},t.prototype.isDescendant=function(t){var e,n,s,i;for(n=0,s=(i=this.children).length;n<s;n++){if(t===(e=i[n]))return!0;if(e.isDescendant(t))return!0}return!1},t.prototype.isAncestor=function(t){return t.isDescendant(this)},t.prototype.isPreceding=function(t){var e,n;return e=this.treePosition(t),n=this.treePosition(this),-1!==e&&-1!==n&&e<n},t.prototype.isFollowing=function(t){var e,n;return e=this.treePosition(t),n=this.treePosition(this),-1!==e&&-1!==n&&e>n},t.prototype.treePosition=function(t){var e,n;return n=0,e=!1,this.foreachTreeNode(this.document(),(function(s){if(n++,!e&&s===t)return e=!0})),e?n:-1},t.prototype.foreachTreeNode=function(t,e){var n,s,i,r,o;for(t||(t=this.document()),s=0,i=(r=t.children).length;s<i;s++){if(o=e(n=r[s]))return o;if(o=this.foreachTreeNode(n,e))return o}},t}()}).call(this)},16684:function(t){(function(){t.exports=function(){function t(t){this.nodes=t}return Object.defineProperty(t.prototype,"length",{get:function(){return this.nodes.length||0}}),t.prototype.clone=function(){return this.nodes=null},t.prototype.item=function(t){return this.nodes[t]||null},t}()}).call(this)},85915:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;e=n(71737),s=n(17457),t.exports=function(t){function n(t,s,i){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing instruction target. "+this.debugInfo());this.type=e.ProcessingInstruction,this.target=this.stringify.insTarget(s),this.name=this.target,i&&(this.value=this.stringify.insValue(i))}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.clone=function(){return Object.create(this)},n.prototype.toString=function(t){return this.options.writer.processingInstruction(this,this.options.writer.filterOptions(t))},n.prototype.isEqualNode=function(t){return!!n.__super__.isEqualNode.apply(this,arguments).isEqualNode(t)&&t.target===this.target},n}(s)}).call(this)},1268:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;e=n(71737),s=n(10468),t.exports=function(t){function n(t,s){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing raw text. "+this.debugInfo());this.type=e.Raw,this.value=this.stringify.raw(s)}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.clone=function(){return Object.create(this)},n.prototype.toString=function(t){return this.options.writer.raw(this,this.options.writer.filterOptions(t))},n}(s)}).call(this)},96775:function(t,e,n){(function(){var e,s,i,r={}.hasOwnProperty;e=n(71737),i=n(6286),s=n(88753),t.exports=function(t){function n(t,e){this.stream=t,n.__super__.constructor.call(this,e)}return function(t,e){for(var n in e)r.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),n.prototype.endline=function(t,e,i){return t.isLastRootNode&&e.state===s.CloseTag?"":n.__super__.endline.call(this,t,e,i)},n.prototype.document=function(t,e){var n,s,i,r,o,a,l,c,d;for(s=i=0,o=(l=t.children).length;i<o;s=++i)(n=l[s]).isLastRootNode=s===t.children.length-1;for(e=this.filterOptions(e),d=[],r=0,a=(c=t.children).length;r<a;r++)n=c[r],d.push(this.writeChildNode(n,e,0));return d},n.prototype.attribute=function(t,e,s){return this.stream.write(n.__super__.attribute.call(this,t,e,s))},n.prototype.cdata=function(t,e,s){return this.stream.write(n.__super__.cdata.call(this,t,e,s))},n.prototype.comment=function(t,e,s){return this.stream.write(n.__super__.comment.call(this,t,e,s))},n.prototype.declaration=function(t,e,s){return this.stream.write(n.__super__.declaration.call(this,t,e,s))},n.prototype.docType=function(t,e,n){var i,r,o,a;if(n||(n=0),this.openNode(t,e,n),e.state=s.OpenTag,this.stream.write(this.indent(t,e,n)),this.stream.write("<!DOCTYPE "+t.root().name),t.pubID&&t.sysID?this.stream.write(' PUBLIC "'+t.pubID+'" "'+t.sysID+'"'):t.sysID&&this.stream.write(' SYSTEM "'+t.sysID+'"'),t.children.length>0){for(this.stream.write(" ["),this.stream.write(this.endline(t,e,n)),e.state=s.InsideTag,r=0,o=(a=t.children).length;r<o;r++)i=a[r],this.writeChildNode(i,e,n+1);e.state=s.CloseTag,this.stream.write("]")}return e.state=s.CloseTag,this.stream.write(e.spaceBeforeSlash+">"),this.stream.write(this.endline(t,e,n)),e.state=s.None,this.closeNode(t,e,n)},n.prototype.element=function(t,n,i){var o,a,l,c,d,u,m,p,f;for(m in i||(i=0),this.openNode(t,n,i),n.state=s.OpenTag,this.stream.write(this.indent(t,n,i)+"<"+t.name),p=t.attribs)r.call(p,m)&&(o=p[m],this.attribute(o,n,i));if(c=0===(l=t.children.length)?null:t.children[0],0===l||t.children.every((function(t){return(t.type===e.Text||t.type===e.Raw)&&""===t.value})))n.allowEmpty?(this.stream.write(">"),n.state=s.CloseTag,this.stream.write("</"+t.name+">")):(n.state=s.CloseTag,this.stream.write(n.spaceBeforeSlash+"/>"));else if(!n.pretty||1!==l||c.type!==e.Text&&c.type!==e.Raw||null==c.value){for(this.stream.write(">"+this.endline(t,n,i)),n.state=s.InsideTag,d=0,u=(f=t.children).length;d<u;d++)a=f[d],this.writeChildNode(a,n,i+1);n.state=s.CloseTag,this.stream.write(this.indent(t,n,i)+"</"+t.name+">")}else this.stream.write(">"),n.state=s.InsideTag,n.suppressPrettyCount++,this.writeChildNode(c,n,i+1),n.suppressPrettyCount--,n.state=s.CloseTag,this.stream.write("</"+t.name+">");return this.stream.write(this.endline(t,n,i)),n.state=s.None,this.closeNode(t,n,i)},n.prototype.processingInstruction=function(t,e,s){return this.stream.write(n.__super__.processingInstruction.call(this,t,e,s))},n.prototype.raw=function(t,e,s){return this.stream.write(n.__super__.raw.call(this,t,e,s))},n.prototype.text=function(t,e,s){return this.stream.write(n.__super__.text.call(this,t,e,s))},n.prototype.dtdAttList=function(t,e,s){return this.stream.write(n.__super__.dtdAttList.call(this,t,e,s))},n.prototype.dtdElement=function(t,e,s){return this.stream.write(n.__super__.dtdElement.call(this,t,e,s))},n.prototype.dtdEntity=function(t,e,s){return this.stream.write(n.__super__.dtdEntity.call(this,t,e,s))},n.prototype.dtdNotation=function(t,e,s){return this.stream.write(n.__super__.dtdNotation.call(this,t,e,s))},n}(i)}).call(this)},40382:function(t,e,n){(function(){var e,s={}.hasOwnProperty;e=n(6286),t.exports=function(t){function e(t){e.__super__.constructor.call(this,t)}return function(t,e){for(var n in e)s.call(e,n)&&(t[n]=e[n]);function i(){this.constructor=t}i.prototype=e.prototype,t.prototype=new i,t.__super__=e.prototype}(e,t),e.prototype.document=function(t,e){var n,s,i,r,o;for(e=this.filterOptions(e),r="",s=0,i=(o=t.children).length;s<i;s++)n=o[s],r+=this.writeChildNode(n,e,0);return e.pretty&&r.slice(-e.newline.length)===e.newline&&(r=r.slice(0,-e.newline.length)),r},e}(e)}).call(this)},43976:function(t){(function(){var e=function(t,e){return function(){return t.apply(e,arguments)}},n={}.hasOwnProperty;t.exports=function(){function t(t){var s,i,r;for(s in this.assertLegalName=e(this.assertLegalName,this),this.assertLegalChar=e(this.assertLegalChar,this),t||(t={}),this.options=t,this.options.version||(this.options.version="1.0"),i=t.stringify||{})n.call(i,s)&&(r=i[s],this[s]=r)}return t.prototype.name=function(t){return this.options.noValidation?t:this.assertLegalName(""+t||"")},t.prototype.text=function(t){return this.options.noValidation?t:this.assertLegalChar(this.textEscape(""+t||""))},t.prototype.cdata=function(t){return this.options.noValidation?t:(t=(t=""+t||"").replace("]]>","]]]]><![CDATA[>"),this.assertLegalChar(t))},t.prototype.comment=function(t){if(this.options.noValidation)return t;if((t=""+t||"").match(/--/))throw new Error("Comment text cannot contain double-hypen: "+t);return this.assertLegalChar(t)},t.prototype.raw=function(t){return this.options.noValidation?t:""+t||""},t.prototype.attValue=function(t){return this.options.noValidation?t:this.assertLegalChar(this.attEscape(t=""+t||""))},t.prototype.insTarget=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.insValue=function(t){if(this.options.noValidation)return t;if((t=""+t||"").match(/\?>/))throw new Error("Invalid processing instruction value: "+t);return this.assertLegalChar(t)},t.prototype.xmlVersion=function(t){if(this.options.noValidation)return t;if(!(t=""+t||"").match(/1\.[0-9]+/))throw new Error("Invalid version number: "+t);return t},t.prototype.xmlEncoding=function(t){if(this.options.noValidation)return t;if(!(t=""+t||"").match(/^[A-Za-z](?:[A-Za-z0-9._-])*$/))throw new Error("Invalid encoding: "+t);return this.assertLegalChar(t)},t.prototype.xmlStandalone=function(t){return this.options.noValidation?t:t?"yes":"no"},t.prototype.dtdPubID=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdSysID=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdElementValue=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdAttType=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdAttDefault=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdEntityValue=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.dtdNData=function(t){return this.options.noValidation?t:this.assertLegalChar(""+t||"")},t.prototype.convertAttKey="@",t.prototype.convertPIKey="?",t.prototype.convertTextKey="#text",t.prototype.convertCDataKey="#cdata",t.prototype.convertCommentKey="#comment",t.prototype.convertRawKey="#raw",t.prototype.assertLegalChar=function(t){var e,n;if(this.options.noValidation)return t;if(e="","1.0"===this.options.version){if(e=/[\0-\x08\x0B\f\x0E-\x1F\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,n=t.match(e))throw new Error("Invalid character in string: "+t+" at index "+n.index)}else if("1.1"===this.options.version&&(e=/[\0\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,n=t.match(e)))throw new Error("Invalid character in string: "+t+" at index "+n.index);return t},t.prototype.assertLegalName=function(t){var e;if(this.options.noValidation)return t;if(this.assertLegalChar(t),e=/^([:A-Z_a-z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])([\x2D\.0-:A-Z_a-z\xB7\xC0-\xD6\xD8-\xF6\xF8-\u037D\u037F-\u1FFF\u200C\u200D\u203F\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])*$/,!t.match(e))throw new Error("Invalid character in name");return t},t.prototype.textEscape=function(t){var e;return this.options.noValidation?t:(e=this.options.noDoubleEncoding?/(?!&\S+;)&/g:/&/g,t.replace(e,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/\r/g,"&#xD;"))},t.prototype.attEscape=function(t){var e;return this.options.noValidation?t:(e=this.options.noDoubleEncoding?/(?!&\S+;)&/g:/&/g,t.replace(e,"&amp;").replace(/</g,"&lt;").replace(/"/g,"&quot;").replace(/\t/g,"&#x9;").replace(/\n/g,"&#xA;").replace(/\r/g,"&#xD;"))},t}()}).call(this)},82535:function(t,e,n){(function(){var e,s,i={}.hasOwnProperty;e=n(71737),s=n(17457),t.exports=function(t){function n(t,s){if(n.__super__.constructor.call(this,t),null==s)throw new Error("Missing element text. "+this.debugInfo());this.name="#text",this.type=e.Text,this.value=this.stringify.text(s)}return function(t,e){for(var n in e)i.call(e,n)&&(t[n]=e[n]);function s(){this.constructor=t}s.prototype=e.prototype,t.prototype=new s,t.__super__=e.prototype}(n,t),Object.defineProperty(n.prototype,"isElementContentWhitespace",{get:function(){throw new Error("This DOM method is not implemented."+this.debugInfo())}}),Object.defineProperty(n.prototype,"wholeText",{get:function(){var t,e,n;for(n="",e=this.previousSibling;e;)n=e.data+n,e=e.previousSibling;for(n+=this.data,t=this.nextSibling;t;)n+=t.data,t=t.nextSibling;return n}}),n.prototype.clone=function(){return Object.create(this)},n.prototype.toString=function(t){return this.options.writer.text(this,this.options.writer.filterOptions(t))},n.prototype.splitText=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n.prototype.replaceWholeText=function(t){throw new Error("This DOM method is not implemented."+this.debugInfo())},n}(s)}).call(this)},6286:function(t,e,n){(function(){var e,s,i,r={}.hasOwnProperty;i=n(49241).assign,e=n(71737),n(34130),n(96376),n(92691),n(32679),n(33906),n(1268),n(82535),n(85915),n(21218),n(34111),n(67696),n(5529),n(28012),s=n(88753),t.exports=function(){function t(t){var e,n,s;for(e in t||(t={}),this.options=t,n=t.writer||{})r.call(n,e)&&(s=n[e],this["_"+e]=this[e],this[e]=s)}return t.prototype.filterOptions=function(t){var e,n,r,o,a,l,c,d;return t||(t={}),t=i({},this.options,t),(e={writer:this}).pretty=t.pretty||!1,e.allowEmpty=t.allowEmpty||!1,e.indent=null!=(n=t.indent)?n:" ",e.newline=null!=(r=t.newline)?r:"\n",e.offset=null!=(o=t.offset)?o:0,e.dontPrettyTextNodes=null!=(a=null!=(l=t.dontPrettyTextNodes)?l:t.dontprettytextnodes)?a:0,e.spaceBeforeSlash=null!=(c=null!=(d=t.spaceBeforeSlash)?d:t.spacebeforeslash)?c:"",!0===e.spaceBeforeSlash&&(e.spaceBeforeSlash=" "),e.suppressPrettyCount=0,e.user={},e.state=s.None,e},t.prototype.indent=function(t,e,n){var s;return!e.pretty||e.suppressPrettyCount?"":e.pretty&&(s=(n||0)+e.offset+1)>0?new Array(s).join(e.indent):""},t.prototype.endline=function(t,e,n){return!e.pretty||e.suppressPrettyCount?"":e.newline},t.prototype.attribute=function(t,e,n){var s;return this.openAttribute(t,e,n),s=" "+t.name+'="'+t.value+'"',this.closeAttribute(t,e,n),s},t.prototype.cdata=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<![CDATA[",e.state=s.InsideTag,i+=t.value,e.state=s.CloseTag,i+="]]>"+this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.comment=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"\x3c!-- ",e.state=s.InsideTag,i+=t.value,e.state=s.CloseTag,i+=" --\x3e"+this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.declaration=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<?xml",e.state=s.InsideTag,i+=' version="'+t.version+'"',null!=t.encoding&&(i+=' encoding="'+t.encoding+'"'),null!=t.standalone&&(i+=' standalone="'+t.standalone+'"'),e.state=s.CloseTag,i+=e.spaceBeforeSlash+"?>",i+=this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.docType=function(t,e,n){var i,r,o,a,l;if(n||(n=0),this.openNode(t,e,n),e.state=s.OpenTag,a=this.indent(t,e,n),a+="<!DOCTYPE "+t.root().name,t.pubID&&t.sysID?a+=' PUBLIC "'+t.pubID+'" "'+t.sysID+'"':t.sysID&&(a+=' SYSTEM "'+t.sysID+'"'),t.children.length>0){for(a+=" [",a+=this.endline(t,e,n),e.state=s.InsideTag,r=0,o=(l=t.children).length;r<o;r++)i=l[r],a+=this.writeChildNode(i,e,n+1);e.state=s.CloseTag,a+="]"}return e.state=s.CloseTag,a+=e.spaceBeforeSlash+">",a+=this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),a},t.prototype.element=function(t,n,i){var o,a,l,c,d,u,m,p,f,g,h,v,A,w;for(f in i||(i=0),g=!1,h="",this.openNode(t,n,i),n.state=s.OpenTag,h+=this.indent(t,n,i)+"<"+t.name,v=t.attribs)r.call(v,f)&&(o=v[f],h+=this.attribute(o,n,i));if(c=0===(l=t.children.length)?null:t.children[0],0===l||t.children.every((function(t){return(t.type===e.Text||t.type===e.Raw)&&""===t.value})))n.allowEmpty?(h+=">",n.state=s.CloseTag,h+="</"+t.name+">"+this.endline(t,n,i)):(n.state=s.CloseTag,h+=n.spaceBeforeSlash+"/>"+this.endline(t,n,i));else if(!n.pretty||1!==l||c.type!==e.Text&&c.type!==e.Raw||null==c.value){if(n.dontPrettyTextNodes)for(d=0,m=(A=t.children).length;d<m;d++)if(((a=A[d]).type===e.Text||a.type===e.Raw)&&null!=a.value){n.suppressPrettyCount++,g=!0;break}for(h+=">"+this.endline(t,n,i),n.state=s.InsideTag,u=0,p=(w=t.children).length;u<p;u++)a=w[u],h+=this.writeChildNode(a,n,i+1);n.state=s.CloseTag,h+=this.indent(t,n,i)+"</"+t.name+">",g&&n.suppressPrettyCount--,h+=this.endline(t,n,i),n.state=s.None}else h+=">",n.state=s.InsideTag,n.suppressPrettyCount++,g=!0,h+=this.writeChildNode(c,n,i+1),n.suppressPrettyCount--,g=!1,n.state=s.CloseTag,h+="</"+t.name+">"+this.endline(t,n,i);return this.closeNode(t,n,i),h},t.prototype.writeChildNode=function(t,n,s){switch(t.type){case e.CData:return this.cdata(t,n,s);case e.Comment:return this.comment(t,n,s);case e.Element:return this.element(t,n,s);case e.Raw:return this.raw(t,n,s);case e.Text:return this.text(t,n,s);case e.ProcessingInstruction:return this.processingInstruction(t,n,s);case e.Dummy:return"";case e.Declaration:return this.declaration(t,n,s);case e.DocType:return this.docType(t,n,s);case e.AttributeDeclaration:return this.dtdAttList(t,n,s);case e.ElementDeclaration:return this.dtdElement(t,n,s);case e.EntityDeclaration:return this.dtdEntity(t,n,s);case e.NotationDeclaration:return this.dtdNotation(t,n,s);default:throw new Error("Unknown XML node type: "+t.constructor.name)}},t.prototype.processingInstruction=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<?",e.state=s.InsideTag,i+=t.target,t.value&&(i+=" "+t.value),e.state=s.CloseTag,i+=e.spaceBeforeSlash+"?>",i+=this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.raw=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n),e.state=s.InsideTag,i+=t.value,e.state=s.CloseTag,i+=this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.text=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n),e.state=s.InsideTag,i+=t.value,e.state=s.CloseTag,i+=this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.dtdAttList=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<!ATTLIST",e.state=s.InsideTag,i+=" "+t.elementName+" "+t.attributeName+" "+t.attributeType,"#DEFAULT"!==t.defaultValueType&&(i+=" "+t.defaultValueType),t.defaultValue&&(i+=' "'+t.defaultValue+'"'),e.state=s.CloseTag,i+=e.spaceBeforeSlash+">"+this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.dtdElement=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<!ELEMENT",e.state=s.InsideTag,i+=" "+t.name+" "+t.value,e.state=s.CloseTag,i+=e.spaceBeforeSlash+">"+this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.dtdEntity=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<!ENTITY",e.state=s.InsideTag,t.pe&&(i+=" %"),i+=" "+t.name,t.value?i+=' "'+t.value+'"':(t.pubID&&t.sysID?i+=' PUBLIC "'+t.pubID+'" "'+t.sysID+'"':t.sysID&&(i+=' SYSTEM "'+t.sysID+'"'),t.nData&&(i+=" NDATA "+t.nData)),e.state=s.CloseTag,i+=e.spaceBeforeSlash+">"+this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.dtdNotation=function(t,e,n){var i;return this.openNode(t,e,n),e.state=s.OpenTag,i=this.indent(t,e,n)+"<!NOTATION",e.state=s.InsideTag,i+=" "+t.name,t.pubID&&t.sysID?i+=' PUBLIC "'+t.pubID+'" "'+t.sysID+'"':t.pubID?i+=' PUBLIC "'+t.pubID+'"':t.sysID&&(i+=' SYSTEM "'+t.sysID+'"'),e.state=s.CloseTag,i+=e.spaceBeforeSlash+">"+this.endline(t,e,n),e.state=s.None,this.closeNode(t,e,n),i},t.prototype.openNode=function(t,e,n){},t.prototype.closeNode=function(t,e,n){},t.prototype.openAttribute=function(t,e,n){},t.prototype.closeAttribute=function(t,e,n){},t}()}).call(this)},59665:function(t,e,n){(function(){var e,s,i,r,o,a,l,c,d,u;u=n(49241),c=u.assign,d=u.isFunction,i=n(67260),r=n(71933),o=n(80400),l=n(40382),a=n(96775),e=n(71737),s=n(88753),t.exports.create=function(t,e,n,s){var i,o;if(null==t)throw new Error("Root element needs a name.");return s=c({},e,n,s),o=(i=new r(s)).element(t),s.headless||(i.declaration(s),null==s.pubID&&null==s.sysID||i.dtd(s)),o},t.exports.begin=function(t,e,n){var s;return d(t)&&(e=(s=[t,e])[0],n=s[1],t={}),e?new o(t,e,n):new r(t)},t.exports.stringWriter=function(t){return new l(t)},t.exports.streamWriter=function(t,e){return new a(t,e)},t.exports.implementation=new i,t.exports.nodeType=e,t.exports.writerState=s}).call(this)},63710:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20height=%2716%27%20width=%2716%27%3e%3cpath%20d=%27M14%2012.3L12.3%2014%208%209.7%203.7%2014%202%2012.3%206.3%208%202%203.7%203.7%202%208%206.3%2012.3%202%2014%203.7%209.7%208z%27%20style=%27fill-opacity:1;fill:%23ffffff%27/%3e%3c/svg%3e"},57273:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20height=%2716%27%20width=%2716%27%3e%3cpath%20d=%27M14%2012.3L12.3%2014%208%209.7%203.7%2014%202%2012.3%206.3%208%202%203.7%203.7%202%208%206.3%2012.3%202%2014%203.7%209.7%208z%27/%3e%3c/svg%3e"},42634:()=>{},63779:()=>{},99580:()=>{},59169:()=>{},86833:()=>{},35810:(t,e,n)=>{"use strict";n.d(e,{Al:()=>z,By:()=>w,H4:()=>U,PY:()=>D,Q$:()=>j,R3:()=>k,Ss:()=>oe,VL:()=>T,ZH:()=>P,aX:()=>y,bP:()=>F,bh:()=>R,hY:()=>v,lJ:()=>O,m1:()=>le,m9:()=>h,pt:()=>S,qK:()=>A,v7:()=>g,vb:()=>E,vd:()=>B,zI:()=>I});var s=n(92457),i=n(53529),r=n(53334),o=n(43627),a=n(71089),l=n(66656),c=n(66037);const d=null===(u=(0,s.HW)())?(0,i.YK)().setApp("files").build():(0,i.YK)().setApp("files").setUid(u.uid).build();var u;class m{_entries=[];registerEntry(t){this.validateEntry(t),this._entries.push(t)}unregisterEntry(t){const e="string"==typeof t?this.getEntryIndex(t):this.getEntryIndex(t.id);-1!==e?this._entries.splice(e,1):d.warn("Entry not found, nothing removed",{entry:t,entries:this.getEntries()})}getEntries(t){return t?this._entries.filter((e=>"function"!=typeof e.enabled||e.enabled(t))):this._entries}getEntryIndex(t){return this._entries.findIndex((e=>e.id===t))}validateEntry(t){if(!t.id||!t.displayName||!t.iconSvgInline&&!t.iconClass||!t.handler)throw new Error("Invalid entry");if("string"!=typeof t.id||"string"!=typeof t.displayName)throw new Error("Invalid id or displayName property");if(t.iconClass&&"string"!=typeof t.iconClass||t.iconSvgInline&&"string"!=typeof t.iconSvgInline)throw new Error("Invalid icon provided");if(void 0!==t.enabled&&"function"!=typeof t.enabled)throw new Error("Invalid enabled property");if("function"!=typeof t.handler)throw new Error("Invalid handler property");if("order"in t&&"number"!=typeof t.order)throw new Error("Invalid order property");if(-1!==this.getEntryIndex(t.id))throw new Error("Duplicate entry")}}const p=["B","KB","MB","GB","TB","PB"],f=["B","KiB","MiB","GiB","TiB","PiB"];function g(t,e=!1,n=!1,s=!1){n=n&&!s,"string"==typeof t&&(t=Number(t));let i=t>0?Math.floor(Math.log(t)/Math.log(s?1e3:1024)):0;i=Math.min((n?f.length:p.length)-1,i);const o=n?f[i]:p[i];let a=(t/Math.pow(s?1e3:1024,i)).toFixed(1);return!0===e&&0===i?("0.0"!==a?"< 1 ":"0 ")+(n?f[1]:p[1]):(a=i<2?parseFloat(a).toFixed(0):parseFloat(a).toLocaleString((0,r.lO)()),a+" "+o)}var h=(t=>(t.DEFAULT="default",t.HIDDEN="hidden",t))(h||{});class v{_action;constructor(t){this.validateAction(t),this._action=t}get id(){return this._action.id}get displayName(){return this._action.displayName}get title(){return this._action.title}get iconSvgInline(){return this._action.iconSvgInline}get enabled(){return this._action.enabled}get exec(){return this._action.exec}get execBatch(){return this._action.execBatch}get order(){return this._action.order}get parent(){return this._action.parent}get default(){return this._action.default}get inline(){return this._action.inline}get renderInline(){return this._action.renderInline}validateAction(t){if(!t.id||"string"!=typeof t.id)throw new Error("Invalid id");if(!t.displayName||"function"!=typeof t.displayName)throw new Error("Invalid displayName function");if("title"in t&&"function"!=typeof t.title)throw new Error("Invalid title function");if(!t.iconSvgInline||"function"!=typeof t.iconSvgInline)throw new Error("Invalid iconSvgInline function");if(!t.exec||"function"!=typeof t.exec)throw new Error("Invalid exec function");if("enabled"in t&&"function"!=typeof t.enabled)throw new Error("Invalid enabled function");if("execBatch"in t&&"function"!=typeof t.execBatch)throw new Error("Invalid execBatch function");if("order"in t&&"number"!=typeof t.order)throw new Error("Invalid order");if("parent"in t&&"string"!=typeof t.parent)throw new Error("Invalid parent");if(t.default&&!Object.values(h).includes(t.default))throw new Error("Invalid default");if("inline"in t&&"function"!=typeof t.inline)throw new Error("Invalid inline function");if("renderInline"in t&&"function"!=typeof t.renderInline)throw new Error("Invalid renderInline function")}}const A=function(){return typeof window._nc_fileactions>"u"&&(window._nc_fileactions=[],d.debug("FileActions initialized")),window._nc_fileactions},w=function(){return typeof window._nc_filelistheader>"u"&&(window._nc_filelistheader=[],d.debug("FileListHeaders initialized")),window._nc_filelistheader};var y=(t=>(t[t.NONE=0]="NONE",t[t.CREATE=4]="CREATE",t[t.READ=1]="READ",t[t.UPDATE=2]="UPDATE",t[t.DELETE=8]="DELETE",t[t.SHARE=16]="SHARE",t[t.ALL=31]="ALL",t))(y||{});const b=["d:getcontentlength","d:getcontenttype","d:getetag","d:getlastmodified","d:quota-available-bytes","d:resourcetype","nc:has-preview","nc:is-encrypted","nc:mount-type","oc:comments-unread","oc:favorite","oc:fileid","oc:owner-display-name","oc:owner-id","oc:permissions","oc:size"],C={d:"DAV:",nc:"http://nextcloud.org/ns",oc:"http://owncloud.org/ns",ocs:"http://open-collaboration-services.org/ns"},x=function(){return typeof window._nc_dav_properties>"u"&&(window._nc_dav_properties=[...b]),window._nc_dav_properties.map((t=>`<${t} />`)).join(" ")},_=function(){return typeof window._nc_dav_namespaces>"u"&&(window._nc_dav_namespaces={...C}),Object.keys(window._nc_dav_namespaces).map((t=>`xmlns:${t}="${window._nc_dav_namespaces?.[t]}"`)).join(" ")},T=function(){return`<?xml version="1.0"?>\n\t\t<d:propfind ${_()}>\n\t\t\t<d:prop>\n\t\t\t\t${x()}\n\t\t\t</d:prop>\n\t\t</d:propfind>`},k=function(t){return`<?xml version="1.0" encoding="UTF-8"?>\n<d:searchrequest ${_()}\n\txmlns:ns="https://github.com/icewind1991/SearchDAV/ns">\n\t<d:basicsearch>\n\t\t<d:select>\n\t\t\t<d:prop>\n\t\t\t\t${x()}\n\t\t\t</d:prop>\n\t\t</d:select>\n\t\t<d:from>\n\t\t\t<d:scope>\n\t\t\t\t<d:href>/files/${(0,s.HW)()?.uid}/</d:href>\n\t\t\t\t<d:depth>infinity</d:depth>\n\t\t\t</d:scope>\n\t\t</d:from>\n\t\t<d:where>\n\t\t\t<d:and>\n\t\t\t\t<d:or>\n\t\t\t\t\t<d:not>\n\t\t\t\t\t\t<d:eq>\n\t\t\t\t\t\t\t<d:prop>\n\t\t\t\t\t\t\t\t<d:getcontenttype/>\n\t\t\t\t\t\t\t</d:prop>\n\t\t\t\t\t\t\t<d:literal>httpd/unix-directory</d:literal>\n\t\t\t\t\t\t</d:eq>\n\t\t\t\t\t</d:not>\n\t\t\t\t\t<d:eq>\n\t\t\t\t\t\t<d:prop>\n\t\t\t\t\t\t\t<oc:size/>\n\t\t\t\t\t\t</d:prop>\n\t\t\t\t\t\t<d:literal>0</d:literal>\n\t\t\t\t\t</d:eq>\n\t\t\t\t</d:or>\n\t\t\t\t<d:gt>\n\t\t\t\t\t<d:prop>\n\t\t\t\t\t\t<d:getlastmodified/>\n\t\t\t\t\t</d:prop>\n\t\t\t\t\t<d:literal>${t}</d:literal>\n\t\t\t\t</d:gt>\n\t\t\t</d:and>\n\t\t</d:where>\n\t\t<d:orderby>\n\t\t\t<d:order>\n\t\t\t\t<d:prop>\n\t\t\t\t\t<d:getlastmodified/>\n\t\t\t\t</d:prop>\n\t\t\t\t<d:descending/>\n\t\t\t</d:order>\n\t\t</d:orderby>\n\t\t<d:limit>\n\t\t\t<d:nresults>100</d:nresults>\n\t\t\t<ns:firstresult>0</ns:firstresult>\n\t\t</d:limit>\n\t</d:basicsearch>\n</d:searchrequest>`},E=function(t=""){let e=y.NONE;return t&&((t.includes("C")||t.includes("K"))&&(e|=y.CREATE),t.includes("G")&&(e|=y.READ),(t.includes("W")||t.includes("N")||t.includes("V"))&&(e|=y.UPDATE),t.includes("D")&&(e|=y.DELETE),t.includes("R")&&(e|=y.SHARE)),e};var S=(t=>(t.Folder="folder",t.File="file",t))(S||{});const L=function(t,e){return null!==t.match(e)},N=(t,e)=>{if(t.id&&"number"!=typeof t.id)throw new Error("Invalid id type of value");if(!t.source)throw new Error("Missing mandatory source");try{new URL(t.source)}catch{throw new Error("Invalid source format, source must be a valid URL")}if(!t.source.startsWith("http"))throw new Error("Invalid source format, only http(s) is supported");if(t.mtime&&!(t.mtime instanceof Date))throw new Error("Invalid mtime type");if(t.crtime&&!(t.crtime instanceof Date))throw new Error("Invalid crtime type");if(!t.mime||"string"!=typeof t.mime||!t.mime.match(/^[-\w.]+\/[-+\w.]+$/gi))throw new Error("Missing or invalid mandatory mime");if("size"in t&&"number"!=typeof t.size&&void 0!==t.size)throw new Error("Invalid size type");if("permissions"in t&&void 0!==t.permissions&&!("number"==typeof t.permissions&&t.permissions>=y.NONE&&t.permissions<=y.ALL))throw new Error("Invalid permissions");if(t.owner&&null!==t.owner&&"string"!=typeof t.owner)throw new Error("Invalid owner type");if(t.attributes&&"object"!=typeof t.attributes)throw new Error("Invalid attributes type");if(t.root&&"string"!=typeof t.root)throw new Error("Invalid root type");if(t.root&&!t.root.startsWith("/"))throw new Error("Root must start with a leading slash");if(t.root&&!t.source.includes(t.root))throw new Error("Root must be part of the source");if(t.root&&L(t.source,e)){const n=t.source.match(e)[0];if(!t.source.includes((0,o.join)(n,t.root)))throw new Error("The root must be relative to the service. e.g /files/emma")}if(t.status&&!Object.values(I).includes(t.status))throw new Error("Status must be a valid NodeStatus")};var I=(t=>(t.NEW="new",t.FAILED="failed",t.LOADING="loading",t.LOCKED="locked",t))(I||{});class F{_data;_attributes;_knownDavService=/(remote|public)\.php\/(web)?dav/i;constructor(t,e){N(t,e||this._knownDavService),this._data=t;const n={set:(t,e,n)=>(this.updateMtime(),Reflect.set(t,e,n)),deleteProperty:(t,e)=>(this.updateMtime(),Reflect.deleteProperty(t,e))};this._attributes=new Proxy(t.attributes||{},n),delete this._data.attributes,e&&(this._knownDavService=e)}get source(){return this._data.source.replace(/\/$/i,"")}get encodedSource(){const{origin:t}=new URL(this.source);return t+(0,a.O0)(this.source.slice(t.length))}get basename(){return(0,o.basename)(this.source)}get extension(){return(0,o.extname)(this.source)}get dirname(){if(this.root){let t=this.source;this.isDavRessource&&(t=t.split(this._knownDavService).pop());const e=t.indexOf(this.root),n=this.root.replace(/\/$/,"");return(0,o.dirname)(t.slice(e+n.length)||"/")}const t=new URL(this.source);return(0,o.dirname)(t.pathname)}get mime(){return this._data.mime}get mtime(){return this._data.mtime}get crtime(){return this._data.crtime}get size(){return this._data.size}get attributes(){return this._attributes}get permissions(){return null!==this.owner||this.isDavRessource?void 0!==this._data.permissions?this._data.permissions:y.NONE:y.READ}get owner(){return this.isDavRessource?this._data.owner:null}get isDavRessource(){return L(this.source,this._knownDavService)}get root(){return this._data.root?this._data.root.replace(/^(.+)\/$/,"$1"):this.isDavRessource&&(0,o.dirname)(this.source).split(this._knownDavService).pop()||null}get path(){if(this.root){let t=this.source;this.isDavRessource&&(t=t.split(this._knownDavService).pop());const e=t.indexOf(this.root),n=this.root.replace(/\/$/,"");return t.slice(e+n.length)||"/"}return(this.dirname+"/"+this.basename).replace(/\/\//g,"/")}get fileid(){return this._data?.id||this.attributes?.fileid}get status(){return this._data?.status}set status(t){this._data.status=t}move(t){N({...this._data,source:t},this._knownDavService),this._data.source=t,this.updateMtime()}rename(t){if(t.includes("/"))throw new Error("Invalid basename");this.move((0,o.dirname)(this.source)+"/"+t)}updateMtime(){this._data.mtime&&(this._data.mtime=new Date)}}class P extends F{get type(){return S.File}}class B extends F{constructor(t){super({...t,mime:"httpd/unix-directory"})}get type(){return S.Folder}get extension(){return null}get mime(){return"httpd/unix-directory"}}const O=`/files/${(0,s.HW)()?.uid}`,D=(0,l.dC)("dav"),U=function(t=D,e={}){const n=(0,c.UU)(t,{headers:e});function i(t){n.setHeaders({...e,"X-Requested-With":"XMLHttpRequest",requesttoken:t??""})}return(0,s.zo)(i),i((0,s.do)()),(0,c.Gu)().patch("fetch",((t,e)=>{const n=e.headers;return n?.method&&(e.method=n.method,delete n.method),fetch(t,e)})),n},j=async(t,e="/",n=O)=>(await t.getDirectoryContents(`${n}${e}`,{details:!0,data:`<?xml version="1.0"?>\n\t\t<oc:filter-files ${_()}>\n\t\t\t<d:prop>\n\t\t\t\t${x()}\n\t\t\t</d:prop>\n\t\t\t<oc:filter-rules>\n\t\t\t\t<oc:favorite>1</oc:favorite>\n\t\t\t</oc:filter-rules>\n\t\t</oc:filter-files>`,headers:{method:"REPORT"},includeSelf:!0})).data.filter((t=>t.filename!==e)).map((t=>z(t,n))),z=function(t,e=O,n=D){const i=(0,s.HW)()?.uid;if(!i)throw new Error("No user id found");const r=t.props,o=E(r?.permissions),a=(r?.["owner-id"]||i).toString(),l={id:r?.fileid||0,source:`${n}${t.filename}`,mtime:new Date(Date.parse(t.lastmod)),mime:t.mime||"application/octet-stream",size:r?.size||Number.parseInt(r.getcontentlength||"0"),permissions:o,owner:a,root:e,attributes:{...t,...r,hasPreview:r?.["has-preview"]}};return delete l.attributes?.props,"file"===t.type?new P(l):new B(l)};class M{_views=[];_currentView=null;register(t){if(this._views.find((e=>e.id===t.id)))throw new Error(`View id ${t.id} is already registered`);this._views.push(t)}remove(t){const e=this._views.findIndex((e=>e.id===t));-1!==e&&this._views.splice(e,1)}get views(){return this._views}setActive(t){this._currentView=t}get active(){return this._currentView}}const R=function(){return typeof window._nc_navigation>"u"&&(window._nc_navigation=new M,d.debug("Navigation service initialized")),window._nc_navigation};class V{_column;constructor(t){$(t),this._column=t}get id(){return this._column.id}get title(){return this._column.title}get render(){return this._column.render}get sort(){return this._column.sort}get summary(){return this._column.summary}}const $=function(t){if(!t.id||"string"!=typeof t.id)throw new Error("A column id is required");if(!t.title||"string"!=typeof t.title)throw new Error("A column title is required");if(!t.render||"function"!=typeof t.render)throw new Error("A render function is required");if(t.sort&&"function"!=typeof t.sort)throw new Error("Column sortFunction must be a function");if(t.summary&&"function"!=typeof t.summary)throw new Error("Column summary must be a function");return!0};var q={},H={};!function(t){const e=":A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",n="["+e+"]["+e+"\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*",s=new RegExp("^"+n+"$");t.isExist=function(t){return typeof t<"u"},t.isEmptyObject=function(t){return 0===Object.keys(t).length},t.merge=function(t,e,n){if(e){const s=Object.keys(e),i=s.length;for(let r=0;r<i;r++)t[s[r]]="strict"===n?[e[s[r]]]:e[s[r]]}},t.getValue=function(e){return t.isExist(e)?e:""},t.isName=function(t){const e=s.exec(t);return!(null===e||typeof e>"u")},t.getAllMatches=function(t,e){const n=[];let s=e.exec(t);for(;s;){const i=[];i.startIndex=e.lastIndex-s[0].length;const r=s.length;for(let t=0;t<r;t++)i.push(s[t]);n.push(i),s=e.exec(t)}return n},t.nameRegexp=n}(H);const W=H,G={allowBooleanAttributes:!1,unpairedTags:[]};function Y(t){return" "===t||"\t"===t||"\n"===t||"\r"===t}function K(t,e){const n=e;for(;e<t.length;e++)if("?"==t[e]||" "==t[e]){const s=t.substr(n,e-n);if(e>5&&"xml"===s)return st("InvalidXml","XML declaration allowed only at the start of the document.",ot(t,e));if("?"==t[e]&&">"==t[e+1]){e++;break}continue}return e}function Q(t,e){if(t.length>e+5&&"-"===t[e+1]&&"-"===t[e+2]){for(e+=3;e<t.length;e++)if("-"===t[e]&&"-"===t[e+1]&&">"===t[e+2]){e+=2;break}}else if(t.length>e+8&&"D"===t[e+1]&&"O"===t[e+2]&&"C"===t[e+3]&&"T"===t[e+4]&&"Y"===t[e+5]&&"P"===t[e+6]&&"E"===t[e+7]){let n=1;for(e+=8;e<t.length;e++)if("<"===t[e])n++;else if(">"===t[e]&&(n--,0===n))break}else if(t.length>e+9&&"["===t[e+1]&&"C"===t[e+2]&&"D"===t[e+3]&&"A"===t[e+4]&&"T"===t[e+5]&&"A"===t[e+6]&&"["===t[e+7])for(e+=8;e<t.length;e++)if("]"===t[e]&&"]"===t[e+1]&&">"===t[e+2]){e+=2;break}return e}q.validate=function(t,e){e=Object.assign({},G,e);const n=[];let s=!1,i=!1;"\ufeff"===t[0]&&(t=t.substr(1));for(let r=0;r<t.length;r++)if("<"===t[r]&&"?"===t[r+1]){if(r+=2,r=K(t,r),r.err)return r}else{if("<"!==t[r]){if(Y(t[r]))continue;return st("InvalidChar","char '"+t[r]+"' is not expected.",ot(t,r))}{let o=r;if(r++,"!"===t[r]){r=Q(t,r);continue}{let a=!1;"/"===t[r]&&(a=!0,r++);let l="";for(;r<t.length&&">"!==t[r]&&" "!==t[r]&&"\t"!==t[r]&&"\n"!==t[r]&&"\r"!==t[r];r++)l+=t[r];if(l=l.trim(),"/"===l[l.length-1]&&(l=l.substring(0,l.length-1),r--),!rt(l)){let e;return e=0===l.trim().length?"Invalid space after '<'.":"Tag '"+l+"' is an invalid name.",st("InvalidTag",e,ot(t,r))}const c=Z(t,r);if(!1===c)return st("InvalidAttr","Attributes for '"+l+"' have open quote.",ot(t,r));let d=c.value;if(r=c.index,"/"===d[d.length-1]){const n=r-d.length;d=d.substring(0,d.length-1);const i=et(d,e);if(!0!==i)return st(i.err.code,i.err.msg,ot(t,n+i.err.line));s=!0}else if(a){if(!c.tagClosed)return st("InvalidTag","Closing tag '"+l+"' doesn't have proper closing.",ot(t,r));if(d.trim().length>0)return st("InvalidTag","Closing tag '"+l+"' can't have attributes or invalid starting.",ot(t,o));{const e=n.pop();if(l!==e.tagName){let n=ot(t,e.tagStartPos);return st("InvalidTag","Expected closing tag '"+e.tagName+"' (opened in line "+n.line+", col "+n.col+") instead of closing tag '"+l+"'.",ot(t,o))}0==n.length&&(i=!0)}}else{const a=et(d,e);if(!0!==a)return st(a.err.code,a.err.msg,ot(t,r-d.length+a.err.line));if(!0===i)return st("InvalidXml","Multiple possible root nodes found.",ot(t,r));-1!==e.unpairedTags.indexOf(l)||n.push({tagName:l,tagStartPos:o}),s=!0}for(r++;r<t.length;r++)if("<"===t[r]){if("!"===t[r+1]){r++,r=Q(t,r);continue}if("?"!==t[r+1])break;if(r=K(t,++r),r.err)return r}else if("&"===t[r]){const e=nt(t,r);if(-1==e)return st("InvalidChar","char '&' is not expected.",ot(t,r));r=e}else if(!0===i&&!Y(t[r]))return st("InvalidXml","Extra text at the end",ot(t,r));"<"===t[r]&&r--}}}return s?1==n.length?st("InvalidTag","Unclosed tag '"+n[0].tagName+"'.",ot(t,n[0].tagStartPos)):!(n.length>0)||st("InvalidXml","Invalid '"+JSON.stringify(n.map((t=>t.tagName)),null,4).replace(/\r?\n/g,"")+"' found.",{line:1,col:1}):st("InvalidXml","Start tag expected.",1)};const X='"',J="'";function Z(t,e){let n="",s="",i=!1;for(;e<t.length;e++){if(t[e]===X||t[e]===J)""===s?s=t[e]:s!==t[e]||(s="");else if(">"===t[e]&&""===s){i=!0;break}n+=t[e]}return""===s&&{value:n,index:e,tagClosed:i}}const tt=new RegExp("(\\s*)([^\\s=]+)(\\s*=)?(\\s*(['\"])(([\\s\\S])*?)\\5)?","g");function et(t,e){const n=W.getAllMatches(t,tt),s={};for(let t=0;t<n.length;t++){if(0===n[t][1].length)return st("InvalidAttr","Attribute '"+n[t][2]+"' has no space in starting.",at(n[t]));if(void 0!==n[t][3]&&void 0===n[t][4])return st("InvalidAttr","Attribute '"+n[t][2]+"' is without value.",at(n[t]));if(void 0===n[t][3]&&!e.allowBooleanAttributes)return st("InvalidAttr","boolean attribute '"+n[t][2]+"' is not allowed.",at(n[t]));const i=n[t][2];if(!it(i))return st("InvalidAttr","Attribute '"+i+"' is an invalid name.",at(n[t]));if(s.hasOwnProperty(i))return st("InvalidAttr","Attribute '"+i+"' is repeated.",at(n[t]));s[i]=1}return!0}function nt(t,e){if(";"===t[++e])return-1;if("#"===t[e])return function(t,e){let n=/\d/;for("x"===t[e]&&(e++,n=/[\da-fA-F]/);e<t.length;e++){if(";"===t[e])return e;if(!t[e].match(n))break}return-1}(t,++e);let n=0;for(;e<t.length;e++,n++)if(!(t[e].match(/\w/)&&n<20)){if(";"===t[e])break;return-1}return e}function st(t,e,n){return{err:{code:t,msg:e,line:n.line||n,col:n.col}}}function it(t){return W.isName(t)}function rt(t){return W.isName(t)}function ot(t,e){const n=t.substring(0,e).split(/\r?\n/);return{line:n.length,col:n[n.length-1].length+1}}function at(t){return t.startIndex+t[1].length}var lt={};const ct={preserveOrder:!1,attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,removeNSPrefix:!1,allowBooleanAttributes:!1,parseTagValue:!0,parseAttributeValue:!1,trimValues:!0,cdataPropName:!1,numberParseOptions:{hex:!0,leadingZeros:!0,eNotation:!0},tagValueProcessor:function(t,e){return e},attributeValueProcessor:function(t,e){return e},stopNodes:[],alwaysCreateTextNode:!1,isArray:()=>!1,commentPropName:!1,unpairedTags:[],processEntities:!0,htmlEntities:!1,ignoreDeclaration:!1,ignorePiTags:!1,transformTagName:!1,transformAttributeName:!1,updateTag:function(t,e,n){return t}};lt.buildOptions=function(t){return Object.assign({},ct,t)},lt.defaultOptions=ct;const dt=H;function ut(t,e){let n="";for(;e<t.length&&"'"!==t[e]&&'"'!==t[e];e++)n+=t[e];if(n=n.trim(),-1!==n.indexOf(" "))throw new Error("External entites are not supported");const s=t[e++];let i="";for(;e<t.length&&t[e]!==s;e++)i+=t[e];return[n,i,e]}function mt(t,e){return"!"===t[e+1]&&"-"===t[e+2]&&"-"===t[e+3]}function pt(t,e){return"!"===t[e+1]&&"E"===t[e+2]&&"N"===t[e+3]&&"T"===t[e+4]&&"I"===t[e+5]&&"T"===t[e+6]&&"Y"===t[e+7]}function ft(t,e){return"!"===t[e+1]&&"E"===t[e+2]&&"L"===t[e+3]&&"E"===t[e+4]&&"M"===t[e+5]&&"E"===t[e+6]&&"N"===t[e+7]&&"T"===t[e+8]}function gt(t,e){return"!"===t[e+1]&&"A"===t[e+2]&&"T"===t[e+3]&&"T"===t[e+4]&&"L"===t[e+5]&&"I"===t[e+6]&&"S"===t[e+7]&&"T"===t[e+8]}function ht(t,e){return"!"===t[e+1]&&"N"===t[e+2]&&"O"===t[e+3]&&"T"===t[e+4]&&"A"===t[e+5]&&"T"===t[e+6]&&"I"===t[e+7]&&"O"===t[e+8]&&"N"===t[e+9]}function vt(t){if(dt.isName(t))return t;throw new Error(`Invalid entity name ${t}`)}const At=/^[-+]?0x[a-fA-F0-9]+$/,wt=/^([\-\+])?(0*)(\.[0-9]+([eE]\-?[0-9]+)?|[0-9]+(\.[0-9]+([eE]\-?[0-9]+)?)?)$/;!Number.parseInt&&window.parseInt&&(Number.parseInt=window.parseInt),!Number.parseFloat&&window.parseFloat&&(Number.parseFloat=window.parseFloat);const yt={hex:!0,leadingZeros:!0,decimalPoint:".",eNotation:!0};const bt=H,Ct=class{constructor(t){this.tagname=t,this.child=[],this[":@"]={}}add(t,e){"__proto__"===t&&(t="#__proto__"),this.child.push({[t]:e})}addChild(t){"__proto__"===t.tagname&&(t.tagname="#__proto__"),t[":@"]&&Object.keys(t[":@"]).length>0?this.child.push({[t.tagname]:t.child,":@":t[":@"]}):this.child.push({[t.tagname]:t.child})}},xt=function(t,e){const n={};if("O"!==t[e+3]||"C"!==t[e+4]||"T"!==t[e+5]||"Y"!==t[e+6]||"P"!==t[e+7]||"E"!==t[e+8])throw new Error("Invalid Tag instead of DOCTYPE");{e+=9;let s=1,i=!1,r=!1,o="";for(;e<t.length;e++)if("<"!==t[e]||r)if(">"===t[e]){if(r?"-"===t[e-1]&&"-"===t[e-2]&&(r=!1,s--):s--,0===s)break}else"["===t[e]?i=!0:o+=t[e];else{if(i&&pt(t,e))e+=7,[entityName,val,e]=ut(t,e+1),-1===val.indexOf("&")&&(n[vt(entityName)]={regx:RegExp(`&${entityName};`,"g"),val});else if(i&&ft(t,e))e+=8;else if(i&&gt(t,e))e+=8;else if(i&&ht(t,e))e+=9;else{if(!mt)throw new Error("Invalid DOCTYPE");r=!0}s++,o=""}if(0!==s)throw new Error("Unclosed DOCTYPE")}return{entities:n,i:e}},_t=function(t,e={}){if(e=Object.assign({},yt,e),!t||"string"!=typeof t)return t;let n=t.trim();if(void 0!==e.skipLike&&e.skipLike.test(n))return t;if(e.hex&&At.test(n))return Number.parseInt(n,16);{const s=wt.exec(n);if(s){const i=s[1],r=s[2];let o=function(t){return t&&-1!==t.indexOf(".")&&("."===(t=t.replace(/0+$/,""))?t="0":"."===t[0]?t="0"+t:"."===t[t.length-1]&&(t=t.substr(0,t.length-1))),t}(s[3]);const a=s[4]||s[6];if(!e.leadingZeros&&r.length>0&&i&&"."!==n[2])return t;if(!e.leadingZeros&&r.length>0&&!i&&"."!==n[1])return t;{const s=Number(n),l=""+s;return-1!==l.search(/[eE]/)||a?e.eNotation?s:t:-1!==n.indexOf(".")?"0"===l&&""===o||l===o||i&&l==="-"+o?s:t:r?o===l||i+o===l?s:t:n===l||n===i+l?s:t}}return t}};function Tt(t){const e=Object.keys(t);for(let n=0;n<e.length;n++){const s=e[n];this.lastEntities[s]={regex:new RegExp("&"+s+";","g"),val:t[s]}}}function kt(t,e,n,s,i,r,o){if(void 0!==t&&(this.options.trimValues&&!s&&(t=t.trim()),t.length>0)){o||(t=this.replaceEntitiesValue(t));const s=this.options.tagValueProcessor(e,t,n,i,r);return null==s?t:typeof s!=typeof t||s!==t?s:this.options.trimValues||t.trim()===t?jt(t,this.options.parseTagValue,this.options.numberParseOptions):t}}function Et(t){if(this.options.removeNSPrefix){const e=t.split(":"),n="/"===t.charAt(0)?"/":"";if("xmlns"===e[0])return"";2===e.length&&(t=n+e[1])}return t}const St=new RegExp("([^\\s=]+)\\s*(=\\s*(['\"])([\\s\\S]*?)\\3)?","gm");function Lt(t,e,n){if(!this.options.ignoreAttributes&&"string"==typeof t){const n=bt.getAllMatches(t,St),s=n.length,i={};for(let t=0;t<s;t++){const s=this.resolveNameSpace(n[t][1]);let r=n[t][4],o=this.options.attributeNamePrefix+s;if(s.length)if(this.options.transformAttributeName&&(o=this.options.transformAttributeName(o)),"__proto__"===o&&(o="#__proto__"),void 0!==r){this.options.trimValues&&(r=r.trim()),r=this.replaceEntitiesValue(r);const t=this.options.attributeValueProcessor(s,r,e);i[o]=null==t?r:typeof t!=typeof r||t!==r?t:jt(r,this.options.parseAttributeValue,this.options.numberParseOptions)}else this.options.allowBooleanAttributes&&(i[o]=!0)}if(!Object.keys(i).length)return;if(this.options.attributesGroupName){const t={};return t[this.options.attributesGroupName]=i,t}return i}}const Nt=function(t){t=t.replace(/\r\n?/g,"\n");const e=new Ct("!xml");let n=e,s="",i="";for(let r=0;r<t.length;r++)if("<"===t[r])if("/"===t[r+1]){const e=Ot(t,">",r,"Closing Tag is not closed.");let o=t.substring(r+2,e).trim();if(this.options.removeNSPrefix){const t=o.indexOf(":");-1!==t&&(o=o.substr(t+1))}this.options.transformTagName&&(o=this.options.transformTagName(o)),n&&(s=this.saveTextToParentTag(s,n,i));const a=i.substring(i.lastIndexOf(".")+1);if(o&&-1!==this.options.unpairedTags.indexOf(o))throw new Error(`Unpaired tag can not be used as closing tag: </${o}>`);let l=0;a&&-1!==this.options.unpairedTags.indexOf(a)?(l=i.lastIndexOf(".",i.lastIndexOf(".")-1),this.tagsNodeStack.pop()):l=i.lastIndexOf("."),i=i.substring(0,l),n=this.tagsNodeStack.pop(),s="",r=e}else if("?"===t[r+1]){let e=Dt(t,r,!1,"?>");if(!e)throw new Error("Pi Tag is not closed.");if(s=this.saveTextToParentTag(s,n,i),!(this.options.ignoreDeclaration&&"?xml"===e.tagName||this.options.ignorePiTags)){const t=new Ct(e.tagName);t.add(this.options.textNodeName,""),e.tagName!==e.tagExp&&e.attrExpPresent&&(t[":@"]=this.buildAttributesMap(e.tagExp,i,e.tagName)),this.addChild(n,t,i)}r=e.closeIndex+1}else if("!--"===t.substr(r+1,3)){const e=Ot(t,"--\x3e",r+4,"Comment is not closed.");if(this.options.commentPropName){const o=t.substring(r+4,e-2);s=this.saveTextToParentTag(s,n,i),n.add(this.options.commentPropName,[{[this.options.textNodeName]:o}])}r=e}else if("!D"===t.substr(r+1,2)){const e=xt(t,r);this.docTypeEntities=e.entities,r=e.i}else if("!["===t.substr(r+1,2)){const e=Ot(t,"]]>",r,"CDATA is not closed.")-2,o=t.substring(r+9,e);s=this.saveTextToParentTag(s,n,i);let a=this.parseTextData(o,n.tagname,i,!0,!1,!0,!0);null==a&&(a=""),this.options.cdataPropName?n.add(this.options.cdataPropName,[{[this.options.textNodeName]:o}]):n.add(this.options.textNodeName,a),r=e+2}else{let o=Dt(t,r,this.options.removeNSPrefix),a=o.tagName;const l=o.rawTagName;let c=o.tagExp,d=o.attrExpPresent,u=o.closeIndex;this.options.transformTagName&&(a=this.options.transformTagName(a)),n&&s&&"!xml"!==n.tagname&&(s=this.saveTextToParentTag(s,n,i,!1));const m=n;if(m&&-1!==this.options.unpairedTags.indexOf(m.tagname)&&(n=this.tagsNodeStack.pop(),i=i.substring(0,i.lastIndexOf("."))),a!==e.tagname&&(i+=i?"."+a:a),this.isItStopNode(this.options.stopNodes,i,a)){let e="";if(c.length>0&&c.lastIndexOf("/")===c.length-1)r=o.closeIndex;else if(-1!==this.options.unpairedTags.indexOf(a))r=o.closeIndex;else{const n=this.readStopNodeData(t,l,u+1);if(!n)throw new Error(`Unexpected end of ${l}`);r=n.i,e=n.tagContent}const s=new Ct(a);a!==c&&d&&(s[":@"]=this.buildAttributesMap(c,i,a)),e&&(e=this.parseTextData(e,a,i,!0,d,!0,!0)),i=i.substr(0,i.lastIndexOf(".")),s.add(this.options.textNodeName,e),this.addChild(n,s,i)}else{if(c.length>0&&c.lastIndexOf("/")===c.length-1){"/"===a[a.length-1]?(a=a.substr(0,a.length-1),i=i.substr(0,i.length-1),c=a):c=c.substr(0,c.length-1),this.options.transformTagName&&(a=this.options.transformTagName(a));const t=new Ct(a);a!==c&&d&&(t[":@"]=this.buildAttributesMap(c,i,a)),this.addChild(n,t,i),i=i.substr(0,i.lastIndexOf("."))}else{const t=new Ct(a);this.tagsNodeStack.push(n),a!==c&&d&&(t[":@"]=this.buildAttributesMap(c,i,a)),this.addChild(n,t,i),n=t}s="",r=u}}else s+=t[r];return e.child};function It(t,e,n){const s=this.options.updateTag(e.tagname,n,e[":@"]);!1===s||("string"==typeof s&&(e.tagname=s),t.addChild(e))}const Ft=function(t){if(this.options.processEntities){for(let e in this.docTypeEntities){const n=this.docTypeEntities[e];t=t.replace(n.regx,n.val)}for(let e in this.lastEntities){const n=this.lastEntities[e];t=t.replace(n.regex,n.val)}if(this.options.htmlEntities)for(let e in this.htmlEntities){const n=this.htmlEntities[e];t=t.replace(n.regex,n.val)}t=t.replace(this.ampEntity.regex,this.ampEntity.val)}return t};function Pt(t,e,n,s){return t&&(void 0===s&&(s=0===Object.keys(e.child).length),void 0!==(t=this.parseTextData(t,e.tagname,n,!1,!!e[":@"]&&0!==Object.keys(e[":@"]).length,s))&&""!==t&&e.add(this.options.textNodeName,t),t=""),t}function Bt(t,e,n){const s="*."+n;for(const n in t){const i=t[n];if(s===i||e===i)return!0}return!1}function Ot(t,e,n,s){const i=t.indexOf(e,n);if(-1===i)throw new Error(s);return i+e.length-1}function Dt(t,e,n,s=">"){const i=function(t,e,n=">"){let s,i="";for(let r=e;r<t.length;r++){let e=t[r];if(s)e===s&&(s="");else if('"'===e||"'"===e)s=e;else if(e===n[0]){if(!n[1])return{data:i,index:r};if(t[r+1]===n[1])return{data:i,index:r}}else"\t"===e&&(e=" ");i+=e}}(t,e+1,s);if(!i)return;let r=i.data;const o=i.index,a=r.search(/\s/);let l=r,c=!0;-1!==a&&(l=r.substring(0,a),r=r.substring(a+1).trimStart());const d=l;if(n){const t=l.indexOf(":");-1!==t&&(l=l.substr(t+1),c=l!==i.data.substr(t+1))}return{tagName:l,tagExp:r,closeIndex:o,attrExpPresent:c,rawTagName:d}}function Ut(t,e,n){const s=n;let i=1;for(;n<t.length;n++)if("<"===t[n])if("/"===t[n+1]){const r=Ot(t,">",n,`${e} is not closed`);if(t.substring(n+2,r).trim()===e&&(i--,0===i))return{tagContent:t.substring(s,n),i:r};n=r}else if("?"===t[n+1])n=Ot(t,"?>",n+1,"StopNode is not closed.");else if("!--"===t.substr(n+1,3))n=Ot(t,"--\x3e",n+3,"StopNode is not closed.");else if("!["===t.substr(n+1,2))n=Ot(t,"]]>",n,"StopNode is not closed.")-2;else{const s=Dt(t,n,">");s&&((s&&s.tagName)===e&&"/"!==s.tagExp[s.tagExp.length-1]&&i++,n=s.closeIndex)}}function jt(t,e,n){if(e&&"string"==typeof t){const e=t.trim();return"true"===e||"false"!==e&&_t(t,n)}return bt.isExist(t)?t:""}var zt={};function Mt(t,e,n){let s;const i={};for(let r=0;r<t.length;r++){const o=t[r],a=Rt(o);let l="";if(l=void 0===n?a:n+"."+a,a===e.textNodeName)void 0===s?s=o[a]:s+=""+o[a];else{if(void 0===a)continue;if(o[a]){let t=Mt(o[a],e,l);const n=$t(t,e);o[":@"]?Vt(t,o[":@"],l,e):1!==Object.keys(t).length||void 0===t[e.textNodeName]||e.alwaysCreateTextNode?0===Object.keys(t).length&&(e.alwaysCreateTextNode?t[e.textNodeName]="":t=""):t=t[e.textNodeName],void 0!==i[a]&&i.hasOwnProperty(a)?(Array.isArray(i[a])||(i[a]=[i[a]]),i[a].push(t)):e.isArray(a,l,n)?i[a]=[t]:i[a]=t}}}return"string"==typeof s?s.length>0&&(i[e.textNodeName]=s):void 0!==s&&(i[e.textNodeName]=s),i}function Rt(t){const e=Object.keys(t);for(let t=0;t<e.length;t++){const n=e[t];if(":@"!==n)return n}}function Vt(t,e,n,s){if(e){const i=Object.keys(e),r=i.length;for(let o=0;o<r;o++){const r=i[o];s.isArray(r,n+"."+r,!0,!0)?t[r]=[e[r]]:t[r]=e[r]}}}function $t(t,e){const{textNodeName:n}=e,s=Object.keys(t).length;return!(0!==s&&(1!==s||!t[n]&&"boolean"!=typeof t[n]&&0!==t[n]))}zt.prettify=function(t,e){return Mt(t,e)};const{buildOptions:qt}=lt,Ht=class{constructor(t){this.options=t,this.currentNode=null,this.tagsNodeStack=[],this.docTypeEntities={},this.lastEntities={apos:{regex:/&(apos|#39|#x27);/g,val:"'"},gt:{regex:/&(gt|#62|#x3E);/g,val:">"},lt:{regex:/&(lt|#60|#x3C);/g,val:"<"},quot:{regex:/&(quot|#34|#x22);/g,val:'"'}},this.ampEntity={regex:/&(amp|#38|#x26);/g,val:"&"},this.htmlEntities={space:{regex:/&(nbsp|#160);/g,val:" "},cent:{regex:/&(cent|#162);/g,val:"¢"},pound:{regex:/&(pound|#163);/g,val:"£"},yen:{regex:/&(yen|#165);/g,val:"¥"},euro:{regex:/&(euro|#8364);/g,val:"€"},copyright:{regex:/&(copy|#169);/g,val:"©"},reg:{regex:/&(reg|#174);/g,val:"®"},inr:{regex:/&(inr|#8377);/g,val:"₹"}},this.addExternalEntities=Tt,this.parseXml=Nt,this.parseTextData=kt,this.resolveNameSpace=Et,this.buildAttributesMap=Lt,this.isItStopNode=Bt,this.replaceEntitiesValue=Ft,this.readStopNodeData=Ut,this.saveTextToParentTag=Pt,this.addChild=It}},{prettify:Wt}=zt,Gt=q;function Yt(t,e,n,s){let i="",r=!1;for(let o=0;o<t.length;o++){const a=t[o],l=Kt(a);if(void 0===l)continue;let c="";if(c=0===n.length?l:`${n}.${l}`,l===e.textNodeName){let t=a[l];Xt(c,e)||(t=e.tagValueProcessor(l,t),t=Jt(t,e)),r&&(i+=s),i+=t,r=!1;continue}if(l===e.cdataPropName){r&&(i+=s),i+=`<![CDATA[${a[l][0][e.textNodeName]}]]>`,r=!1;continue}if(l===e.commentPropName){i+=s+`\x3c!--${a[l][0][e.textNodeName]}--\x3e`,r=!0;continue}if("?"===l[0]){const t=Qt(a[":@"],e),n="?xml"===l?"":s;let o=a[l][0][e.textNodeName];o=0!==o.length?" "+o:"",i+=n+`<${l}${o}${t}?>`,r=!0;continue}let d=s;""!==d&&(d+=e.indentBy);const u=s+`<${l}${Qt(a[":@"],e)}`,m=Yt(a[l],e,c,d);-1!==e.unpairedTags.indexOf(l)?e.suppressUnpairedNode?i+=u+">":i+=u+"/>":m&&0!==m.length||!e.suppressEmptyNode?m&&m.endsWith(">")?i+=u+`>${m}${s}</${l}>`:(i+=u+">",m&&""!==s&&(m.includes("/>")||m.includes("</"))?i+=s+e.indentBy+m+s:i+=m,i+=`</${l}>`):i+=u+"/>",r=!0}return i}function Kt(t){const e=Object.keys(t);for(let n=0;n<e.length;n++){const s=e[n];if(t.hasOwnProperty(s)&&":@"!==s)return s}}function Qt(t,e){let n="";if(t&&!e.ignoreAttributes)for(let s in t){if(!t.hasOwnProperty(s))continue;let i=e.attributeValueProcessor(s,t[s]);i=Jt(i,e),!0===i&&e.suppressBooleanAttributes?n+=` ${s.substr(e.attributeNamePrefix.length)}`:n+=` ${s.substr(e.attributeNamePrefix.length)}="${i}"`}return n}function Xt(t,e){let n=(t=t.substr(0,t.length-e.textNodeName.length-1)).substr(t.lastIndexOf(".")+1);for(let s in e.stopNodes)if(e.stopNodes[s]===t||e.stopNodes[s]==="*."+n)return!0;return!1}function Jt(t,e){if(t&&t.length>0&&e.processEntities)for(let n=0;n<e.entities.length;n++){const s=e.entities[n];t=t.replace(s.regex,s.val)}return t}const Zt=function(t,e){let n="";return e.format&&e.indentBy.length>0&&(n="\n"),Yt(t,e,"",n)},te={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,cdataPropName:!1,format:!1,indentBy:" ",suppressEmptyNode:!1,suppressUnpairedNode:!0,suppressBooleanAttributes:!0,tagValueProcessor:function(t,e){return e},attributeValueProcessor:function(t,e){return e},preserveOrder:!1,commentPropName:!1,unpairedTags:[],entities:[{regex:new RegExp("&","g"),val:"&amp;"},{regex:new RegExp(">","g"),val:"&gt;"},{regex:new RegExp("<","g"),val:"&lt;"},{regex:new RegExp("'","g"),val:"&apos;"},{regex:new RegExp('"',"g"),val:"&quot;"}],processEntities:!0,stopNodes:[],oneListGroup:!1};function ee(t){this.options=Object.assign({},te,t),this.options.ignoreAttributes||this.options.attributesGroupName?this.isAttribute=function(){return!1}:(this.attrPrefixLen=this.options.attributeNamePrefix.length,this.isAttribute=ie),this.processTextOrObjNode=ne,this.options.format?(this.indentate=se,this.tagEndChar=">\n",this.newLine="\n"):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}function ne(t,e,n){const s=this.j2x(t,n+1);return void 0!==t[this.options.textNodeName]&&1===Object.keys(t).length?this.buildTextValNode(t[this.options.textNodeName],e,s.attrStr,n):this.buildObjectNode(s.val,e,s.attrStr,n)}function se(t){return this.options.indentBy.repeat(t)}function ie(t){return!(!t.startsWith(this.options.attributeNamePrefix)||t===this.options.textNodeName)&&t.substr(this.attrPrefixLen)}ee.prototype.build=function(t){return this.options.preserveOrder?Zt(t,this.options):(Array.isArray(t)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(t={[this.options.arrayNodeName]:t}),this.j2x(t,0).val)},ee.prototype.j2x=function(t,e){let n="",s="";for(let i in t)if(Object.prototype.hasOwnProperty.call(t,i))if(typeof t[i]>"u")this.isAttribute(i)&&(s+="");else if(null===t[i])this.isAttribute(i)?s+="":"?"===i[0]?s+=this.indentate(e)+"<"+i+"?"+this.tagEndChar:s+=this.indentate(e)+"<"+i+"/"+this.tagEndChar;else if(t[i]instanceof Date)s+=this.buildTextValNode(t[i],i,"",e);else if("object"!=typeof t[i]){const r=this.isAttribute(i);if(r)n+=this.buildAttrPairStr(r,""+t[i]);else if(i===this.options.textNodeName){let e=this.options.tagValueProcessor(i,""+t[i]);s+=this.replaceEntitiesValue(e)}else s+=this.buildTextValNode(t[i],i,"",e)}else if(Array.isArray(t[i])){const n=t[i].length;let r="";for(let o=0;o<n;o++){const n=t[i][o];typeof n>"u"||(null===n?"?"===i[0]?s+=this.indentate(e)+"<"+i+"?"+this.tagEndChar:s+=this.indentate(e)+"<"+i+"/"+this.tagEndChar:"object"==typeof n?this.options.oneListGroup?r+=this.j2x(n,e+1).val:r+=this.processTextOrObjNode(n,i,e):r+=this.buildTextValNode(n,i,"",e))}this.options.oneListGroup&&(r=this.buildObjectNode(r,i,"",e)),s+=r}else if(this.options.attributesGroupName&&i===this.options.attributesGroupName){const e=Object.keys(t[i]),s=e.length;for(let r=0;r<s;r++)n+=this.buildAttrPairStr(e[r],""+t[i][e[r]])}else s+=this.processTextOrObjNode(t[i],i,e);return{attrStr:n,val:s}},ee.prototype.buildAttrPairStr=function(t,e){return e=this.options.attributeValueProcessor(t,""+e),e=this.replaceEntitiesValue(e),this.options.suppressBooleanAttributes&&"true"===e?" "+t:" "+t+'="'+e+'"'},ee.prototype.buildObjectNode=function(t,e,n,s){if(""===t)return"?"===e[0]?this.indentate(s)+"<"+e+n+"?"+this.tagEndChar:this.indentate(s)+"<"+e+n+this.closeTag(e)+this.tagEndChar;{let i="</"+e+this.tagEndChar,r="";return"?"===e[0]&&(r="?",i=""),!n&&""!==n||-1!==t.indexOf("<")?!1!==this.options.commentPropName&&e===this.options.commentPropName&&0===r.length?this.indentate(s)+`\x3c!--${t}--\x3e`+this.newLine:this.indentate(s)+"<"+e+n+r+this.tagEndChar+t+this.indentate(s)+i:this.indentate(s)+"<"+e+n+r+">"+t+i}},ee.prototype.closeTag=function(t){let e="";return-1!==this.options.unpairedTags.indexOf(t)?this.options.suppressUnpairedNode||(e="/"):e=this.options.suppressEmptyNode?"/":`></${t}`,e},ee.prototype.buildTextValNode=function(t,e,n,s){if(!1!==this.options.cdataPropName&&e===this.options.cdataPropName)return this.indentate(s)+`<![CDATA[${t}]]>`+this.newLine;if(!1!==this.options.commentPropName&&e===this.options.commentPropName)return this.indentate(s)+`\x3c!--${t}--\x3e`+this.newLine;if("?"===e[0])return this.indentate(s)+"<"+e+n+"?"+this.tagEndChar;{let i=this.options.tagValueProcessor(e,t);return i=this.replaceEntitiesValue(i),""===i?this.indentate(s)+"<"+e+n+this.closeTag(e)+this.tagEndChar:this.indentate(s)+"<"+e+n+">"+i+"</"+e+this.tagEndChar}},ee.prototype.replaceEntitiesValue=function(t){if(t&&t.length>0&&this.options.processEntities)for(let e=0;e<this.options.entities.length;e++){const n=this.options.entities[e];t=t.replace(n.regex,n.val)}return t};var re={XMLParser:class{constructor(t){this.externalEntities={},this.options=qt(t)}parse(t,e){if("string"!=typeof t){if(!t.toString)throw new Error("XML data is accepted in String or Bytes[] form.");t=t.toString()}if(e){!0===e&&(e={});const n=Gt.validate(t,e);if(!0!==n)throw Error(`${n.err.msg}:${n.err.line}:${n.err.col}`)}const n=new Ht(this.options);n.addExternalEntities(this.externalEntities);const s=n.parseXml(t);return this.options.preserveOrder||void 0===s?s:Wt(s,this.options)}addEntity(t,e){if(-1!==e.indexOf("&"))throw new Error("Entity value can't have '&'");if(-1!==t.indexOf("&")||-1!==t.indexOf(";"))throw new Error("An entity must be set without '&' and ';'. Eg. use '#xD' for '&#xD;'");if("&"===e)throw new Error("An entity with value '&' is not permitted");this.externalEntities[t]=e}},XMLValidator:q,XMLBuilder:ee};class oe{_view;constructor(t){ae(t),this._view=t}get id(){return this._view.id}get name(){return this._view.name}get caption(){return this._view.caption}get emptyTitle(){return this._view.emptyTitle}get emptyCaption(){return this._view.emptyCaption}get getContents(){return this._view.getContents}get icon(){return this._view.icon}set icon(t){this._view.icon=t}get order(){return this._view.order}set order(t){this._view.order=t}get params(){return this._view.params}set params(t){this._view.params=t}get columns(){return this._view.columns}get emptyView(){return this._view.emptyView}get parent(){return this._view.parent}get sticky(){return this._view.sticky}get expanded(){return this._view.expanded}set expanded(t){this._view.expanded=t}get defaultSortKey(){return this._view.defaultSortKey}}const ae=function(t){if(!t.id||"string"!=typeof t.id)throw new Error("View id is required and must be a string");if(!t.name||"string"!=typeof t.name)throw new Error("View name is required and must be a string");if(t.columns&&t.columns.length>0&&(!t.caption||"string"!=typeof t.caption))throw new Error("View caption is required for top-level views and must be a string");if(!t.getContents||"function"!=typeof t.getContents)throw new Error("View getContents is required and must be a function");if(!t.icon||"string"!=typeof t.icon||!function(t){if("string"!=typeof t)throw new TypeError(`Expected a \`string\`, got \`${typeof t}\``);if(0===(t=t.trim()).length||!0!==re.XMLValidator.validate(t))return!1;let e;const n=new re.XMLParser;try{e=n.parse(t)}catch{return!1}return!(!e||!("svg"in e))}(t.icon))throw new Error("View icon is required and must be a valid svg string");if(!("order"in t)||"number"!=typeof t.order)throw new Error("View order is required and must be a number");if(t.columns&&t.columns.forEach((t=>{if(!(t instanceof V))throw new Error("View columns must be an array of Column. Invalid column found")})),t.emptyView&&"function"!=typeof t.emptyView)throw new Error("View emptyView must be a function");if(t.parent&&"string"!=typeof t.parent)throw new Error("View parent must be a string");if("sticky"in t&&"boolean"!=typeof t.sticky)throw new Error("View sticky must be a boolean");if("expanded"in t&&"boolean"!=typeof t.expanded)throw new Error("View expanded must be a boolean");if(t.defaultSortKey&&"string"!=typeof t.defaultSortKey)throw new Error("View defaultSortKey must be a string");return!0},le=function(t){return(typeof window._nc_newfilemenu>"u"&&(window._nc_newfilemenu=new m,d.debug("NewFileMenu initialized")),window._nc_newfilemenu).getEntries(t).sort(((t,e)=>void 0!==t.order&&void 0!==e.order&&t.order!==e.order?t.order-e.order:t.displayName.localeCompare(e.displayName,void 0,{numeric:!0,sensitivity:"base"})))}},82606:(t,e,n)=>{"use strict";n.d(e,{U:()=>ut,a:()=>lt,c:()=>Q,g:()=>pt,h:()=>gt,l:()=>J,n:()=>nt,o:()=>ft,t:()=>ct});var s=n(85072),i=n.n(s),r=n(97825),o=n.n(r),a=n(77659),l=n.n(a),c=n(55056),d=n.n(c),u=n(10540),m=n.n(u),p=n(41113),f=n.n(p),g=n(61872),h={};h.styleTagTransform=f(),h.setAttributes=d(),h.insert=l().bind(null,"head"),h.domAPI=o(),h.insertStyleElement=m(),i()(g.A,h),g.A&&g.A.locals&&g.A.locals;var v=n(53110),A=n(71089),w=n(35810),y=n(88164),b=n(92457),C=n(26287);class x extends Error{constructor(t){super(t||"Promise was canceled"),this.name="CancelError"}get isCanceled(){return!0}}const _=Object.freeze({pending:Symbol("pending"),canceled:Symbol("canceled"),resolved:Symbol("resolved"),rejected:Symbol("rejected")});class T{static fn(t){return(...e)=>new T(((n,s,i)=>{e.push(i),t(...e).then(n,s)}))}#t=[];#e=!0;#n=_.pending;#s;#i;constructor(t){this.#s=new Promise(((e,n)=>{this.#i=n;const s=t=>{if(this.#n!==_.pending)throw new Error(`The \`onCancel\` handler was attached after the promise ${this.#n.description}.`);this.#t.push(t)};Object.defineProperties(s,{shouldReject:{get:()=>this.#e,set:t=>{this.#e=t}}}),t((t=>{this.#n===_.canceled&&s.shouldReject||(e(t),this.#r(_.resolved))}),(t=>{this.#n===_.canceled&&s.shouldReject||(n(t),this.#r(_.rejected))}),s)}))}then(t,e){return this.#s.then(t,e)}catch(t){return this.#s.catch(t)}finally(t){return this.#s.finally(t)}cancel(t){if(this.#n===_.pending){if(this.#r(_.canceled),this.#t.length>0)try{for(const t of this.#t)t()}catch(t){return void this.#i(t)}this.#e&&this.#i(new x(t))}}get isCanceled(){return this.#n===_.canceled}#r(t){this.#n===_.pending&&(this.#n=t)}}Object.setPrototypeOf(T.prototype,Promise.prototype);var k=n(9052);class E extends Error{constructor(t){super(t),this.name="TimeoutError"}}class S extends Error{constructor(t){super(),this.name="AbortError",this.message=t}}const L=t=>void 0===globalThis.DOMException?new S(t):new DOMException(t),N=t=>{const e=void 0===t.reason?L("This operation was aborted."):t.reason;return e instanceof Error?e:L(e)};class I{#o=[];enqueue(t,e){const n={priority:(e={priority:0,...e}).priority,run:t};if(this.size&&this.#o[this.size-1].priority>=e.priority)return void this.#o.push(n);const s=function(t,e,n){let s=0,i=t.length;for(;i>0;){const n=Math.trunc(i/2);let o=s+n;r=t[o],e.priority-r.priority<=0?(s=++o,i-=n+1):i=n}var r;return s}(this.#o,n);this.#o.splice(s,0,n)}dequeue(){const t=this.#o.shift();return t?.run}filter(t){return this.#o.filter((e=>e.priority===t.priority)).map((t=>t.run))}get size(){return this.#o.length}}class F extends k{#a;#l;#c=0;#d;#u;#m=0;#p;#f;#o;#g;#h=0;#v;#A;#w;timeout;constructor(t){if(super(),!("number"==typeof(t={carryoverConcurrencyCount:!1,intervalCap:Number.POSITIVE_INFINITY,interval:0,concurrency:Number.POSITIVE_INFINITY,autoStart:!0,queueClass:I,...t}).intervalCap&&t.intervalCap>=1))throw new TypeError(`Expected \`intervalCap\` to be a number from 1 and up, got \`${t.intervalCap?.toString()??""}\` (${typeof t.intervalCap})`);if(void 0===t.interval||!(Number.isFinite(t.interval)&&t.interval>=0))throw new TypeError(`Expected \`interval\` to be a finite number >= 0, got \`${t.interval?.toString()??""}\` (${typeof t.interval})`);this.#a=t.carryoverConcurrencyCount,this.#l=t.intervalCap===Number.POSITIVE_INFINITY||0===t.interval,this.#d=t.intervalCap,this.#u=t.interval,this.#o=new t.queueClass,this.#g=t.queueClass,this.concurrency=t.concurrency,this.timeout=t.timeout,this.#w=!0===t.throwOnTimeout,this.#A=!1===t.autoStart}get#y(){return this.#l||this.#c<this.#d}get#b(){return this.#h<this.#v}#C(){this.#h--,this.#x(),this.emit("next")}#_(){this.#T(),this.#k(),this.#f=void 0}get#E(){const t=Date.now();if(void 0===this.#p){const e=this.#m-t;if(!(e<0))return void 0===this.#f&&(this.#f=setTimeout((()=>{this.#_()}),e)),!0;this.#c=this.#a?this.#h:0}return!1}#x(){if(0===this.#o.size)return this.#p&&clearInterval(this.#p),this.#p=void 0,this.emit("empty"),0===this.#h&&this.emit("idle"),!1;if(!this.#A){const t=!this.#E;if(this.#y&&this.#b){const e=this.#o.dequeue();return!!e&&(this.emit("active"),e(),t&&this.#k(),!0)}}return!1}#k(){this.#l||void 0!==this.#p||(this.#p=setInterval((()=>{this.#T()}),this.#u),this.#m=Date.now()+this.#u)}#T(){0===this.#c&&0===this.#h&&this.#p&&(clearInterval(this.#p),this.#p=void 0),this.#c=this.#a?this.#h:0,this.#S()}#S(){for(;this.#x(););}get concurrency(){return this.#v}set concurrency(t){if(!("number"==typeof t&&t>=1))throw new TypeError(`Expected \`concurrency\` to be a number from 1 and up, got \`${t}\` (${typeof t})`);this.#v=t,this.#S()}async#L(t){return new Promise(((e,n)=>{t.addEventListener("abort",(()=>{n(t.reason)}),{once:!0})}))}async add(t,e={}){return e={timeout:this.timeout,throwOnTimeout:this.#w,...e},new Promise(((n,s)=>{this.#o.enqueue((async()=>{this.#h++,this.#c++;try{e.signal?.throwIfAborted();let s=t({signal:e.signal});e.timeout&&(s=function(t,e){const{milliseconds:n,fallback:s,message:i,customTimers:r={setTimeout,clearTimeout}}=e;let o;const a=new Promise(((a,l)=>{if("number"!=typeof n||1!==Math.sign(n))throw new TypeError(`Expected \`milliseconds\` to be a positive number, got \`${n}\``);if(e.signal){const{signal:t}=e;t.aborted&&l(N(t)),t.addEventListener("abort",(()=>{l(N(t))}))}if(n===Number.POSITIVE_INFINITY)return void t.then(a,l);const c=new E;o=r.setTimeout.call(void 0,(()=>{if(s)try{a(s())}catch(t){l(t)}else"function"==typeof t.cancel&&t.cancel(),!1===i?a():i instanceof Error?l(i):(c.message=i??`Promise timed out after ${n} milliseconds`,l(c))}),n),(async()=>{try{a(await t)}catch(t){l(t)}})()})).finally((()=>{a.clear()}));return a.clear=()=>{r.clearTimeout.call(void 0,o),o=void 0},a}(Promise.resolve(s),{milliseconds:e.timeout})),e.signal&&(s=Promise.race([s,this.#L(e.signal)]));const i=await s;n(i),this.emit("completed",i)}catch(t){if(t instanceof E&&!e.throwOnTimeout)return void n();s(t),this.emit("error",t)}finally{this.#C()}}),e),this.emit("add"),this.#x()}))}async addAll(t,e){return Promise.all(t.map((async t=>this.add(t,e))))}start(){return this.#A?(this.#A=!1,this.#S(),this):this}pause(){this.#A=!0}clear(){this.#o=new this.#g}async onEmpty(){0!==this.#o.size&&await this.#N("empty")}async onSizeLessThan(t){this.#o.size<t||await this.#N("next",(()=>this.#o.size<t))}async onIdle(){0===this.#h&&0===this.#o.size||await this.#N("idle")}async#N(t,e){return new Promise((n=>{const s=()=>{e&&!e()||(this.off(t,s),n())};this.on(t,s)}))}get size(){return this.#o.size}sizeBy(t){return this.#o.filter(t).length}get pending(){return this.#h}get isPaused(){return this.#A}}var P=n(98959);const B=(t,e,n)=>t.bind(n);var O=n(53529),D=n(85168),U=n(75270),j=n(85471),z=n(63420),M=n(24764),R=n(9518),V=n(6695),$=n(95101),q=n(11195);const H=function(t){if(!Number.isInteger(1)&&1!==Number.POSITIVE_INFINITY)throw new TypeError("Expected `concurrency` to be a number from 1 and up");const e=new P.A;let n=0;const s=async(t,s,i)=>{n++;const r=(async()=>t(...i))();s(r);try{await r}catch{}n--,e.size>0&&e.dequeue()()},i=(t,...i)=>new Promise((r=>{((t,i,r)=>{e.enqueue(B(s.bind(void 0,t,i,r))),(async()=>{await Promise.resolve(),n<1&&e.size>0&&e.dequeue()()})()})(t,r,i)}));return Object.defineProperties(i,{activeCount:{get:()=>n},pendingCount:{get:()=>e.size},clearQueue:{value(){e.clear()}}}),i}(),W=new FileReader,G=async function(t,e,n,s=(()=>{}),i=void 0,r={}){let o;return o=e instanceof Blob?e:await e(),i&&(r.Destination=i),r["Content-Type"]||(r["Content-Type"]="application/octet-stream"),await C.A.request({method:"PUT",url:t,data:o,signal:n,onUploadProgress:s,headers:r})},Y=function(t,e,n){return 0===e&&t.size<=n?Promise.resolve(new Blob([t],{type:t.type||"application/octet-stream"})):H((()=>new Promise(((s,i)=>{W.onload=()=>{null!==W.result&&s(new Blob([W.result],{type:"application/octet-stream"})),i(new Error("Error while reading the file"))},W.readAsArrayBuffer(t.slice(e,e+n))}))))},K=function(t=void 0){const e=window.OC?.appConfig?.files?.max_chunk_size;if(e<=0)return 0;if(!Number(e))return 10485760;const n=Math.max(Number(e),5242880);return void 0===t?n:Math.max(n,Math.ceil(t/1e4))};var Q=(t=>(t[t.INITIALIZED=0]="INITIALIZED",t[t.UPLOADING=1]="UPLOADING",t[t.ASSEMBLING=2]="ASSEMBLING",t[t.FINISHED=3]="FINISHED",t[t.CANCELLED=4]="CANCELLED",t[t.FAILED=5]="FAILED",t))(Q||{});let X=class{_source;_file;_isChunked;_chunks;_size;_uploaded=0;_startTime=0;_status=0;_controller;_response=null;constructor(t,e=!1,n,s){const i=Math.min(K()>0?Math.ceil(n/K()):1,1e4);this._source=t,this._isChunked=e&&K()>0&&i>1,this._chunks=this._isChunked?i:1,this._size=n,this._file=s,this._controller=new AbortController}get source(){return this._source}get file(){return this._file}get isChunked(){return this._isChunked}get chunks(){return this._chunks}get size(){return this._size}get startTime(){return this._startTime}set response(t){this._response=t}get response(){return this._response}get uploaded(){return this._uploaded}set uploaded(t){if(t>=this._size)return this._status=this._isChunked?2:3,void(this._uploaded=this._size);this._status=1,this._uploaded=t,0===this._startTime&&(this._startTime=(new Date).getTime())}get status(){return this._status}set status(t){this._status=t}get signal(){return this._controller.signal}cancel(){this._controller.abort(),this._status=4}};const J=null===(Z=(0,b.HW)())?(0,O.YK)().setApp("uploader").build():(0,O.YK)().setApp("uploader").setUid(Z.uid).build();var Z,tt=(t=>(t[t.IDLE=0]="IDLE",t[t.UPLOADING=1]="UPLOADING",t[t.PAUSED=2]="PAUSED",t))(tt||{});class et{_destinationFolder;_isPublic;_uploadQueue=[];_jobQueue=new F({concurrency:3});_queueSize=0;_queueProgress=0;_queueStatus=0;_notifiers=[];constructor(t=!1,e){if(this._isPublic=t,!e){const t=(0,b.HW)()?.uid,n=(0,y.dC)(`dav/files/${t}`);if(!t)throw new Error("User is not logged in");e=new w.vd({id:0,owner:t,permissions:w.aX.ALL,root:`/files/${t}`,source:n})}this.destination=e,J.debug("Upload workspace initialized",{destination:this.destination,root:this.root,isPublic:t,maxChunksSize:K()})}get destination(){return this._destinationFolder}set destination(t){if(!t)throw new Error("Invalid destination folder");J.debug("Destination set",{folder:t}),this._destinationFolder=t}get root(){return this._destinationFolder.source}get queue(){return this._uploadQueue}reset(){this._uploadQueue.splice(0,this._uploadQueue.length),this._jobQueue.clear(),this._queueSize=0,this._queueProgress=0,this._queueStatus=0}pause(){this._jobQueue.pause(),this._queueStatus=2}start(){this._jobQueue.start(),this._queueStatus=1,this.updateStats()}get info(){return{size:this._queueSize,progress:this._queueProgress,status:this._queueStatus}}updateStats(){const t=this._uploadQueue.map((t=>t.size)).reduce(((t,e)=>t+e),0),e=this._uploadQueue.map((t=>t.uploaded)).reduce(((t,e)=>t+e),0);this._queueSize=t,this._queueProgress=e,2!==this._queueStatus&&(this._queueStatus=this._jobQueue.size>0?1:0)}addNotifier(t){this._notifiers.push(t)}upload(t,e,n){const s=`${n||this.root}/${t.replace(/^\//,"")}`,{origin:i}=new URL(s),r=i+(0,A.O0)(s.slice(i.length));J.debug(`Uploading ${e.name} to ${r}`);const o=K(e.size),a=0===o||e.size<o||this._isPublic,l=new X(s,!a,e.size,e);return this._uploadQueue.push(l),this.updateStats(),new T((async(t,n,s)=>{if(s(l.cancel),a){J.debug("Initializing regular upload",{file:e,upload:l});const s=await Y(e,0,l.size),i=async()=>{try{l.response=await G(r,s,l.signal,(t=>{l.uploaded=l.uploaded+t.bytes,this.updateStats()}),void 0,{"X-OC-Mtime":e.lastModified/1e3,"Content-Type":e.type}),l.uploaded=l.size,this.updateStats(),J.debug(`Successfully uploaded ${e.name}`,{file:e,upload:l}),t(l)}catch(t){if(t instanceof v.k3)return l.status=Q.FAILED,void n("Upload has been cancelled");t?.response&&(l.response=t.response),l.status=Q.FAILED,J.error(`Failed uploading ${e.name}`,{error:t,file:e,upload:l}),n("Failed uploading the file")}this._notifiers.forEach((t=>{try{t(l)}catch{}}))};this._jobQueue.add(i),this.updateStats()}else{J.debug("Initializing chunked upload",{file:e,upload:l});const s=await async function(t){const e=`${(0,y.dC)(`dav/uploads/${(0,b.HW)()?.uid}`)}/web-file-upload-${[...Array(16)].map((()=>Math.floor(16*Math.random()).toString(16))).join("")}`,n=t?{Destination:t}:void 0;return await C.A.request({method:"MKCOL",url:e,headers:n}),e}(r),i=[];for(let t=0;t<l.chunks;t++){const n=t*o,a=Math.min(n+o,l.size),c=()=>Y(e,n,o),d=()=>G(`${s}/${t+1}`,c,l.signal,(()=>this.updateStats()),r,{"X-OC-Mtime":e.lastModified/1e3,"OC-Total-Length":e.size,"Content-Type":"application/octet-stream"}).then((()=>{l.uploaded=l.uploaded+o})).catch((e=>{throw 507===e?.response?.status?(J.error("Upload failed, not enough space on the server or quota exceeded. Cancelling the remaining chunks",{error:e,upload:l}),l.cancel(),l.status=Q.FAILED,e):(e instanceof v.k3||(J.error(`Chunk ${t+1} ${n} - ${a} uploading failed`,{error:e,upload:l}),l.cancel(),l.status=Q.FAILED),e)}));i.push(this._jobQueue.add(d))}try{await Promise.all(i),this.updateStats(),l.response=await C.A.request({method:"MOVE",url:`${s}/.file`,headers:{"X-OC-Mtime":e.lastModified/1e3,"OC-Total-Length":e.size,Destination:r}}),this.updateStats(),l.status=Q.FINISHED,J.debug(`Successfully uploaded ${e.name}`,{file:e,upload:l}),t(l)}catch(t){t instanceof v.k3?(l.status=Q.FAILED,n("Upload has been cancelled")):(l.status=Q.FAILED,n("Failed assembling the chunks together")),C.A.request({method:"DELETE",url:`${s}`})}this._notifiers.forEach((t=>{try{t(l)}catch{}}))}return this._jobQueue.onIdle().then((()=>this.reset())),l}))}}function nt(t,e,n,s,i,r,o,a){var l,c="function"==typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=n,c._compiled=!0),s&&(c.functional=!0),r&&(c._scopeId="data-v-"+r),o?(l=function(t){!(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)&&typeof __VUE_SSR_CONTEXT__<"u"&&(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(o)},c._ssrRegister=l):i&&(l=a?function(){i.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:i),l)if(c.functional){c._injectStyles=l;var d=c.render;c.render=function(t,e){return l.call(e),d(t,e)}}else{var u=c.beforeCreate;c.beforeCreate=u?[].concat(u,l):[l]}return{exports:t,options:c}}const st=nt({name:"CancelIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon cancel-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M12 2C17.5 2 22 6.5 22 12S17.5 22 12 22 2 17.5 2 12 6.5 2 12 2M12 4C10.1 4 8.4 4.6 7.1 5.7L18.3 16.9C19.3 15.5 20 13.8 20 12C20 7.6 16.4 4 12 4M16.9 18.3L5.7 7.1C4.6 8.4 4 10.1 4 12C4 16.4 7.6 20 12 20C13.9 20 15.6 19.4 16.9 18.3Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null,null).exports,it=nt({name:"PlusIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon plus-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M19,13H13V19H11V13H5V11H11V5H13V11H19V13Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null,null).exports,rt=nt({name:"UploadIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},(function(){var t=this,e=t._self._c;return e("span",t._b({staticClass:"material-design-icon upload-icon",attrs:{"aria-hidden":!t.title||null,"aria-label":t.title,role:"img"},on:{click:function(e){return t.$emit("click",e)}}},"span",t.$attrs,!1),[e("svg",{staticClass:"material-design-icon__svg",attrs:{fill:t.fillColor,width:t.size,height:t.size,viewBox:"0 0 24 24"}},[e("path",{attrs:{d:"M9,16V10H5L12,3L19,10H15V16H9M5,20V18H19V20H5Z"}},[t.title?e("title",[t._v(t._s(t.title))]):t._e()])])])}),[],!1,null,null,null,null).exports,ot=(0,q.$)().detectLocale();[{locale:"af",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Afrikaans (https://www.transifex.com/nextcloud/teams/64236/af/)","Content-Type":"text/plain; charset=UTF-8",Language:"af","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Afrikaans (https://www.transifex.com/nextcloud/teams/64236/af/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: af\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ar",json:{charset:"utf-8",headers:{"Last-Translator":"Ali <alimahwer@yahoo.com>, 2024","Language-Team":"Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)","Content-Type":"text/plain; charset=UTF-8",Language:"ar","Plural-Forms":"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nAli <alimahwer@yahoo.com>, 2024\n"},msgstr:["Last-Translator: Ali <alimahwer@yahoo.com>, 2024\nLanguage-Team: Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ar\nPlural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} ملف متعارض","{count} ملف متعارض","{count} ملفان متعارضان","{count} ملف متعارض","{count} ملفات متعارضة","{count} ملفات متعارضة"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} ملف متعارض في n {dirname}","{count} ملف متعارض في n {dirname}","{count} ملفان متعارضان في n {dirname}","{count} ملف متعارض في n {dirname}","{count} ملفات متعارضة في n {dirname}","{count} ملفات متعارضة في n {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} ثانية متبقية"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} متبقية"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["باقٍ بضعُ ثوانٍ"]},Cancel:{msgid:"Cancel",msgstr:["إلغاء"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["إلغِ العملية بالكامل"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["إلغاء عمليات رفع الملفات"]},Continue:{msgid:"Continue",msgstr:["إستمر"]},"estimating time left":{msgid:"estimating time left",msgstr:["تقدير الوقت المتبقي"]},"Existing version":{msgid:"Existing version",msgstr:["الإصدار الحالي"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["إذا اخترت الإبقاء على النسختين معاً، فإن الملف المنسوخ سيتم إلحاق رقم تسلسلي في نهاية اسمه."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["تاريخ آخر تعديل غير معلوم"]},New:{msgid:"New",msgstr:["جديد"]},"New version":{msgid:"New version",msgstr:["نسخة جديدة"]},paused:{msgid:"paused",msgstr:["مُجمَّد"]},"Preview image":{msgid:"Preview image",msgstr:["معاينة الصورة"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["حدِّد كل صناديق الخيارات"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["حدِّد كل الملفات الموجودة"]},"Select all new files":{msgid:"Select all new files",msgstr:["حدِّد كل الملفات الجديدة"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["تخطَّ {count} ملف","تخطَّ {count} ملف","تخطَّ {count} ملف","تخطَّ {count} ملف","تخطَّ {count} ملف","تخطَّ {count} ملف"]},"Unknown size":{msgid:"Unknown size",msgstr:["حجم غير معلوم"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["تمَّ إلغاء الرفع"]},"Upload files":{msgid:"Upload files",msgstr:["رفع ملفات"]},"Upload progress":{msgid:"Upload progress",msgstr:["تقدُّم الرفع "]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["عند تحديد مجلد وارد، أي ملفات متعارضة بداخله ستتم الكتابة فوقها."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["أيُّ الملفات ترغب في الإبقاء عليها؟"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["يجب أن تختار نسخة واحدة على الأقل من كل ملف للاستمرار."]}}}}},{locale:"ar_SA",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Arabic (Saudi Arabia) (https://www.transifex.com/nextcloud/teams/64236/ar_SA/)","Content-Type":"text/plain; charset=UTF-8",Language:"ar_SA","Plural-Forms":"nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Arabic (Saudi Arabia) (https://www.transifex.com/nextcloud/teams/64236/ar_SA/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ar_SA\nPlural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ast",json:{charset:"utf-8",headers:{"Last-Translator":"enolp <enolp@softastur.org>, 2023","Language-Team":"Asturian (https://app.transifex.com/nextcloud/teams/64236/ast/)","Content-Type":"text/plain; charset=UTF-8",Language:"ast","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nenolp <enolp@softastur.org>, 2023\n"},msgstr:["Last-Translator: enolp <enolp@softastur.org>, 2023\nLanguage-Team: Asturian (https://app.transifex.com/nextcloud/teams/64236/ast/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ast\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} ficheru en coflictu","{count} ficheros en coflictu"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} ficheru en coflictu en {dirname}","{count} ficheros en coflictu en {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["Queden {seconds} segundos"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["Tiempu que queda: {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["queden unos segundos"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Encaboxar les xubes"]},Continue:{msgid:"Continue",msgstr:["Siguir"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimando'l tiempu que falta"]},"Existing version":{msgid:"Existing version",msgstr:["Versión esistente"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Si seleiciones dambes versiones, el ficheru copiáu va tener un númberu amestáu al so nome."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["La data de la última modificación ye desconocida"]},New:{msgid:"New",msgstr:["Nuevu"]},"New version":{msgid:"New version",msgstr:["Versión nueva"]},paused:{msgid:"paused",msgstr:["en posa"]},"Preview image":{msgid:"Preview image",msgstr:["Previsualizar la imaxe"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Marcar toles caxelles"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Seleicionar tolos ficheros esistentes"]},"Select all new files":{msgid:"Select all new files",msgstr:["Seleicionar tolos ficheros nuevos"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Saltar esti ficheru","Saltar {count} ficheros"]},"Unknown size":{msgid:"Unknown size",msgstr:["Tamañu desconocíu"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Encaboxóse la xuba"]},"Upload files":{msgid:"Upload files",msgstr:["Xubir ficheros"]},"Upload progress":{msgid:"Upload progress",msgstr:["Xuba en cursu"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["¿Qué ficheros quies caltener?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Tienes de seleicionar polo menos una versión de cada ficheru pa siguir."]}}}}},{locale:"az",json:{charset:"utf-8",headers:{"Last-Translator":"Rashad Aliyev <microphprashad@gmail.com>, 2023","Language-Team":"Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)","Content-Type":"text/plain; charset=UTF-8",Language:"az","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nRashad Aliyev <microphprashad@gmail.com>, 2023\n"},msgstr:["Last-Translator: Rashad Aliyev <microphprashad@gmail.com>, 2023\nLanguage-Team: Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: az\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} saniyə qalıb"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} qalıb"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["bir neçə saniyə qalıb"]},Add:{msgid:"Add",msgstr:["Əlavə et"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Yükləməni imtina et"]},"estimating time left":{msgid:"estimating time left",msgstr:["Təxmini qalan vaxt"]},paused:{msgid:"paused",msgstr:["pauzadadır"]},"Upload files":{msgid:"Upload files",msgstr:["Faylları yüklə"]}}}}},{locale:"be",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Belarusian (https://www.transifex.com/nextcloud/teams/64236/be/)","Content-Type":"text/plain; charset=UTF-8",Language:"be","Plural-Forms":"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Belarusian (https://www.transifex.com/nextcloud/teams/64236/be/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: be\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"bg_BG",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Bulgarian (Bulgaria) (https://www.transifex.com/nextcloud/teams/64236/bg_BG/)","Content-Type":"text/plain; charset=UTF-8",Language:"bg_BG","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bulgarian (Bulgaria) (https://www.transifex.com/nextcloud/teams/64236/bg_BG/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bg_BG\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"bn_BD",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Bengali (Bangladesh) (https://www.transifex.com/nextcloud/teams/64236/bn_BD/)","Content-Type":"text/plain; charset=UTF-8",Language:"bn_BD","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bengali (Bangladesh) (https://www.transifex.com/nextcloud/teams/64236/bn_BD/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bn_BD\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"br",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Breton (https://www.transifex.com/nextcloud/teams/64236/br/)","Content-Type":"text/plain; charset=UTF-8",Language:"br","Plural-Forms":"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Breton (https://www.transifex.com/nextcloud/teams/64236/br/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: br\nPlural-Forms: nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"bs",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Bosnian (https://www.transifex.com/nextcloud/teams/64236/bs/)","Content-Type":"text/plain; charset=UTF-8",Language:"bs","Plural-Forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bosnian (https://www.transifex.com/nextcloud/teams/64236/bs/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bs\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ca",json:{charset:"utf-8",headers:{"Last-Translator":"Toni Hermoso Pulido <toniher@softcatala.cat>, 2022","Language-Team":"Catalan (https://www.transifex.com/nextcloud/teams/64236/ca/)","Content-Type":"text/plain; charset=UTF-8",Language:"ca","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nMarc Riera <marcriera@softcatala.org>, 2022\nToni Hermoso Pulido <toniher@softcatala.cat>, 2022\n"},msgstr:["Last-Translator: Toni Hermoso Pulido <toniher@softcatala.cat>, 2022\nLanguage-Team: Catalan (https://www.transifex.com/nextcloud/teams/64236/ca/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ca\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["Queden {seconds} segons"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["Queden {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["Queden uns segons"]},Add:{msgid:"Add",msgstr:["Afegeix"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancel·la les pujades"]},"estimating time left":{msgid:"estimating time left",msgstr:["S'està estimant el temps restant"]},paused:{msgid:"paused",msgstr:["En pausa"]},"Upload files":{msgid:"Upload files",msgstr:["Puja els fitxers"]}}}}},{locale:"cs",json:{charset:"utf-8",headers:{"Last-Translator":"Pavel Borecki <pavel.borecki@gmail.com>, 2022","Language-Team":"Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)","Content-Type":"text/plain; charset=UTF-8",Language:"cs","Plural-Forms":"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nPavel Borecki <pavel.borecki@gmail.com>, 2022\n"},msgstr:["Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2022\nLanguage-Team: Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cs\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["zbývá {seconds}"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["zbývá {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["zbývá několik sekund"]},Add:{msgid:"Add",msgstr:["Přidat"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Zrušit nahrávání"]},"estimating time left":{msgid:"estimating time left",msgstr:["odhadovaný zbývající čas"]},paused:{msgid:"paused",msgstr:["pozastaveno"]}}}}},{locale:"cs_CZ",json:{charset:"utf-8",headers:{"Last-Translator":"Michal Šmahel <ceskyDJ@seznam.cz>, 2024","Language-Team":"Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)","Content-Type":"text/plain; charset=UTF-8",Language:"cs_CZ","Plural-Forms":"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nMichal Šmahel <ceskyDJ@seznam.cz>, 2024\n"},msgstr:["Last-Translator: Michal Šmahel <ceskyDJ@seznam.cz>, 2024\nLanguage-Team: Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cs_CZ\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} kolize souborů","{count} kolize souborů","{count} kolizí souborů","{count} kolize souborů"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} kolize souboru v {dirname}","{count} kolize souboru v {dirname}","{count} kolizí souborů v {dirname}","{count} kolize souboru v {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["zbývá {seconds}"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["zbývá {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["zbývá několik sekund"]},Cancel:{msgid:"Cancel",msgstr:["Zrušit"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Zrušit celou operaci"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Zrušit nahrávání"]},Continue:{msgid:"Continue",msgstr:["Pokračovat"]},"estimating time left":{msgid:"estimating time left",msgstr:["odhaduje se zbývající čas"]},"Existing version":{msgid:"Existing version",msgstr:["Existující verze"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Pokud vyberete obě verze, zkopírovaný soubor bude mít k názvu přidáno číslo."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Neznámé datum poslední úpravy"]},New:{msgid:"New",msgstr:["Nové"]},"New version":{msgid:"New version",msgstr:["Nová verze"]},paused:{msgid:"paused",msgstr:["pozastaveno"]},"Preview image":{msgid:"Preview image",msgstr:["Náhled obrázku"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Označit všechny zaškrtávací kolonky"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Vybrat veškeré stávající soubory"]},"Select all new files":{msgid:"Select all new files",msgstr:["Vybrat veškeré nové soubory"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Přeskočit tento soubor","Přeskočit {count} soubory","Přeskočit {count} souborů","Přeskočit {count} soubory"]},"Unknown size":{msgid:"Unknown size",msgstr:["Neznámá velikost"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Nahrávání zrušeno"]},"Upload files":{msgid:"Upload files",msgstr:["Nahrát soubory"]},"Upload progress":{msgid:"Upload progress",msgstr:["Postup v nahrávání"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Po výběru příchozí složky budou rovněž přepsány všechny v ní obsažené konfliktní soubory"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Které soubory si přejete ponechat?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Aby bylo možné pokračovat, je třeba vybrat alespoň jednu verzi od každého souboru."]}}}}},{locale:"cy_GB",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Welsh (United Kingdom) (https://www.transifex.com/nextcloud/teams/64236/cy_GB/)","Content-Type":"text/plain; charset=UTF-8",Language:"cy_GB","Plural-Forms":"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Welsh (United Kingdom) (https://www.transifex.com/nextcloud/teams/64236/cy_GB/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cy_GB\nPlural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"da",json:{charset:"utf-8",headers:{"Last-Translator":"Martin Bonde <Martin@maboni.dk>, 2024","Language-Team":"Danish (https://app.transifex.com/nextcloud/teams/64236/da/)","Content-Type":"text/plain; charset=UTF-8",Language:"da","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nMartin Bonde <Martin@maboni.dk>, 2024\n"},msgstr:["Last-Translator: Martin Bonde <Martin@maboni.dk>, 2024\nLanguage-Team: Danish (https://app.transifex.com/nextcloud/teams/64236/da/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: da\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} fil konflikt","{count} filer i konflikt"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} fil konflikt i {dirname}","{count} filer i konflikt i {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{sekunder} sekunder tilbage"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{tid} tilbage"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["et par sekunder tilbage"]},Cancel:{msgid:"Cancel",msgstr:["Annuller"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Annuller hele handlingen"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Annuller uploads"]},Continue:{msgid:"Continue",msgstr:["Fortsæt"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimering af resterende tid"]},"Existing version":{msgid:"Existing version",msgstr:["Eksisterende version"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Hvis du vælger begge versioner vil den kopierede fil få et nummer tilføjet til sit navn."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Sidste modifikationsdato ukendt"]},New:{msgid:"New",msgstr:["Ny"]},"New version":{msgid:"New version",msgstr:["Ny version"]},paused:{msgid:"paused",msgstr:["pauset"]},"Preview image":{msgid:"Preview image",msgstr:["Forhåndsvisning af billede"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Vælg alle felter"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Vælg alle eksisterende filer"]},"Select all new files":{msgid:"Select all new files",msgstr:["Vælg alle nye filer"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Spring denne fil over","Spring {count} filer over"]},"Unknown size":{msgid:"Unknown size",msgstr:["Ukendt størrelse"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Upload annulleret"]},"Upload files":{msgid:"Upload files",msgstr:["Upload filer"]},"Upload progress":{msgid:"Upload progress",msgstr:["Upload fremskridt"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Når en indgående mappe er valgt, vil alle modstridende filer i den også blive overskrevet."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Hvilke filer ønsker du at beholde?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Du skal vælge mindst én version af hver fil for at fortsætte."]}}}}},{locale:"de",json:{charset:"utf-8",headers:{"Last-Translator":"Mario Siegmann <mario_siegmann@web.de>, 2024","Language-Team":"German (https://app.transifex.com/nextcloud/teams/64236/de/)","Content-Type":"text/plain; charset=UTF-8",Language:"de","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nMario Siegmann <mario_siegmann@web.de>, 2024\n"},msgstr:["Last-Translator: Mario Siegmann <mario_siegmann@web.de>, 2024\nLanguage-Team: German (https://app.transifex.com/nextcloud/teams/64236/de/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: de\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} Datei-Konflikt","{count} Datei-Konflikte"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} Datei-Konflikt in {dirname}","{count} Datei-Konflikte in {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} Sekunden verbleibend"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} verbleibend"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["noch ein paar Sekunden"]},Cancel:{msgid:"Cancel",msgstr:["Abbrechen"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Den gesamten Vorgang abbrechen"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Hochladen abbrechen"]},Continue:{msgid:"Continue",msgstr:["Fortsetzen"]},"estimating time left":{msgid:"estimating time left",msgstr:["Geschätzte verbleibende Zeit"]},"Existing version":{msgid:"Existing version",msgstr:["Vorhandene Version"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Wenn du beide Versionen auswählst, wird der kopierten Datei eine Nummer zum Namen hinzugefügt."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Datum der letzten Änderung unbekannt"]},New:{msgid:"New",msgstr:["Neu"]},"New version":{msgid:"New version",msgstr:["Neue Version"]},paused:{msgid:"paused",msgstr:["Pausiert"]},"Preview image":{msgid:"Preview image",msgstr:["Vorschaubild"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Alle Kontrollkästchen aktivieren"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Alle vorhandenen Dateien auswählen"]},"Select all new files":{msgid:"Select all new files",msgstr:["Alle neuen Dateien auswählen"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Diese Datei überspringen","{count} Dateien überspringen"]},"Unknown size":{msgid:"Unknown size",msgstr:["Unbekannte Größe"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Hochladen abgebrochen"]},"Upload files":{msgid:"Upload files",msgstr:["Dateien hochladen"]},"Upload progress":{msgid:"Upload progress",msgstr:["Fortschritt beim Hochladen"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Wenn ein eingehender Ordner ausgewählt wird, werden alle darin enthaltenen Konfliktdateien ebenfalls überschrieben."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Welche Dateien möchtest du behalten?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Du musst mindestens eine Version jeder Datei auswählen, um fortzufahren."]}}}}},{locale:"de_DE",json:{charset:"utf-8",headers:{"Last-Translator":"Mario Siegmann <mario_siegmann@web.de>, 2024","Language-Team":"German (Germany) (https://app.transifex.com/nextcloud/teams/64236/de_DE/)","Content-Type":"text/plain; charset=UTF-8",Language:"de_DE","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nMario Siegmann <mario_siegmann@web.de>, 2024\n"},msgstr:["Last-Translator: Mario Siegmann <mario_siegmann@web.de>, 2024\nLanguage-Team: German (Germany) (https://app.transifex.com/nextcloud/teams/64236/de_DE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: de_DE\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} Datei-Konflikt","{count} Datei-Konflikte"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} Datei-Konflikt in {dirname}","{count} Datei-Konflikte in {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} Sekunden verbleiben"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} verbleibend"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["ein paar Sekunden verbleiben"]},Cancel:{msgid:"Cancel",msgstr:["Abbrechen"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Den gesamten Vorgang abbrechen"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Hochladen abbrechen"]},Continue:{msgid:"Continue",msgstr:["Fortsetzen"]},"estimating time left":{msgid:"estimating time left",msgstr:["Geschätzte verbleibende Zeit"]},"Existing version":{msgid:"Existing version",msgstr:["Vorhandene Version"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Wenn Sie beide Versionen auswählen, wird der kopierten Datei eine Nummer zum Namen hinzugefügt."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Datum der letzten Änderung unbekannt"]},New:{msgid:"New",msgstr:["Neu"]},"New version":{msgid:"New version",msgstr:["Neue Version"]},paused:{msgid:"paused",msgstr:["Pausiert"]},"Preview image":{msgid:"Preview image",msgstr:["Vorschaubild"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Alle Kontrollkästchen aktivieren"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Alle vorhandenen Dateien auswählen"]},"Select all new files":{msgid:"Select all new files",msgstr:["Alle neuen Dateien auswählen"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["{count} Datei überspringen","{count} Dateien überspringen"]},"Unknown size":{msgid:"Unknown size",msgstr:["Unbekannte Größe"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Hochladen abgebrochen"]},"Upload files":{msgid:"Upload files",msgstr:["Dateien hochladen"]},"Upload progress":{msgid:"Upload progress",msgstr:["Fortschritt beim Hochladen"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Wenn ein eingehender Ordner ausgewählt wird, werden alle darin enthaltenen Konfliktdateien ebenfalls überschrieben."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Welche Dateien möchten Sie behalten?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Sie müssen mindestens eine Version jeder Datei auswählen, um fortzufahren."]}}}}},{locale:"el",json:{charset:"utf-8",headers:{"Last-Translator":"Nik Pap, 2022","Language-Team":"Greek (https://www.transifex.com/nextcloud/teams/64236/el/)","Content-Type":"text/plain; charset=UTF-8",Language:"el","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nNik Pap, 2022\n"},msgstr:["Last-Translator: Nik Pap, 2022\nLanguage-Team: Greek (https://www.transifex.com/nextcloud/teams/64236/el/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: el\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["απομένουν {seconds} δευτερόλεπτα"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["απομένουν {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["απομένουν λίγα δευτερόλεπτα"]},Add:{msgid:"Add",msgstr:["Προσθήκη"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Ακύρωση μεταφορτώσεων"]},"estimating time left":{msgid:"estimating time left",msgstr:["εκτίμηση του χρόνου που απομένει"]},paused:{msgid:"paused",msgstr:["σε παύση"]},"Upload files":{msgid:"Upload files",msgstr:["Μεταφόρτωση αρχείων"]}}}}},{locale:"el_GR",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Greek (Greece) (https://www.transifex.com/nextcloud/teams/64236/el_GR/)","Content-Type":"text/plain; charset=UTF-8",Language:"el_GR","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Greek (Greece) (https://www.transifex.com/nextcloud/teams/64236/el_GR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: el_GR\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"en_GB",json:{charset:"utf-8",headers:{"Last-Translator":"Andi Chandler <andi@gowling.com>, 2023","Language-Team":"English (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/en_GB/)","Content-Type":"text/plain; charset=UTF-8",Language:"en_GB","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nAndi Chandler <andi@gowling.com>, 2023\n"},msgstr:["Last-Translator: Andi Chandler <andi@gowling.com>, 2023\nLanguage-Team: English (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/en_GB/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: en_GB\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} file conflict","{count} files conflict"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} file conflict in {dirname}","{count} file conflicts in {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} seconds left"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} left"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["a few seconds left"]},Add:{msgid:"Add",msgstr:["Add"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancel uploads"]},Continue:{msgid:"Continue",msgstr:["Continue"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimating time left"]},"Existing version":{msgid:"Existing version",msgstr:["Existing version"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["If you select both versions, the copied file will have a number added to its name."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Last modified date unknown"]},"New version":{msgid:"New version",msgstr:["New version"]},paused:{msgid:"paused",msgstr:["paused"]},"Preview image":{msgid:"Preview image",msgstr:["Preview image"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Select all checkboxes"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Select all existing files"]},"Select all new files":{msgid:"Select all new files",msgstr:["Select all new files"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Skip this file","Skip {count} files"]},"Unknown size":{msgid:"Unknown size",msgstr:["Unknown size"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Upload cancelled"]},"Upload files":{msgid:"Upload files",msgstr:["Upload files"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Which files do you want to keep?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["You need to select at least one version of each file to continue."]}}}}},{locale:"eo",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Esperanto (https://www.transifex.com/nextcloud/teams/64236/eo/)","Content-Type":"text/plain; charset=UTF-8",Language:"eo","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Esperanto (https://www.transifex.com/nextcloud/teams/64236/eo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: eo\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es",json:{charset:"utf-8",headers:{"Last-Translator":"Julio C. Ortega, 2024","Language-Team":"Spanish (https://app.transifex.com/nextcloud/teams/64236/es/)","Content-Type":"text/plain; charset=UTF-8",Language:"es","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nFranciscoFJ <dev-ooo@satel-sa.com>, 2023\nNext Cloud <nextcloud.translator.es@cgj.es>, 2023\nJulio C. Ortega, 2024\n"},msgstr:["Last-Translator: Julio C. Ortega, 2024\nLanguage-Team: Spanish (https://app.transifex.com/nextcloud/teams/64236/es/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} archivo en conflicto","{count} archivos en conflicto","{count} archivos en conflicto"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} archivo en conflicto en {dirname}","{count} archivos en conflicto en {dirname}","{count} archivos en conflicto en {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} segundos restantes"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} restante"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["quedan unos segundos"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancelar subidas"]},Continue:{msgid:"Continue",msgstr:["Continuar"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimando tiempo restante"]},"Existing version":{msgid:"Existing version",msgstr:["Versión existente"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Si selecciona ambas versiones, al archivo copiado se le añadirá un número en el nombre."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Última fecha de modificación desconocida"]},New:{msgid:"New",msgstr:["Nuevo"]},"New version":{msgid:"New version",msgstr:["Nueva versión"]},paused:{msgid:"paused",msgstr:["pausado"]},"Preview image":{msgid:"Preview image",msgstr:["Previsualizar imagen"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Seleccionar todas las casillas de verificación"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Seleccionar todos los archivos existentes"]},"Select all new files":{msgid:"Select all new files",msgstr:["Seleccionar todos los archivos nuevos"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Saltar este archivo","Saltar {count} archivos","Saltar {count} archivos"]},"Unknown size":{msgid:"Unknown size",msgstr:["Tamaño desconocido"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Subida cancelada"]},"Upload files":{msgid:"Upload files",msgstr:["Subir archivos"]},"Upload progress":{msgid:"Upload progress",msgstr:["Progreso de la subida"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["¿Qué archivos desea conservar?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Debe seleccionar al menos una versión de cada archivo para continuar."]}}}}},{locale:"es_419",json:{charset:"utf-8",headers:{"Last-Translator":"ALEJANDRO CASTRO, 2022","Language-Team":"Spanish (Latin America) (https://www.transifex.com/nextcloud/teams/64236/es_419/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_419","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nALEJANDRO CASTRO, 2022\n"},msgstr:["Last-Translator: ALEJANDRO CASTRO, 2022\nLanguage-Team: Spanish (Latin America) (https://www.transifex.com/nextcloud/teams/64236/es_419/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_419\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} segundos restantes"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{tiempo} restante"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["quedan pocos segundos"]},Add:{msgid:"Add",msgstr:["agregar"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancelar subidas"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimando tiempo restante"]},paused:{msgid:"paused",msgstr:["pausado"]},"Upload files":{msgid:"Upload files",msgstr:["Subir archivos"]}}}}},{locale:"es_AR",json:{charset:"utf-8",headers:{"Last-Translator":"Matias Iglesias, 2022","Language-Team":"Spanish (Argentina) (https://www.transifex.com/nextcloud/teams/64236/es_AR/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_AR","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nMatias Iglesias, 2022\n"},msgstr:["Last-Translator: Matias Iglesias, 2022\nLanguage-Team: Spanish (Argentina) (https://www.transifex.com/nextcloud/teams/64236/es_AR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_AR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} segundos restantes"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} restante"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["quedan unos segundos"]},Add:{msgid:"Add",msgstr:["Añadir"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancelar subidas"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimando tiempo restante"]},paused:{msgid:"paused",msgstr:["pausado"]},"Upload files":{msgid:"Upload files",msgstr:["Subir archivos"]}}}}},{locale:"es_CL",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Chile) (https://www.transifex.com/nextcloud/teams/64236/es_CL/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_CL","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Chile) (https://www.transifex.com/nextcloud/teams/64236/es_CL/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CL\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_CO",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Colombia) (https://www.transifex.com/nextcloud/teams/64236/es_CO/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_CO","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Colombia) (https://www.transifex.com/nextcloud/teams/64236/es_CO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CO\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_CR",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Costa Rica) (https://www.transifex.com/nextcloud/teams/64236/es_CR/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_CR","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Costa Rica) (https://www.transifex.com/nextcloud/teams/64236/es_CR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_DO",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Dominican Republic) (https://www.transifex.com/nextcloud/teams/64236/es_DO/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_DO","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Dominican Republic) (https://www.transifex.com/nextcloud/teams/64236/es_DO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_DO\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_EC",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Ecuador) (https://www.transifex.com/nextcloud/teams/64236/es_EC/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_EC","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Ecuador) (https://www.transifex.com/nextcloud/teams/64236/es_EC/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_EC\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_GT",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Guatemala) (https://www.transifex.com/nextcloud/teams/64236/es_GT/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_GT","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Guatemala) (https://www.transifex.com/nextcloud/teams/64236/es_GT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_GT\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_HN",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Honduras) (https://www.transifex.com/nextcloud/teams/64236/es_HN/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_HN","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Honduras) (https://www.transifex.com/nextcloud/teams/64236/es_HN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_HN\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_MX",json:{charset:"utf-8",headers:{"Last-Translator":"ALEJANDRO CASTRO, 2022","Language-Team":"Spanish (Mexico) (https://www.transifex.com/nextcloud/teams/64236/es_MX/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_MX","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nLuis Francisco Castro, 2022\nALEJANDRO CASTRO, 2022\n"},msgstr:["Last-Translator: ALEJANDRO CASTRO, 2022\nLanguage-Team: Spanish (Mexico) (https://www.transifex.com/nextcloud/teams/64236/es_MX/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_MX\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} segundos restantes"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{tiempo} restante"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["quedan pocos segundos"]},Add:{msgid:"Add",msgstr:["agregar"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["cancelar las cargas"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimando tiempo restante"]},paused:{msgid:"paused",msgstr:["en pausa"]},"Upload files":{msgid:"Upload files",msgstr:["cargar archivos"]}}}}},{locale:"es_NI",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Nicaragua) (https://www.transifex.com/nextcloud/teams/64236/es_NI/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_NI","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Nicaragua) (https://www.transifex.com/nextcloud/teams/64236/es_NI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_NI\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_PA",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Panama) (https://www.transifex.com/nextcloud/teams/64236/es_PA/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_PA","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Panama) (https://www.transifex.com/nextcloud/teams/64236/es_PA/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PA\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_PE",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Peru) (https://www.transifex.com/nextcloud/teams/64236/es_PE/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_PE","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Peru) (https://www.transifex.com/nextcloud/teams/64236/es_PE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PE\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_PR",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Puerto Rico) (https://www.transifex.com/nextcloud/teams/64236/es_PR/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_PR","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Puerto Rico) (https://www.transifex.com/nextcloud/teams/64236/es_PR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_PY",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Paraguay) (https://www.transifex.com/nextcloud/teams/64236/es_PY/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_PY","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Paraguay) (https://www.transifex.com/nextcloud/teams/64236/es_PY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PY\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_SV",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (El Salvador) (https://www.transifex.com/nextcloud/teams/64236/es_SV/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_SV","Plural-Forms":"nplurals=2; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (El Salvador) (https://www.transifex.com/nextcloud/teams/64236/es_SV/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_SV\nPlural-Forms: nplurals=2; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"es_UY",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Spanish (Uruguay) (https://www.transifex.com/nextcloud/teams/64236/es_UY/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_UY","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Uruguay) (https://www.transifex.com/nextcloud/teams/64236/es_UY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_UY\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"et_EE",json:{charset:"utf-8",headers:{"Last-Translator":"Taavo Roos, 2023","Language-Team":"Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)","Content-Type":"text/plain; charset=UTF-8",Language:"et_EE","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nMait R, 2022\nTaavo Roos, 2023\n"},msgstr:["Last-Translator: Taavo Roos, 2023\nLanguage-Team: Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: et_EE\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} jäänud sekundid"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} aega jäänud"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["jäänud mõni sekund"]},Add:{msgid:"Add",msgstr:["Lisa"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Tühista üleslaadimine"]},"estimating time left":{msgid:"estimating time left",msgstr:["hinnanguline järelejäänud aeg"]},paused:{msgid:"paused",msgstr:["pausil"]},"Upload files":{msgid:"Upload files",msgstr:["Lae failid üles"]}}}}},{locale:"eu",json:{charset:"utf-8",headers:{"Last-Translator":"Unai Tolosa Pontesta <utolosa002@gmail.com>, 2022","Language-Team":"Basque (https://www.transifex.com/nextcloud/teams/64236/eu/)","Content-Type":"text/plain; charset=UTF-8",Language:"eu","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nUnai Tolosa Pontesta <utolosa002@gmail.com>, 2022\n"},msgstr:["Last-Translator: Unai Tolosa Pontesta <utolosa002@gmail.com>, 2022\nLanguage-Team: Basque (https://www.transifex.com/nextcloud/teams/64236/eu/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: eu\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} segundo geratzen dira"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} geratzen da"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["segundo batzuk geratzen dira"]},Add:{msgid:"Add",msgstr:["Gehitu"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Ezeztatu igoerak"]},"estimating time left":{msgid:"estimating time left",msgstr:["kalkulatutako geratzen den denbora"]},paused:{msgid:"paused",msgstr:["geldituta"]},"Upload files":{msgid:"Upload files",msgstr:["Igo fitxategiak"]}}}}},{locale:"fa",json:{charset:"utf-8",headers:{"Last-Translator":"Fatemeh Komeily, 2023","Language-Team":"Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)","Content-Type":"text/plain; charset=UTF-8",Language:"fa","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nFatemeh Komeily, 2023\n"},msgstr:["Last-Translator: Fatemeh Komeily, 2023\nLanguage-Team: Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fa\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["ثانیه های باقی مانده"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["باقی مانده"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["چند ثانیه مانده"]},Add:{msgid:"Add",msgstr:["اضافه کردن"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["کنسل کردن فایل های اپلود شده"]},"estimating time left":{msgid:"estimating time left",msgstr:["تخمین زمان باقی مانده"]},paused:{msgid:"paused",msgstr:["مکث کردن"]},"Upload files":{msgid:"Upload files",msgstr:["بارگذاری فایل ها"]}}}}},{locale:"fi_FI",json:{charset:"utf-8",headers:{"Last-Translator":"Jiri Grönroos <jiri.gronroos@iki.fi>, 2022","Language-Team":"Finnish (Finland) (https://www.transifex.com/nextcloud/teams/64236/fi_FI/)","Content-Type":"text/plain; charset=UTF-8",Language:"fi_FI","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJiri Grönroos <jiri.gronroos@iki.fi>, 2022\n"},msgstr:["Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>, 2022\nLanguage-Team: Finnish (Finland) (https://www.transifex.com/nextcloud/teams/64236/fi_FI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fi_FI\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} sekuntia jäljellä"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} jäljellä"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["muutama sekunti jäljellä"]},Add:{msgid:"Add",msgstr:["Lisää"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Peruuta lähetykset"]},"estimating time left":{msgid:"estimating time left",msgstr:["arvioidaan jäljellä olevaa aikaa"]},paused:{msgid:"paused",msgstr:["keskeytetty"]},"Upload files":{msgid:"Upload files",msgstr:["Lähetä tiedostoja"]}}}}},{locale:"fo",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Faroese (https://www.transifex.com/nextcloud/teams/64236/fo/)","Content-Type":"text/plain; charset=UTF-8",Language:"fo","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Faroese (https://www.transifex.com/nextcloud/teams/64236/fo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fo\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"fr",json:{charset:"utf-8",headers:{"Last-Translator":"jed boulahya, 2024","Language-Team":"French (https://app.transifex.com/nextcloud/teams/64236/fr/)","Content-Type":"text/plain; charset=UTF-8",Language:"fr","Plural-Forms":"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nBenoit Pruneau, 2024\njed boulahya, 2024\n"},msgstr:["Last-Translator: jed boulahya, 2024\nLanguage-Team: French (https://app.transifex.com/nextcloud/teams/64236/fr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fr\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} fichier en conflit","{count} fichiers en conflit","{count} fichiers en conflit"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} fichier en conflit dans {dirname}","{count} fichiers en conflit dans {dirname}","{count} fichiers en conflit dans {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} secondes restantes"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} restant"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["quelques secondes restantes"]},Cancel:{msgid:"Cancel",msgstr:["Annuler"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Annuler l'opération entière"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Annuler les envois"]},Continue:{msgid:"Continue",msgstr:["Continuer"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimation du temps restant"]},"Existing version":{msgid:"Existing version",msgstr:["Version existante"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Si vous sélectionnez les deux versions, le fichier copié aura un numéro ajouté àname."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Date de la dernière modification est inconnue"]},New:{msgid:"New",msgstr:["Nouveau"]},"New version":{msgid:"New version",msgstr:["Nouvelle version"]},paused:{msgid:"paused",msgstr:["en pause"]},"Preview image":{msgid:"Preview image",msgstr:["Aperçu de l'image"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Sélectionner toutes les cases à cocher"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Sélectionner tous les fichiers existants"]},"Select all new files":{msgid:"Select all new files",msgstr:["Sélectionner tous les nouveaux fichiers"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Ignorer ce fichier","Ignorer {count} fichiers","Ignorer {count} fichiers"]},"Unknown size":{msgid:"Unknown size",msgstr:["Taille inconnue"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:[" annulé"]},"Upload files":{msgid:"Upload files",msgstr:["Téléchargement des fichiers"]},"Upload progress":{msgid:"Upload progress",msgstr:["Progression du téléchargement"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Lorsqu'un dossier entrant est sélectionné, tous les fichiers en conflit qu'il contient seront également écrasés."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Quels fichiers souhaitez-vous conserver ?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Vous devez sélectionner au moins une version de chaque fichier pour continuer."]}}}}},{locale:"gd",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Gaelic, Scottish (https://www.transifex.com/nextcloud/teams/64236/gd/)","Content-Type":"text/plain; charset=UTF-8",Language:"gd","Plural-Forms":"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Gaelic, Scottish (https://www.transifex.com/nextcloud/teams/64236/gd/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: gd\nPlural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"gl",json:{charset:"utf-8",headers:{"Last-Translator":"Miguel Anxo Bouzada <mbouzada@gmail.com>, 2023","Language-Team":"Galician (https://app.transifex.com/nextcloud/teams/64236/gl/)","Content-Type":"text/plain; charset=UTF-8",Language:"gl","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nNacho <nacho.vfranco@gmail.com>, 2023\nMiguel Anxo Bouzada <mbouzada@gmail.com>, 2023\n"},msgstr:["Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>, 2023\nLanguage-Team: Galician (https://app.transifex.com/nextcloud/teams/64236/gl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: gl\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} conflito de ficheiros","{count} conflitos de ficheiros"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} conflito de ficheiros en {dirname}","{count} conflitos de ficheiros en {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["faltan {seconds} segundos"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["falta {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["faltan uns segundos"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancelar envíos"]},Continue:{msgid:"Continue",msgstr:["Continuar"]},"estimating time left":{msgid:"estimating time left",msgstr:["calculando canto tempo falta"]},"Existing version":{msgid:"Existing version",msgstr:["Versión existente"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Se selecciona ambas as versións, o ficheiro copiado terá un número engadido ao seu nome."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Data da última modificación descoñecida"]},New:{msgid:"New",msgstr:["Nova"]},"New version":{msgid:"New version",msgstr:["Nova versión"]},paused:{msgid:"paused",msgstr:["detido"]},"Preview image":{msgid:"Preview image",msgstr:["Vista previa da imaxe"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Marcar todas as caixas de selección"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Seleccionar todos os ficheiros existentes"]},"Select all new files":{msgid:"Select all new files",msgstr:["Seleccionar todos os ficheiros novos"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Omita este ficheiro","Omitir {count} ficheiros"]},"Unknown size":{msgid:"Unknown size",msgstr:["Tamaño descoñecido"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Envío cancelado"]},"Upload files":{msgid:"Upload files",msgstr:["Enviar ficheiros"]},"Upload progress":{msgid:"Upload progress",msgstr:["Progreso do envío"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Que ficheiros quere conservar?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Debe seleccionar polo menos unha versión de cada ficheiro para continuar."]}}}}},{locale:"he",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Hebrew (https://www.transifex.com/nextcloud/teams/64236/he/)","Content-Type":"text/plain; charset=UTF-8",Language:"he","Plural-Forms":"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hebrew (https://www.transifex.com/nextcloud/teams/64236/he/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: he\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"hi_IN",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Hindi (India) (https://www.transifex.com/nextcloud/teams/64236/hi_IN/)","Content-Type":"text/plain; charset=UTF-8",Language:"hi_IN","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hindi (India) (https://www.transifex.com/nextcloud/teams/64236/hi_IN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hi_IN\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"hr",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Croatian (https://www.transifex.com/nextcloud/teams/64236/hr/)","Content-Type":"text/plain; charset=UTF-8",Language:"hr","Plural-Forms":"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Croatian (https://www.transifex.com/nextcloud/teams/64236/hr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hr\nPlural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"hsb",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Upper Sorbian (https://www.transifex.com/nextcloud/teams/64236/hsb/)","Content-Type":"text/plain; charset=UTF-8",Language:"hsb","Plural-Forms":"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Upper Sorbian (https://www.transifex.com/nextcloud/teams/64236/hsb/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hsb\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"hu",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Hungarian (https://www.transifex.com/nextcloud/teams/64236/hu/)","Content-Type":"text/plain; charset=UTF-8",Language:"hu","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hungarian (https://www.transifex.com/nextcloud/teams/64236/hu/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hu\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"hu_HU",json:{charset:"utf-8",headers:{"Last-Translator":"Balázs Úr, 2022","Language-Team":"Hungarian (Hungary) (https://www.transifex.com/nextcloud/teams/64236/hu_HU/)","Content-Type":"text/plain; charset=UTF-8",Language:"hu_HU","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nBalázs Meskó <meskobalazs@mailbox.org>, 2022\nBalázs Úr, 2022\n"},msgstr:["Last-Translator: Balázs Úr, 2022\nLanguage-Team: Hungarian (Hungary) (https://www.transifex.com/nextcloud/teams/64236/hu_HU/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hu_HU\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{} másodperc van hátra"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} van hátra"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["pár másodperc van hátra"]},Add:{msgid:"Add",msgstr:["Hozzáadás"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Feltöltések megszakítása"]},"estimating time left":{msgid:"estimating time left",msgstr:["hátralévő idő becslése"]},paused:{msgid:"paused",msgstr:["szüneteltetve"]},"Upload files":{msgid:"Upload files",msgstr:["Fájlok feltöltése"]}}}}},{locale:"hy",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Armenian (https://www.transifex.com/nextcloud/teams/64236/hy/)","Content-Type":"text/plain; charset=UTF-8",Language:"hy","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Armenian (https://www.transifex.com/nextcloud/teams/64236/hy/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hy\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ia",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Interlingua (https://www.transifex.com/nextcloud/teams/64236/ia/)","Content-Type":"text/plain; charset=UTF-8",Language:"ia","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Interlingua (https://www.transifex.com/nextcloud/teams/64236/ia/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ia\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"id",json:{charset:"utf-8",headers:{"Last-Translator":"Linerly <linerly@proton.me>, 2023","Language-Team":"Indonesian (https://app.transifex.com/nextcloud/teams/64236/id/)","Content-Type":"text/plain; charset=UTF-8",Language:"id","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nEmpty Slot Filler, 2023\nLinerly <linerly@proton.me>, 2023\n"},msgstr:["Last-Translator: Linerly <linerly@proton.me>, 2023\nLanguage-Team: Indonesian (https://app.transifex.com/nextcloud/teams/64236/id/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: id\nPlural-Forms: nplurals=1; plural=0;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} berkas berkonflik"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} berkas berkonflik dalam {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} detik tersisa"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} tersisa"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["tinggal sebentar lagi"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Batalkan unggahan"]},Continue:{msgid:"Continue",msgstr:["Lanjutkan"]},"estimating time left":{msgid:"estimating time left",msgstr:["memperkirakan waktu yang tersisa"]},"Existing version":{msgid:"Existing version",msgstr:["Versi yang ada"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Jika Anda memilih kedua versi, nama berkas yang disalin akan ditambahi angka."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Tanggal perubahan terakhir tidak diketahui"]},New:{msgid:"New",msgstr:["Baru"]},"New version":{msgid:"New version",msgstr:["Versi baru"]},paused:{msgid:"paused",msgstr:["dijeda"]},"Preview image":{msgid:"Preview image",msgstr:["Gambar pratinjau"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Pilih semua kotak centang"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Pilih semua berkas yang ada"]},"Select all new files":{msgid:"Select all new files",msgstr:["Pilih semua berkas baru"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Lewati {count} berkas"]},"Unknown size":{msgid:"Unknown size",msgstr:["Ukuran tidak diketahui"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Unggahan dibatalkan"]},"Upload files":{msgid:"Upload files",msgstr:["Unggah berkas"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Berkas mana yang Anda ingin tetap simpan?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Anda harus memilih setidaknya satu versi dari masing-masing berkas untuk melanjutkan."]}}}}},{locale:"ig",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Igbo (https://www.transifex.com/nextcloud/teams/64236/ig/)","Content-Type":"text/plain; charset=UTF-8",Language:"ig","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Igbo (https://www.transifex.com/nextcloud/teams/64236/ig/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ig\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"is",json:{charset:"utf-8",headers:{"Last-Translator":"Sveinn í Felli <sv1@fellsnet.is>, 2023","Language-Team":"Icelandic (https://app.transifex.com/nextcloud/teams/64236/is/)","Content-Type":"text/plain; charset=UTF-8",Language:"is","Plural-Forms":"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nSveinn í Felli <sv1@fellsnet.is>, 2023\n"},msgstr:["Last-Translator: Sveinn í Felli <sv1@fellsnet.is>, 2023\nLanguage-Team: Icelandic (https://app.transifex.com/nextcloud/teams/64236/is/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: is\nPlural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} árekstur skráa","{count} árekstrar skráa"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} árekstur skráa í {dirname}","{count} árekstrar skráa í {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} sekúndur eftir"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} eftir"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["nokkrar sekúndur eftir"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Hætta við innsendingar"]},Continue:{msgid:"Continue",msgstr:["Halda áfram"]},"estimating time left":{msgid:"estimating time left",msgstr:["áætla tíma sem eftir er"]},"Existing version":{msgid:"Existing version",msgstr:["Fyrirliggjandi útgáfa"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Ef þú velur báðar útgáfur, þá mun verða bætt tölustaf aftan við heiti afrituðu skrárinnar."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Síðasta breytingadagsetning er óþekkt"]},New:{msgid:"New",msgstr:["Nýtt"]},"New version":{msgid:"New version",msgstr:["Ný útgáfa"]},paused:{msgid:"paused",msgstr:["í bið"]},"Preview image":{msgid:"Preview image",msgstr:["Forskoðun myndar"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Velja gátreiti"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Velja allar fyrirliggjandi skrár"]},"Select all new files":{msgid:"Select all new files",msgstr:["Velja allar nýjar skrár"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Sleppa þessari skrá","Sleppa {count} skrám"]},"Unknown size":{msgid:"Unknown size",msgstr:["Óþekkt stærð"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Hætt við innsendingu"]},"Upload files":{msgid:"Upload files",msgstr:["Senda inn skrár"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Hvaða skrám vilt þú vilt halda eftir?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Þú verður að velja að minnsta kosti eina útgáfu af hverri skrá til að halda áfram."]}}}}},{locale:"it",json:{charset:"utf-8",headers:{"Last-Translator":"Random_R, 2023","Language-Team":"Italian (https://app.transifex.com/nextcloud/teams/64236/it/)","Content-Type":"text/plain; charset=UTF-8",Language:"it","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nLep Lep, 2023\nRandom_R, 2023\n"},msgstr:["Last-Translator: Random_R, 2023\nLanguage-Team: Italian (https://app.transifex.com/nextcloud/teams/64236/it/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: it\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} file in conflitto","{count} file in conflitto","{count} file in conflitto"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} file in conflitto in {dirname}","{count} file in conflitto in {dirname}","{count} file in conflitto in {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} secondi rimanenti "]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} rimanente"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["alcuni secondi rimanenti"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Annulla i caricamenti"]},Continue:{msgid:"Continue",msgstr:["Continua"]},"estimating time left":{msgid:"estimating time left",msgstr:["calcolo il tempo rimanente"]},"Existing version":{msgid:"Existing version",msgstr:["Versione esistente"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Se selezioni entrambe le versioni, nel nome del file copiato verrà aggiunto un numero "]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Ultima modifica sconosciuta"]},New:{msgid:"New",msgstr:["Nuovo"]},"New version":{msgid:"New version",msgstr:["Nuova versione"]},paused:{msgid:"paused",msgstr:["pausa"]},"Preview image":{msgid:"Preview image",msgstr:["Anteprima immagine"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Seleziona tutte le caselle"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Seleziona tutti i file esistenti"]},"Select all new files":{msgid:"Select all new files",msgstr:["Seleziona tutti i nuovi file"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Salta questo file","Salta {count} file","Salta {count} file"]},"Unknown size":{msgid:"Unknown size",msgstr:["Dimensione sconosciuta"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Caricamento cancellato"]},"Upload files":{msgid:"Upload files",msgstr:["Carica i file"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Quali file vuoi mantenere?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Devi selezionare almeno una versione di ogni file per continuare"]}}}}},{locale:"it_IT",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Italian (Italy) (https://www.transifex.com/nextcloud/teams/64236/it_IT/)","Content-Type":"text/plain; charset=UTF-8",Language:"it_IT","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Italian (Italy) (https://www.transifex.com/nextcloud/teams/64236/it_IT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: it_IT\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ja_JP",json:{charset:"utf-8",headers:{"Last-Translator":"かたかめ, 2022","Language-Team":"Japanese (Japan) (https://www.transifex.com/nextcloud/teams/64236/ja_JP/)","Content-Type":"text/plain; charset=UTF-8",Language:"ja_JP","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nT.S, 2022\nかたかめ, 2022\n"},msgstr:["Last-Translator: かたかめ, 2022\nLanguage-Team: Japanese (Japan) (https://www.transifex.com/nextcloud/teams/64236/ja_JP/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ja_JP\nPlural-Forms: nplurals=1; plural=0;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["残り {seconds} 秒"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["残り {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["残り数秒"]},Add:{msgid:"Add",msgstr:["追加"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["アップロードをキャンセル"]},"estimating time left":{msgid:"estimating time left",msgstr:["概算残り時間"]},paused:{msgid:"paused",msgstr:["一時停止中"]},"Upload files":{msgid:"Upload files",msgstr:["ファイルをアップデート"]}}}}},{locale:"ka",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Georgian (https://www.transifex.com/nextcloud/teams/64236/ka/)","Content-Type":"text/plain; charset=UTF-8",Language:"ka","Plural-Forms":"nplurals=2; plural=(n!=1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Georgian (https://www.transifex.com/nextcloud/teams/64236/ka/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ka\nPlural-Forms: nplurals=2; plural=(n!=1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ka_GE",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Georgian (Georgia) (https://www.transifex.com/nextcloud/teams/64236/ka_GE/)","Content-Type":"text/plain; charset=UTF-8",Language:"ka_GE","Plural-Forms":"nplurals=2; plural=(n!=1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Georgian (Georgia) (https://www.transifex.com/nextcloud/teams/64236/ka_GE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ka_GE\nPlural-Forms: nplurals=2; plural=(n!=1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"kab",json:{charset:"utf-8",headers:{"Last-Translator":"ZiriSut, 2023","Language-Team":"Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)","Content-Type":"text/plain; charset=UTF-8",Language:"kab","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nZiriSut, 2023\n"},msgstr:["Last-Translator: ZiriSut, 2023\nLanguage-Team: Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kab\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} tesdatin i d-yeqqimen"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} i d-yeqqimen"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["qqiment-d kra n tesdatin kan"]},Add:{msgid:"Add",msgstr:["Rnu"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Sefsex asali"]},"estimating time left":{msgid:"estimating time left",msgstr:["asizel n wakud i d-yeqqimen"]},paused:{msgid:"paused",msgstr:["yeḥbes"]},"Upload files":{msgid:"Upload files",msgstr:["Sali-d ifuyla"]}}}}},{locale:"kk",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Kazakh (https://www.transifex.com/nextcloud/teams/64236/kk/)","Content-Type":"text/plain; charset=UTF-8",Language:"kk","Plural-Forms":"nplurals=2; plural=(n!=1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Kazakh (https://www.transifex.com/nextcloud/teams/64236/kk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kk\nPlural-Forms: nplurals=2; plural=(n!=1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"km",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Khmer (https://www.transifex.com/nextcloud/teams/64236/km/)","Content-Type":"text/plain; charset=UTF-8",Language:"km","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Khmer (https://www.transifex.com/nextcloud/teams/64236/km/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: km\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"kn",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Kannada (https://www.transifex.com/nextcloud/teams/64236/kn/)","Content-Type":"text/plain; charset=UTF-8",Language:"kn","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Kannada (https://www.transifex.com/nextcloud/teams/64236/kn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kn\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ko",json:{charset:"utf-8",headers:{"Last-Translator":"Brandon Han, 2024","Language-Team":"Korean (https://app.transifex.com/nextcloud/teams/64236/ko/)","Content-Type":"text/plain; charset=UTF-8",Language:"ko","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nhosun Lee, 2023\nBrandon Han, 2024\n"},msgstr:["Last-Translator: Brandon Han, 2024\nLanguage-Team: Korean (https://app.transifex.com/nextcloud/teams/64236/ko/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ko\nPlural-Forms: nplurals=1; plural=0;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count}개의 파일이 충돌함"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{dirname}에서 {count}개의 파일이 충돌함"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} 남음"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} 남음"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["곧 완료"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["업로드 취소"]},Continue:{msgid:"Continue",msgstr:["확인"]},"estimating time left":{msgid:"estimating time left",msgstr:["남은 시간 계산"]},"Existing version":{msgid:"Existing version",msgstr:["현재 버전"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["두 버전을 모두 선택할 경우, 복제된 파일 이름에 숫자가 추가됩니다."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["최근 수정일 알 수 없음"]},New:{msgid:"New",msgstr:["새로 만들기"]},"New version":{msgid:"New version",msgstr:["새 버전"]},paused:{msgid:"paused",msgstr:["일시정지됨"]},"Preview image":{msgid:"Preview image",msgstr:["미리보기 이미지"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["모든 체크박스 선택"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["모든 파일 선택"]},"Select all new files":{msgid:"Select all new files",msgstr:["모든 새 파일 선택"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["{count}개의 파일 넘기기"]},"Unknown size":{msgid:"Unknown size",msgstr:["크기를 알 수 없음"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["업로드 취소됨"]},"Upload files":{msgid:"Upload files",msgstr:["파일 업로드"]},"Upload progress":{msgid:"Upload progress",msgstr:["업로드 진행도"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["어떤 파일을 보존하시겠습니까?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["계속하기 위해서는 한 파일에 최소 하나의 버전을 선택해야 합니다."]}}}}},{locale:"la",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Latin (https://www.transifex.com/nextcloud/teams/64236/la/)","Content-Type":"text/plain; charset=UTF-8",Language:"la","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Latin (https://www.transifex.com/nextcloud/teams/64236/la/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: la\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"lb",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Luxembourgish (https://www.transifex.com/nextcloud/teams/64236/lb/)","Content-Type":"text/plain; charset=UTF-8",Language:"lb","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Luxembourgish (https://www.transifex.com/nextcloud/teams/64236/lb/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lb\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"lo",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Lao (https://www.transifex.com/nextcloud/teams/64236/lo/)","Content-Type":"text/plain; charset=UTF-8",Language:"lo","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Lao (https://www.transifex.com/nextcloud/teams/64236/lo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lo\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"lt_LT",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Lithuanian (Lithuania) (https://www.transifex.com/nextcloud/teams/64236/lt_LT/)","Content-Type":"text/plain; charset=UTF-8",Language:"lt_LT","Plural-Forms":"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Lithuanian (Lithuania) (https://www.transifex.com/nextcloud/teams/64236/lt_LT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lt_LT\nPlural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"lv",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Latvian (https://www.transifex.com/nextcloud/teams/64236/lv/)","Content-Type":"text/plain; charset=UTF-8",Language:"lv","Plural-Forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Latvian (https://www.transifex.com/nextcloud/teams/64236/lv/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lv\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"mk",json:{charset:"utf-8",headers:{"Last-Translator":"Сашко Тодоров <sasetodorov@gmail.com>, 2022","Language-Team":"Macedonian (https://www.transifex.com/nextcloud/teams/64236/mk/)","Content-Type":"text/plain; charset=UTF-8",Language:"mk","Plural-Forms":"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nСашко Тодоров <sasetodorov@gmail.com>, 2022\n"},msgstr:["Last-Translator: Сашко Тодоров <sasetodorov@gmail.com>, 2022\nLanguage-Team: Macedonian (https://www.transifex.com/nextcloud/teams/64236/mk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mk\nPlural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["преостануваат {seconds} секунди"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["преостанува {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["уште неколку секунди"]},Add:{msgid:"Add",msgstr:["Додади"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Прекини прикачување"]},"estimating time left":{msgid:"estimating time left",msgstr:["приближно преостанато време"]},paused:{msgid:"paused",msgstr:["паузирано"]},"Upload files":{msgid:"Upload files",msgstr:["Прикачување датотеки"]}}}}},{locale:"mn",json:{charset:"utf-8",headers:{"Last-Translator":"BATKHUYAG Ganbold, 2023","Language-Team":"Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)","Content-Type":"text/plain; charset=UTF-8",Language:"mn","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nBATKHUYAG Ganbold, 2023\n"},msgstr:["Last-Translator: BATKHUYAG Ganbold, 2023\nLanguage-Team: Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mn\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} секунд үлдсэн"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} үлдсэн"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["хэдхэн секунд үлдсэн"]},Add:{msgid:"Add",msgstr:["Нэмэх"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Илгээлтийг цуцлах"]},"estimating time left":{msgid:"estimating time left",msgstr:["Үлдсэн хугацааг тооцоолж байна"]},paused:{msgid:"paused",msgstr:["түр зогсоосон"]},"Upload files":{msgid:"Upload files",msgstr:["Файл илгээх"]}}}}},{locale:"mr",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Marathi (https://www.transifex.com/nextcloud/teams/64236/mr/)","Content-Type":"text/plain; charset=UTF-8",Language:"mr","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Marathi (https://www.transifex.com/nextcloud/teams/64236/mr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mr\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ms_MY",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Malay (Malaysia) (https://www.transifex.com/nextcloud/teams/64236/ms_MY/)","Content-Type":"text/plain; charset=UTF-8",Language:"ms_MY","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Malay (Malaysia) (https://www.transifex.com/nextcloud/teams/64236/ms_MY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ms_MY\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"my",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Burmese (https://www.transifex.com/nextcloud/teams/64236/my/)","Content-Type":"text/plain; charset=UTF-8",Language:"my","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Burmese (https://www.transifex.com/nextcloud/teams/64236/my/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: my\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"nb_NO",json:{charset:"utf-8",headers:{"Last-Translator":"Syvert Fossdal, 2024","Language-Team":"Norwegian Bokmål (Norway) (https://app.transifex.com/nextcloud/teams/64236/nb_NO/)","Content-Type":"text/plain; charset=UTF-8",Language:"nb_NO","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nSyvert Fossdal, 2024\n"},msgstr:["Last-Translator: Syvert Fossdal, 2024\nLanguage-Team: Norwegian Bokmål (Norway) (https://app.transifex.com/nextcloud/teams/64236/nb_NO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nb_NO\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} file conflict","{count} filkonflikter"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} file conflict in {dirname}","{count} filkonflikter i {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} sekunder igjen"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} igjen"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["noen få sekunder igjen"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Avbryt opplastninger"]},Continue:{msgid:"Continue",msgstr:["Fortsett"]},"estimating time left":{msgid:"estimating time left",msgstr:["Estimerer tid igjen"]},"Existing version":{msgid:"Existing version",msgstr:["Gjeldende versjon"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Hvis du velger begge versjoner, vil den kopierte filen få et tall lagt til navnet."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Siste gang redigert ukjent"]},New:{msgid:"New",msgstr:["Ny"]},"New version":{msgid:"New version",msgstr:["Ny versjon"]},paused:{msgid:"paused",msgstr:["pauset"]},"Preview image":{msgid:"Preview image",msgstr:["Forhåndsvis bilde"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Velg alle"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Velg alle eksisterende filer"]},"Select all new files":{msgid:"Select all new files",msgstr:["Velg alle nye filer"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Skip this file","Hopp over {count} filer"]},"Unknown size":{msgid:"Unknown size",msgstr:["Ukjent størrelse"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Opplasting avbrutt"]},"Upload files":{msgid:"Upload files",msgstr:["Last opp filer"]},"Upload progress":{msgid:"Upload progress",msgstr:["Fremdrift, opplasting"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Hvilke filer vil du beholde?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Du må velge minst en versjon av hver fil for å fortsette."]}}}}},{locale:"ne",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Nepali (https://www.transifex.com/nextcloud/teams/64236/ne/)","Content-Type":"text/plain; charset=UTF-8",Language:"ne","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Nepali (https://www.transifex.com/nextcloud/teams/64236/ne/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ne\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"nl",json:{charset:"utf-8",headers:{"Last-Translator":"Rico <rico-schwab@hotmail.com>, 2023","Language-Team":"Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)","Content-Type":"text/plain; charset=UTF-8",Language:"nl","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nRico <rico-schwab@hotmail.com>, 2023\n"},msgstr:["Last-Translator: Rico <rico-schwab@hotmail.com>, 2023\nLanguage-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nl\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["Nog {seconds} seconden"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{seconds} over"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["Nog een paar seconden"]},Add:{msgid:"Add",msgstr:["Voeg toe"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Uploads annuleren"]},"estimating time left":{msgid:"estimating time left",msgstr:["Schatting van de resterende tijd"]},paused:{msgid:"paused",msgstr:["Gepauzeerd"]},"Upload files":{msgid:"Upload files",msgstr:["Upload bestanden"]}}}}},{locale:"nn",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Norwegian Nynorsk (https://www.transifex.com/nextcloud/teams/64236/nn/)","Content-Type":"text/plain; charset=UTF-8",Language:"nn","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Norwegian Nynorsk (https://www.transifex.com/nextcloud/teams/64236/nn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nn\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"nn_NO",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Norwegian Nynorsk (Norway) (https://www.transifex.com/nextcloud/teams/64236/nn_NO/)","Content-Type":"text/plain; charset=UTF-8",Language:"nn_NO","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Norwegian Nynorsk (Norway) (https://www.transifex.com/nextcloud/teams/64236/nn_NO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nn_NO\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"oc",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Occitan (post 1500) (https://www.transifex.com/nextcloud/teams/64236/oc/)","Content-Type":"text/plain; charset=UTF-8",Language:"oc","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Occitan (post 1500) (https://www.transifex.com/nextcloud/teams/64236/oc/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: oc\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"pl",json:{charset:"utf-8",headers:{"Last-Translator":"Valdnet, 2024","Language-Team":"Polish (https://app.transifex.com/nextcloud/teams/64236/pl/)","Content-Type":"text/plain; charset=UTF-8",Language:"pl","Plural-Forms":"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nM H <haincu@o2.pl>, 2023\nValdnet, 2024\n"},msgstr:["Last-Translator: Valdnet, 2024\nLanguage-Team: Polish (https://app.transifex.com/nextcloud/teams/64236/pl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pl\nPlural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["konflikt 1 pliku","{count} konfliktów plików","{count} konfliktów plików","{count} konfliktów plików"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} konfliktowy plik w {dirname}","{count} konfliktowych plików w {dirname}","{count} konfliktowych plików w {dirname}","{count} konfliktowych plików w {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["Pozostało {seconds} sekund"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["Pozostało {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["Pozostało kilka sekund"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Anuluj wysyłanie"]},Continue:{msgid:"Continue",msgstr:["Kontynuuj"]},"estimating time left":{msgid:"estimating time left",msgstr:["Szacowanie pozostałego czasu"]},"Existing version":{msgid:"Existing version",msgstr:["Istniejąca wersja"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Jeżeli wybierzesz obie wersje to do nazw skopiowanych plików zostanie dodany numer"]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Nieznana data ostatniej modyfikacji"]},New:{msgid:"New",msgstr:["Nowy"]},"New version":{msgid:"New version",msgstr:["Nowa wersja"]},paused:{msgid:"paused",msgstr:["Wstrzymane"]},"Preview image":{msgid:"Preview image",msgstr:["Podgląd obrazu"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Zaznacz wszystkie boxy"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Zaznacz wszystkie istniejące pliki"]},"Select all new files":{msgid:"Select all new files",msgstr:["Zaznacz wszystkie nowe pliki"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Pomiń 1 plik","Pomiń {count} plików","Pomiń {count} plików","Pomiń {count} plików"]},"Unknown size":{msgid:"Unknown size",msgstr:["Nieznany rozmiar"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Anulowano wysyłanie"]},"Upload files":{msgid:"Upload files",msgstr:["Wyślij pliki"]},"Upload progress":{msgid:"Upload progress",msgstr:["Postęp wysyłania"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Które pliki chcesz zachować"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Aby kontynuować, musisz wybrać co najmniej jedną wersję każdego pliku."]}}}}},{locale:"ps",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Pashto (https://www.transifex.com/nextcloud/teams/64236/ps/)","Content-Type":"text/plain; charset=UTF-8",Language:"ps","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Pashto (https://www.transifex.com/nextcloud/teams/64236/ps/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ps\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"pt_BR",json:{charset:"utf-8",headers:{"Last-Translator":"Leonardo Colman Lopes <leonardo.dev@colman.com.br>, 2024","Language-Team":"Portuguese (Brazil) (https://app.transifex.com/nextcloud/teams/64236/pt_BR/)","Content-Type":"text/plain; charset=UTF-8",Language:"pt_BR","Plural-Forms":"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nLeonardo Colman Lopes <leonardo.dev@colman.com.br>, 2024\n"},msgstr:["Last-Translator: Leonardo Colman Lopes <leonardo.dev@colman.com.br>, 2024\nLanguage-Team: Portuguese (Brazil) (https://app.transifex.com/nextcloud/teams/64236/pt_BR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pt_BR\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} arquivos em conflito","{count} arquivos em conflito","{count} arquivos em conflito"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} conflitos de arquivo em {dirname}","{count} conflitos de arquivo em {dirname}","{count} conflitos de arquivo em {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} segundos restantes"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} restante"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["alguns segundos restantes"]},Cancel:{msgid:"Cancel",msgstr:["Cancelar"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Cancelar a operação inteira"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancelar uploads"]},Continue:{msgid:"Continue",msgstr:["Continuar"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimando tempo restante"]},"Existing version":{msgid:"Existing version",msgstr:["Versão existente"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Se você selecionar ambas as versões, o arquivo copiado terá um número adicionado ao seu nome."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Data da última modificação desconhecida"]},New:{msgid:"New",msgstr:["Novo"]},"New version":{msgid:"New version",msgstr:["Nova versão"]},paused:{msgid:"paused",msgstr:["pausado"]},"Preview image":{msgid:"Preview image",msgstr:["Visualizar imagem"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Marque todas as caixas de seleção"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Selecione todos os arquivos existentes"]},"Select all new files":{msgid:"Select all new files",msgstr:["Selecione todos os novos arquivos"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Ignorar {count} arquivos","Ignorar {count} arquivos","Ignorar {count} arquivos"]},"Unknown size":{msgid:"Unknown size",msgstr:["Tamanho desconhecido"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Envio cancelado"]},"Upload files":{msgid:"Upload files",msgstr:["Enviar arquivos"]},"Upload progress":{msgid:"Upload progress",msgstr:["Envio em progresso"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Quando uma pasta é selecionada, quaisquer arquivos dentro dela também serão sobrescritos."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Quais arquivos você deseja manter?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Você precisa selecionar pelo menos uma versão de cada arquivo para continuar."]}}}}},{locale:"pt_PT",json:{charset:"utf-8",headers:{"Last-Translator":"Manuela Silva <mmsrs@sky.com>, 2022","Language-Team":"Portuguese (Portugal) (https://www.transifex.com/nextcloud/teams/64236/pt_PT/)","Content-Type":"text/plain; charset=UTF-8",Language:"pt_PT","Plural-Forms":"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nManuela Silva <mmsrs@sky.com>, 2022\n"},msgstr:["Last-Translator: Manuela Silva <mmsrs@sky.com>, 2022\nLanguage-Team: Portuguese (Portugal) (https://www.transifex.com/nextcloud/teams/64236/pt_PT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pt_PT\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["faltam {seconds} segundo(s)"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["faltam {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["faltam uns segundos"]},Add:{msgid:"Add",msgstr:["Adicionar"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Cancelar envios"]},"estimating time left":{msgid:"estimating time left",msgstr:["tempo em falta estimado"]},paused:{msgid:"paused",msgstr:["pausado"]},"Upload files":{msgid:"Upload files",msgstr:["Enviar ficheiros"]}}}}},{locale:"ro",json:{charset:"utf-8",headers:{"Last-Translator":"Mădălin Vasiliu <contact@madalinvasiliu.com>, 2022","Language-Team":"Romanian (https://www.transifex.com/nextcloud/teams/64236/ro/)","Content-Type":"text/plain; charset=UTF-8",Language:"ro","Plural-Forms":"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nMădălin Vasiliu <contact@madalinvasiliu.com>, 2022\n"},msgstr:["Last-Translator: Mădălin Vasiliu <contact@madalinvasiliu.com>, 2022\nLanguage-Team: Romanian (https://www.transifex.com/nextcloud/teams/64236/ro/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ro\nPlural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} secunde rămase"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["{time} rămas"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["câteva secunde rămase"]},Add:{msgid:"Add",msgstr:["Adaugă"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Anulați încărcările"]},"estimating time left":{msgid:"estimating time left",msgstr:["estimarea timpului rămas"]},paused:{msgid:"paused",msgstr:["pus pe pauză"]},"Upload files":{msgid:"Upload files",msgstr:["Încarcă fișiere"]}}}}},{locale:"ru",json:{charset:"utf-8",headers:{"Last-Translator":"Александр, 2023","Language-Team":"Russian (https://app.transifex.com/nextcloud/teams/64236/ru/)","Content-Type":"text/plain; charset=UTF-8",Language:"ru","Plural-Forms":"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nMax Smith <sevinfolds@gmail.com>, 2023\nАлександр, 2023\n"},msgstr:["Last-Translator: Александр, 2023\nLanguage-Team: Russian (https://app.transifex.com/nextcloud/teams/64236/ru/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ru\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["конфликт {count} файла","конфликт {count} файлов","конфликт {count} файлов","конфликт {count} файлов"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["конфликт {count} файла в {dirname}","конфликт {count} файлов в {dirname}","конфликт {count} файлов в {dirname}","конфликт {count} файлов в {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["осталось {seconds} секунд"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["осталось {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["осталось несколько секунд"]},Add:{msgid:"Add",msgstr:["Добавить"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Отменить загрузки"]},Continue:{msgid:"Continue",msgstr:["Продолжить"]},"estimating time left":{msgid:"estimating time left",msgstr:["оценка оставшегося времени"]},"Existing version":{msgid:"Existing version",msgstr:["Текущая версия"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Если вы выберете обе версии, к имени скопированного файла будет добавлен номер."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Дата последнего изменения неизвестна"]},"New version":{msgid:"New version",msgstr:["Новая версия"]},paused:{msgid:"paused",msgstr:["приостановлено"]},"Preview image":{msgid:"Preview image",msgstr:["Предварительный просмотр"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Установить все флажки"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Выбрать все существующие файлы"]},"Select all new files":{msgid:"Select all new files",msgstr:["Выбрать все новые файлы"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Пропустить файл","Пропустить {count} файла","Пропустить {count} файлов","Пропустить {count} файлов"]},"Unknown size":{msgid:"Unknown size",msgstr:["Неизвестный размер"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Загрузка отменена"]},"Upload files":{msgid:"Upload files",msgstr:["Загрузка файлов"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Какие файлы вы хотите сохранить?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Для продолжения вам нужно выбрать по крайней мере одну версию каждого файла."]}}}}},{locale:"ru_RU",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Russian (Russia) (https://www.transifex.com/nextcloud/teams/64236/ru_RU/)","Content-Type":"text/plain; charset=UTF-8",Language:"ru_RU","Plural-Forms":"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Russian (Russia) (https://www.transifex.com/nextcloud/teams/64236/ru_RU/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ru_RU\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"sc",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Sardinian (https://www.transifex.com/nextcloud/teams/64236/sc/)","Content-Type":"text/plain; charset=UTF-8",Language:"sc","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sardinian (https://www.transifex.com/nextcloud/teams/64236/sc/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sc\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"si",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Sinhala (https://www.transifex.com/nextcloud/teams/64236/si/)","Content-Type":"text/plain; charset=UTF-8",Language:"si","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sinhala (https://www.transifex.com/nextcloud/teams/64236/si/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: si\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"si_LK",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Sinhala (Sri Lanka) (https://www.transifex.com/nextcloud/teams/64236/si_LK/)","Content-Type":"text/plain; charset=UTF-8",Language:"si_LK","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sinhala (Sri Lanka) (https://www.transifex.com/nextcloud/teams/64236/si_LK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: si_LK\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"sk_SK",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Slovak (Slovakia) (https://www.transifex.com/nextcloud/teams/64236/sk_SK/)","Content-Type":"text/plain; charset=UTF-8",Language:"sk_SK","Plural-Forms":"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Slovak (Slovakia) (https://www.transifex.com/nextcloud/teams/64236/sk_SK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sk_SK\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"sl",json:{charset:"utf-8",headers:{"Last-Translator":"Matej Urbančič <>, 2022","Language-Team":"Slovenian (https://www.transifex.com/nextcloud/teams/64236/sl/)","Content-Type":"text/plain; charset=UTF-8",Language:"sl","Plural-Forms":"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nMatej Urbančič <>, 2022\n"},msgstr:["Last-Translator: Matej Urbančič <>, 2022\nLanguage-Team: Slovenian (https://www.transifex.com/nextcloud/teams/64236/sl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sl\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["še {seconds} sekund"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["še {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["še nekaj sekund"]},Add:{msgid:"Add",msgstr:["Dodaj"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Prekliči pošiljanje"]},"estimating time left":{msgid:"estimating time left",msgstr:["ocenjen čas do konca"]},paused:{msgid:"paused",msgstr:["v premoru"]},"Upload files":{msgid:"Upload files",msgstr:["Pošlji datoteke"]}}}}},{locale:"sl_SI",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Slovenian (Slovenia) (https://www.transifex.com/nextcloud/teams/64236/sl_SI/)","Content-Type":"text/plain; charset=UTF-8",Language:"sl_SI","Plural-Forms":"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Slovenian (Slovenia) (https://www.transifex.com/nextcloud/teams/64236/sl_SI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sl_SI\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"sq",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Albanian (https://www.transifex.com/nextcloud/teams/64236/sq/)","Content-Type":"text/plain; charset=UTF-8",Language:"sq","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Albanian (https://www.transifex.com/nextcloud/teams/64236/sq/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sq\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"sr",json:{charset:"utf-8",headers:{"Last-Translator":"Иван Пешић, 2023","Language-Team":"Serbian (https://app.transifex.com/nextcloud/teams/64236/sr/)","Content-Type":"text/plain; charset=UTF-8",Language:"sr","Plural-Forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nИван Пешић, 2023\n"},msgstr:["Last-Translator: Иван Пешић, 2023\nLanguage-Team: Serbian (https://app.transifex.com/nextcloud/teams/64236/sr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sr\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} фајл конфликт","{count} фајл конфликта","{count} фајл конфликта"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} фајл конфликт у {dirname}","{count} фајл конфликта у {dirname}","{count} фајл конфликта у {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["преостало је {seconds} секунди"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} преостало"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["преостало је неколико секунди"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Обустави отпремања"]},Continue:{msgid:"Continue",msgstr:["Настави"]},"estimating time left":{msgid:"estimating time left",msgstr:["процена преосталог времена"]},"Existing version":{msgid:"Existing version",msgstr:["Постојећа верзија"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Ако изаберете обе верзије, на име копираног фајла ће се додати број."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Није познат датум последње измене"]},New:{msgid:"New",msgstr:["Ново"]},"New version":{msgid:"New version",msgstr:["Нова верзија"]},paused:{msgid:"paused",msgstr:["паузирано"]},"Preview image":{msgid:"Preview image",msgstr:["Слика прегледа"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Штиклирај сва поља за штиклирање"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Изабери све постојеће фајлове"]},"Select all new files":{msgid:"Select all new files",msgstr:["Изабери све нове фајлове"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Прескочи овај фајл","Прескочи {count} фајла","Прескочи {count} фајлова"]},"Unknown size":{msgid:"Unknown size",msgstr:["Непозната величина"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Отпремање је отказано"]},"Upload files":{msgid:"Upload files",msgstr:["Отпреми фајлове"]},"Upload progress":{msgid:"Upload progress",msgstr:["Напредак отпремања"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Које фајлове желите да задржите?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Морате да изаберете барем једну верзију сваког фајла да наставите."]}}}}},{locale:"sr@latin",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Serbian (Latin) (https://www.transifex.com/nextcloud/teams/64236/sr@latin/)","Content-Type":"text/plain; charset=UTF-8",Language:"sr@latin","Plural-Forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Serbian (Latin) (https://www.transifex.com/nextcloud/teams/64236/sr@latin/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sr@latin\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"sv",json:{charset:"utf-8",headers:{"Last-Translator":"Magnus Höglund, 2024","Language-Team":"Swedish (https://app.transifex.com/nextcloud/teams/64236/sv/)","Content-Type":"text/plain; charset=UTF-8",Language:"sv","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nMagnus Höglund, 2024\n"},msgstr:["Last-Translator: Magnus Höglund, 2024\nLanguage-Team: Swedish (https://app.transifex.com/nextcloud/teams/64236/sv/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sv\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} filkonflikt","{count} filkonflikter"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} filkonflikt i {dirname}","{count} filkonflikter i {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} sekunder kvarstår"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} kvarstår"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["några sekunder kvar"]},Cancel:{msgid:"Cancel",msgstr:["Avbryt"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Avbryt hela operationen"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Avbryt uppladdningar"]},Continue:{msgid:"Continue",msgstr:["Fortsätt"]},"estimating time left":{msgid:"estimating time left",msgstr:["uppskattar kvarstående tid"]},"Existing version":{msgid:"Existing version",msgstr:["Nuvarande version"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Om du väljer båda versionerna kommer den kopierade filen att få ett nummer tillagt i namnet."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Senaste ändringsdatum okänt"]},New:{msgid:"New",msgstr:["Ny"]},"New version":{msgid:"New version",msgstr:["Ny version"]},paused:{msgid:"paused",msgstr:["pausad"]},"Preview image":{msgid:"Preview image",msgstr:["Förhandsgranska bild"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Markera alla kryssrutor"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Välj alla befintliga filer"]},"Select all new files":{msgid:"Select all new files",msgstr:["Välj alla nya filer"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Hoppa över denna fil","Hoppa över {count} filer"]},"Unknown size":{msgid:"Unknown size",msgstr:["Okänd storlek"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Uppladdningen avbröts"]},"Upload files":{msgid:"Upload files",msgstr:["Ladda upp filer"]},"Upload progress":{msgid:"Upload progress",msgstr:["Uppladdningsförlopp"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["När en inkommande mapp väljs skrivs även alla konfliktande filer i den över."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Vilka filer vill du behålla?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Du måste välja minst en version av varje fil för att fortsätta."]}}}}},{locale:"sw",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Swahili (https://www.transifex.com/nextcloud/teams/64236/sw/)","Content-Type":"text/plain; charset=UTF-8",Language:"sw","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Swahili (https://www.transifex.com/nextcloud/teams/64236/sw/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sw\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ta",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Tamil (https://www.transifex.com/nextcloud/teams/64236/ta/)","Content-Type":"text/plain; charset=UTF-8",Language:"ta","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Tamil (https://www.transifex.com/nextcloud/teams/64236/ta/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ta\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"ta_LK",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Tamil (Sri-Lanka) (https://www.transifex.com/nextcloud/teams/64236/ta_LK/)","Content-Type":"text/plain; charset=UTF-8",Language:"ta_LK","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Tamil (Sri-Lanka) (https://www.transifex.com/nextcloud/teams/64236/ta_LK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ta_LK\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"th",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Thai (https://www.transifex.com/nextcloud/teams/64236/th/)","Content-Type":"text/plain; charset=UTF-8",Language:"th","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Thai (https://www.transifex.com/nextcloud/teams/64236/th/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: th\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"th_TH",json:{charset:"utf-8",headers:{"Last-Translator":"Phongpanot Phairat <ppnplus@protonmail.com>, 2022","Language-Team":"Thai (Thailand) (https://www.transifex.com/nextcloud/teams/64236/th_TH/)","Content-Type":"text/plain; charset=UTF-8",Language:"th_TH","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nPhongpanot Phairat <ppnplus@protonmail.com>, 2022\n"},msgstr:["Last-Translator: Phongpanot Phairat <ppnplus@protonmail.com>, 2022\nLanguage-Team: Thai (Thailand) (https://www.transifex.com/nextcloud/teams/64236/th_TH/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: th_TH\nPlural-Forms: nplurals=1; plural=0;\n"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["เหลืออีก {seconds} วินาที"]},"{time} left":{msgid:"{time} left",comments:{extracted:"time has the format 00:00:00"},msgstr:["เหลืออีก {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["เหลืออีกไม่กี่วินาที"]},Add:{msgid:"Add",msgstr:["เพิ่ม"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["ยกเลิกการอัปโหลด"]},"estimating time left":{msgid:"estimating time left",msgstr:["กำลังคำนวณเวลาที่เหลือ"]},paused:{msgid:"paused",msgstr:["หยุดชั่วคราว"]},"Upload files":{msgid:"Upload files",msgstr:["อัปโหลดไฟล์"]}}}}},{locale:"tk",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Turkmen (https://www.transifex.com/nextcloud/teams/64236/tk/)","Content-Type":"text/plain; charset=UTF-8",Language:"tk","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Turkmen (https://www.transifex.com/nextcloud/teams/64236/tk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: tk\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"tr",json:{charset:"utf-8",headers:{"Last-Translator":"Kaya Zeren <kayazeren@gmail.com>, 2024","Language-Team":"Turkish (https://app.transifex.com/nextcloud/teams/64236/tr/)","Content-Type":"text/plain; charset=UTF-8",Language:"tr","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nKaya Zeren <kayazeren@gmail.com>, 2024\n"},msgstr:["Last-Translator: Kaya Zeren <kayazeren@gmail.com>, 2024\nLanguage-Team: Turkish (https://app.transifex.com/nextcloud/teams/64236/tr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: tr\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} dosya çakışması var","{count} dosya çakışması var"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{dirname} klasöründe {count} dosya çakışması var","{dirname} klasöründe {count} dosya çakışması var"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["{seconds} saniye kaldı"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["{time} kaldı"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["bir kaç saniye kaldı"]},Cancel:{msgid:"Cancel",msgstr:["İptal"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Tüm işlemi iptal et"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Yüklemeleri iptal et"]},Continue:{msgid:"Continue",msgstr:["İlerle"]},"estimating time left":{msgid:"estimating time left",msgstr:["öngörülen kalan süre"]},"Existing version":{msgid:"Existing version",msgstr:["Var olan sürüm"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["İki sürümü de seçerseniz, kopyalanan dosyanın adına bir sayı eklenir."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Son değiştirilme tarihi bilinmiyor"]},New:{msgid:"New",msgstr:["Yeni"]},"New version":{msgid:"New version",msgstr:["Yeni sürüm"]},paused:{msgid:"paused",msgstr:["duraklatıldı"]},"Preview image":{msgid:"Preview image",msgstr:["Görsel ön izlemesi"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Tüm kutuları işaretle"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Tüm var olan dosyaları seç"]},"Select all new files":{msgid:"Select all new files",msgstr:["Tüm yeni dosyaları seç"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Bu dosyayı atla","{count} dosyayı atla"]},"Unknown size":{msgid:"Unknown size",msgstr:["Boyut bilinmiyor"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Yükleme iptal edildi"]},"Upload files":{msgid:"Upload files",msgstr:["Dosyaları yükle"]},"Upload progress":{msgid:"Upload progress",msgstr:["Yükleme ilerlemesi"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Bir gelen klasör seçildiğinde, içindeki çakışan dosyaların da üzerine yazılır."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Hangi dosyaları tutmak istiyorsunuz?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["İlerlemek için her dosyanın en az bir sürümünü seçmelisiniz."]}}}}},{locale:"ug",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Uyghur (https://www.transifex.com/nextcloud/teams/64236/ug/)","Content-Type":"text/plain; charset=UTF-8",Language:"ug","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Uyghur (https://www.transifex.com/nextcloud/teams/64236/ug/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ug\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"uk",json:{charset:"utf-8",headers:{"Last-Translator":"O St <oleksiy.stasevych@gmail.com>, 2024","Language-Team":"Ukrainian (https://app.transifex.com/nextcloud/teams/64236/uk/)","Content-Type":"text/plain; charset=UTF-8",Language:"uk","Plural-Forms":"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\nO St <oleksiy.stasevych@gmail.com>, 2024\n"},msgstr:["Last-Translator: O St <oleksiy.stasevych@gmail.com>, 2024\nLanguage-Team: Ukrainian (https://app.transifex.com/nextcloud/teams/64236/uk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: uk\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} конфліктний файл","{count} конфліктних файли","{count} конфліктних файлів","{count} конфліктних файлів"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} конфліктний файл у каталозі {dirname}","{count} конфліктних файли у каталозі {dirname}","{count} конфліктних файлів у каталозі {dirname}","{count} конфліктних файлів у каталозі {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["Залишилося {seconds} секунд"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["Залишилося {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["залишилося кілька секунд"]},Cancel:{msgid:"Cancel",msgstr:["Скасувати"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["Скасувати операцію повністю"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Скасувати завантаження"]},Continue:{msgid:"Continue",msgstr:["Продовжити"]},"estimating time left":{msgid:"estimating time left",msgstr:["оцінка часу, що залишився"]},"Existing version":{msgid:"Existing version",msgstr:["Присутня версія"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Якщо ви виберете обидві версії, буде створено копію файлу до назви якої буде додано цифру."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Дата останньої зміни невідома"]},New:{msgid:"New",msgstr:["Нове"]},"New version":{msgid:"New version",msgstr:["Нова версія"]},paused:{msgid:"paused",msgstr:["призупинено"]},"Preview image":{msgid:"Preview image",msgstr:["Попередній перегляд"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Вибрати все"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Вибрати всі присутні файли"]},"Select all new files":{msgid:"Select all new files",msgstr:["Виберіть усі нові файли"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Пропустити файл","Пропустити {count} файли","Пропустити {count} файлів","Пропустити {count} файлів"]},"Unknown size":{msgid:"Unknown size",msgstr:["Невідомий розмір"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Завантаження скасовано"]},"Upload files":{msgid:"Upload files",msgstr:["Завантажити файли"]},"Upload progress":{msgid:"Upload progress",msgstr:["Поступ завантаження"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["У разі вибору каталогу призначення, будь-які конфліктні файли в такому каталозі буде перезаписано поверх."]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Які файли залишити?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Для продовження потрібно вибрати принаймні одну версію для кожного файлу."]}}}}},{locale:"ur_PK",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Urdu (Pakistan) (https://www.transifex.com/nextcloud/teams/64236/ur_PK/)","Content-Type":"text/plain; charset=UTF-8",Language:"ur_PK","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Urdu (Pakistan) (https://www.transifex.com/nextcloud/teams/64236/ur_PK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ur_PK\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"uz",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2022","Language-Team":"Uzbek (https://www.transifex.com/nextcloud/teams/64236/uz/)","Content-Type":"text/plain; charset=UTF-8",Language:"uz","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2022\n"},msgstr:["Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Uzbek (https://www.transifex.com/nextcloud/teams/64236/uz/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: uz\nPlural-Forms: nplurals=1; plural=0;\n"]},"{estimate} seconds left":{msgid:"{estimate} seconds left",msgstr:[""]},"{hours} hours and {minutes} minutes left":{msgid:"{hours} hours and {minutes} minutes left",msgstr:[""]},"{minutes} minutes left":{msgid:"{minutes} minutes left",msgstr:[""]},"a few seconds left":{msgid:"a few seconds left",msgstr:[""]},Add:{msgid:"Add",msgstr:[""]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:[""]},"estimating time left":{msgid:"estimating time left",msgstr:[""]},paused:{msgid:"paused",msgstr:[""]}}}}},{locale:"vi",json:{charset:"utf-8",headers:{"Last-Translator":"Tung DangQuang, 2023","Language-Team":"Vietnamese (https://app.transifex.com/nextcloud/teams/64236/vi/)","Content-Type":"text/plain; charset=UTF-8",Language:"vi","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nTung DangQuang, 2023\n"},msgstr:["Last-Translator: Tung DangQuang, 2023\nLanguage-Team: Vietnamese (https://app.transifex.com/nextcloud/teams/64236/vi/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: vi\nPlural-Forms: nplurals=1; plural=0;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} Tập tin xung đột"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{count} tập tin lỗi trong {dirname}"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["Còn {second} giây"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["Còn lại {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["Còn lại một vài giây"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["Huỷ tải lên"]},Continue:{msgid:"Continue",msgstr:["Tiếp Tục"]},"estimating time left":{msgid:"estimating time left",msgstr:["Thời gian còn lại dự kiến"]},"Existing version":{msgid:"Existing version",msgstr:["Phiên Bản Hiện Tại"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["Nếu bạn chọn cả hai phiên bản, tệp được sao chép sẽ có thêm một số vào tên của nó."]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["Ngày sửa dổi lần cuối không xác định"]},New:{msgid:"New",msgstr:["Tạo Mới"]},"New version":{msgid:"New version",msgstr:["Phiên Bản Mới"]},paused:{msgid:"paused",msgstr:["đã tạm dừng"]},"Preview image":{msgid:"Preview image",msgstr:["Xem Trước Ảnh"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["Chọn tất cả hộp checkbox"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["Chọn tất cả các tập tin có sẵn"]},"Select all new files":{msgid:"Select all new files",msgstr:["Chọn tất cả các tập tin mới"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["Bỏ Qua {count} tập tin"]},"Unknown size":{msgid:"Unknown size",msgstr:["Không rõ dung lượng"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["Dừng Tải Lên"]},"Upload files":{msgid:"Upload files",msgstr:["Tập tin tải lên"]},"Upload progress":{msgid:"Upload progress",msgstr:["Đang Tải Lên"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["Bạn muốn giữ tập tin nào?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["Bạn cần chọn ít nhất một phiên bản tập tin mới có thể tiếp tục"]}}}}},{locale:"zh_CN",json:{charset:"utf-8",headers:{"Last-Translator":"Hongbo Chen, 2023","Language-Team":"Chinese (China) (https://app.transifex.com/nextcloud/teams/64236/zh_CN/)","Content-Type":"text/plain; charset=UTF-8",Language:"zh_CN","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nHongbo Chen, 2023\n"},msgstr:["Last-Translator: Hongbo Chen, 2023\nLanguage-Team: Chinese (China) (https://app.transifex.com/nextcloud/teams/64236/zh_CN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_CN\nPlural-Forms: nplurals=1; plural=0;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count}文件冲突"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["在{dirname}目录下有{count}个文件冲突"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["剩余 {seconds} 秒"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["剩余 {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["还剩几秒"]},Add:{msgid:"Add",msgstr:["添加"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["取消上传"]},Continue:{msgid:"Continue",msgstr:["继续"]},"estimating time left":{msgid:"estimating time left",msgstr:["估计剩余时间"]},"Existing version":{msgid:"Existing version",msgstr:["版本已存在"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["如果选择所有的版本,新增版本的文件名为原文件名加数字"]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["文件最后修改日期未知"]},"New version":{msgid:"New version",msgstr:["新版本"]},paused:{msgid:"paused",msgstr:["已暂停"]},"Preview image":{msgid:"Preview image",msgstr:["图片预览"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["选择所有的选择框"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["选择所有存在的文件"]},"Select all new files":{msgid:"Select all new files",msgstr:["选择所有的新文件"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["跳过{count}个文件"]},"Unknown size":{msgid:"Unknown size",msgstr:["文件大小未知"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["取消上传"]},"Upload files":{msgid:"Upload files",msgstr:["上传文件"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["你要保留哪些文件?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["每个文件至少选择一个版本"]}}}}},{locale:"zh_HK",json:{charset:"utf-8",headers:{"Last-Translator":"Café Tango, 2023","Language-Team":"Chinese (Hong Kong) (https://app.transifex.com/nextcloud/teams/64236/zh_HK/)","Content-Type":"text/plain; charset=UTF-8",Language:"zh_HK","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nCafé Tango, 2023\n"},msgstr:["Last-Translator: Café Tango, 2023\nLanguage-Team: Chinese (Hong Kong) (https://app.transifex.com/nextcloud/teams/64236/zh_HK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_HK\nPlural-Forms: nplurals=1; plural=0;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} 個檔案衝突"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{dirname} 中有 {count} 個檔案衝突"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["剩餘 {seconds} 秒"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["剩餘 {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["還剩幾秒"]},Add:{msgid:"Add",msgstr:["添加"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["取消上傳"]},Continue:{msgid:"Continue",msgstr:["繼續"]},"estimating time left":{msgid:"estimating time left",msgstr:["估計剩餘時間"]},"Existing version":{msgid:"Existing version",msgstr:["既有版本"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["若您選取兩個版本,複製的檔案的名稱將會新增編號。"]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["最後修改日期不詳"]},"New version":{msgid:"New version",msgstr:["新版本 "]},paused:{msgid:"paused",msgstr:["已暫停"]},"Preview image":{msgid:"Preview image",msgstr:["預覽圖片"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["選取所有核取方塊"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["選取所有既有檔案"]},"Select all new files":{msgid:"Select all new files",msgstr:["選取所有新檔案"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["略過 {count} 個檔案"]},"Unknown size":{msgid:"Unknown size",msgstr:["大小不詳"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["已取消上傳"]},"Upload files":{msgid:"Upload files",msgstr:["上傳檔案"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["您想保留哪些檔案?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["您必須為每個檔案都至少選取一個版本以繼續。"]}}}}},{locale:"zh_TW",json:{charset:"utf-8",headers:{"Last-Translator":"黃柏諺 <s8321414@gmail.com>, 2024","Language-Team":"Chinese (Taiwan) (https://app.transifex.com/nextcloud/teams/64236/zh_TW/)","Content-Type":"text/plain; charset=UTF-8",Language:"zh_TW","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2024\n黃柏諺 <s8321414@gmail.com>, 2024\n"},msgstr:["Last-Translator: 黃柏諺 <s8321414@gmail.com>, 2024\nLanguage-Team: Chinese (Taiwan) (https://app.transifex.com/nextcloud/teams/64236/zh_TW/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_TW\nPlural-Forms: nplurals=1; plural=0;\n"]},"{count} file conflict":{msgid:"{count} file conflict",msgid_plural:"{count} files conflict",msgstr:["{count} 個檔案衝突"]},"{count} file conflict in {dirname}":{msgid:"{count} file conflict in {dirname}",msgid_plural:"{count} file conflicts in {dirname}",msgstr:["{dirname} 中有 {count} 個檔案衝突"]},"{seconds} seconds left":{msgid:"{seconds} seconds left",msgstr:["剩餘 {seconds} 秒"]},"{time} left":{msgid:"{time} left",comments:{extracted:"TRANSLATORS time has the format 00:00:00"},msgstr:["剩餘 {time}"]},"a few seconds left":{msgid:"a few seconds left",msgstr:["還剩幾秒"]},Cancel:{msgid:"Cancel",msgstr:["取消"]},"Cancel the entire operation":{msgid:"Cancel the entire operation",msgstr:["取消整個操作"]},"Cancel uploads":{msgid:"Cancel uploads",msgstr:["取消上傳"]},Continue:{msgid:"Continue",msgstr:["繼續"]},"estimating time left":{msgid:"estimating time left",msgstr:["估計剩餘時間"]},"Existing version":{msgid:"Existing version",msgstr:["既有版本"]},"If you select both versions, the copied file will have a number added to its name.":{msgid:"If you select both versions, the copied file will have a number added to its name.",msgstr:["若您選取兩個版本,複製的檔案的名稱將會新增編號。"]},"Last modified date unknown":{msgid:"Last modified date unknown",msgstr:["最後修改日期未知"]},New:{msgid:"New",msgstr:["新增"]},"New version":{msgid:"New version",msgstr:["新版本"]},paused:{msgid:"paused",msgstr:["已暫停"]},"Preview image":{msgid:"Preview image",msgstr:["預覽圖片"]},"Select all checkboxes":{msgid:"Select all checkboxes",msgstr:["選取所有核取方塊"]},"Select all existing files":{msgid:"Select all existing files",msgstr:["選取所有既有檔案"]},"Select all new files":{msgid:"Select all new files",msgstr:["選取所有新檔案"]},"Skip this file":{msgid:"Skip this file",msgid_plural:"Skip {count} files",msgstr:["略過 {count} 檔案"]},"Unknown size":{msgid:"Unknown size",msgstr:["未知大小"]},"Upload cancelled":{msgid:"Upload cancelled",msgstr:["已取消上傳"]},"Upload files":{msgid:"Upload files",msgstr:["上傳檔案"]},"Upload progress":{msgid:"Upload progress",msgstr:["上傳進度"]},"When an incoming folder is selected, any conflicting files within it will also be overwritten.":{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["選取傳入資料夾後,其中任何的衝突檔案都會被覆寫。"]},"Which files do you want to keep?":{msgid:"Which files do you want to keep?",msgstr:["您想保留哪些檔案?"]},"You need to select at least one version of each file to continue.":{msgid:"You need to select at least one version of each file to continue.",msgstr:["您必須為每個檔案都至少選取一個版本以繼續。"]}}}}}].map((t=>ot.addTranslation(t.locale,t.json)));const at=ot.build(),lt=at.ngettext.bind(at),ct=at.gettext.bind(at),dt=j.Ay.extend({name:"UploadPicker",components:{Cancel:st,NcActionButton:z.A,NcActions:M.A,NcButton:R.A,NcIconSvgWrapper:V.A,NcProgressBar:$.A,Plus:it,Upload:rt},props:{accept:{type:Array,default:null},disabled:{type:Boolean,default:!1},multiple:{type:Boolean,default:!1},destination:{type:w.vd,default:void 0},content:{type:Array,default:()=>[]},forbiddenCharacters:{type:Array,default:()=>[]}},data:()=>({addLabel:ct("New"),cancelLabel:ct("Cancel uploads"),uploadLabel:ct("Upload files"),progressLabel:ct("Upload progress"),progressTimeId:`nc-uploader-progress-${Math.random().toString(36).slice(7)}`,eta:null,timeLeft:"",newFileMenuEntries:[],uploadManager:pt()}),computed:{totalQueueSize(){return this.uploadManager.info?.size||0},uploadedQueueSize(){return this.uploadManager.info?.progress||0},progress(){return Math.round(this.uploadedQueueSize/this.totalQueueSize*100)||0},queue(){return this.uploadManager.queue},hasFailure(){return 0!==this.queue?.filter((t=>t.status===Q.FAILED)).length},isUploading(){return this.queue?.length>0},isAssembling(){return 0!==this.queue?.filter((t=>t.status===Q.ASSEMBLING)).length},isPaused(){return this.uploadManager.info?.status===tt.PAUSED},buttonName(){if(!this.isUploading)return this.addLabel}},watch:{destination(t){this.setDestination(t)},totalQueueSize(t){this.eta=U({min:0,max:t}),this.updateStatus()},uploadedQueueSize(t){this.eta?.report?.(t),this.updateStatus()},isPaused(t){t?this.$emit("paused",this.queue):this.$emit("resumed",this.queue)}},beforeMount(){this.destination&&this.setDestination(this.destination),this.uploadManager.addNotifier(this.onUploadCompletion),J.debug("UploadPicker initialised")},methods:{onClick(){this.$refs.input.click()},async onPick(){let t=[...this.$refs.input.files];if(gt(t,this.content)){const e=t.filter((t=>this.content.find((e=>e.basename===t.name)))).filter(Boolean),n=t.filter((t=>!e.includes(t)));try{const{selected:s,renamed:i}=await ft(this.destination.basename,e,this.content);t=[...n,...s,...i]}catch{return void(0,D.Qg)(ct("Upload cancelled"))}}t.forEach((t=>{const e=(this.forbiddenCharacters||[]).find((e=>t.name.includes(e)));e?(0,D.Qg)(ct(`"${e}" is not allowed inside a file name.`)):this.uploadManager.upload(t.name,t).catch((()=>{}))})),this.$refs.form.reset()},onCancel(){this.uploadManager.queue.forEach((t=>{t.cancel()})),this.$refs.form.reset()},updateStatus(){if(this.isPaused)return void(this.timeLeft=ct("paused"));const t=Math.round(this.eta.estimate());if(t!==1/0)if(t<10)this.timeLeft=ct("a few seconds left");else if(t>60){const e=new Date(0);e.setSeconds(t);const n=e.toISOString().slice(11,19);this.timeLeft=ct("{time} left",{time:n})}else this.timeLeft=ct("{seconds} seconds left",{seconds:t});else this.timeLeft=ct("estimating time left")},setDestination(t){this.destination?(this.uploadManager.destination=t,this.newFileMenuEntries=(0,w.m1)(t)):J.debug("Invalid destination")},onUploadCompletion(t){t.status===Q.FAILED?this.$emit("failed",t):this.$emit("uploaded",t)}}}),ut=nt(dt,(function(){var t=this,e=t._self._c;return t._self._setupProxy,t.destination?e("form",{ref:"form",staticClass:"upload-picker",class:{"upload-picker--uploading":t.isUploading,"upload-picker--paused":t.isPaused},attrs:{"data-cy-upload-picker":""}},[t.newFileMenuEntries&&0===t.newFileMenuEntries.length?e("NcButton",{attrs:{disabled:t.disabled,"data-cy-upload-picker-add":"",type:"secondary"},on:{click:t.onClick},scopedSlots:t._u([{key:"icon",fn:function(){return[e("Plus",{attrs:{title:"",size:20,decorative:""}})]},proxy:!0}],null,!1,2954875042)},[t._v(" "+t._s(t.buttonName)+" ")]):e("NcActions",{attrs:{"menu-name":t.buttonName,"menu-title":t.addLabel,type:"secondary"},scopedSlots:t._u([{key:"icon",fn:function(){return[e("Plus",{attrs:{title:"",size:20,decorative:""}})]},proxy:!0}],null,!1,2954875042)},[e("NcActionButton",{attrs:{"data-cy-upload-picker-add":"","close-after-click":!0},on:{click:t.onClick},scopedSlots:t._u([{key:"icon",fn:function(){return[e("Upload",{attrs:{title:"",size:20,decorative:""}})]},proxy:!0}],null,!1,3606034491)},[t._v(" "+t._s(t.uploadLabel)+" ")]),t._l(t.newFileMenuEntries,(function(n){return e("NcActionButton",{key:n.id,staticClass:"upload-picker__menu-entry",attrs:{icon:n.iconClass,"close-after-click":!0},on:{click:function(e){return n.handler(t.destination,t.content)}},scopedSlots:t._u([n.iconSvgInline?{key:"icon",fn:function(){return[e("NcIconSvgWrapper",{attrs:{svg:n.iconSvgInline}})]},proxy:!0}:null],null,!0)},[t._v(" "+t._s(n.displayName)+" ")])}))],2),e("div",{directives:[{name:"show",rawName:"v-show",value:t.isUploading,expression:"isUploading"}],staticClass:"upload-picker__progress"},[e("NcProgressBar",{attrs:{"aria-label":t.progressLabel,"aria-describedby":t.progressTimeId,error:t.hasFailure,value:t.progress,size:"medium"}}),e("p",{attrs:{id:t.progressTimeId}},[t._v(" "+t._s(t.timeLeft)+" ")])],1),t.isUploading?e("NcButton",{staticClass:"upload-picker__cancel",attrs:{type:"tertiary","aria-label":t.cancelLabel,"data-cy-upload-picker-cancel":""},on:{click:t.onCancel},scopedSlots:t._u([{key:"icon",fn:function(){return[e("Cancel",{attrs:{title:"",size:20}})]},proxy:!0}],null,!1,4076886712)}):t._e(),e("input",{directives:[{name:"show",rawName:"v-show",value:!1,expression:"false"}],ref:"input",attrs:{type:"file",accept:t.accept?.join?.(", "),multiple:t.multiple,"data-cy-upload-picker-input":""},on:{change:t.onPick}})],1):t._e()}),[],!1,null,"eca9500a",null,null).exports;let mt=null;function pt(){const t=null!==document.querySelector('input[name="isPublic"][value="1"]');return mt instanceof et||(mt=new et(t)),mt}async function ft(t,e,s){const i=(0,j.$V)((()=>Promise.all([n.e(4208),n.e(3841)]).then(n.bind(n,33841))));return new Promise(((n,r)=>{const o=new j.Ay({name:"ConflictPickerRoot",render:a=>a(i,{props:{dirname:t,conflicts:e,content:s},on:{submit(t){n(t),o.$destroy(),o.$el?.parentNode?.removeChild(o.$el)},cancel(t){r(t??new Error("Canceled")),o.$destroy(),o.$el?.parentNode?.removeChild(o.$el)}}})});o.$mount(),document.body.appendChild(o.$el)}))}function gt(t,e){const n=e.map((t=>t.basename));return t.filter((t=>{const e=t instanceof File?t.name:t.basename;return-1!==n.indexOf(e)})).length>0}},88164:(t,e,n)=>{"use strict";n.d(e,{Jv:()=>r,dC:()=>s});const s=(t,e)=>{var n;return(null!=(n=null==e?void 0:e.baseURL)?n:o())+(t=>"/remote.php/"+t)(t)},i=(t,e,n)=>{const s=Object.assign({escape:!0},n||{});return"/"!==t.charAt(0)&&(t="/"+t),i=(i=e||{})||{},t.replace(/{([^{}]*)}/g,(function(t,e){const n=i[e];return s.escape?encodeURIComponent("string"==typeof n||"number"==typeof n?n.toString():t):"string"==typeof n||"number"==typeof n?n.toString():t}));var i},r=(t,e,n)=>{var s,r,o;const l=Object.assign({noRewrite:!1},n||{}),c=null!=(s=null==n?void 0:n.baseURL)?s:a();return!0!==(null==(o=null==(r=null==window?void 0:window.OC)?void 0:r.config)?void 0:o.modRewriteWorking)||l.noRewrite?c+"/index.php"+i(t,e,n):c+i(t,e,n)},o=()=>window.location.protocol+"//"+window.location.host+a();function a(){let t=window._oc_webroot;if(typeof t>"u"){t=location.pathname;const e=t.indexOf("/index.php/");if(-1!==e)t=t.slice(0,e);else{const e=t.indexOf("/",1);t=t.slice(0,e>0?e:void 0)}}return t}},53110:(t,e,n)=>{"use strict";n.d(e,{k3:()=>o,pe:()=>r});var s=n(28893);const{Axios:i,AxiosError:r,CanceledError:o,isCancel:a,CancelToken:l,VERSION:c,all:d,Cancel:u,isAxiosError:m,spread:p,toFormData:f,AxiosHeaders:g,HttpStatusCode:h,formToJSON:v,getAdapter:A,mergeConfig:w}=s.A}},r={};function o(t){var e=r[t];if(void 0!==e)return e.exports;var n=r[t]={id:t,loaded:!1,exports:{}};return i[t].call(n.exports,n,n.exports,o),n.loaded=!0,n.exports}o.m=i,e=[],o.O=(t,n,s,i)=>{if(!n){var r=1/0;for(d=0;d<e.length;d++){n=e[d][0],s=e[d][1],i=e[d][2];for(var a=!0,l=0;l<n.length;l++)(!1&i||r>=i)&&Object.keys(o.O).every((t=>o.O[t](n[l])))?n.splice(l--,1):(a=!1,i<r&&(r=i));if(a){e.splice(d--,1);var c=s();void 0!==c&&(t=c)}}return t}i=i||0;for(var d=e.length;d>0&&e[d-1][2]>i;d--)e[d]=e[d-1];e[d]=[n,s,i]},o.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return o.d(e,{a:e}),e},o.d=(t,e)=>{for(var n in e)o.o(e,n)&&!o.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},o.f={},o.e=t=>Promise.all(Object.keys(o.f).reduce(((e,n)=>(o.f[n](t,e),e)),[])),o.u=t=>t+"-"+t+".js?v="+{1359:"08b2abcca7c808677f1a",3841:"f24f37909b9ea1a5c604",8618:"1e8f15db3b14455fef8f"}[t],o.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),o.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),n={},s="nextcloud:",o.l=(t,e,i,r)=>{if(n[t])n[t].push(e);else{var a,l;if(void 0!==i)for(var c=document.getElementsByTagName("script"),d=0;d<c.length;d++){var u=c[d];if(u.getAttribute("src")==t||u.getAttribute("data-webpack")==s+i){a=u;break}}a||(l=!0,(a=document.createElement("script")).charset="utf-8",a.timeout=120,o.nc&&a.setAttribute("nonce",o.nc),a.setAttribute("data-webpack",s+i),a.src=t),n[t]=[e];var m=(e,s)=>{a.onerror=a.onload=null,clearTimeout(p);var i=n[t];if(delete n[t],a.parentNode&&a.parentNode.removeChild(a),i&&i.forEach((t=>t(s))),e)return e(s)},p=setTimeout(m.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=m.bind(null,a.onerror),a.onload=m.bind(null,a.onload),l&&document.head.appendChild(a)}},o.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},o.nmd=t=>(t.paths=[],t.children||(t.children=[]),t),o.j=2882,(()=>{var t;o.g.importScripts&&(t=o.g.location+"");var e=o.g.document;if(!t&&e&&(e.currentScript&&(t=e.currentScript.src),!t)){var n=e.getElementsByTagName("script");if(n.length)for(var s=n.length-1;s>-1&&(!t||!/^http(s?):/.test(t));)t=n[s--].src}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),o.p=t})(),(()=>{o.b=document.baseURI||self.location.href;var t={2882:0};o.f.j=(e,n)=>{var s=o.o(t,e)?t[e]:void 0;if(0!==s)if(s)n.push(s[2]);else{var i=new Promise(((n,i)=>s=t[e]=[n,i]));n.push(s[2]=i);var r=o.p+o.u(e),a=new Error;o.l(r,(n=>{if(o.o(t,e)&&(0!==(s=t[e])&&(t[e]=void 0),s)){var i=n&&("load"===n.type?"missing":n.type),r=n&&n.target&&n.target.src;a.message="Loading chunk "+e+" failed.\n("+i+": "+r+")",a.name="ChunkLoadError",a.type=i,a.request=r,s[1](a)}}),"chunk-"+e,e)}},o.O.j=e=>0===t[e];var e=(e,n)=>{var s,i,r=n[0],a=n[1],l=n[2],c=0;if(r.some((e=>0!==t[e]))){for(s in a)o.o(a,s)&&(o.m[s]=a[s]);if(l)var d=l(o)}for(e&&e(n);c<r.length;c++)i=r[c],o.o(t,i)&&t[i]&&t[i][0](),t[i]=0;return o.O(d)},n=self.webpackChunknextcloud=self.webpackChunknextcloud||[];n.forEach(e.bind(null,0)),n.push=e.bind(null,n.push.bind(n))})(),o.nc=void 0;var a=o.O(void 0,[4208],(()=>o(80809)));a=o.O(a)})();
+//# sourceMappingURL=files-main.js.map?v=826709e828e40f405c8f \ No newline at end of file
diff --git a/dist/files-main.js.map b/dist/files-main.js.map
index 9c1a5a28107..097d76a4575 100644
--- a/dist/files-main.js.map
+++ b/dist/files-main.js.map
@@ -1 +1 @@
-{"version":3,"file":"files-main.js?v=b1c8858b86ed94383150","mappings":";UAAIA,ECAAC,EACAC,2BCCJ,IAAIC,EAAMC,OAAOC,UAAUC,eACvBC,EAAS,IASb,SAASC,IAAU,CA4BnB,SAASC,EAAGC,EAAIC,EAASC,GACvBC,KAAKH,GAAKA,EACVG,KAAKF,QAAUA,EACfE,KAAKD,KAAOA,IAAQ,CACtB,CAaA,SAASE,EAAYC,EAASC,EAAON,EAAIC,EAASC,GAChD,GAAkB,mBAAPF,EACT,MAAM,IAAIO,UAAU,mCAGtB,IAAIC,EAAW,IAAIT,EAAGC,EAAIC,GAAWI,EAASH,GAC1CO,EAAMZ,EAASA,EAASS,EAAQA,EAMpC,OAJKD,EAAQK,QAAQD,GACXJ,EAAQK,QAAQD,GAAKT,GAC1BK,EAAQK,QAAQD,GAAO,CAACJ,EAAQK,QAAQD,GAAMD,GADhBH,EAAQK,QAAQD,GAAKE,KAAKH,IADlCH,EAAQK,QAAQD,GAAOD,EAAUH,EAAQO,gBAI7DP,CACT,CASA,SAASQ,EAAWR,EAASI,GACI,KAAzBJ,EAAQO,aAAoBP,EAAQK,QAAU,IAAIZ,SAC5CO,EAAQK,QAAQD,EAC9B,CASA,SAASK,IACPX,KAAKO,QAAU,IAAIZ,EACnBK,KAAKS,aAAe,CACtB,CAzEIlB,OAAOqB,SACTjB,EAAOH,UAAYD,OAAOqB,OAAO,OAM5B,IAAIjB,GAASkB,YAAWnB,GAAS,IA2ExCiB,EAAanB,UAAUsB,WAAa,WAClC,IACIC,EACAC,EAFAC,EAAQ,GAIZ,GAA0B,IAAtBjB,KAAKS,aAAoB,OAAOQ,EAEpC,IAAKD,KAASD,EAASf,KAAKO,QACtBjB,EAAI4B,KAAKH,EAAQC,IAAOC,EAAMT,KAAKd,EAASsB,EAAKG,MAAM,GAAKH,GAGlE,OAAIzB,OAAO6B,sBACFH,EAAMI,OAAO9B,OAAO6B,sBAAsBL,IAG5CE,CACT,EASAN,EAAanB,UAAU8B,UAAY,SAAmBnB,GACpD,IAAIG,EAAMZ,EAASA,EAASS,EAAQA,EAChCoB,EAAWvB,KAAKO,QAAQD,GAE5B,IAAKiB,EAAU,MAAO,GACtB,GAAIA,EAAS1B,GAAI,MAAO,CAAC0B,EAAS1B,IAElC,IAAK,IAAI2B,EAAI,EAAGC,EAAIF,EAASG,OAAQC,EAAK,IAAIC,MAAMH,GAAID,EAAIC,EAAGD,IAC7DG,EAAGH,GAAKD,EAASC,GAAG3B,GAGtB,OAAO8B,CACT,EASAhB,EAAanB,UAAUqC,cAAgB,SAAuB1B,GAC5D,IAAIG,EAAMZ,EAASA,EAASS,EAAQA,EAChCmB,EAAYtB,KAAKO,QAAQD,GAE7B,OAAKgB,EACDA,EAAUzB,GAAW,EAClByB,EAAUI,OAFM,CAGzB,EASAf,EAAanB,UAAUsC,KAAO,SAAc3B,EAAO4B,EAAIC,EAAIC,EAAIC,EAAIC,GACjE,IAAI7B,EAAMZ,EAASA,EAASS,EAAQA,EAEpC,IAAKH,KAAKO,QAAQD,GAAM,OAAO,EAE/B,IAEI8B,EACAZ,EAHAF,EAAYtB,KAAKO,QAAQD,GACzB+B,EAAMC,UAAUZ,OAIpB,GAAIJ,EAAUzB,GAAI,CAGhB,OAFIyB,EAAUvB,MAAMC,KAAKuC,eAAepC,EAAOmB,EAAUzB,QAAI2C,GAAW,GAEhEH,GACN,KAAK,EAAG,OAAOf,EAAUzB,GAAGqB,KAAKI,EAAUxB,UAAU,EACrD,KAAK,EAAG,OAAOwB,EAAUzB,GAAGqB,KAAKI,EAAUxB,QAASiC,IAAK,EACzD,KAAK,EAAG,OAAOT,EAAUzB,GAAGqB,KAAKI,EAAUxB,QAASiC,EAAIC,IAAK,EAC7D,KAAK,EAAG,OAAOV,EAAUzB,GAAGqB,KAAKI,EAAUxB,QAASiC,EAAIC,EAAIC,IAAK,EACjE,KAAK,EAAG,OAAOX,EAAUzB,GAAGqB,KAAKI,EAAUxB,QAASiC,EAAIC,EAAIC,EAAIC,IAAK,EACrE,KAAK,EAAG,OAAOZ,EAAUzB,GAAGqB,KAAKI,EAAUxB,QAASiC,EAAIC,EAAIC,EAAIC,EAAIC,IAAK,EAG3E,IAAKX,EAAI,EAAGY,EAAO,IAAIR,MAAMS,EAAK,GAAIb,EAAIa,EAAKb,IAC7CY,EAAKZ,EAAI,GAAKc,UAAUd,GAG1BF,EAAUzB,GAAG4C,MAAMnB,EAAUxB,QAASsC,EACxC,KAAO,CACL,IACIM,EADAhB,EAASJ,EAAUI,OAGvB,IAAKF,EAAI,EAAGA,EAAIE,EAAQF,IAGtB,OAFIF,EAAUE,GAAGzB,MAAMC,KAAKuC,eAAepC,EAAOmB,EAAUE,GAAG3B,QAAI2C,GAAW,GAEtEH,GACN,KAAK,EAAGf,EAAUE,GAAG3B,GAAGqB,KAAKI,EAAUE,GAAG1B,SAAU,MACpD,KAAK,EAAGwB,EAAUE,GAAG3B,GAAGqB,KAAKI,EAAUE,GAAG1B,QAASiC,GAAK,MACxD,KAAK,EAAGT,EAAUE,GAAG3B,GAAGqB,KAAKI,EAAUE,GAAG1B,QAASiC,EAAIC,GAAK,MAC5D,KAAK,EAAGV,EAAUE,GAAG3B,GAAGqB,KAAKI,EAAUE,GAAG1B,QAASiC,EAAIC,EAAIC,GAAK,MAChE,QACE,IAAKG,EAAM,IAAKM,EAAI,EAAGN,EAAO,IAAIR,MAAMS,EAAK,GAAIK,EAAIL,EAAKK,IACxDN,EAAKM,EAAI,GAAKJ,UAAUI,GAG1BpB,EAAUE,GAAG3B,GAAG4C,MAAMnB,EAAUE,GAAG1B,QAASsC,GAGpD,CAEA,OAAO,CACT,EAWAzB,EAAanB,UAAUmD,GAAK,SAAYxC,EAAON,EAAIC,GACjD,OAAOG,EAAYD,KAAMG,EAAON,EAAIC,GAAS,EAC/C,EAWAa,EAAanB,UAAUO,KAAO,SAAcI,EAAON,EAAIC,GACrD,OAAOG,EAAYD,KAAMG,EAAON,EAAIC,GAAS,EAC/C,EAYAa,EAAanB,UAAU+C,eAAiB,SAAwBpC,EAAON,EAAIC,EAASC,GAClF,IAAIO,EAAMZ,EAASA,EAASS,EAAQA,EAEpC,IAAKH,KAAKO,QAAQD,GAAM,OAAON,KAC/B,IAAKH,EAEH,OADAa,EAAWV,KAAMM,GACVN,KAGT,IAAIsB,EAAYtB,KAAKO,QAAQD,GAE7B,GAAIgB,EAAUzB,GAEVyB,EAAUzB,KAAOA,GACfE,IAAQuB,EAAUvB,MAClBD,GAAWwB,EAAUxB,UAAYA,GAEnCY,EAAWV,KAAMM,OAEd,CACL,IAAK,IAAIkB,EAAI,EAAGT,EAAS,GAAIW,EAASJ,EAAUI,OAAQF,EAAIE,EAAQF,KAEhEF,EAAUE,GAAG3B,KAAOA,GACnBE,IAASuB,EAAUE,GAAGzB,MACtBD,GAAWwB,EAAUE,GAAG1B,UAAYA,IAErCiB,EAAOP,KAAKc,EAAUE,IAOtBT,EAAOW,OAAQ1B,KAAKO,QAAQD,GAAyB,IAAlBS,EAAOW,OAAeX,EAAO,GAAKA,EACpEL,EAAWV,KAAMM,EACxB,CAEA,OAAON,IACT,EASAW,EAAanB,UAAUoD,mBAAqB,SAA4BzC,GACtE,IAAIG,EAUJ,OARIH,GACFG,EAAMZ,EAASA,EAASS,EAAQA,EAC5BH,KAAKO,QAAQD,IAAMI,EAAWV,KAAMM,KAExCN,KAAKO,QAAU,IAAIZ,EACnBK,KAAKS,aAAe,GAGfT,IACT,EAKAW,EAAanB,UAAUqD,IAAMlC,EAAanB,UAAU+C,eACpD5B,EAAanB,UAAUS,YAAcU,EAAanB,UAAUmD,GAK5DhC,EAAamC,SAAWpD,EAKxBiB,EAAaA,aAAeA,EAM1BoC,EAAOC,QAAUrC,oLC3Uf,GAAS,ECAN,SAASsC,IAEZ,MAA6B,oBAAdC,WAA+C,oBAAXC,OAC7CA,OACsB,oBAAfC,WACHA,WACA,CAAC,CACf,CDJW,KAAIC,KAAKC,KCKb,MAAMC,EAAoC,mBAAVC,MCX1BC,EAAa,wBCA1B,IAAIC,EACAC,ECCG,MAAMC,EACT,WAAAC,CAAYC,EAAQC,GAChB/D,KAAKgE,OAAS,KACdhE,KAAKiE,YAAc,GACnBjE,KAAKkE,QAAU,GACflE,KAAK8D,OAASA,EACd9D,KAAK+D,KAAOA,EACZ,MAAMI,EAAkB,CAAC,EACzB,GAAIL,EAAOM,SACP,IAAK,MAAMC,KAAMP,EAAOM,SAAU,CAC9B,MAAME,EAAOR,EAAOM,SAASC,GAC7BF,EAAgBE,GAAMC,EAAKC,YAC/B,CAEJ,MAAMC,EAAsB,mCAAmCV,EAAOO,KACtE,IAAII,EAAkBlF,OAAOmF,OAAO,CAAC,EAAGP,GACxC,IACI,MAAMQ,EAAMC,aAAaC,QAAQL,GAC3BM,EAAOC,KAAKC,MAAML,GACxBpF,OAAOmF,OAAOD,EAAiBK,EACnC,CACA,MAAOG,GAEP,CACAjF,KAAKkF,UAAY,CACbC,YAAW,IACAV,EAEX,WAAAW,CAAYC,GACR,IACIT,aAAaU,QAAQd,EAAqBO,KAAKQ,UAAUF,GAC7D,CACA,MAAOJ,GAEP,CACAR,EAAkBY,CACtB,EACAG,IAAG,KACC,YDpCMhD,IAAdkB,IAGkB,oBAAXP,QAA0BA,OAAOsC,aACxC/B,GAAY,EACZC,EAAOR,OAAOsC,aAEa,oBAAfrC,aAAgE,QAAhCsC,EAAKtC,WAAWuC,kBAA+B,IAAPD,OAAgB,EAASA,EAAGD,cAChH/B,GAAY,EACZC,EAAOP,WAAWuC,WAAWF,aAG7B/B,GAAY,GAXLA,EAgBuBC,EAAK6B,MAAQI,KAAKJ,MADjD,IAjBCE,CCsCI,GAEA3B,GACAA,EAAKpB,GF3CuB,uBE2CM,CAACkD,EAAUR,KACrCQ,IAAa7F,KAAK8D,OAAOO,IACzBrE,KAAKkF,UAAUE,YAAYC,EAC/B,IAGRrF,KAAK8F,UAAY,IAAItC,MAAM,CAAC,EAAG,CAC3BuC,IAAK,CAACC,EAASC,IACPjG,KAAKgE,OACEhE,KAAKgE,OAAOrB,GAAGsD,GAGf,IAAI7D,KACPpC,KAAKkE,QAAQ1D,KAAK,CACd0F,OAAQD,EACR7D,QACF,IAKlBpC,KAAKmG,cAAgB,IAAI3C,MAAM,CAAC,EAAG,CAC/BuC,IAAK,CAACC,EAASC,IACPjG,KAAKgE,OACEhE,KAAKgE,OAAOiC,GAEL,OAATA,EACEjG,KAAK8F,UAEPvG,OAAO6G,KAAKpG,KAAKkF,WAAWmB,SAASJ,GACnC,IAAI7D,KACPpC,KAAKiE,YAAYzD,KAAK,CAClB0F,OAAQD,EACR7D,OACAkE,QAAS,SAENtG,KAAKkF,UAAUe,MAAS7D,IAI5B,IAAIA,IACA,IAAImE,SAASD,IAChBtG,KAAKiE,YAAYzD,KAAK,CAClB0F,OAAQD,EACR7D,OACAkE,WACF,KAM1B,CACA,mBAAME,CAAcxC,GAChBhE,KAAKgE,OAASA,EACd,IAAK,MAAMM,KAAQtE,KAAKkE,QACpBlE,KAAKgE,OAAOrB,GAAG2B,EAAK4B,WAAW5B,EAAKlC,MAExC,IAAK,MAAMkC,KAAQtE,KAAKiE,YACpBK,EAAKgC,cAActG,KAAKgE,OAAOM,EAAK4B,WAAW5B,EAAKlC,MAE5D,ECnGG,SAASqE,EAAoBC,EAAkBC,GAClD,MAAMC,EAAaF,EACb1C,EAASf,IACTc,EJRCd,IAAY4D,6BISbC,EAAcvD,GAAoBqD,EAAWG,iBACnD,IAAIhD,IAASC,EAAOgD,uCAA0CF,EAGzD,CACD,MAAMG,EAAQH,EAAc,IAAIlD,EAASgD,EAAY7C,GAAQ,MAChDC,EAAOkD,yBAA2BlD,EAAOkD,0BAA4B,IAC7E1G,KAAK,CACNkG,iBAAkBE,EAClBD,UACAM,UAEAA,GACAN,EAAQM,EAAMd,cAEtB,MAbIpC,EAAKjC,KAAK2B,EAAYiD,EAAkBC,EAchD,gBCdA,IAAIQ,EAQJ,MAAMC,EAAkBC,GAAWF,EAAcE,EAK3CC,EAAsGC,SAE5G,SAASC,EAETC,GACI,OAAQA,GACS,iBAANA,GAC+B,oBAAtClI,OAAOC,UAAUkI,SAASxG,KAAKuG,IACX,mBAAbA,EAAEE,MACjB,CAMA,IAAIC,GACJ,SAAWA,GAQPA,EAAqB,OAAI,SAMzBA,EAA0B,YAAI,eAM9BA,EAA4B,cAAI,gBAEnC,CAtBD,CAsBGA,IAAiBA,EAAe,CAAC,IAEpC,MAAMC,EAA8B,oBAAX1E,OAOnB2E,EAA6F,oBAA1BC,uBAAyCA,uBAAiEF,EAY7KG,EAAwB,KAAyB,iBAAX7E,QAAuBA,OAAOA,SAAWA,OAC/EA,OACgB,iBAAT8E,MAAqBA,KAAKA,OAASA,KACtCA,KACkB,iBAAXC,QAAuBA,OAAOA,SAAWA,OAC5CA,OACsB,iBAAf9E,WACHA,WACA,CAAE+E,YAAa,MARH,GAkB9B,SAASC,EAASC,EAAKrH,EAAMsH,GACzB,MAAMC,EAAM,IAAIC,eAChBD,EAAIE,KAAK,MAAOJ,GAChBE,EAAIG,aAAe,OACnBH,EAAII,OAAS,WACTC,EAAOL,EAAIM,SAAU7H,EAAMsH,EAC/B,EACAC,EAAIO,QAAU,WACVC,EAAQC,MAAM,0BAClB,EACAT,EAAIU,MACR,CACA,SAASC,EAAYb,GACjB,MAAME,EAAM,IAAIC,eAEhBD,EAAIE,KAAK,OAAQJ,GAAK,GACtB,IACIE,EAAIU,MACR,CACA,MAAOhE,GAAK,CACZ,OAAOsD,EAAIY,QAAU,KAAOZ,EAAIY,QAAU,GAC9C,CAEA,SAASC,EAAMC,GACX,IACIA,EAAKC,cAAc,IAAIC,WAAW,SACtC,CACA,MAAOtE,GACH,MAAM3E,EAAMkJ,SAASC,YAAY,eACjCnJ,EAAIoJ,eAAe,SAAS,GAAM,EAAMvG,OAAQ,EAAG,EAAG,EAAG,GAAI,IAAI,GAAO,GAAO,GAAO,EAAO,EAAG,MAChGkG,EAAKC,cAAchJ,EACvB,CACJ,CACA,MAAMqJ,EACgB,iBAAdzG,UAAyBA,UAAY,CAAE0G,UAAW,IAIpDC,EAA+B,KAAO,YAAYC,KAAKH,EAAWC,YACpE,cAAcE,KAAKH,EAAWC,aAC7B,SAASE,KAAKH,EAAWC,WAFO,GAG/BhB,EAAUf,EAGqB,oBAAtBkC,mBACH,aAAcA,kBAAkBvK,YAC/BqK,EAOb,SAAwBG,EAAMhJ,EAAO,WAAYsH,GAC7C,MAAM2B,EAAIT,SAASU,cAAc,KACjCD,EAAE7B,SAAWpH,EACbiJ,EAAEE,IAAM,WAGY,iBAATH,GAEPC,EAAEG,KAAOJ,EACLC,EAAEI,SAAWC,SAASD,OAClBnB,EAAYe,EAAEG,MACdhC,EAAS4B,EAAMhJ,EAAMsH,IAGrB2B,EAAEjG,OAAS,SACXoF,EAAMa,IAIVb,EAAMa,KAKVA,EAAEG,KAAOG,IAAIC,gBAAgBR,GAC7BS,YAAW,WACPF,IAAIG,gBAAgBT,EAAEG,KAC1B,GAAG,KACHK,YAAW,WACPrB,EAAMa,EACV,GAAG,GAEX,EApCgB,qBAAsBN,EAqCtC,SAAkBK,EAAMhJ,EAAO,WAAYsH,GACvC,GAAoB,iBAAT0B,EACP,GAAId,EAAYc,GACZ5B,EAAS4B,EAAMhJ,EAAMsH,OAEpB,CACD,MAAM2B,EAAIT,SAASU,cAAc,KACjCD,EAAEG,KAAOJ,EACTC,EAAEjG,OAAS,SACXyG,YAAW,WACPrB,EAAMa,EACV,GACJ,MAIA/G,UAAUyH,iBA/GlB,SAAaX,GAAM,QAAEY,GAAU,GAAU,CAAC,GAGtC,OAAIA,GACA,6EAA6Ed,KAAKE,EAAKa,MAChF,IAAIC,KAAK,CAACC,OAAOC,aAAa,OAAShB,GAAO,CAAEa,KAAMb,EAAKa,OAE/Db,CACX,CAuGmCiB,CAAIjB,EAAM1B,GAAOtH,EAEpD,EACA,SAAyBgJ,EAAMhJ,EAAMsH,EAAM4C,GAOvC,IAJAA,EAAQA,GAASzC,KAAK,GAAI,aAEtByC,EAAM1B,SAAS2B,MAAQD,EAAM1B,SAAS4B,KAAKC,UAAY,kBAEvC,iBAATrB,EACP,OAAO5B,EAAS4B,EAAMhJ,EAAMsH,GAChC,MAAMgD,EAAsB,6BAAdtB,EAAKa,KACbU,EAAW,eAAezB,KAAKiB,OAAO/C,EAAQG,eAAiB,WAAYH,EAC3EwD,EAAc,eAAe1B,KAAK5G,UAAU0G,WAClD,IAAK4B,GAAgBF,GAASC,GAAa1B,IACjB,oBAAf4B,WAA4B,CAEnC,MAAMC,EAAS,IAAID,WACnBC,EAAOC,UAAY,WACf,IAAItD,EAAMqD,EAAOE,OACjB,GAAmB,iBAARvD,EAEP,MADA6C,EAAQ,KACF,IAAIW,MAAM,4BAEpBxD,EAAMmD,EACAnD,EACAA,EAAIyD,QAAQ,eAAgB,yBAC9BZ,EACAA,EAAMZ,SAASF,KAAO/B,EAGtBiC,SAAS5F,OAAO2D,GAEpB6C,EAAQ,IACZ,EACAQ,EAAOK,cAAc/B,EACzB,KACK,CACD,MAAM3B,EAAMkC,IAAIC,gBAAgBR,GAC5BkB,EACAA,EAAMZ,SAAS5F,OAAO2D,GAEtBiC,SAASF,KAAO/B,EACpB6C,EAAQ,KACRT,YAAW,WACPF,IAAIG,gBAAgBrC,EACxB,GAAG,IACP,CACJ,EA7GM,OAqHN,SAAS2D,EAAaC,EAASpB,GAC3B,MAAMqB,EAAe,MAAQD,EACS,mBAA3BE,uBAEPA,uBAAuBD,EAAcrB,GAEvB,UAATA,EACL9B,EAAQC,MAAMkD,GAEA,SAATrB,EACL9B,EAAQzF,KAAK4I,GAGbnD,EAAQqD,IAAIF,EAEpB,CACA,SAASG,EAAQ5E,GACb,MAAO,OAAQA,GAAK,YAAaA,CACrC,CAMA,SAAS6E,IACL,KAAM,cAAepJ,WAEjB,OADA8I,EAAa,iDAAkD,UACxD,CAEf,CACA,SAASO,EAAqBvD,GAC1B,SAAIA,aAAiB6C,OACjB7C,EAAMiD,QAAQO,cAAcnG,SAAS,8BACrC2F,EAAa,kGAAmG,SACzG,EAGf,CAwCA,IAAIS,EAyCJ,SAASC,EAAgBrF,EAAOsF,GAC5B,IAAK,MAAMC,KAAOD,EAAO,CACrB,MAAME,EAAaxF,EAAMsF,MAAMtH,MAAMuH,GAEjCC,EACAtN,OAAOmF,OAAOmI,EAAYF,EAAMC,IAIhCvF,EAAMsF,MAAMtH,MAAMuH,GAAOD,EAAMC,EAEvC,CACJ,CAEA,SAASE,EAAcC,GACnB,MAAO,CACHC,QAAS,CACLD,WAGZ,CACA,MAAME,EAAmB,kBACnBC,EAAgB,QACtB,SAASC,EAA4BC,GACjC,OAAOf,EAAQe,GACT,CACE/I,GAAI6I,EACJG,MAAOJ,GAET,CACE5I,GAAI+I,EAAME,IACVD,MAAOD,EAAME,IAEzB,CAmDA,SAASC,EAAgBxM,GACrB,OAAKA,EAEDa,MAAM4L,QAAQzM,GAEPA,EAAO0M,QAAO,CAAC3I,EAAM3E,KACxB2E,EAAKsB,KAAK5F,KAAKL,EAAMyM,KACrB9H,EAAK4I,WAAWlN,KAAKL,EAAM0K,MAC3B/F,EAAK6I,SAASxN,EAAMyM,KAAOzM,EAAMwN,SACjC7I,EAAK8I,SAASzN,EAAMyM,KAAOzM,EAAMyN,SAC1B9I,IACR,CACC6I,SAAU,CAAC,EACXvH,KAAM,GACNsH,WAAY,GACZE,SAAU,CAAC,IAIR,CACHC,UAAWf,EAAc/L,EAAO8J,MAChC+B,IAAKE,EAAc/L,EAAO6L,KAC1Be,SAAU5M,EAAO4M,SACjBC,SAAU7M,EAAO6M,UArBd,CAAC,CAwBhB,CACA,SAASE,EAAmBjD,GACxB,OAAQA,GACJ,KAAKjD,EAAamG,OACd,MAAO,WACX,KAAKnG,EAAaoG,cAElB,KAAKpG,EAAaqG,YACd,MAAO,SACX,QACI,MAAO,UAEnB,CAGA,IAAIC,GAAmB,EACvB,MAAMC,EAAsB,GACtBC,EAAqB,kBACrBC,EAAe,SACb3J,OAAQ4J,GAAa/O,OAOvBgP,EAAgBlK,GAAO,MAAQA,EAQrC,SAASmK,EAAsBC,EAAKpH,GAChCZ,EAAoB,CAChBpC,GAAI,gBACJgJ,MAAO,WACPqB,KAAM,mCACNC,YAAa,QACbC,SAAU,0BACVT,sBACAM,QACAI,IACuB,mBAAZA,EAAIrJ,KACXwG,EAAa,2MAEjB6C,EAAIC,iBAAiB,CACjBzK,GAAI+J,EACJf,MAAO,WACP0B,MAAO,WAEXF,EAAIG,aAAa,CACb3K,GAAIgK,EACJhB,MAAO,WACP4B,KAAM,UACNC,sBAAuB,gBACvBC,QAAS,CACL,CACIF,KAAM,eACNG,OAAQ,MA1P5BC,eAAqChI,GACjC,IAAIiF,IAEJ,UACUpJ,UAAUoM,UAAUC,UAAUxK,KAAKQ,UAAU8B,EAAMsF,MAAMtH,QAC/D2G,EAAa,oCACjB,CACA,MAAOhD,GACH,GAAIuD,EAAqBvD,GACrB,OACJgD,EAAa,qEAAsE,SACnFjD,EAAQC,MAAMA,EAClB,CACJ,CA8OwBwG,CAAsBnI,EAAM,EAEhCoI,QAAS,gCAEb,CACIR,KAAM,gBACNG,OAAQC,gBAnP5BA,eAAsChI,GAClC,IAAIiF,IAEJ,IACII,EAAgBrF,EAAOtC,KAAKC,YAAY9B,UAAUoM,UAAUI,aAC5D1D,EAAa,sCACjB,CACA,MAAOhD,GACH,GAAIuD,EAAqBvD,GACrB,OACJgD,EAAa,sFAAuF,SACpGjD,EAAQC,MAAMA,EAClB,CACJ,CAuO8B2G,CAAuBtI,GAC7BwH,EAAIe,kBAAkBvB,GACtBQ,EAAIgB,mBAAmBxB,EAAa,EAExCoB,QAAS,wDAEb,CACIR,KAAM,OACNG,OAAQ,MA9O5BC,eAAqChI,GACjC,IACIuB,EAAO,IAAIkC,KAAK,CAAC/F,KAAKQ,UAAU8B,EAAMsF,MAAMtH,QAAS,CACjDwF,KAAM,6BACN,mBACR,CACA,MAAO7B,GACHgD,EAAa,0EAA2E,SACxFjD,EAAQC,MAAMA,EAClB,CACJ,CAqOwB8G,CAAsBzI,EAAM,EAEhCoI,QAAS,iCAEb,CACIR,KAAM,cACNG,OAAQC,gBAhN5BA,eAAyChI,GACrC,IACI,MAAMoB,GA1BLgE,IACDA,EAAYjD,SAASU,cAAc,SACnCuC,EAAU5B,KAAO,OACjB4B,EAAUsD,OAAS,SAEvB,WACI,OAAO,IAAIxJ,SAAQ,CAACD,EAAS0J,KACzBvD,EAAUwD,SAAWZ,UACjB,MAAMa,EAAQzD,EAAUyD,MACxB,IAAKA,EACD,OAAO5J,EAAQ,MACnB,MAAM6J,EAAOD,EAAM5L,KAAK,GACxB,OAEOgC,EAFF6J,EAEU,CAAEC,WAAYD,EAAKC,OAAQD,QADvB,KAC8B,EAGrD1D,EAAU4D,SAAW,IAAM/J,EAAQ,MACnCmG,EAAU3D,QAAUkH,EACpBvD,EAAUrD,OAAO,GAEzB,GAMUwC,QAAenD,IACrB,IAAKmD,EACD,OACJ,MAAM,KAAEwE,EAAI,KAAED,GAASvE,EACvBc,EAAgBrF,EAAOtC,KAAKC,MAAMoL,IAClCpE,EAAa,+BAA+BmE,EAAKnP,SACrD,CACA,MAAOgI,GACHgD,EAAa,4EAA6E,SAC1FjD,EAAQC,MAAMA,EAClB,CACJ,CAmM8BsH,CAA0BjJ,GAChCwH,EAAIe,kBAAkBvB,GACtBQ,EAAIgB,mBAAmBxB,EAAa,EAExCoB,QAAS,sCAGjBc,YAAa,CACT,CACItB,KAAM,UACNQ,QAAS,kCACTL,OAASoB,IACL,MAAMpD,EAAQ/F,EAAMoJ,GAAG1K,IAAIyK,GACtBpD,EAG4B,mBAAjBA,EAAMsD,OAClB1E,EAAa,iBAAiBwE,kEAAwE,SAGtGpD,EAAMsD,SACN1E,EAAa,UAAUwE,cAPvBxE,EAAa,iBAAiBwE,oCAA0C,OAQ5E,MAKhB3B,EAAIlM,GAAGgO,kBAAiB,CAACC,EAASC,KAC9B,MAAM5J,EAAS2J,EAAQE,mBACnBF,EAAQE,kBAAkB7J,MAC9B,GAAIA,GAASA,EAAM8J,SAAU,CACzB,MAAMC,EAAcJ,EAAQE,kBAAkB7J,MAAM8J,SACpDxR,OAAO0R,OAAOD,GAAaE,SAAS9D,IAChCwD,EAAQO,aAAaxE,MAAMnM,KAAK,CAC5BqK,KAAM0D,EAAanB,EAAME,KACzBV,IAAK,QACLwE,UAAU,EACV/L,MAAO+H,EAAMiE,cACP,CACErE,QAAS,CACL3H,OAAO,QAAM+H,EAAMkE,QACnBnC,QAAS,CACL,CACIF,KAAM,UACNQ,QAAS,gCACTL,OAAQ,IAAMhC,EAAMsD,aAMhCnR,OAAO6G,KAAKgH,EAAMkE,QAAQ7D,QAAO,CAACd,EAAOC,KACrCD,EAAMC,GAAOQ,EAAMkE,OAAO1E,GACnBD,IACR,CAAC,KAEZS,EAAMmE,UAAYnE,EAAMmE,SAAS7P,QACjCkP,EAAQO,aAAaxE,MAAMnM,KAAK,CAC5BqK,KAAM0D,EAAanB,EAAME,KACzBV,IAAK,UACLwE,UAAU,EACV/L,MAAO+H,EAAMmE,SAAS9D,QAAO,CAAC+D,EAAS5E,KACnC,IACI4E,EAAQ5E,GAAOQ,EAAMR,EACzB,CACA,MAAO5D,GAEHwI,EAAQ5E,GAAO5D,CACnB,CACA,OAAOwI,CAAO,GACf,CAAC,IAEZ,GAER,KAEJ3C,EAAIlM,GAAG8O,kBAAkBb,IACrB,GAAIA,EAAQnC,MAAQA,GAAOmC,EAAQc,cAAgBrD,EAAc,CAC7D,IAAIsD,EAAS,CAACtK,GACdsK,EAASA,EAAOtQ,OAAOO,MAAMgQ,KAAKvK,EAAMoJ,GAAGQ,WAC3CL,EAAQiB,WAAajB,EAAQkB,OACvBH,EAAOG,QAAQ1E,GAAU,QAASA,EAC9BA,EAAME,IACHd,cACAnG,SAASuK,EAAQkB,OAAOtF,eAC3BS,EAAiBT,cAAcnG,SAASuK,EAAQkB,OAAOtF,iBAC3DmF,GAAQI,IAAI5E,EACtB,KAEJ0B,EAAIlM,GAAGqP,mBAAmBpB,IACtB,GAAIA,EAAQnC,MAAQA,GAAOmC,EAAQc,cAAgBrD,EAAc,CAC7D,MAAM4D,EAAiBrB,EAAQJ,SAAWtD,EACpC7F,EACAA,EAAMoJ,GAAG1K,IAAI6K,EAAQJ,QAC3B,IAAKyB,EAGD,OAEAA,IACArB,EAAQjE,MApQ5B,SAAsCS,GAClC,GAAIf,EAAQe,GAAQ,CAChB,MAAM8E,EAAatQ,MAAMgQ,KAAKxE,EAAMqD,GAAGrK,QACjC+L,EAAW/E,EAAMqD,GACjB9D,EAAQ,CACVA,MAAOuF,EAAWH,KAAKK,IAAY,CAC/BhB,UAAU,EACVxE,IAAKwF,EACL/M,MAAO+H,EAAMT,MAAMtH,MAAM+M,OAE7BZ,QAASU,EACJJ,QAAQzN,GAAO8N,EAASpM,IAAI1B,GAAIkN,WAChCQ,KAAK1N,IACN,MAAM+I,EAAQ+E,EAASpM,IAAI1B,GAC3B,MAAO,CACH+M,UAAU,EACVxE,IAAKvI,EACLgB,MAAO+H,EAAMmE,SAAS9D,QAAO,CAAC+D,EAAS5E,KACnC4E,EAAQ5E,GAAOQ,EAAMR,GACd4E,IACR,CAAC,GACP,KAGT,OAAO7E,CACX,CACA,MAAMA,EAAQ,CACVA,MAAOpN,OAAO6G,KAAKgH,EAAMkE,QAAQS,KAAKnF,IAAQ,CAC1CwE,UAAU,EACVxE,MACAvH,MAAO+H,EAAMkE,OAAO1E,QAkB5B,OAdIQ,EAAMmE,UAAYnE,EAAMmE,SAAS7P,SACjCiL,EAAM6E,QAAUpE,EAAMmE,SAASQ,KAAKM,IAAe,CAC/CjB,UAAU,EACVxE,IAAKyF,EACLhN,MAAO+H,EAAMiF,QAGjBjF,EAAMkF,kBAAkBC,OACxB5F,EAAM6F,iBAAmB5Q,MAAMgQ,KAAKxE,EAAMkF,mBAAmBP,KAAKnF,IAAQ,CACtEwE,UAAU,EACVxE,MACAvH,MAAO+H,EAAMR,QAGdD,CACX,CAmNoC8F,CAA6BR,GAErD,KAEJpD,EAAIlM,GAAG+P,oBAAmB,CAAC9B,EAASC,KAChC,GAAID,EAAQnC,MAAQA,GAAOmC,EAAQc,cAAgBrD,EAAc,CAC7D,MAAM4D,EAAiBrB,EAAQJ,SAAWtD,EACpC7F,EACAA,EAAMoJ,GAAG1K,IAAI6K,EAAQJ,QAC3B,IAAKyB,EACD,OAAOjG,EAAa,UAAU4E,EAAQJ,oBAAqB,SAE/D,MAAM,KAAEmC,GAAS/B,EACZvE,EAAQ4F,GAUTU,EAAKC,QAAQ,SARO,IAAhBD,EAAKjR,QACJuQ,EAAeK,kBAAkBhT,IAAIqT,EAAK,OAC3CA,EAAK,KAAMV,EAAeX,SAC1BqB,EAAKC,QAAQ,UAOrB1E,GAAmB,EACnB0C,EAAQiC,IAAIZ,EAAgBU,EAAM/B,EAAQjE,MAAMtH,OAChD6I,GAAmB,CACvB,KAEJW,EAAIlM,GAAGmQ,oBAAoBlC,IACvB,GAAIA,EAAQ/F,KAAKkI,WAAW,MAAO,CAC/B,MAAMX,EAAUxB,EAAQ/F,KAAKiB,QAAQ,SAAU,IACzCsB,EAAQ/F,EAAMoJ,GAAG1K,IAAIqM,GAC3B,IAAKhF,EACD,OAAOpB,EAAa,UAAUoG,eAAsB,SAExD,MAAM,KAAEO,GAAS/B,EACjB,GAAgB,UAAZ+B,EAAK,GACL,OAAO3G,EAAa,2BAA2BoG,QAAcO,kCAIjEA,EAAK,GAAK,SACVzE,GAAmB,EACnB0C,EAAQiC,IAAIzF,EAAOuF,EAAM/B,EAAQjE,MAAMtH,OACvC6I,GAAmB,CACvB,IACF,GAEV,CAgLA,IACI8E,EADAC,EAAkB,EAUtB,SAASC,EAAuB9F,EAAO+F,EAAaC,GAEhD,MAAMjE,EAAUgE,EAAY1F,QAAO,CAAC4F,EAAcC,KAE9CD,EAAaC,IAAc,QAAMlG,GAAOkG,GACjCD,IACR,CAAC,GACJ,IAAK,MAAMC,KAAcnE,EACrB/B,EAAMkG,GAAc,WAEhB,MAAMC,EAAYN,EACZO,EAAeJ,EACf,IAAI5P,MAAM4J,EAAO,CACfrH,IAAG,IAAI3D,KACH4Q,EAAeO,EACRE,QAAQ1N,OAAO3D,IAE1ByQ,IAAG,IAAIzQ,KACH4Q,EAAeO,EACRE,QAAQZ,OAAOzQ,MAG5BgL,EAEN4F,EAAeO,EACf,MAAMG,EAAWvE,EAAQmE,GAAY7Q,MAAM+Q,EAAclR,WAGzD,OADA0Q,OAAexQ,EACRkR,CACX,CAER,CAIA,SAASC,GAAe,IAAElF,EAAG,MAAErB,EAAK,QAAEwG,IAElC,GAAIxG,EAAME,IAAIyF,WAAW,UACrB,OAGJ3F,EAAMiE,gBAAkBuC,EAAQjH,MAChCuG,EAAuB9F,EAAO7N,OAAO6G,KAAKwN,EAAQzE,SAAU/B,EAAMiE,eAElE,MAAMwC,EAAoBzG,EAAM0G,YAChC,QAAM1G,GAAO0G,WAAa,SAAUC,GAChCF,EAAkBpR,MAAMzC,KAAMsC,WAC9B4Q,EAAuB9F,EAAO7N,OAAO6G,KAAK2N,EAASC,YAAY7E,WAAY/B,EAAMiE,cACrF,EAzOJ,SAA4B5C,EAAKrB,GACxBe,EAAoB9H,SAASkI,EAAanB,EAAME,OACjDa,EAAoB3N,KAAK+N,EAAanB,EAAME,MAEhD7G,EAAoB,CAChBpC,GAAI,gBACJgJ,MAAO,WACPqB,KAAM,mCACNC,YAAa,QACbC,SAAU,0BACVT,sBACAM,MACArK,SAAU,CACN6P,gBAAiB,CACb5G,MAAO,kCACPxC,KAAM,UACNtG,cAAc,MAQtBsK,IAEA,MAAMrJ,EAAyB,mBAAZqJ,EAAIrJ,IAAqBqJ,EAAIrJ,IAAI0O,KAAKrF,GAAOjJ,KAAKJ,IACrE4H,EAAM+G,WAAU,EAAGC,QAAOC,UAASrT,OAAMoB,WACrC,MAAMkS,EAAUrB,IAChBpE,EAAI0F,iBAAiB,CACjBC,QAASpG,EACTjO,MAAO,CACHsU,KAAMjP,IACN2F,MAAO,MAAQnK,EACf0T,SAAU,QACV5P,KAAM,CACFsI,MAAON,EAAcM,EAAME,KAC3B8B,OAAQtC,EAAc9L,GACtBoB,QAEJkS,aAGRF,GAAOxI,IACHoH,OAAexQ,EACfqM,EAAI0F,iBAAiB,CACjBC,QAASpG,EACTjO,MAAO,CACHsU,KAAMjP,IACN2F,MAAO,MAAQnK,EACf0T,SAAU,MACV5P,KAAM,CACFsI,MAAON,EAAcM,EAAME,KAC3B8B,OAAQtC,EAAc9L,GACtBoB,OACAwJ,UAEJ0I,YAEN,IAEND,GAASrL,IACLgK,OAAexQ,EACfqM,EAAI0F,iBAAiB,CACjBC,QAASpG,EACTjO,MAAO,CACHsU,KAAMjP,IACNmP,QAAS,QACTxJ,MAAO,MAAQnK,EACf0T,SAAU,MACV5P,KAAM,CACFsI,MAAON,EAAcM,EAAME,KAC3B8B,OAAQtC,EAAc9L,GACtBoB,OACA4G,SAEJsL,YAEN,GACJ,IACH,GACHlH,EAAMkF,kBAAkBpB,SAASlQ,KAC7B,SAAM,KAAM,QAAMoM,EAAMpM,MAAQ,CAAC4M,EAAUD,KACvCkB,EAAI+F,wBACJ/F,EAAIgB,mBAAmBxB,GACnBH,GACAW,EAAI0F,iBAAiB,CACjBC,QAASpG,EACTjO,MAAO,CACHsU,KAAMjP,IACN2F,MAAO,SACPuJ,SAAU1T,EACV8D,KAAM,CACF8I,WACAD,YAEJ2G,QAAStB,IAGrB,GACD,CAAE6B,MAAM,GAAO,IAEtBzH,EAAM0H,YAAW,EAAG/T,SAAQ8J,QAAQ8B,KAGhC,GAFAkC,EAAI+F,wBACJ/F,EAAIgB,mBAAmBxB,IAClBH,EACD,OAEJ,MAAM6G,EAAY,CACdN,KAAMjP,IACN2F,MAAO2C,EAAmBjD,GAC1B/F,KAAMwJ,EAAS,CAAElB,MAAON,EAAcM,EAAME,MAAQC,EAAgBxM,IACpEuT,QAAStB,GAETnI,IAASjD,EAAaoG,cACtB+G,EAAUL,SAAW,KAEhB7J,IAASjD,EAAaqG,YAC3B8G,EAAUL,SAAW,KAEhB3T,IAAWa,MAAM4L,QAAQzM,KAC9BgU,EAAUL,SAAW3T,EAAO8J,MAE5B9J,IACAgU,EAAUjQ,KAAK,eAAiB,CAC5BkI,QAAS,CACLD,QAAS,gBACTlC,KAAM,SACN4E,QAAS,sBACTpK,MAAOtE,KAInB8N,EAAI0F,iBAAiB,CACjBC,QAASpG,EACTjO,MAAO4U,GACT,GACH,CAAEC,UAAU,EAAMC,MAAO,SAC5B,MAAMC,EAAY9H,EAAM0G,WACxB1G,EAAM0G,YAAa,SAASC,IACxBmB,EAAUnB,GACVlF,EAAI0F,iBAAiB,CACjBC,QAASpG,EACTjO,MAAO,CACHsU,KAAMjP,IACN2F,MAAO,MAAQiC,EAAME,IACrBoH,SAAU,aACV5P,KAAM,CACFsI,MAAON,EAAcM,EAAME,KAC3B6H,KAAMrI,EAAc,kBAKhC+B,EAAI+F,wBACJ/F,EAAIe,kBAAkBvB,GACtBQ,EAAIgB,mBAAmBxB,EAAa,IAExC,MAAM,SAAE+G,GAAahI,EACrBA,EAAMgI,SAAW,KACbA,IACAvG,EAAI+F,wBACJ/F,EAAIe,kBAAkBvB,GACtBQ,EAAIgB,mBAAmBxB,GACvBQ,EAAI1J,cAAc8O,iBACdjI,EAAa,aAAaoB,EAAME,gBAAgB,EAGxDuB,EAAI+F,wBACJ/F,EAAIe,kBAAkBvB,GACtBQ,EAAIgB,mBAAmBxB,GACvBQ,EAAI1J,cAAc8O,iBACdjI,EAAa,IAAIoB,EAAME,0BAA0B,GAE7D,CA4DI+H,CAAmB5G,EAEnBrB,EACJ,CAuJA,MAAMkI,EAAO,OACb,SAASC,EAAgBC,EAAeC,EAAUT,EAAUU,EAAYJ,GACpEE,EAAchV,KAAKiV,GACnB,MAAME,EAAqB,KACvB,MAAMC,EAAMJ,EAAcK,QAAQJ,GAC9BG,GAAO,IACPJ,EAAcM,OAAOF,EAAK,GAC1BF,IACJ,EAKJ,OAHKV,IAAY,YACb,QAAeW,GAEZA,CACX,CACA,SAASI,GAAqBP,KAAkBpT,GAC5CoT,EAAcrU,QAAQ+P,SAASuE,IAC3BA,KAAYrT,EAAK,GAEzB,CAEA,MAAM4T,GAA0BnW,GAAOA,IACvC,SAASoW,GAAqBjS,EAAQkS,GAE9BlS,aAAkBmS,KAAOD,aAAwBC,KACjDD,EAAahF,SAAQ,CAAC7L,EAAOuH,IAAQ5I,EAAO6O,IAAIjG,EAAKvH,KAGrDrB,aAAkBoS,KAAOF,aAAwBE,KACjDF,EAAahF,QAAQlN,EAAOqS,IAAKrS,GAGrC,IAAK,MAAM4I,KAAOsJ,EAAc,CAC5B,IAAKA,EAAazW,eAAemN,GAC7B,SACJ,MAAM0J,EAAWJ,EAAatJ,GACxB2J,EAAcvS,EAAO4I,GACvBpF,EAAc+O,IACd/O,EAAc8O,IACdtS,EAAOvE,eAAemN,MACrB,QAAM0J,MACN,QAAWA,GAIZtS,EAAO4I,GAAOqJ,GAAqBM,EAAaD,GAIhDtS,EAAO4I,GAAO0J,CAEtB,CACA,OAAOtS,CACX,CACA,MAAMwS,GAE2BjP,SAC3BkP,GAA+B,IAAIC,SAyBjChS,OAAM,IAAKnF,OA8CnB,SAASoX,GAAiBrJ,EAAKsJ,EAAOhD,EAAU,CAAC,EAAGvM,EAAOwP,EAAKC,GAC5D,IAAIC,EACJ,MAAMC,EAAmB,GAAO,CAAE7H,QAAS,CAAC,GAAKyE,GAM3CqD,EAAoB,CACtBpC,MAAM,GAwBV,IAAIqC,EACAC,EAGAC,EAFA5B,EAAgB,GAChB6B,EAAsB,GAE1B,MAAMC,EAAejQ,EAAMsF,MAAMtH,MAAMiI,GAGlCwJ,GAAmBQ,IAEhB,GACA,QAAIjQ,EAAMsF,MAAMtH,MAAOiI,EAAK,CAAC,GAG7BjG,EAAMsF,MAAMtH,MAAMiI,GAAO,CAAC,GAGlC,MAAMiK,GAAW,QAAI,CAAC,GAGtB,IAAIC,EACJ,SAASC,EAAOC,GACZ,IAAIC,EACJT,EAAcC,GAAkB,EAMK,mBAA1BO,GACPA,EAAsBrQ,EAAMsF,MAAMtH,MAAMiI,IACxCqK,EAAuB,CACnB9M,KAAMjD,EAAaoG,cACnBoE,QAAS9E,EACTvM,OAAQqW,KAIZnB,GAAqB5O,EAAMsF,MAAMtH,MAAMiI,GAAMoK,GAC7CC,EAAuB,CACnB9M,KAAMjD,EAAaqG,YACnB2C,QAAS8G,EACTtF,QAAS9E,EACTvM,OAAQqW,IAGhB,MAAMQ,EAAgBJ,EAAiBjQ,UACvC,UAAWsQ,MAAK,KACRL,IAAmBI,IACnBV,GAAc,EAClB,IAEJC,GAAkB,EAElBpB,GAAqBP,EAAemC,EAAsBtQ,EAAMsF,MAAMtH,MAAMiI,GAChF,CACA,MAAMoD,EAASoG,EACT,WACE,MAAM,MAAEnK,GAAUiH,EACZkE,EAAWnL,EAAQA,IAAU,CAAC,EAEpC3M,KAAKyX,QAAQnG,IACT,GAAOA,EAAQwG,EAAS,GAEhC,EAMUxC,EAcd,SAASyC,EAAW/W,EAAMoO,GACtB,OAAO,WACHhI,EAAeC,GACf,MAAMjF,EAAOR,MAAMgQ,KAAKtP,WAClB0V,EAAoB,GACpBC,EAAsB,GAe5B,IAAIC,EAPJnC,GAAqBsB,EAAqB,CACtCjV,OACApB,OACAoM,QACAgH,MAXJ,SAAeqB,GACXuC,EAAkBxX,KAAKiV,EAC3B,EAUIpB,QATJ,SAAiBoB,GACbwC,EAAoBzX,KAAKiV,EAC7B,IAUA,IACIyC,EAAM9I,EAAO3M,MAAMzC,MAAQA,KAAKsN,MAAQA,EAAMtN,KAAOoN,EAAOhL,EAEhE,CACA,MAAO4G,GAEH,MADA+M,GAAqBkC,EAAqBjP,GACpCA,CACV,CACA,OAAIkP,aAAe3R,QACR2R,EACFL,MAAMxS,IACP0Q,GAAqBiC,EAAmB3S,GACjCA,KAEN8S,OAAOnP,IACR+M,GAAqBkC,EAAqBjP,GACnCzC,QAAQyJ,OAAOhH,OAI9B+M,GAAqBiC,EAAmBE,GACjCA,EACX,CACJ,CACA,MAAMlE,GAA4B,QAAQ,CACtC7E,QAAS,CAAC,EACVqC,QAAS,CAAC,EACV7E,MAAO,GACP4K,aAEEa,EAAe,CACjBC,GAAIhR,EAEJiG,MACA6G,UAAWoB,EAAgBrB,KAAK,KAAMmD,GACtCI,SACA/G,SACA,UAAAoE,CAAWW,EAAU7B,EAAU,CAAC,GAC5B,MAAM+B,EAAqBJ,EAAgBC,EAAeC,EAAU7B,EAAQoB,UAAU,IAAMsD,MACtFA,EAAcvB,EAAMwB,KAAI,KAAM,SAAM,IAAMlR,EAAMsF,MAAMtH,MAAMiI,KAAOX,KAC/C,SAAlBiH,EAAQqB,MAAmBkC,EAAkBD,IAC7CzB,EAAS,CACLrD,QAAS9E,EACTzC,KAAMjD,EAAamG,OACnBhN,OAAQqW,GACTzK,EACP,GACD,GAAO,CAAC,EAAGsK,EAAmBrD,MACjC,OAAO+B,CACX,EACAP,SApFJ,WACI2B,EAAMyB,OACNhD,EAAgB,GAChB6B,EAAsB,GACtBhQ,EAAMoJ,GAAGgI,OAAOnL,EACpB,GAkFI,IAEA8K,EAAaM,IAAK,GAEtB,MAAMtL,GAAQ,QAAoDtF,EAC5D,GAAO,CACLkM,cACA1B,mBAAmB,QAAQ,IAAI8D,MAChCgC,GAIDA,GAGN/Q,EAAMoJ,GAAGoC,IAAIvF,EAAKF,GAClB,MAEMuL,GAFkBtR,EAAM3B,IAAM2B,EAAM3B,GAAGkT,gBAAmB5C,KAE9B,IAAM3O,EAAMwR,GAAGN,KAAI,KAAOxB,GAAQ,WAAewB,IAAI3B,OAEvF,IAAK,MAAMhK,KAAO+L,EAAY,CAC1B,MAAM1S,EAAO0S,EAAW/L,GACxB,IAAK,QAAM3G,KAlQCwB,EAkQoBxB,IAjQ1B,QAAMwB,KAAMA,EAAEqR,UAiQsB,QAAW7S,GAOvC6Q,KAEFQ,IAjRGyB,EAiR2B9S,EAhRvC,EAC2BwQ,GAAenX,IAAIyZ,GAC9CvR,EAAcuR,IAASA,EAAItZ,eAAe+W,QA+Q7B,QAAMvQ,GACNA,EAAKZ,MAAQiS,EAAa1K,GAK1BqJ,GAAqBhQ,EAAMqR,EAAa1K,KAK5C,GACA,QAAIvF,EAAMsF,MAAMtH,MAAMiI,GAAMV,EAAK3G,GAGjCoB,EAAMsF,MAAMtH,MAAMiI,GAAKV,GAAO3G,QASrC,GAAoB,mBAATA,EAAqB,CAEjC,MAAM+S,EAAsEjB,EAAWnL,EAAK3G,GAIxF,GACA,QAAI0S,EAAY/L,EAAKoM,GAIrBL,EAAW/L,GAAOoM,EAQtBhC,EAAiB7H,QAAQvC,GAAO3G,CACpC,CAgBJ,CA9UJ,IAAuB8S,EAMHtR,EA4ahB,GAjGI,EACAlI,OAAO6G,KAAKuS,GAAYzH,SAAStE,KAC7B,QAAIQ,EAAOR,EAAK+L,EAAW/L,GAAK,KAIpC,GAAOQ,EAAOuL,GAGd,IAAO,QAAMvL,GAAQuL,IAKzBpZ,OAAO0Z,eAAe7L,EAAO,SAAU,CACnCrH,IAAK,IAAyEsB,EAAMsF,MAAMtH,MAAMiI,GAChGuF,IAAMlG,IAKF8K,GAAQnG,IACJ,GAAOA,EAAQ3E,EAAM,GACvB,IA0EN7E,EAAc,CACd,MAAMoR,EAAgB,CAClBC,UAAU,EACVC,cAAc,EAEdC,YAAY,GAEhB,CAAC,KAAM,cAAe,WAAY,qBAAqBnI,SAASoI,IAC5D/Z,OAAO0Z,eAAe7L,EAAOkM,EAAG,GAAO,CAAEjU,MAAO+H,EAAMkM,IAAMJ,GAAe,GAEnF,CA6CA,OA3CI,IAEA9L,EAAMsL,IAAK,GAGfrR,EAAMgR,GAAGnH,SAASqI,IAEd,GAAIzR,EAAc,CACd,MAAM0R,EAAazC,EAAMwB,KAAI,IAAMgB,EAAS,CACxCnM,QACAqB,IAAKpH,EAAM3B,GACX2B,QACAuM,QAASoD,MAEbzX,OAAO6G,KAAKoT,GAAc,CAAC,GAAGtI,SAAStE,GAAQQ,EAAMkF,kBAAkB+D,IAAIzJ,KAC3E,GAAOQ,EAAOoM,EAClB,MAEI,GAAOpM,EAAO2J,EAAMwB,KAAI,IAAMgB,EAAS,CACnCnM,QACAqB,IAAKpH,EAAM3B,GACX2B,QACAuM,QAASoD,MAEjB,IAYAM,GACAR,GACAlD,EAAQ6F,SACR7F,EAAQ6F,QAAQrM,EAAMkE,OAAQgG,GAElCJ,GAAc,EACdC,GAAkB,EACX/J,CACX,CACA,SAASsM,GAETC,EAAa/C,EAAOgD,GAChB,IAAIvV,EACAuP,EACJ,MAAMiG,EAAgC,mBAAVjD,EAa5B,SAASkD,EAASzS,EAAOwP,GACrB,MAAMkD,KNrlDH,UMyoDH,OAnDA1S,EAGuFA,IAC9E0S,GAAa,QAAOzS,EAAa,MAAQ,QAE9CF,EAAeC,IAMnBA,EAAQF,GACGsJ,GAAGnR,IAAI+E,KAEVwV,EACAlD,GAAiBtS,EAAIuS,EAAOhD,EAASvM,GAtgBrD,SAA4BhD,EAAIuP,EAASvM,EAAOwP,GAC5C,MAAM,MAAElK,EAAK,QAAEwC,EAAO,QAAEqC,GAAYoC,EAC9B0D,EAAejQ,EAAMsF,MAAMtH,MAAMhB,GACvC,IAAI+I,EAoCJA,EAAQuJ,GAAiBtS,GAnCzB,WACSiT,IAEG,GACA,QAAIjQ,EAAMsF,MAAMtH,MAAOhB,EAAIsI,EAAQA,IAAU,CAAC,GAG9CtF,EAAMsF,MAAMtH,MAAMhB,GAAMsI,EAAQA,IAAU,CAAC,GAInD,MAAMqN,GAGA,QAAO3S,EAAMsF,MAAMtH,MAAMhB,IAC/B,OAAO,GAAO2V,EAAY7K,EAAS5P,OAAO6G,KAAKoL,GAAW,CAAC,GAAG/D,QAAO,CAACwM,EAAiBjZ,KAInFiZ,EAAgBjZ,IAAQ,SAAQ,SAAS,KACrCoG,EAAeC,GAEf,MAAM+F,EAAQ/F,EAAMoJ,GAAG1K,IAAI1B,GAG3B,IAAI,GAAW+I,EAAMsL,GAKrB,OAAOlH,EAAQxQ,GAAME,KAAKkM,EAAOA,EAAM,KAEpC6M,IACR,CAAC,GACR,GACoCrG,EAASvM,EAAOwP,GAAK,EAE7D,CAgegBqD,CAAmB7V,EAAIuP,EAASvM,IAQ1BA,EAAMoJ,GAAG1K,IAAI1B,EAyB/B,CAEA,MApE2B,iBAAhBsV,GACPtV,EAAKsV,EAEL/F,EAAUiG,EAAeD,EAAehD,IAGxChD,EAAU+F,EACVtV,EAAKsV,EAAYtV,IA4DrByV,EAASxM,IAAMjJ,EACRyV,CACX,yCC3tDA,MAAMK,GAAQ,eACRC,GAAgB,IAAIC,OAAO,IAAMF,GAAQ,aAAc,MACvDG,GAAe,IAAID,OAAO,IAAMF,GAAQ,KAAM,MAEpD,SAASI,GAAiBC,EAAYC,GACrC,IAEC,MAAO,CAACC,mBAAmBF,EAAWG,KAAK,KAC5C,CAAE,MAEF,CAEA,GAA0B,IAAtBH,EAAW9Y,OACd,OAAO8Y,EAGRC,EAAQA,GAAS,EAGjB,MAAMG,EAAOJ,EAAWrZ,MAAM,EAAGsZ,GAC3BI,EAAQL,EAAWrZ,MAAMsZ,GAE/B,OAAO7Y,MAAMpC,UAAU6B,OAAOH,KAAK,GAAIqZ,GAAiBK,GAAOL,GAAiBM,GACjF,CAEA,SAASC,GAAOC,GACf,IACC,OAAOL,mBAAmBK,EAC3B,CAAE,MACD,IAAIC,EAASD,EAAME,MAAMb,KAAkB,GAE3C,IAAK,IAAI5Y,EAAI,EAAGA,EAAIwZ,EAAOtZ,OAAQF,IAGlCwZ,GAFAD,EAAQR,GAAiBS,EAAQxZ,GAAGmZ,KAAK,KAE1BM,MAAMb,KAAkB,GAGxC,OAAOW,CACR,CACD,CCvCe,SAASG,GAAaC,EAAQC,GAC5C,GAAwB,iBAAXD,GAA4C,iBAAdC,EAC1C,MAAM,IAAIhb,UAAU,iDAGrB,GAAe,KAAX+a,GAA+B,KAAdC,EACpB,MAAO,GAGR,MAAMC,EAAiBF,EAAOtF,QAAQuF,GAEtC,OAAwB,IAApBC,EACI,GAGD,CACNF,EAAOha,MAAM,EAAGka,GAChBF,EAAOha,MAAMka,EAAiBD,EAAU1Z,QAE1C,CCnBO,SAAS4Z,GAAYC,EAAQC,GACnC,MAAM5P,EAAS,CAAC,EAEhB,GAAIhK,MAAM4L,QAAQgO,GACjB,IAAK,MAAM5O,KAAO4O,EAAW,CAC5B,MAAM5U,EAAarH,OAAOkc,yBAAyBF,EAAQ3O,GACvDhG,GAAYyS,YACf9Z,OAAO0Z,eAAerN,EAAQgB,EAAKhG,EAErC,MAGA,IAAK,MAAMgG,KAAO6G,QAAQiI,QAAQH,GAAS,CAC1C,MAAM3U,EAAarH,OAAOkc,yBAAyBF,EAAQ3O,GACvDhG,EAAWyS,YAEVmC,EAAU5O,EADA2O,EAAO3O,GACK2O,IACzBhc,OAAO0Z,eAAerN,EAAQgB,EAAKhG,EAGtC,CAGD,OAAOgF,CACR,CCpBA,MAAM+P,GAAoBtW,GAASA,QAG7BuW,GAAkBT,GAAUU,mBAAmBV,GAAQrP,QAAQ,YAAYgQ,GAAK,IAAIA,EAAEC,WAAW,GAAGrU,SAAS,IAAIsU,kBAEjHC,GAA2B1U,OAAO,4BA8OxC,SAAS2U,GAA6B7W,GACrC,GAAqB,iBAAVA,GAAuC,IAAjBA,EAAM3D,OACtC,MAAM,IAAItB,UAAU,uDAEtB,CAEA,SAAS+b,GAAO9W,EAAOuO,GACtB,OAAIA,EAAQuI,OACJvI,EAAQwI,OAASR,GAAgBvW,GAASwW,mBAAmBxW,GAG9DA,CACR,CAEA,SAAS,GAAOA,EAAOuO,GACtB,OAAIA,EAAQkH,OHzLE,SAA4BuB,GAC1C,GAA0B,iBAAfA,EACV,MAAM,IAAIjc,UAAU,6DAA+Dic,EAAa,KAGjG,IAEC,OAAO3B,mBAAmB2B,EAC3B,CAAE,MAED,OA9CF,SAAkCtB,GAEjC,MAAMuB,EAAa,CAClB,SAAU,KACV,SAAU,MAGX,IAAIrB,EAAQX,GAAaiC,KAAKxB,GAC9B,KAAOE,GAAO,CACb,IAECqB,EAAWrB,EAAM,IAAMP,mBAAmBO,EAAM,GACjD,CAAE,MACD,MAAMrP,EAASkP,GAAOG,EAAM,IAExBrP,IAAWqP,EAAM,KACpBqB,EAAWrB,EAAM,IAAMrP,EAEzB,CAEAqP,EAAQX,GAAaiC,KAAKxB,EAC3B,CAGAuB,EAAW,OAAS,IAEpB,MAAME,EAAUjd,OAAO6G,KAAKkW,GAE5B,IAAK,MAAM1P,KAAO4P,EAEjBzB,EAAQA,EAAMjP,QAAQ,IAAIuO,OAAOzN,EAAK,KAAM0P,EAAW1P,IAGxD,OAAOmO,CACR,CAYS0B,CAAyBJ,EACjC,CACD,CG8KS,CAAgBhX,GAGjBA,CACR,CAEA,SAASqX,GAAW3B,GACnB,OAAInZ,MAAM4L,QAAQuN,GACVA,EAAM4B,OAGO,iBAAV5B,EACH2B,GAAWnd,OAAO6G,KAAK2U,IAC5B4B,MAAK,CAAC1S,EAAG2S,IAAMC,OAAO5S,GAAK4S,OAAOD,KAClC7K,KAAInF,GAAOmO,EAAMnO,KAGbmO,CACR,CAEA,SAAS+B,GAAW/B,GACnB,MAAMgC,EAAYhC,EAAMlF,QAAQ,KAKhC,OAJmB,IAAfkH,IACHhC,EAAQA,EAAM5Z,MAAM,EAAG4b,IAGjBhC,CACR,CAYA,SAASiC,GAAW3X,EAAOuO,GAO1B,OANIA,EAAQqJ,eAAiBJ,OAAOK,MAAML,OAAOxX,KAA6B,iBAAVA,GAAuC,KAAjBA,EAAM8X,OAC/F9X,EAAQwX,OAAOxX,IACLuO,EAAQwJ,eAA2B,OAAV/X,GAA2C,SAAxBA,EAAMmH,eAAoD,UAAxBnH,EAAMmH,gBAC9FnH,EAAgC,SAAxBA,EAAMmH,eAGRnH,CACR,CAEO,SAASgY,GAAQtC,GAEvB,MAAMuC,GADNvC,EAAQ+B,GAAW/B,IACMlF,QAAQ,KACjC,OAAoB,IAAhByH,EACI,GAGDvC,EAAM5Z,MAAMmc,EAAa,EACjC,CAEO,SAAStY,GAAMuY,EAAO3J,GAW5BsI,IAVAtI,EAAU,CACTkH,QAAQ,EACR6B,MAAM,EACNa,YAAa,OACbC,qBAAsB,IACtBR,cAAc,EACdG,eAAe,KACZxJ,IAGiC6J,sBAErC,MAAMC,EApMP,SAA8B9J,GAC7B,IAAIhI,EAEJ,OAAQgI,EAAQ4J,aACf,IAAK,QACJ,MAAO,CAAC5Q,EAAKvH,EAAOsY,KACnB/R,EAAS,YAAY2Q,KAAK3P,GAE1BA,EAAMA,EAAId,QAAQ,UAAW,IAExBF,QAKoBpJ,IAArBmb,EAAY/Q,KACf+Q,EAAY/Q,GAAO,CAAC,GAGrB+Q,EAAY/Q,GAAKhB,EAAO,IAAMvG,GAR7BsY,EAAY/Q,GAAOvH,CAQe,EAIrC,IAAK,UACJ,MAAO,CAACuH,EAAKvH,EAAOsY,KACnB/R,EAAS,SAAS2Q,KAAK3P,GACvBA,EAAMA,EAAId,QAAQ,OAAQ,IAErBF,OAKoBpJ,IAArBmb,EAAY/Q,GAKhB+Q,EAAY/Q,GAAO,IAAI+Q,EAAY/Q,GAAMvH,GAJxCsY,EAAY/Q,GAAO,CAACvH,GALpBsY,EAAY/Q,GAAOvH,CAS2B,EAIjD,IAAK,uBACJ,MAAO,CAACuH,EAAKvH,EAAOsY,KACnB/R,EAAS,WAAW2Q,KAAK3P,GACzBA,EAAMA,EAAId,QAAQ,SAAU,IAEvBF,OAKoBpJ,IAArBmb,EAAY/Q,GAKhB+Q,EAAY/Q,GAAO,IAAI+Q,EAAY/Q,GAAMvH,GAJxCsY,EAAY/Q,GAAO,CAACvH,GALpBsY,EAAY/Q,GAAOvH,CAS2B,EAIjD,IAAK,QACL,IAAK,YACJ,MAAO,CAACuH,EAAKvH,EAAOsY,KACnB,MAAMnQ,EAA2B,iBAAVnI,GAAsBA,EAAMgB,SAASuN,EAAQ6J,sBAC9DG,EAAmC,iBAAVvY,IAAuBmI,GAAW,GAAOnI,EAAOuO,GAASvN,SAASuN,EAAQ6J,sBACzGpY,EAAQuY,EAAiB,GAAOvY,EAAOuO,GAAWvO,EAClD,MAAMuI,EAAWJ,GAAWoQ,EAAiBvY,EAAMoV,MAAM7G,EAAQ6J,sBAAsB1L,KAAIzN,GAAQ,GAAOA,EAAMsP,KAAuB,OAAVvO,EAAiBA,EAAQ,GAAOA,EAAOuO,GACpK+J,EAAY/Q,GAAOgB,CAAQ,EAI7B,IAAK,oBACJ,MAAO,CAAChB,EAAKvH,EAAOsY,KACnB,MAAMnQ,EAAU,SAAS1D,KAAK8C,GAG9B,GAFAA,EAAMA,EAAId,QAAQ,OAAQ,KAErB0B,EAEJ,YADAmQ,EAAY/Q,GAAOvH,EAAQ,GAAOA,EAAOuO,GAAWvO,GAIrD,MAAMwY,EAAuB,OAAVxY,EAChB,GACAA,EAAMoV,MAAM7G,EAAQ6J,sBAAsB1L,KAAIzN,GAAQ,GAAOA,EAAMsP,UAE7CpR,IAArBmb,EAAY/Q,GAKhB+Q,EAAY/Q,GAAO,IAAI+Q,EAAY/Q,MAASiR,GAJ3CF,EAAY/Q,GAAOiR,CAImC,EAIzD,QACC,MAAO,CAACjR,EAAKvH,EAAOsY,UACMnb,IAArBmb,EAAY/Q,GAKhB+Q,EAAY/Q,GAAO,IAAI,CAAC+Q,EAAY/Q,IAAMkR,OAAQzY,GAJjDsY,EAAY/Q,GAAOvH,CAIoC,EAI5D,CA0FmB0Y,CAAqBnK,GAGjCoK,EAAcze,OAAOqB,OAAO,MAElC,GAAqB,iBAAV2c,EACV,OAAOS,EAKR,KAFAT,EAAQA,EAAMJ,OAAOrR,QAAQ,SAAU,KAGtC,OAAOkS,EAGR,IAAK,MAAMC,KAAaV,EAAM9C,MAAM,KAAM,CACzC,GAAkB,KAAdwD,EACH,SAGD,MAAMC,EAAatK,EAAQkH,OAASmD,EAAUnS,QAAQ,MAAO,KAAOmS,EAEpE,IAAKrR,EAAKvH,GAAS6V,GAAagD,EAAY,UAEhC1b,IAARoK,IACHA,EAAMsR,GAKP7Y,OAAkB7C,IAAV6C,EAAsB,KAAQ,CAAC,QAAS,YAAa,qBAAqBgB,SAASuN,EAAQ4J,aAAenY,EAAQ,GAAOA,EAAOuO,GACxI8J,EAAU,GAAO9Q,EAAKgH,GAAUvO,EAAO2Y,EACxC,CAEA,IAAK,MAAOpR,EAAKvH,KAAU9F,OAAOid,QAAQwB,GACzC,GAAqB,iBAAV3Y,GAAgC,OAAVA,EAChC,IAAK,MAAO8Y,EAAMC,KAAW7e,OAAOid,QAAQnX,GAC3CA,EAAM8Y,GAAQnB,GAAWoB,EAAQxK,QAGlCoK,EAAYpR,GAAOoQ,GAAW3X,EAAOuO,GAIvC,OAAqB,IAAjBA,EAAQ+I,KACJqB,IAKiB,IAAjBpK,EAAQ+I,KAAgBpd,OAAO6G,KAAK4X,GAAarB,OAASpd,OAAO6G,KAAK4X,GAAarB,KAAK/I,EAAQ+I,OAAOlP,QAAO,CAAC7B,EAAQgB,KAC9H,MAAMvH,EAAQ2Y,EAAYpR,GAE1B,OADAhB,EAAOgB,GAAOyR,QAAQhZ,IAA2B,iBAAVA,IAAuBzD,MAAM4L,QAAQnI,GAASqX,GAAWrX,GAASA,EAClGuG,CAAM,GACXrM,OAAOqB,OAAO,MAClB,CAEO,SAAS2E,GAAUgW,EAAQ3H,GACjC,IAAK2H,EACJ,MAAO,GAQRW,IALAtI,EAAU,CAACuI,QAAQ,EAClBC,QAAQ,EACRoB,YAAa,OACbC,qBAAsB,OAAQ7J,IAEM6J,sBAErC,MAAMa,EAAe1R,GACnBgH,EAAQ2K,UAAY5C,GAAkBJ,EAAO3O,KAC1CgH,EAAQ4K,iBAAmC,KAAhBjD,EAAO3O,GAGjC8Q,EA9YP,SAA+B9J,GAC9B,OAAQA,EAAQ4J,aACf,IAAK,QACJ,OAAO5Q,GAAO,CAAChB,EAAQvG,KACtB,MAAMoZ,EAAQ7S,EAAOlK,OAErB,YACWc,IAAV6C,GACIuO,EAAQ2K,UAAsB,OAAVlZ,GACpBuO,EAAQ4K,iBAA6B,KAAVnZ,EAExBuG,EAGM,OAAVvG,EACI,IACHuG,EAAQ,CAACuQ,GAAOvP,EAAKgH,GAAU,IAAK6K,EAAO,KAAK9D,KAAK,KAInD,IACH/O,EACH,CAACuQ,GAAOvP,EAAKgH,GAAU,IAAKuI,GAAOsC,EAAO7K,GAAU,KAAMuI,GAAO9W,EAAOuO,IAAU+G,KAAK,IACvF,EAIH,IAAK,UACJ,OAAO/N,GAAO,CAAChB,EAAQvG,SAEX7C,IAAV6C,GACIuO,EAAQ2K,UAAsB,OAAVlZ,GACpBuO,EAAQ4K,iBAA6B,KAAVnZ,EAExBuG,EAGM,OAAVvG,EACI,IACHuG,EACH,CAACuQ,GAAOvP,EAAKgH,GAAU,MAAM+G,KAAK,KAI7B,IACH/O,EACH,CAACuQ,GAAOvP,EAAKgH,GAAU,MAAOuI,GAAO9W,EAAOuO,IAAU+G,KAAK,KAK9D,IAAK,uBACJ,OAAO/N,GAAO,CAAChB,EAAQvG,SAEX7C,IAAV6C,GACIuO,EAAQ2K,UAAsB,OAAVlZ,GACpBuO,EAAQ4K,iBAA6B,KAAVnZ,EAExBuG,EAGM,OAAVvG,EACI,IACHuG,EACH,CAACuQ,GAAOvP,EAAKgH,GAAU,UAAU+G,KAAK,KAIjC,IACH/O,EACH,CAACuQ,GAAOvP,EAAKgH,GAAU,SAAUuI,GAAO9W,EAAOuO,IAAU+G,KAAK,KAKjE,IAAK,QACL,IAAK,YACL,IAAK,oBAAqB,CACzB,MAAM+D,EAAsC,sBAAxB9K,EAAQ4J,YACzB,MACA,IAEH,OAAO5Q,GAAO,CAAChB,EAAQvG,SAEX7C,IAAV6C,GACIuO,EAAQ2K,UAAsB,OAAVlZ,GACpBuO,EAAQ4K,iBAA6B,KAAVnZ,EAExBuG,GAIRvG,EAAkB,OAAVA,EAAiB,GAAKA,EAER,IAAlBuG,EAAOlK,OACH,CAAC,CAACya,GAAOvP,EAAKgH,GAAU8K,EAAavC,GAAO9W,EAAOuO,IAAU+G,KAAK,KAGnE,CAAC,CAAC/O,EAAQuQ,GAAO9W,EAAOuO,IAAU+G,KAAK/G,EAAQ6J,uBAExD,CAEA,QACC,OAAO7Q,GAAO,CAAChB,EAAQvG,SAEX7C,IAAV6C,GACIuO,EAAQ2K,UAAsB,OAAVlZ,GACpBuO,EAAQ4K,iBAA6B,KAAVnZ,EAExBuG,EAGM,OAAVvG,EACI,IACHuG,EACHuQ,GAAOvP,EAAKgH,IAIP,IACHhI,EACH,CAACuQ,GAAOvP,EAAKgH,GAAU,IAAKuI,GAAO9W,EAAOuO,IAAU+G,KAAK,KAK9D,CAgRmBgE,CAAsB/K,GAElCgL,EAAa,CAAC,EAEpB,IAAK,MAAOhS,EAAKvH,KAAU9F,OAAOid,QAAQjB,GACpC+C,EAAa1R,KACjBgS,EAAWhS,GAAOvH,GAIpB,MAAMe,EAAO7G,OAAO6G,KAAKwY,GAMzB,OAJqB,IAAjBhL,EAAQ+I,MACXvW,EAAKuW,KAAK/I,EAAQ+I,MAGZvW,EAAK2L,KAAInF,IACf,MAAMvH,EAAQkW,EAAO3O,GAErB,YAAcpK,IAAV6C,EACI,GAGM,OAAVA,EACI8W,GAAOvP,EAAKgH,GAGhBhS,MAAM4L,QAAQnI,GACI,IAAjBA,EAAM3D,QAAwC,sBAAxBkS,EAAQ4J,YAC1BrB,GAAOvP,EAAKgH,GAAW,KAGxBvO,EACLoI,OAAOiQ,EAAU9Q,GAAM,IACvB+N,KAAK,KAGDwB,GAAOvP,EAAKgH,GAAW,IAAMuI,GAAO9W,EAAOuO,EAAQ,IACxD9B,QAAOgK,GAAKA,EAAEpa,OAAS,IAAGiZ,KAAK,IACnC,CAEO,SAASkE,GAASxW,EAAKuL,GAC7BA,EAAU,CACTkH,QAAQ,KACLlH,GAGJ,IAAKkL,EAAMC,GAAQ7D,GAAa7S,EAAK,KAMrC,YAJa7F,IAATsc,IACHA,EAAOzW,GAGD,CACNA,IAAKyW,GAAMrE,MAAM,OAAO,IAAM,GAC9B8C,MAAOvY,GAAMqY,GAAQhV,GAAMuL,MACvBA,GAAWA,EAAQoL,yBAA2BD,EAAO,CAACE,mBAAoB,GAAOF,EAAMnL,IAAY,CAAC,EAE1G,CAEO,SAASsL,GAAa3D,EAAQ3H,GACpCA,EAAU,CACTuI,QAAQ,EACRC,QAAQ,EACR,CAACH,KAA2B,KACzBrI,GAGJ,MAAMvL,EAAMyU,GAAWvB,EAAOlT,KAAKoS,MAAM,KAAK,IAAM,GAQpD,IAAI0E,EAAc5Z,GALJ,IACVP,GAHiBqY,GAAQ9B,EAAOlT,KAGZ,CAACsU,MAAM,OAC3BpB,EAAOgC,OAGwB3J,GAC/BuL,IACHA,EAAc,IAAIA,KAGnB,IAAIJ,EAtML,SAAiB1W,GAChB,IAAI0W,EAAO,GACX,MAAMhC,EAAY1U,EAAIwN,QAAQ,KAK9B,OAJmB,IAAfkH,IACHgC,EAAO1W,EAAIlH,MAAM4b,IAGXgC,CACR,CA8LYK,CAAQ7D,EAAOlT,KAC1B,GAAIkT,EAAO0D,mBAAoB,CAC9B,MAAMI,EAA6B,IAAI9U,IAAIlC,GAC3CgX,EAA2BN,KAAOxD,EAAO0D,mBACzCF,EAAOnL,EAAQqI,IAA4BoD,EAA2BN,KAAO,IAAIxD,EAAO0D,oBACzF,CAEA,MAAO,GAAG5W,IAAM8W,IAAcJ,GAC/B,CAEO,SAASO,GAAKvE,EAAOjJ,EAAQ8B,GACnCA,EAAU,CACToL,yBAAyB,EACzB,CAAC/C,KAA2B,KACzBrI,GAGJ,MAAM,IAACvL,EAAG,MAAEkV,EAAK,mBAAE0B,GAAsBJ,GAAS9D,EAAOnH,GAEzD,OAAOsL,GAAa,CACnB7W,MACAkV,MAAOjC,GAAYiC,EAAOzL,GAC1BmN,sBACErL,EACJ,CAEO,SAAS2L,GAAQxE,EAAOjJ,EAAQ8B,GAGtC,OAAO0L,GAAKvE,EAFYnZ,MAAM4L,QAAQsE,GAAUlF,IAAQkF,EAAOzL,SAASuG,GAAO,CAACA,EAAKvH,KAAWyM,EAAOlF,EAAKvH,GAExEuO,EACrC,CCtgBA,2BCiBA,SAAS4L,GAAQvV,EAAG2S,GAClB,IAAK,IAAIhQ,KAAOgQ,EACd3S,EAAE2C,GAAOgQ,EAAEhQ,GAEb,OAAO3C,CACT,CAIA,IAAIwV,GAAkB,WAClBC,GAAwB,SAAUC,GAAK,MAAO,IAAMA,EAAE5D,WAAW,GAAGrU,SAAS,GAAK,EAClFkY,GAAU,OAKV,GAAS,SAAUC,GAAO,OAAOhE,mBAAmBgE,GACnD/T,QAAQ2T,GAAiBC,IACzB5T,QAAQ8T,GAAS,IAAM,EAE5B,SAAS,GAAQC,GACf,IACE,OAAOnF,mBAAmBmF,EAC5B,CAAE,MAAOC,GAIT,CACA,OAAOD,CACT,CA0BA,IAAIE,GAAsB,SAAU1a,GAAS,OAAiB,MAATA,GAAkC,iBAAVA,EAAqBA,EAAQ0F,OAAO1F,EAAS,EAE1H,SAAS2a,GAAYzC,GACnB,IAAI0C,EAAM,CAAC,EAIX,OAFA1C,EAAQA,EAAMJ,OAAOrR,QAAQ,YAAa,MAM1CyR,EAAM9C,MAAM,KAAKvJ,SAAQ,SAAUgP,GACjC,IAAIC,EAAQD,EAAMpU,QAAQ,MAAO,KAAK2O,MAAM,KACxC7N,EAAM,GAAOuT,EAAMC,SACnBC,EAAMF,EAAMze,OAAS,EAAI,GAAOye,EAAMxF,KAAK,MAAQ,UAEtCnY,IAAbyd,EAAIrT,GACNqT,EAAIrT,GAAOyT,EACFze,MAAM4L,QAAQyS,EAAIrT,IAC3BqT,EAAIrT,GAAKpM,KAAK6f,GAEdJ,EAAIrT,GAAO,CAACqT,EAAIrT,GAAMyT,EAE1B,IAEOJ,GAjBEA,CAkBX,CAEA,SAASK,GAAgBvH,GACvB,IAAIkH,EAAMlH,EACNxZ,OAAO6G,KAAK2S,GACXhH,KAAI,SAAUnF,GACb,IAAIyT,EAAMtH,EAAInM,GAEd,QAAYpK,IAAR6d,EACF,MAAO,GAGT,GAAY,OAARA,EACF,OAAO,GAAOzT,GAGhB,GAAIhL,MAAM4L,QAAQ6S,GAAM,CACtB,IAAIzU,EAAS,GAWb,OAVAyU,EAAInP,SAAQ,SAAUqP,QACP/d,IAAT+d,IAGS,OAATA,EACF3U,EAAOpL,KAAK,GAAOoM,IAEnBhB,EAAOpL,KAAK,GAAOoM,GAAO,IAAM,GAAO2T,IAE3C,IACO3U,EAAO+O,KAAK,IACrB,CAEA,OAAO,GAAO/N,GAAO,IAAM,GAAOyT,EACpC,IACCvO,QAAO,SAAUgK,GAAK,OAAOA,EAAEpa,OAAS,CAAG,IAC3CiZ,KAAK,KACN,KACJ,OAAOsF,EAAO,IAAMA,EAAO,EAC7B,CAIA,IAAIO,GAAkB,OAEtB,SAASC,GACPC,EACApW,EACAqW,EACAC,GAEA,IAAIN,EAAiBM,GAAUA,EAAOhN,QAAQ0M,eAE1C/C,EAAQjT,EAASiT,OAAS,CAAC,EAC/B,IACEA,EAAQsD,GAAMtD,EAChB,CAAE,MAAOtY,GAAI,CAEb,IAAI6b,EAAQ,CACV9f,KAAMsJ,EAAStJ,MAAS0f,GAAUA,EAAO1f,KACzC+f,KAAOL,GAAUA,EAAOK,MAAS,CAAC,EAClCpO,KAAMrI,EAASqI,MAAQ,IACvBoM,KAAMzU,EAASyU,MAAQ,GACvBxB,MAAOA,EACPyD,OAAQ1W,EAAS0W,QAAU,CAAC,EAC5BC,SAAUC,GAAY5W,EAAUgW,GAChCa,QAAST,EAASU,GAAYV,GAAU,IAK1C,OAHIC,IACFG,EAAMH,eAAiBO,GAAYP,EAAgBL,IAE9C/gB,OAAO8hB,OAAOP,EACvB,CAEA,SAASD,GAAOxb,GACd,GAAIzD,MAAM4L,QAAQnI,GAChB,OAAOA,EAAM0M,IAAI8O,IACZ,GAAIxb,GAA0B,iBAAVA,EAAoB,CAC7C,IAAI4a,EAAM,CAAC,EACX,IAAK,IAAIrT,KAAOvH,EACd4a,EAAIrT,GAAOiU,GAAMxb,EAAMuH,IAEzB,OAAOqT,CACT,CACE,OAAO5a,CAEX,CAGA,IAAIic,GAAQb,GAAY,KAAM,CAC5B9N,KAAM,MAGR,SAASyO,GAAaV,GAEpB,IADA,IAAIT,EAAM,GACHS,GACLT,EAAIrN,QAAQ8N,GACZA,EAASA,EAAOa,OAElB,OAAOtB,CACT,CAEA,SAASiB,GACPM,EACAC,GAEA,IAAI9O,EAAO6O,EAAI7O,KACX4K,EAAQiE,EAAIjE,WAAsB,IAAVA,IAAmBA,EAAQ,CAAC,GACxD,IAAIwB,EAAOyC,EAAIzC,KAGf,YAHmC,IAATA,IAAkBA,EAAO,KAG3CpM,GAAQ,MADA8O,GAAmBnB,IACF/C,GAASwB,CAC5C,CAEA,SAAS2C,GAAazX,EAAG2S,EAAG+E,GAC1B,OAAI/E,IAAM0E,GACDrX,IAAM2S,IACHA,IAED3S,EAAE0I,MAAQiK,EAAEjK,KACd1I,EAAE0I,KAAK7G,QAAQ0U,GAAiB,MAAQ5D,EAAEjK,KAAK7G,QAAQ0U,GAAiB,MAAQmB,GACrF1X,EAAE8U,OAASnC,EAAEmC,MACb6C,GAAc3X,EAAEsT,MAAOX,EAAEW,WAClBtT,EAAEjJ,OAAQ4b,EAAE5b,OAEnBiJ,EAAEjJ,OAAS4b,EAAE5b,OACZ2gB,GACC1X,EAAE8U,OAASnC,EAAEmC,MACf6C,GAAc3X,EAAEsT,MAAOX,EAAEW,QACzBqE,GAAc3X,EAAE+W,OAAQpE,EAAEoE,SAMhC,CAEA,SAASY,GAAe3X,EAAG2S,GAKzB,QAJW,IAAN3S,IAAeA,EAAI,CAAC,QACd,IAAN2S,IAAeA,EAAI,CAAC,IAGpB3S,IAAM2S,EAAK,OAAO3S,IAAM2S,EAC7B,IAAIiF,EAAQtiB,OAAO6G,KAAK6D,GAAG0S,OACvBmF,EAAQviB,OAAO6G,KAAKwW,GAAGD,OAC3B,OAAIkF,EAAMngB,SAAWogB,EAAMpgB,QAGpBmgB,EAAME,OAAM,SAAUnV,EAAKpL,GAChC,IAAIwgB,EAAO/X,EAAE2C,GAEb,GADWkV,EAAMtgB,KACJoL,EAAO,OAAO,EAC3B,IAAIqV,EAAOrF,EAAEhQ,GAEb,OAAY,MAARoV,GAAwB,MAARC,EAAuBD,IAASC,EAEhC,iBAATD,GAAqC,iBAATC,EAC9BL,GAAcI,EAAMC,GAEtBlX,OAAOiX,KAAUjX,OAAOkX,EACjC,GACF,CAqBA,SAASC,GAAoBpB,GAC3B,IAAK,IAAItf,EAAI,EAAGA,EAAIsf,EAAMK,QAAQzf,OAAQF,IAAK,CAC7C,IAAIkf,EAASI,EAAMK,QAAQ3f,GAC3B,IAAK,IAAIR,KAAQ0f,EAAOyB,UAAW,CACjC,IAAIC,EAAW1B,EAAOyB,UAAUnhB,GAC5BqhB,EAAM3B,EAAO4B,WAAWthB,GAC5B,GAAKohB,GAAaC,EAAlB,QACO3B,EAAO4B,WAAWthB,GACzB,IAAK,IAAIuhB,EAAM,EAAGA,EAAMF,EAAI3gB,OAAQ6gB,IAC7BH,EAASI,mBAAqBH,EAAIE,GAAKH,EAHZ,CAKpC,CACF,CACF,CAEA,IAAIK,GAAO,CACTzhB,KAAM,aACN0hB,YAAY,EACZC,MAAO,CACL3hB,KAAM,CACJ6J,KAAME,OACN6X,QAAS,YAGbC,OAAQ,SAAiBC,EAAGtB,GAC1B,IAAImB,EAAQnB,EAAImB,MACZI,EAAWvB,EAAIuB,SACfxB,EAASC,EAAID,OACbzc,EAAO0c,EAAI1c,KAGfA,EAAKke,YAAa,EAalB,IATA,IAAIC,EAAI1B,EAAO2B,eACXliB,EAAO2hB,EAAM3hB,KACb8f,EAAQS,EAAO4B,OACfC,EAAQ7B,EAAO8B,mBAAqB9B,EAAO8B,iBAAmB,CAAC,GAI/DC,EAAQ,EACRC,GAAW,EACRhC,GAAUA,EAAOiC,cAAgBjC,GAAQ,CAC9C,IAAIkC,EAAYlC,EAAOmC,OAASnC,EAAOmC,OAAO5e,KAAO,CAAC,EAClD2e,EAAUT,YACZM,IAEEG,EAAUE,WAAapC,EAAOqC,iBAAmBrC,EAAOsC,YAC1DN,GAAW,GAEbhC,EAASA,EAAOuC,OAClB,CAIA,GAHAhf,EAAKif,gBAAkBT,EAGnBC,EAAU,CACZ,IAAIS,EAAaZ,EAAMpiB,GACnBijB,EAAkBD,GAAcA,EAAWE,UAC/C,OAAID,GAGED,EAAWG,aACbC,GAAgBH,EAAiBnf,EAAMkf,EAAWlD,MAAOkD,EAAWG,aAE/DlB,EAAEgB,EAAiBnf,EAAMie,IAGzBE,GAEX,CAEA,IAAI9B,EAAUL,EAAMK,QAAQmC,GACxBY,EAAY/C,GAAWA,EAAQ3G,WAAWxZ,GAG9C,IAAKmgB,IAAY+C,EAEf,OADAd,EAAMpiB,GAAQ,KACPiiB,IAITG,EAAMpiB,GAAQ,CAAEkjB,UAAWA,GAI3Bpf,EAAKuf,sBAAwB,SAAUC,EAAIjE,GAEzC,IAAIkE,EAAUpD,EAAQgB,UAAUnhB,IAE7Bqf,GAAOkE,IAAYD,IAClBjE,GAAOkE,IAAYD,KAErBnD,EAAQgB,UAAUnhB,GAAQqf,EAE9B,GAIEvb,EAAKf,OAASe,EAAKf,KAAO,CAAC,IAAIygB,SAAW,SAAU1B,EAAG2B,GACvDtD,EAAQgB,UAAUnhB,GAAQyjB,EAAM3T,iBAClC,EAIAhM,EAAKf,KAAK2gB,KAAO,SAAUD,GACrBA,EAAM3f,KAAK6e,WACbc,EAAM3T,mBACN2T,EAAM3T,oBAAsBqQ,EAAQgB,UAAUnhB,KAE9CmgB,EAAQgB,UAAUnhB,GAAQyjB,EAAM3T,mBAMlCoR,GAAmBpB,EACrB,EAEA,IAAIqD,EAAchD,EAAQwB,OAASxB,EAAQwB,MAAM3hB,GAUjD,OARImjB,IACF3E,GAAO4D,EAAMpiB,GAAO,CAClB8f,MAAOA,EACPqD,YAAaA,IAEfC,GAAgBF,EAAWpf,EAAMgc,EAAOqD,IAGnClB,EAAEiB,EAAWpf,EAAMie,EAC5B,GAGF,SAASqB,GAAiBF,EAAWpf,EAAMgc,EAAOqD,GAEhD,IAAIQ,EAAc7f,EAAK6d,MAezB,SAAuB7B,EAAO8D,GAC5B,cAAeA,GACb,IAAK,YACH,OACF,IAAK,SACH,OAAOA,EACT,IAAK,WACH,OAAOA,EAAO9D,GAChB,IAAK,UACH,OAAO8D,EAAS9D,EAAME,YAASxe,EAUrC,CAlCiCqiB,CAAa/D,EAAOqD,GACnD,GAAIQ,EAAa,CAEfA,EAAc7f,EAAK6d,MAAQnD,GAAO,CAAC,EAAGmF,GAEtC,IAAIG,EAAQhgB,EAAKggB,MAAQhgB,EAAKggB,OAAS,CAAC,EACxC,IAAK,IAAIlY,KAAO+X,EACTT,EAAUvB,OAAW/V,KAAOsX,EAAUvB,QACzCmC,EAAMlY,GAAO+X,EAAY/X,UAClB+X,EAAY/X,GAGzB,CACF,CAyBA,SAASmY,GACPC,EACAC,EACAC,GAEA,IAAIC,EAAYH,EAASI,OAAO,GAChC,GAAkB,MAAdD,EACF,OAAOH,EAGT,GAAkB,MAAdG,GAAmC,MAAdA,EACvB,OAAOF,EAAOD,EAGhB,IAAIK,EAAQJ,EAAKxK,MAAM,KAKlByK,GAAWG,EAAMA,EAAM3jB,OAAS,IACnC2jB,EAAMC,MAKR,IADA,IAAIC,EAAWP,EAASlZ,QAAQ,MAAO,IAAI2O,MAAM,KACxCjZ,EAAI,EAAGA,EAAI+jB,EAAS7jB,OAAQF,IAAK,CACxC,IAAIgkB,EAAUD,EAAS/jB,GACP,OAAZgkB,EACFH,EAAMC,MACe,MAAZE,GACTH,EAAM7kB,KAAKglB,EAEf,CAOA,MAJiB,KAAbH,EAAM,IACRA,EAAMzS,QAAQ,IAGTyS,EAAM1K,KAAK,IACpB,CAyBA,SAAS8K,GAAW9S,GAClB,OAAOA,EAAK7G,QAAQ,gBAAiB,IACvC,CAEA,IAAI4Z,GAAU9jB,MAAM4L,SAAW,SAAUmY,GACvC,MAA8C,kBAAvCpmB,OAAOC,UAAUkI,SAASxG,KAAKykB,EACxC,EAKIC,GAmZJ,SAASC,EAAclT,EAAMvM,EAAMwN,GAQjC,OAPK8R,GAAQtf,KACXwN,EAAkCxN,GAAQwN,EAC1CxN,EAAO,IAGTwN,EAAUA,GAAW,CAAC,EAElBjB,aAAgB0H,OAlJtB,SAAyB1H,EAAMvM,GAE7B,IAAI0f,EAASnT,EAAKoT,OAAO9K,MAAM,aAE/B,GAAI6K,EACF,IAAK,IAAItkB,EAAI,EAAGA,EAAIskB,EAAOpkB,OAAQF,IACjC4E,EAAK5F,KAAK,CACRQ,KAAMQ,EACN9B,OAAQ,KACRsmB,UAAW,KACXC,UAAU,EACVC,QAAQ,EACRC,SAAS,EACTC,UAAU,EACVC,QAAS,OAKf,OAAOC,GAAW3T,EAAMvM,EAC1B,CA+HWmgB,CAAe5T,EAA4B,GAGhD+S,GAAQ/S,GAxHd,SAAwBA,EAAMvM,EAAMwN,GAGlC,IAFA,IAAIuM,EAAQ,GAEH3e,EAAI,EAAGA,EAAImR,EAAKjR,OAAQF,IAC/B2e,EAAM3f,KAAKqlB,EAAalT,EAAKnR,GAAI4E,EAAMwN,GAASmS,QAKlD,OAAOO,GAFM,IAAIjM,OAAO,MAAQ8F,EAAMxF,KAAK,KAAO,IAAK6L,GAAM5S,IAEnCxN,EAC5B,CA+GWqgB,CAAoC,EAA8B,EAAQ7S,GArGrF,SAAyBjB,EAAMvM,EAAMwN,GACnC,OAAO8S,GAAe,GAAM/T,EAAMiB,GAAUxN,EAAMwN,EACpD,CAsGS+S,CAAqC,EAA8B,EAAQ/S,EACpF,EAnaIgT,GAAU,GAEVC,GAAqBC,GACrBC,GAAmBL,GAOnBM,GAAc,IAAI3M,OAAO,CAG3B,UAOA,0GACAM,KAAK,KAAM,KASb,SAAS,GAAOkF,EAAKjM,GAQnB,IAPA,IAKIqM,EALAjF,EAAS,GACTpO,EAAM,EACN6R,EAAQ,EACR9L,EAAO,GACPsU,EAAmBrT,GAAWA,EAAQoS,WAAa,IAGf,OAAhC/F,EAAM+G,GAAYzK,KAAKsD,KAAe,CAC5C,IAAIqH,EAAIjH,EAAI,GACRkH,EAAUlH,EAAI,GACdmH,EAASnH,EAAIxB,MAKjB,GAJA9L,GAAQkN,EAAI1e,MAAMsd,EAAO2I,GACzB3I,EAAQ2I,EAASF,EAAExlB,OAGfylB,EACFxU,GAAQwU,EAAQ,OADlB,CAKA,IAAIE,EAAOxH,EAAIpB,GACX/e,EAASugB,EAAI,GACbjf,EAAOif,EAAI,GACXqH,EAAUrH,EAAI,GACdsH,EAAQtH,EAAI,GACZuH,EAAWvH,EAAI,GACfmG,EAAWnG,EAAI,GAGftN,IACFqI,EAAOxa,KAAKmS,GACZA,EAAO,IAGT,IAAIwT,EAAoB,MAAVzmB,GAA0B,MAAR2nB,GAAgBA,IAAS3nB,EACrDwmB,EAAsB,MAAbsB,GAAiC,MAAbA,EAC7BvB,EAAwB,MAAbuB,GAAiC,MAAbA,EAC/BxB,EAAY/F,EAAI,IAAMgH,EACtBZ,EAAUiB,GAAWC,EAEzBvM,EAAOxa,KAAK,CACVQ,KAAMA,GAAQ4L,IACdlN,OAAQA,GAAU,GAClBsmB,UAAWA,EACXC,SAAUA,EACVC,OAAQA,EACRC,QAASA,EACTC,WAAYA,EACZC,QAASA,EAAUoB,GAAYpB,GAAYD,EAAW,KAAO,KAAOsB,GAAa1B,GAAa,OA9BhG,CAgCF,CAYA,OATIvH,EAAQoB,EAAIne,SACdiR,GAAQkN,EAAI8H,OAAOlJ,IAIjB9L,GACFqI,EAAOxa,KAAKmS,GAGPqI,CACT,CAmBA,SAAS4M,GAA0B/H,GACjC,OAAOgI,UAAUhI,GAAK/T,QAAQ,WAAW,SAAU6T,GACjD,MAAO,IAAMA,EAAE5D,WAAW,GAAGrU,SAAS,IAAIsU,aAC5C,GACF,CAiBA,SAAS8K,GAAkB9L,EAAQpH,GAKjC,IAHA,IAAIkU,EAAU,IAAIlmB,MAAMoZ,EAAOtZ,QAGtBF,EAAI,EAAGA,EAAIwZ,EAAOtZ,OAAQF,IACR,iBAAdwZ,EAAOxZ,KAChBsmB,EAAQtmB,GAAK,IAAI6Y,OAAO,OAASW,EAAOxZ,GAAG6kB,QAAU,KAAMG,GAAM5S,KAIrE,OAAO,SAAUmF,EAAKzQ,GAMpB,IALA,IAAIqK,EAAO,GACP7N,EAAOiU,GAAO,CAAC,EAEfoD,GADU7T,GAAQ,CAAC,GACFyf,OAASH,GAA2B/L,mBAEhDra,EAAI,EAAGA,EAAIwZ,EAAOtZ,OAAQF,IAAK,CACtC,IAAI2Y,EAAQa,EAAOxZ,GAEnB,GAAqB,iBAAV2Y,EAAX,CAMA,IACIqL,EADAngB,EAAQP,EAAKqV,EAAMnZ,MAGvB,GAAa,MAATqE,EAAe,CACjB,GAAI8U,EAAM8L,SAAU,CAEd9L,EAAMgM,UACRxT,GAAQwH,EAAMza,QAGhB,QACF,CACE,MAAM,IAAIU,UAAU,aAAe+Z,EAAMnZ,KAAO,kBAEpD,CAEA,GAAI0kB,GAAQrgB,GAAZ,CACE,IAAK8U,EAAM+L,OACT,MAAM,IAAI9lB,UAAU,aAAe+Z,EAAMnZ,KAAO,kCAAoC+D,KAAKQ,UAAUF,GAAS,KAG9G,GAAqB,IAAjBA,EAAM3D,OAAc,CACtB,GAAIyY,EAAM8L,SACR,SAEA,MAAM,IAAI7lB,UAAU,aAAe+Z,EAAMnZ,KAAO,oBAEpD,CAEA,IAAK,IAAI0B,EAAI,EAAGA,EAAI2C,EAAM3D,OAAQgB,IAAK,CAGrC,GAFA8iB,EAAUrJ,EAAO9W,EAAM3C,KAElBolB,EAAQtmB,GAAGsI,KAAK0b,GACnB,MAAM,IAAIplB,UAAU,iBAAmB+Z,EAAMnZ,KAAO,eAAiBmZ,EAAMkM,QAAU,oBAAsBthB,KAAKQ,UAAUigB,GAAW,KAGvI7S,IAAe,IAANjQ,EAAUyX,EAAMza,OAASya,EAAM6L,WAAaR,CACvD,CAGF,KAxBA,CA4BA,GAFAA,EAAUrL,EAAMiM,SA5EbyB,UA4EuCxiB,GA5ExByG,QAAQ,SAAS,SAAU6T,GAC/C,MAAO,IAAMA,EAAE5D,WAAW,GAAGrU,SAAS,IAAIsU,aAC5C,IA0EuDG,EAAO9W,IAErDyiB,EAAQtmB,GAAGsI,KAAK0b,GACnB,MAAM,IAAIplB,UAAU,aAAe+Z,EAAMnZ,KAAO,eAAiBmZ,EAAMkM,QAAU,oBAAsBb,EAAU,KAGnH7S,GAAQwH,EAAMza,OAAS8lB,CARvB,CA1CA,MAHE7S,GAAQwH,CAsDZ,CAEA,OAAOxH,CACT,CACF,CAQA,SAAS+U,GAAc7H,GACrB,OAAOA,EAAI/T,QAAQ,6BAA8B,OACnD,CAQA,SAAS2b,GAAaF,GACpB,OAAOA,EAAMzb,QAAQ,gBAAiB,OACxC,CASA,SAASwa,GAAY0B,EAAI5hB,GAEvB,OADA4hB,EAAG5hB,KAAOA,EACH4hB,CACT,CAQA,SAASxB,GAAO5S,GACd,OAAOA,GAAWA,EAAQqU,UAAY,GAAK,GAC7C,CAuEA,SAASvB,GAAgB1L,EAAQ5U,EAAMwN,GAChC8R,GAAQtf,KACXwN,EAAkCxN,GAAQwN,EAC1CxN,EAAO,IAUT,IALA,IAAIgW,GAFJxI,EAAUA,GAAW,CAAC,GAEDwI,OACjB8L,GAAsB,IAAhBtU,EAAQsU,IACdpH,EAAQ,GAGHtf,EAAI,EAAGA,EAAIwZ,EAAOtZ,OAAQF,IAAK,CACtC,IAAI2Y,EAAQa,EAAOxZ,GAEnB,GAAqB,iBAAV2Y,EACT2G,GAAS4G,GAAavN,OACjB,CACL,IAAIza,EAASgoB,GAAavN,EAAMza,QAC5B4nB,EAAU,MAAQnN,EAAMkM,QAAU,IAEtCjgB,EAAK5F,KAAK2Z,GAENA,EAAM+L,SACRoB,GAAW,MAAQ5nB,EAAS4nB,EAAU,MAaxCxG,GANIwG,EAJAnN,EAAM8L,SACH9L,EAAMgM,QAGCzmB,EAAS,IAAM4nB,EAAU,KAFzB,MAAQ5nB,EAAS,IAAM4nB,EAAU,MAKnC5nB,EAAS,IAAM4nB,EAAU,GAIvC,CACF,CAEA,IAAItB,EAAY0B,GAAa9T,EAAQoS,WAAa,KAC9CmC,EAAoBrH,EAAM3f,OAAO6kB,EAAUtkB,UAAYskB,EAkB3D,OAZK5J,IACH0E,GAASqH,EAAoBrH,EAAM3f,MAAM,GAAI6kB,EAAUtkB,QAAUof,GAAS,MAAQkF,EAAY,WAI9FlF,GADEoH,EACO,IAIA9L,GAAU+L,EAAoB,GAAK,MAAQnC,EAAY,MAG3DM,GAAW,IAAIjM,OAAO,IAAMyG,EAAO0F,GAAM5S,IAAWxN,EAC7D,CAgCAwf,GAAe5gB,MAAQ4hB,GACvBhB,GAAewC,QA9Tf,SAAkBvI,EAAKjM,GACrB,OAAOkT,GAAiB,GAAMjH,EAAKjM,GAAUA,EAC/C,EA6TAgS,GAAekB,iBAAmBD,GAClCjB,GAAec,eAAiBK,GAKhC,IAAIsB,GAAqB9oB,OAAOqB,OAAO,MAEvC,SAAS0nB,GACP3V,EACAqO,EACAuH,GAEAvH,EAASA,GAAU,CAAC,EACpB,IACE,IAAIwH,EACFH,GAAmB1V,KAClB0V,GAAmB1V,GAAQiT,GAAewC,QAAQzV,IAMrD,MAFgC,iBAArBqO,EAAOyH,YAA0BzH,EAAO,GAAKA,EAAOyH,WAExDD,EAAOxH,EAAQ,CAAE+G,QAAQ,GAClC,CAAE,MAAO9iB,GAKP,MAAO,EACT,CAAE,eAEO+b,EAAO,EAChB,CACF,CAIA,SAAS0H,GACP/jB,EACA4f,EACAW,EACAtE,GAEA,IAAIyG,EAAsB,iBAAR1iB,EAAmB,CAAEgO,KAAMhO,GAAQA,EAErD,GAAI0iB,EAAKsB,YACP,OAAOtB,EACF,GAAIA,EAAKrmB,KAAM,CAEpB,IAAIggB,GADJqG,EAAO7H,GAAO,CAAC,EAAG7a,IACAqc,OAIlB,OAHIA,GAA4B,iBAAXA,IACnBqG,EAAKrG,OAASxB,GAAO,CAAC,EAAGwB,IAEpBqG,CACT,CAGA,IAAKA,EAAK1U,MAAQ0U,EAAKrG,QAAUuD,EAAS,EACxC8C,EAAO7H,GAAO,CAAC,EAAG6H,IACbsB,aAAc,EACnB,IAAIC,EAAWpJ,GAAOA,GAAO,CAAC,EAAG+E,EAAQvD,QAASqG,EAAKrG,QACvD,GAAIuD,EAAQvjB,KACVqmB,EAAKrmB,KAAOujB,EAAQvjB,KACpBqmB,EAAKrG,OAAS4H,OACT,GAAIrE,EAAQpD,QAAQzf,OAAQ,CACjC,IAAImnB,EAAUtE,EAAQpD,QAAQoD,EAAQpD,QAAQzf,OAAS,GAAGiR,KAC1D0U,EAAK1U,KAAO2V,GAAWO,EAASD,EAAsBrE,EAAY,KACpE,CAGA,OAAO8C,CACT,CAEA,IAAIyB,EAnhBN,SAAoBnW,GAClB,IAAIoM,EAAO,GACPxB,EAAQ,GAERwL,EAAYpW,EAAKkD,QAAQ,KACzBkT,GAAa,IACfhK,EAAOpM,EAAKxR,MAAM4nB,GAClBpW,EAAOA,EAAKxR,MAAM,EAAG4nB,IAGvB,IAAIC,EAAarW,EAAKkD,QAAQ,KAM9B,OALImT,GAAc,IAChBzL,EAAQ5K,EAAKxR,MAAM6nB,EAAa,GAChCrW,EAAOA,EAAKxR,MAAM,EAAG6nB,IAGhB,CACLrW,KAAMA,EACN4K,MAAOA,EACPwB,KAAMA,EAEV,CA8fmBkK,CAAU5B,EAAK1U,MAAQ,IACpCuW,EAAY3E,GAAWA,EAAQ5R,MAAS,IACxCA,EAAOmW,EAAWnW,KAClBoS,GAAY+D,EAAWnW,KAAMuW,EAAUhE,GAAUmC,EAAKnC,QACtDgE,EAEA3L,EAv9BN,SACEA,EACA4L,EACAC,QAEoB,IAAfD,IAAwBA,EAAa,CAAC,GAE3C,IACIE,EADArkB,EAAQokB,GAAepJ,GAE3B,IACEqJ,EAAcrkB,EAAMuY,GAAS,GAC/B,CAAE,MAAOtY,GAEPokB,EAAc,CAAC,CACjB,CACA,IAAK,IAAIzc,KAAOuc,EAAY,CAC1B,IAAI9jB,EAAQ8jB,EAAWvc,GACvByc,EAAYzc,GAAOhL,MAAM4L,QAAQnI,GAC7BA,EAAM0M,IAAIgO,IACVA,GAAoB1a,EAC1B,CACA,OAAOgkB,CACT,CAi8BcC,CACVR,EAAWvL,MACX8J,EAAK9J,MACLqD,GAAUA,EAAOhN,QAAQoM,YAGvBjB,EAAOsI,EAAKtI,MAAQ+J,EAAW/J,KAKnC,OAJIA,GAA2B,MAAnBA,EAAKqG,OAAO,KACtBrG,EAAO,IAAMA,GAGR,CACL4J,aAAa,EACbhW,KAAMA,EACN4K,MAAOA,EACPwB,KAAMA,EAEV,CAKA,IA4NIwK,GAzNA,GAAO,WAAa,EAMpBC,GAAO,CACTxoB,KAAM,aACN2hB,MAAO,CACL8G,GAAI,CACF5e,KAbQ,CAACE,OAAQxL,QAcjBmqB,UAAU,GAEZC,IAAK,CACH9e,KAAME,OACN6X,QAAS,KAEXgH,OAAQvL,QACRwL,MAAOxL,QACPyL,UAAWzL,QACX6G,OAAQ7G,QACRvS,QAASuS,QACT0L,YAAahf,OACbif,iBAAkBjf,OAClBkf,iBAAkB,CAChBpf,KAAME,OACN6X,QAAS,QAEXziB,MAAO,CACL0K,KA/BW,CAACE,OAAQnJ,OAgCpBghB,QAAS,UAGbC,OAAQ,SAAiBI,GACvB,IAAIiH,EAAWlqB,KAEX4gB,EAAS5gB,KAAKmqB,QACd5F,EAAUvkB,KAAKmjB,OACf3B,EAAMZ,EAAOta,QACftG,KAAKypB,GACLlF,EACAvkB,KAAKklB,QAEH5a,EAAWkX,EAAIlX,SACfwW,EAAQU,EAAIV,MACZ1W,EAAOoX,EAAIpX,KAEXggB,EAAU,CAAC,EACXC,EAAoBzJ,EAAOhN,QAAQ0W,gBACnCC,EAAyB3J,EAAOhN,QAAQ4W,qBAExCC,EACmB,MAArBJ,EAA4B,qBAAuBA,EACjDK,EACwB,MAA1BH,EACI,2BACAA,EACFR,EACkB,MAApB/pB,KAAK+pB,YAAsBU,EAAsBzqB,KAAK+pB,YACpDC,EACuB,MAAzBhqB,KAAKgqB,iBACDU,EACA1qB,KAAKgqB,iBAEPW,EAAgB7J,EAAMH,eACtBF,GAAY,KAAMiI,GAAkB5H,EAAMH,gBAAiB,KAAMC,GACjEE,EAEJsJ,EAAQJ,GAAoBtI,GAAY6C,EAASoG,EAAe3qB,KAAK8pB,WACrEM,EAAQL,GAAe/pB,KAAK6pB,OAAS7pB,KAAK8pB,UACtCM,EAAQJ,GAn2BhB,SAA0BzF,EAASvgB,GACjC,OAGQ,IAFNugB,EAAQ5R,KAAK7G,QAAQ0U,GAAiB,KAAK3K,QACzC7R,EAAO2O,KAAK7G,QAAQ0U,GAAiB,SAErCxc,EAAO+a,MAAQwF,EAAQxF,OAAS/a,EAAO+a,OAK7C,SAAwBwF,EAASvgB,GAC/B,IAAK,IAAI4I,KAAO5I,EACd,KAAM4I,KAAO2X,GACX,OAAO,EAGX,OAAO,CACT,CAXIqG,CAAcrG,EAAQhH,MAAOvZ,EAAOuZ,MAExC,CA41BQsN,CAAgBtG,EAASoG,GAE7B,IAAIV,EAAmBG,EAAQJ,GAAoBhqB,KAAKiqB,iBAAmB,KAEvEa,EAAU,SAAU7lB,GAClB8lB,GAAW9lB,KACTilB,EAASpe,QACX8U,EAAO9U,QAAQxB,EAAU,IAEzBsW,EAAOpgB,KAAK8J,EAAU,IAG5B,EAEI3H,EAAK,CAAEyG,MAAO2hB,IACdnpB,MAAM4L,QAAQxN,KAAKG,OACrBH,KAAKG,MAAM+Q,SAAQ,SAAUjM,GAC3BtC,EAAGsC,GAAK6lB,CACV,IAEAnoB,EAAG3C,KAAKG,OAAS2qB,EAGnB,IAAIhmB,EAAO,CAAEkmB,MAAOZ,GAEhBa,GACDjrB,KAAKkrB,aAAaC,YACnBnrB,KAAKkrB,aAAatI,SAClB5iB,KAAKkrB,aAAatI,QAAQ,CACxBxY,KAAMA,EACN0W,MAAOA,EACPsK,SAAUN,EACVO,SAAUjB,EAAQL,GAClBuB,cAAelB,EAAQJ,KAG3B,GAAIiB,EAAY,CAKd,GAA0B,IAAtBA,EAAWvpB,OACb,OAAOupB,EAAW,GACb,GAAIA,EAAWvpB,OAAS,IAAMupB,EAAWvpB,OAO9C,OAA6B,IAAtBupB,EAAWvpB,OAAeuhB,IAAMA,EAAE,OAAQ,CAAC,EAAGgI,EAEzD,CAmBA,GAAiB,MAAbjrB,KAAK2pB,IACP7kB,EAAKnC,GAAKA,EACVmC,EAAKggB,MAAQ,CAAE1a,KAAMA,EAAM,eAAgB6f,OACtC,CAEL,IAAIhgB,EAAIshB,GAAWvrB,KAAKwrB,OAAO5I,SAC/B,GAAI3Y,EAAG,CAELA,EAAEwhB,UAAW,EACb,IAAIC,EAASzhB,EAAEnF,KAAO0a,GAAO,CAAC,EAAGvV,EAAEnF,MAGnC,IAAK,IAAI3E,KAFTurB,EAAM/oB,GAAK+oB,EAAM/oB,IAAM,CAAC,EAEN+oB,EAAM/oB,GAAI,CAC1B,IAAIgpB,EAAYD,EAAM/oB,GAAGxC,GACrBA,KAASwC,IACX+oB,EAAM/oB,GAAGxC,GAASyB,MAAM4L,QAAQme,GAAaA,EAAY,CAACA,GAE9D,CAEA,IAAK,IAAIC,KAAWjpB,EACdipB,KAAWF,EAAM/oB,GAEnB+oB,EAAM/oB,GAAGipB,GAASprB,KAAKmC,EAAGipB,IAE1BF,EAAM/oB,GAAGipB,GAAWd,EAIxB,IAAIe,EAAU5hB,EAAEnF,KAAKggB,MAAQtF,GAAO,CAAC,EAAGvV,EAAEnF,KAAKggB,OAC/C+G,EAAOzhB,KAAOA,EACdyhB,EAAO,gBAAkB5B,CAC3B,MAEEnlB,EAAKnC,GAAKA,CAEd,CAEA,OAAOsgB,EAAEjjB,KAAK2pB,IAAK7kB,EAAM9E,KAAKwrB,OAAO5I,QACvC,GAGF,SAASmI,GAAY9lB,GAEnB,KAAIA,EAAE6mB,SAAW7mB,EAAE8mB,QAAU9mB,EAAE+mB,SAAW/mB,EAAEgnB,UAExChnB,EAAEinB,uBAEW1pB,IAAbyC,EAAEknB,QAAqC,IAAblnB,EAAEknB,QAAhC,CAEA,GAAIlnB,EAAEmnB,eAAiBnnB,EAAEmnB,cAAcC,aAAc,CACnD,IAAIroB,EAASiB,EAAEmnB,cAAcC,aAAa,UAC1C,GAAI,cAAcviB,KAAK9F,GAAW,MACpC,CAKA,OAHIiB,EAAEqnB,gBACJrnB,EAAEqnB,kBAEG,CAVgD,CAWzD,CAEA,SAASf,GAAYxI,GACnB,GAAIA,EAEF,IADA,IAAIwJ,EACK/qB,EAAI,EAAGA,EAAIuhB,EAASrhB,OAAQF,IAAK,CAExC,GAAkB,OADlB+qB,EAAQxJ,EAASvhB,IACPmoB,IACR,OAAO4C,EAET,GAAIA,EAAMxJ,WAAawJ,EAAQhB,GAAWgB,EAAMxJ,WAC9C,OAAOwJ,CAEX,CAEJ,CAsDA,IAAIC,GAA8B,oBAAXrpB,OAIvB,SAASspB,GACPC,EACAC,EACAC,EACAC,EACAC,GAGA,IAAIC,EAAWJ,GAAe,GAE1BK,EAAUJ,GAAcrtB,OAAOqB,OAAO,MAEtCqsB,EAAUJ,GAActtB,OAAOqB,OAAO,MAE1C8rB,EAAOxb,SAAQ,SAAU4P,GACvBoM,GAAeH,EAAUC,EAASC,EAASnM,EAAOgM,EACpD,IAGA,IAAK,IAAItrB,EAAI,EAAGC,EAAIsrB,EAASrrB,OAAQF,EAAIC,EAAGD,IACtB,MAAhBurB,EAASvrB,KACXurB,EAASvsB,KAAKusB,EAASjX,OAAOtU,EAAG,GAAG,IACpCC,IACAD,KAgBJ,MAAO,CACLurB,SAAUA,EACVC,QAASA,EACTC,QAASA,EAEb,CAEA,SAASC,GACPH,EACAC,EACAC,EACAnM,EACAS,EACA4L,GAEA,IAAIxa,EAAOmO,EAAMnO,KACb3R,EAAO8f,EAAM9f,KAmBbosB,EACFtM,EAAMsM,qBAAuB,CAAC,EAC5BC,EA2HN,SACE1a,EACA4O,EACAnF,GAGA,OADKA,IAAUzJ,EAAOA,EAAK7G,QAAQ,MAAO,KAC1B,MAAZ6G,EAAK,IACK,MAAV4O,EAD0B5O,EAEvB8S,GAAYlE,EAAW,KAAI,IAAM5O,EAC1C,CApIuB2a,CAAc3a,EAAM4O,EAAQ6L,EAAoBhR,QAElC,kBAAxB0E,EAAMyM,gBACfH,EAAoBnF,UAAYnH,EAAMyM,eAGxC,IAAI7M,EAAS,CACX/N,KAAM0a,EACNG,MAAOC,GAAkBJ,EAAgBD,GACzC5S,WAAYsG,EAAMtG,YAAc,CAAEoI,QAAS9B,EAAMoD,WACjDwJ,MAAO5M,EAAM4M,MACc,iBAAhB5M,EAAM4M,MACX,CAAC5M,EAAM4M,OACP5M,EAAM4M,MACR,GACJvL,UAAW,CAAC,EACZG,WAAY,CAAC,EACbthB,KAAMA,EACNugB,OAAQA,EACR4L,QAASA,EACTQ,SAAU7M,EAAM6M,SAChBC,YAAa9M,EAAM8M,YACnB7M,KAAMD,EAAMC,MAAQ,CAAC,EACrB4B,MACiB,MAAf7B,EAAM6B,MACF,CAAC,EACD7B,EAAMtG,WACJsG,EAAM6B,MACN,CAAEC,QAAS9B,EAAM6B,QAoC3B,GAjCI7B,EAAMiC,UAoBRjC,EAAMiC,SAAS7R,SAAQ,SAAUqb,GAC/B,IAAIsB,EAAeV,EACf1H,GAAW0H,EAAU,IAAOZ,EAAU,WACtC/pB,EACJ0qB,GAAeH,EAAUC,EAASC,EAASV,EAAO7L,EAAQmN,EAC5D,IAGGb,EAAQtM,EAAO/N,QAClBoa,EAASvsB,KAAKkgB,EAAO/N,MACrBqa,EAAQtM,EAAO/N,MAAQ+N,QAGLle,IAAhBse,EAAM4M,MAER,IADA,IAAII,EAAUlsB,MAAM4L,QAAQsT,EAAM4M,OAAS5M,EAAM4M,MAAQ,CAAC5M,EAAM4M,OACvDlsB,EAAI,EAAGA,EAAIssB,EAAQpsB,SAAUF,EAAG,CAWvC,IAAIusB,EAAa,CACfpb,KAXUmb,EAAQtsB,GAYlBuhB,SAAUjC,EAAMiC,UAElBmK,GACEH,EACAC,EACAC,EACAc,EACAxM,EACAb,EAAO/N,MAAQ,IAEnB,CAGE3R,IACGisB,EAAQjsB,KACXisB,EAAQjsB,GAAQ0f,GAStB,CAEA,SAAS+M,GACP9a,EACAya,GAaA,OAXYxH,GAAejT,EAAM,GAAIya,EAYvC,CAiBA,SAASY,GACPtB,EACA9L,GAEA,IAAIY,EAAMiL,GAAeC,GACrBK,EAAWvL,EAAIuL,SACfC,EAAUxL,EAAIwL,QACdC,EAAUzL,EAAIyL,QA4BlB,SAAShS,EACPtW,EACAspB,EACAtN,GAEA,IAAIrW,EAAWoe,GAAkB/jB,EAAKspB,GAAc,EAAOrN,GACvD5f,EAAOsJ,EAAStJ,KAEpB,GAAIA,EAAM,CACR,IAAI0f,EAASuM,EAAQjsB,GAIrB,IAAK0f,EAAU,OAAOwN,EAAa,KAAM5jB,GACzC,IAAI6jB,EAAazN,EAAO8M,MAAMpnB,KAC3B0L,QAAO,SAAUlF,GAAO,OAAQA,EAAIqZ,QAAU,IAC9ClU,KAAI,SAAUnF,GAAO,OAAOA,EAAI5L,IAAM,IAMzC,GAJ+B,iBAApBsJ,EAAS0W,SAClB1W,EAAS0W,OAAS,CAAC,GAGjBiN,GAA+C,iBAAxBA,EAAajN,OACtC,IAAK,IAAIpU,KAAOqhB,EAAajN,SACrBpU,KAAOtC,EAAS0W,SAAWmN,EAAWtY,QAAQjJ,IAAQ,IAC1DtC,EAAS0W,OAAOpU,GAAOqhB,EAAajN,OAAOpU,IAMjD,OADAtC,EAASqI,KAAO2V,GAAW5H,EAAO/N,KAAMrI,EAAS0W,QAC1CkN,EAAaxN,EAAQpW,EAAUqW,EACxC,CAAO,GAAIrW,EAASqI,KAAM,CACxBrI,EAAS0W,OAAS,CAAC,EACnB,IAAK,IAAIxf,EAAI,EAAGA,EAAIurB,EAASrrB,OAAQF,IAAK,CACxC,IAAImR,EAAOoa,EAASvrB,GAChB4sB,EAAWpB,EAAQra,GACvB,GAAI0b,GAAWD,EAASZ,MAAOljB,EAASqI,KAAMrI,EAAS0W,QACrD,OAAOkN,EAAaE,EAAU9jB,EAAUqW,EAE5C,CACF,CAEA,OAAOuN,EAAa,KAAM5jB,EAC5B,CAsFA,SAAS4jB,EACPxN,EACApW,EACAqW,GAEA,OAAID,GAAUA,EAAOiN,SAzFvB,SACEjN,EACApW,GAEA,IAAIgkB,EAAmB5N,EAAOiN,SAC1BA,EAAuC,mBAArBW,EAClBA,EAAiB7N,GAAYC,EAAQpW,EAAU,KAAMsW,IACrD0N,EAMJ,GAJwB,iBAAbX,IACTA,EAAW,CAAEhb,KAAMgb,KAGhBA,GAAgC,iBAAbA,EAMtB,OAAOO,EAAa,KAAM5jB,GAG5B,IAAI0d,EAAK2F,EACL3sB,EAAOgnB,EAAGhnB,KACV2R,EAAOqV,EAAGrV,KACV4K,EAAQjT,EAASiT,MACjBwB,EAAOzU,EAASyU,KAChBiC,EAAS1W,EAAS0W,OAKtB,GAJAzD,EAAQyK,EAAGvoB,eAAe,SAAWuoB,EAAGzK,MAAQA,EAChDwB,EAAOiJ,EAAGvoB,eAAe,QAAUuoB,EAAGjJ,KAAOA,EAC7CiC,EAASgH,EAAGvoB,eAAe,UAAYuoB,EAAGhH,OAASA,EAE/ChgB,EAMF,OAJmBisB,EAAQjsB,GAIpBia,EAAM,CACX0N,aAAa,EACb3nB,KAAMA,EACNuc,MAAOA,EACPwB,KAAMA,EACNiC,OAAQA,QACPxe,EAAW8H,GACT,GAAIqI,EAAM,CAEf,IAAIkW,EAmFV,SAA4BlW,EAAM+N,GAChC,OAAOqE,GAAYpS,EAAM+N,EAAOa,OAASb,EAAOa,OAAO5O,KAAO,KAAK,EACrE,CArFoB4b,CAAkB5b,EAAM+N,GAItC,OAAOzF,EAAM,CACX0N,aAAa,EACbhW,KAJiB2V,GAAWO,EAAS7H,GAKrCzD,MAAOA,EACPwB,KAAMA,QACLvc,EAAW8H,EAChB,CAIE,OAAO4jB,EAAa,KAAM5jB,EAE9B,CA2BWqjB,CAASjN,EAAQC,GAAkBrW,GAExCoW,GAAUA,EAAOyM,QA3BvB,SACEzM,EACApW,EACA6iB,GAEA,IACIqB,EAAevT,EAAM,CACvB0N,aAAa,EACbhW,KAHgB2V,GAAW6E,EAAS7iB,EAAS0W,UAK/C,GAAIwN,EAAc,CAChB,IAAIrN,EAAUqN,EAAarN,QACvBsN,EAAgBtN,EAAQA,EAAQzf,OAAS,GAE7C,OADA4I,EAAS0W,OAASwN,EAAaxN,OACxBkN,EAAaO,EAAenkB,EACrC,CACA,OAAO4jB,EAAa,KAAM5jB,EAC5B,CAWWojB,CAAMhN,EAAQpW,EAAUoW,EAAOyM,SAEjC1M,GAAYC,EAAQpW,EAAUqW,EAAgBC,EACvD,CAEA,MAAO,CACL3F,MAAOA,EACPyT,SAxKF,SAAmBC,EAAe7N,GAChC,IAAIS,EAAmC,iBAAlBoN,EAA8B1B,EAAQ0B,QAAiBnsB,EAE5EiqB,GAAe,CAAC3L,GAAS6N,GAAgB5B,EAAUC,EAASC,EAAS1L,GAGjEA,GAAUA,EAAOmM,MAAMhsB,QACzB+qB,GAEElL,EAAOmM,MAAM3b,KAAI,SAAU2b,GAAS,MAAO,CAAG/a,KAAM+a,EAAO3K,SAAU,CAACjC,GAAW,IACjFiM,EACAC,EACAC,EACA1L,EAGN,EAyJEqN,UAvJF,WACE,OAAO7B,EAAShb,KAAI,SAAUY,GAAQ,OAAOqa,EAAQra,EAAO,GAC9D,EAsJEkc,UA9KF,SAAoBnC,GAClBD,GAAeC,EAAQK,EAAUC,EAASC,EAC5C,EA8KF,CAEA,SAASoB,GACPb,EACA7a,EACAqO,GAEA,IAAIkG,EAAIvU,EAAKsI,MAAMuS,GAEnB,IAAKtG,EACH,OAAO,EACF,IAAKlG,EACV,OAAO,EAGT,IAAK,IAAIxf,EAAI,EAAGa,EAAM6kB,EAAExlB,OAAQF,EAAIa,IAAOb,EAAG,CAC5C,IAAIoL,EAAM4gB,EAAMpnB,KAAK5E,EAAI,GACrBoL,IAEFoU,EAAOpU,EAAI5L,MAAQ,aAA+B,iBAATkmB,EAAE1lB,GAAkB,GAAO0lB,EAAE1lB,IAAM0lB,EAAE1lB,GAElF,CAEA,OAAO,CACT,CASA,IAAIstB,GACFtC,IAAarpB,OAAOsC,aAAetC,OAAOsC,YAAYD,IAClDrC,OAAOsC,YACPG,KAEN,SAASmpB,KACP,OAAOD,GAAKtpB,MAAMwpB,QAAQ,EAC5B,CAEA,IAAIC,GAAOF,KAEX,SAASG,KACP,OAAOD,EACT,CAEA,SAASE,GAAaviB,GACpB,OAAQqiB,GAAOriB,CACjB,CAIA,IAAIwiB,GAAgB7vB,OAAOqB,OAAO,MAElC,SAASyuB,KAEH,sBAAuBlsB,OAAOmsB,UAChCnsB,OAAOmsB,QAAQC,kBAAoB,UAOrC,IAAIC,EAAkBrsB,OAAOmH,SAASmlB,SAAW,KAAOtsB,OAAOmH,SAASolB,KACpEC,EAAexsB,OAAOmH,SAASF,KAAK0B,QAAQ0jB,EAAiB,IAE7DI,EAAYpQ,GAAO,CAAC,EAAGrc,OAAOmsB,QAAQ3iB,OAI1C,OAHAijB,EAAUhjB,IAAMsiB,KAChB/rB,OAAOmsB,QAAQO,aAAaD,EAAW,GAAID,GAC3CxsB,OAAO2sB,iBAAiB,WAAYC,IAC7B,WACL5sB,OAAO6sB,oBAAoB,WAAYD,GACzC,CACF,CAEA,SAASE,GACPrP,EACA6I,EACA7X,EACAse,GAEA,GAAKtP,EAAOnS,IAAZ,CAIA,IAAI0hB,EAAWvP,EAAOhN,QAAQwc,eACzBD,GASLvP,EAAOnS,IAAI4hB,WAAU,WACnB,IAAIC,EA6CR,WACE,IAAI1jB,EAAMsiB,KACV,GAAItiB,EACF,OAAOwiB,GAAcxiB,EAEzB,CAlDmB2jB,GACXC,EAAeL,EAASjvB,KAC1B0f,EACA6I,EACA7X,EACAse,EAAQI,EAAW,MAGhBE,IAI4B,mBAAtBA,EAAa3Y,KACtB2Y,EACG3Y,MAAK,SAAU2Y,GACdC,GAAiB,EAAgBH,EACnC,IACCnY,OAAM,SAAU2H,GAIjB,IAEF2Q,GAAiBD,EAAcF,GAEnC,GAtCA,CAuCF,CAEA,SAASI,KACP,IAAI9jB,EAAMsiB,KACNtiB,IACFwiB,GAAcxiB,GAAO,CACnBkP,EAAG3Y,OAAOwtB,YACVC,EAAGztB,OAAO0tB,aAGhB,CAEA,SAASd,GAAgB9qB,GACvByrB,KACIzrB,EAAE0H,OAAS1H,EAAE0H,MAAMC,KACrBuiB,GAAYlqB,EAAE0H,MAAMC,IAExB,CAmBA,SAASkkB,GAAiB/X,GACxB,OAAOgY,GAAShY,EAAI+C,IAAMiV,GAAShY,EAAI6X,EACzC,CAEA,SAASI,GAAmBjY,GAC1B,MAAO,CACL+C,EAAGiV,GAAShY,EAAI+C,GAAK/C,EAAI+C,EAAI3Y,OAAOwtB,YACpCC,EAAGG,GAAShY,EAAI6X,GAAK7X,EAAI6X,EAAIztB,OAAO0tB,YAExC,CASA,SAASE,GAAUE,GACjB,MAAoB,iBAANA,CAChB,CAEA,IAAIC,GAAyB,OAE7B,SAAST,GAAkBD,EAAcF,GACvC,IAdwBvX,EAcpBoY,EAAmC,iBAAjBX,EACtB,GAAIW,GAA6C,iBAA1BX,EAAaY,SAAuB,CAGzD,IAAIC,EAAKH,GAAuBpnB,KAAK0mB,EAAaY,UAC9C5nB,SAAS8nB,eAAed,EAAaY,SAASjwB,MAAM,IACpDqI,SAAS+nB,cAAcf,EAAaY,UAExC,GAAIC,EAAI,CACN,IAAIjK,EACFoJ,EAAapJ,QAAyC,iBAAxBoJ,EAAapJ,OACvCoJ,EAAapJ,OACb,CAAC,EAEPkJ,EAjDN,SAA6Be,EAAIjK,GAC/B,IACIoK,EADQhoB,SAASioB,gBACDC,wBAChBC,EAASN,EAAGK,wBAChB,MAAO,CACL5V,EAAG6V,EAAO/W,KAAO4W,EAAQ5W,KAAOwM,EAAOtL,EACvC8U,EAAGe,EAAOC,IAAMJ,EAAQI,IAAMxK,EAAOwJ,EAEzC,CAyCiBiB,CAAmBR,EAD9BjK,EA1BG,CACLtL,EAAGiV,IAFmBhY,EA2BKqO,GAzBXtL,GAAK/C,EAAI+C,EAAI,EAC7B8U,EAAGG,GAAShY,EAAI6X,GAAK7X,EAAI6X,EAAI,GA0B7B,MAAWE,GAAgBN,KACzBF,EAAWU,GAAkBR,GAEjC,MAAWW,GAAYL,GAAgBN,KACrCF,EAAWU,GAAkBR,IAG3BF,IAEE,mBAAoB9mB,SAASioB,gBAAgBK,MAC/C3uB,OAAO4uB,SAAS,CACdnX,KAAM0V,EAASxU,EACf8V,IAAKtB,EAASM,EAEdT,SAAUK,EAAaL,WAGzBhtB,OAAO4uB,SAASzB,EAASxU,EAAGwU,EAASM,GAG3C,CAIA,IAGQoB,GAHJC,GACFzF,MAKmC,KAH7BwF,GAAK7uB,OAAOD,UAAU0G,WAGpBiM,QAAQ,gBAAuD,IAA/Bmc,GAAGnc,QAAQ,iBACd,IAAjCmc,GAAGnc,QAAQ,mBACe,IAA1Bmc,GAAGnc,QAAQ,YACsB,IAAjCmc,GAAGnc,QAAQ,mBAKN1S,OAAOmsB,SAA+C,mBAA7BnsB,OAAOmsB,QAAQ4C,UAGnD,SAASA,GAAW7pB,EAAKyD,GACvB4kB,KAGA,IAAIpB,EAAUnsB,OAAOmsB,QACrB,IACE,GAAIxjB,EAAS,CAEX,IAAI8jB,EAAYpQ,GAAO,CAAC,EAAG8P,EAAQ3iB,OACnCijB,EAAUhjB,IAAMsiB,KAChBI,EAAQO,aAAaD,EAAW,GAAIvnB,EACtC,MACEinB,EAAQ4C,UAAU,CAAEtlB,IAAKuiB,GAAYJ,OAAkB,GAAI1mB,EAE/D,CAAE,MAAOpD,GACP9B,OAAOmH,SAASwB,EAAU,UAAY,UAAUzD,EAClD,CACF,CAEA,SAASwnB,GAAcxnB,GACrB6pB,GAAU7pB,GAAK,EACjB,CAGA,IAAI8pB,GAAwB,CAC1BC,WAAY,EACZC,QAAS,EACTC,UAAW,EACXC,WAAY,IA0Bd,SAASC,GAAgC5gB,EAAM6X,GAC7C,OAAOgJ,GACL7gB,EACA6X,EACA0I,GAAsBG,UACrB,8BAAkC1gB,EAAa,SAAI,SAAc6X,EAAW,SAAI,2BAErF,CAWA,SAASgJ,GAAmB7gB,EAAM6X,EAAI5e,EAAMoB,GAC1C,IAAIjD,EAAQ,IAAI6C,MAAMI,GAMtB,OALAjD,EAAM0pB,WAAY,EAClB1pB,EAAM4I,KAAOA,EACb5I,EAAMygB,GAAKA,EACXzgB,EAAM6B,KAAOA,EAEN7B,CACT,CAEA,IAAI2pB,GAAkB,CAAC,SAAU,QAAS,QAY1C,SAASC,GAAS9S,GAChB,OAAOvgB,OAAOC,UAAUkI,SAASxG,KAAK4e,GAAKjK,QAAQ,UAAY,CACjE,CAEA,SAASgd,GAAqB/S,EAAKgT,GACjC,OACEF,GAAQ9S,IACRA,EAAI4S,YACU,MAAbI,GAAqBhT,EAAIjV,OAASioB,EAEvC,CAIA,SAASC,GAAUC,EAAOnzB,EAAIozB,GAC5B,IAAIC,EAAO,SAAUzU,GACfA,GAASuU,EAAMtxB,OACjBuxB,IAEID,EAAMvU,GACR5e,EAAGmzB,EAAMvU,IAAQ,WACfyU,EAAKzU,EAAQ,EACf,IAEAyU,EAAKzU,EAAQ,EAGnB,EACAyU,EAAK,EACP,CAsEA,SAASC,GACPhS,EACAthB,GAEA,OAAOuzB,GAAQjS,EAAQpP,KAAI,SAAUmV,GACnC,OAAO3nB,OAAO6G,KAAK8gB,EAAE1M,YAAYzI,KAAI,SAAUnF,GAAO,OAAO/M,EAC3DqnB,EAAE1M,WAAW5N,GACbsa,EAAE/E,UAAUvV,GACZsa,EAAGta,EACF,GACL,IACF,CAEA,SAASwmB,GAASzN,GAChB,OAAO/jB,MAAMpC,UAAU6B,OAAOoB,MAAM,GAAIkjB,EAC1C,CAEA,IAAI0N,GACgB,mBAAX9rB,QACuB,iBAAvBA,OAAO+rB,YAUhB,SAASvzB,GAAMF,GACb,IAAI0zB,GAAS,EACb,OAAO,WAEL,IADA,IAAInxB,EAAO,GAAIC,EAAMC,UAAUZ,OACvBW,KAAQD,EAAMC,GAAQC,UAAWD,GAEzC,IAAIkxB,EAEJ,OADAA,GAAS,EACF1zB,EAAG4C,MAAMzC,KAAMoC,EACxB,CACF,CAIA,IAAIoxB,GAAU,SAAkB5S,EAAQqE,GACtCjlB,KAAK4gB,OAASA,EACd5gB,KAAKilB,KAgOP,SAAwBA,GACtB,IAAKA,EACH,GAAIuH,GAAW,CAEb,IAAIiH,EAASjqB,SAAS+nB,cAAc,QAGpCtM,GAFAA,EAAQwO,GAAUA,EAAOpH,aAAa,SAAY,KAEtCvgB,QAAQ,qBAAsB,GAC5C,MACEmZ,EAAO,IAQX,MAJuB,MAAnBA,EAAKG,OAAO,KACdH,EAAO,IAAMA,GAGRA,EAAKnZ,QAAQ,MAAO,GAC7B,CAlPc4nB,CAAczO,GAE1BjlB,KAAKukB,QAAUjD,GACfthB,KAAK2zB,QAAU,KACf3zB,KAAK4zB,OAAQ,EACb5zB,KAAK6zB,SAAW,GAChB7zB,KAAK8zB,cAAgB,GACrB9zB,KAAK+zB,SAAW,GAChB/zB,KAAKsB,UAAY,EACnB,EA6PA,SAAS0yB,GACPC,EACAjzB,EACAkT,EACAggB,GAEA,IAAIC,EAAShB,GAAkBc,GAAS,SAAUG,EAAKhS,EAAUnH,EAAOrO,GACtE,IAAIynB,EAUR,SACED,EACAxnB,GAMA,MAJmB,mBAARwnB,IAETA,EAAM7K,GAAK/J,OAAO4U,IAEbA,EAAIxgB,QAAQhH,EACrB,CAnBgB0nB,CAAaF,EAAKpzB,GAC9B,GAAIqzB,EACF,OAAOzyB,MAAM4L,QAAQ6mB,GACjBA,EAAMtiB,KAAI,SAAUsiB,GAAS,OAAOngB,EAAKmgB,EAAOjS,EAAUnH,EAAOrO,EAAM,IACvEsH,EAAKmgB,EAAOjS,EAAUnH,EAAOrO,EAErC,IACA,OAAOwmB,GAAQc,EAAUC,EAAOD,UAAYC,EAC9C,CAqBA,SAASI,GAAWF,EAAOjS,GACzB,GAAIA,EACF,OAAO,WACL,OAAOiS,EAAM5xB,MAAM2f,EAAU9f,UAC/B,CAEJ,CArSAkxB,GAAQh0B,UAAUg1B,OAAS,SAAiBvB,GAC1CjzB,KAAKizB,GAAKA,CACZ,EAEAO,GAAQh0B,UAAUi1B,QAAU,SAAkBxB,EAAIyB,GAC5C10B,KAAK4zB,MACPX,KAEAjzB,KAAK6zB,SAASrzB,KAAKyyB,GACfyB,GACF10B,KAAK8zB,cAActzB,KAAKk0B,GAG9B,EAEAlB,GAAQh0B,UAAU6U,QAAU,SAAkBqgB,GAC5C10B,KAAK+zB,SAASvzB,KAAKk0B,EACrB,EAEAlB,GAAQh0B,UAAUm1B,aAAe,SAC/BrqB,EACAsqB,EACAC,GAEE,IAEE/T,EAFEoJ,EAAWlqB,KAIjB,IACE8gB,EAAQ9gB,KAAK4gB,OAAO3F,MAAM3Q,EAAUtK,KAAKukB,QAC3C,CAAE,MAAOtf,GAKP,MAJAjF,KAAK+zB,SAAS7iB,SAAQ,SAAU+hB,GAC9BA,EAAGhuB,EACL,IAEMA,CACR,CACA,IAAI6vB,EAAO90B,KAAKukB,QAChBvkB,KAAK+0B,kBACHjU,GACA,WACEoJ,EAAS8K,YAAYlU,GACrB8T,GAAcA,EAAW9T,GACzBoJ,EAAS+K,YACT/K,EAAStJ,OAAOsU,WAAWhkB,SAAQ,SAAUnN,GAC3CA,GAAQA,EAAK+c,EAAOgU,EACtB,IAGK5K,EAAS0J,QACZ1J,EAAS0J,OAAQ,EACjB1J,EAAS2J,SAAS3iB,SAAQ,SAAU+hB,GAClCA,EAAGnS,EACL,IAEJ,IACA,SAAUhB,GACJ+U,GACFA,EAAQ/U,GAENA,IAAQoK,EAAS0J,QAKdf,GAAoB/S,EAAKqS,GAAsBC,aAAe0C,IAASxT,KAC1E4I,EAAS0J,OAAQ,EACjB1J,EAAS4J,cAAc5iB,SAAQ,SAAU+hB,GACvCA,EAAGnT,EACL,KAGN,GAEJ,EAEA0T,GAAQh0B,UAAUu1B,kBAAoB,SAA4BjU,EAAO8T,EAAYC,GACjF,IAAI3K,EAAWlqB,KAEbukB,EAAUvkB,KAAKukB,QACnBvkB,KAAK2zB,QAAU7S,EACf,IAhSwClP,EACpC5I,EA+RAmsB,EAAQ,SAAUrV,IAIf+S,GAAoB/S,IAAQ8S,GAAQ9S,KACnCoK,EAAS6J,SAASryB,OACpBwoB,EAAS6J,SAAS7iB,SAAQ,SAAU+hB,GAClCA,EAAGnT,EACL,IAKA,GAAQ9W,MAAM8W,IAGlB+U,GAAWA,EAAQ/U,EACrB,EACIsV,EAAiBtU,EAAMK,QAAQzf,OAAS,EACxC2zB,EAAmB9Q,EAAQpD,QAAQzf,OAAS,EAChD,GACEggB,GAAYZ,EAAOyD,IAEnB6Q,IAAmBC,GACnBvU,EAAMK,QAAQiU,KAAoB7Q,EAAQpD,QAAQkU,GAMlD,OAJAr1B,KAAKi1B,YACDnU,EAAM/B,MACRkR,GAAajwB,KAAK4gB,OAAQ2D,EAASzD,GAAO,GAErCqU,IA7TLnsB,EAAQypB,GAD4B7gB,EA8TO2S,EAASzD,EA1TtDqR,GAAsBI,WACrB,sDAA0D3gB,EAAa,SAAI,OAGxE5Q,KAAO,uBACNgI,IAwTP,IA5O+BmY,EA4O3BK,EAuHN,SACE+C,EACA8C,GAEA,IAAI7lB,EACA8zB,EAAMC,KAAKD,IAAI/Q,EAAQ7iB,OAAQ2lB,EAAK3lB,QACxC,IAAKF,EAAI,EAAGA,EAAI8zB,GACV/Q,EAAQ/iB,KAAO6lB,EAAK7lB,GADLA,KAKrB,MAAO,CACLg0B,QAASnO,EAAKlmB,MAAM,EAAGK,GACvBi0B,UAAWpO,EAAKlmB,MAAMK,GACtBk0B,YAAanR,EAAQpjB,MAAMK,GAE/B,CAvIYm0B,CACR31B,KAAKukB,QAAQpD,QACbL,EAAMK,SAEFqU,EAAUhU,EAAIgU,QACdE,EAAclU,EAAIkU,YAClBD,EAAYjU,EAAIiU,UAElBzC,EAAQ,GAAG3xB,OA6JjB,SAA6Bq0B,GAC3B,OAAO1B,GAAc0B,EAAa,mBAAoBnB,IAAW,EACnE,CA7JIqB,CAAmBF,GAEnB11B,KAAK4gB,OAAOiV,YA6JhB,SAA6BL,GAC3B,OAAOxB,GAAcwB,EAAS,oBAAqBjB,GACrD,CA7JIuB,CAAmBN,GAEnBC,EAAU1jB,KAAI,SAAUmV,GAAK,OAAOA,EAAE0G,WAAa,KA5PtBzM,EA8PNsU,EA7PlB,SAAUhM,EAAI7X,EAAMyV,GACzB,IAAI0O,GAAW,EACXpC,EAAU,EACV3qB,EAAQ,KAEZmqB,GAAkBhS,GAAS,SAAUiT,EAAKtR,EAAG7H,EAAOrO,GAMlD,GAAmB,mBAARwnB,QAAkC5xB,IAAZ4xB,EAAI4B,IAAmB,CACtDD,GAAW,EACXpC,IAEA,IA0BI1T,EA1BA3Z,EAAUvG,IAAK,SAAUk2B,GAuErC,IAAqBld,MAtEIkd,GAuEZC,YAAe7C,IAAyC,WAA5Bta,EAAIxR,OAAO+rB,gBAtExC2C,EAAcA,EAAYrT,SAG5BwR,EAAI+B,SAAkC,mBAAhBF,EAClBA,EACA1M,GAAK/J,OAAOyW,GAChBhb,EAAMT,WAAW5N,GAAOqpB,IACxBtC,GACe,GACbtM,GAEJ,IAEIrX,EAASjQ,IAAK,SAAUq2B,GAC1B,IAAIC,EAAM,qCAAuCzpB,EAAM,KAAOwpB,EAEzDptB,IACHA,EAAQ4pB,GAAQwD,GACZA,EACA,IAAIvqB,MAAMwqB,GACdhP,EAAKre,GAET,IAGA,IACEiX,EAAMmU,EAAI9tB,EAAS0J,EACrB,CAAE,MAAO/K,GACP+K,EAAO/K,EACT,CACA,GAAIgb,EACF,GAAwB,mBAAbA,EAAIpI,KACboI,EAAIpI,KAAKvR,EAAS0J,OACb,CAEL,IAAIsmB,EAAOrW,EAAIiE,UACXoS,GAA6B,mBAAdA,EAAKze,MACtBye,EAAKze,KAAKvR,EAAS0J,EAEvB,CAEJ,CACF,IAEK+lB,GAAY1O,GACnB,IAkMIkP,EAAW,SAAUxyB,EAAMsjB,GAC7B,GAAI6C,EAASyJ,UAAY7S,EACvB,OAAOqU,EAAM3C,GAA+BjO,EAASzD,IAEvD,IACE/c,EAAK+c,EAAOyD,GAAS,SAAUkF,IAClB,IAAPA,GAEFS,EAAS+K,WAAU,GACnBE,EA1UV,SAAuCvjB,EAAM6X,GAC3C,OAAOgJ,GACL7gB,EACA6X,EACA0I,GAAsBE,QACrB,4BAAgCzgB,EAAa,SAAI,SAAc6X,EAAW,SAAI,4BAEnF,CAmUgB+M,CAA6BjS,EAASzD,KACnC8R,GAAQnJ,IACjBS,EAAS+K,WAAU,GACnBE,EAAM1L,IAEQ,iBAAPA,GACQ,iBAAPA,IACc,iBAAZA,EAAG9W,MAAwC,iBAAZ8W,EAAGzoB,OAG5Cm0B,EApXV,SAA0CvjB,EAAM6X,GAC9C,OAAOgJ,GACL7gB,EACA6X,EACA0I,GAAsBC,WACrB,+BAAmCxgB,EAAa,SAAI,SAgDzD,SAAyB6X,GACvB,GAAkB,iBAAPA,EAAmB,OAAOA,EACrC,GAAI,SAAUA,EAAM,OAAOA,EAAG9W,KAC9B,IAAIrI,EAAW,CAAC,EAIhB,OAHAqoB,GAAgBzhB,SAAQ,SAAUtE,GAC5BA,KAAO6c,IAAMnf,EAASsC,GAAO6c,EAAG7c,GACtC,IACO7H,KAAKQ,UAAU+E,EAAU,KAAM,EACxC,CAxDsE,CAChEmf,GACG,4BAET,CA2WgBgN,CAAgClS,EAASzD,IAC7B,iBAAP2I,GAAmBA,EAAG3d,QAC/Boe,EAASpe,QAAQ2d,GAEjBS,EAAS1pB,KAAKipB,IAIhBpC,EAAKoC,EAET,GACF,CAAE,MAAOxkB,GACPkwB,EAAMlwB,EACR,CACF,EAEA8tB,GAASC,EAAOuD,GAAU,WAGxB,IAAIG,EA0HR,SACEjB,GAEA,OAAOzB,GACLyB,EACA,oBACA,SAAUpB,EAAOvR,EAAG7H,EAAOrO,GACzB,OAKN,SACEynB,EACApZ,EACArO,GAEA,OAAO,SAA0B6c,EAAI7X,EAAMyV,GACzC,OAAOgN,EAAM5K,EAAI7X,GAAM,SAAUqhB,GACb,mBAAPA,IACJhY,EAAMqH,WAAW1V,KACpBqO,EAAMqH,WAAW1V,GAAO,IAE1BqO,EAAMqH,WAAW1V,GAAKpM,KAAKyyB,IAE7B5L,EAAK4L,EACP,GACF,CACF,CArBa0D,CAAetC,EAAOpZ,EAAOrO,EACtC,GAEJ,CApIsBgqB,CAAmBnB,GAErC1C,GADY2D,EAAYr1B,OAAO6oB,EAAStJ,OAAOiW,cAC/BN,GAAU,WACxB,GAAIrM,EAASyJ,UAAY7S,EACvB,OAAOqU,EAAM3C,GAA+BjO,EAASzD,IAEvDoJ,EAASyJ,QAAU,KACnBiB,EAAW9T,GACPoJ,EAAStJ,OAAOnS,KAClByb,EAAStJ,OAAOnS,IAAI4hB,WAAU,WAC5BnO,GAAmBpB,EACrB,GAEJ,GACF,GACF,EAEA0S,GAAQh0B,UAAUw1B,YAAc,SAAsBlU,GACpD9gB,KAAKukB,QAAUzD,EACf9gB,KAAKizB,IAAMjzB,KAAKizB,GAAGnS,EACrB,EAEA0S,GAAQh0B,UAAUs3B,eAAiB,WAEnC,EAEAtD,GAAQh0B,UAAUu3B,SAAW,WAG3B/2B,KAAKsB,UAAU4P,SAAQ,SAAU8lB,GAC/BA,GACF,IACAh3B,KAAKsB,UAAY,GAIjBtB,KAAKukB,QAAUjD,GACfthB,KAAK2zB,QAAU,IACjB,EAoHA,IAAIsD,GAA6B,SAAUzD,GACzC,SAASyD,EAAcrW,EAAQqE,GAC7BuO,EAAQtyB,KAAKlB,KAAM4gB,EAAQqE,GAE3BjlB,KAAKk3B,eAAiBC,GAAYn3B,KAAKilB,KACzC,CAkFA,OAhFKuO,IAAUyD,EAAap2B,UAAY2yB,GACxCyD,EAAaz3B,UAAYD,OAAOqB,OAAQ4yB,GAAWA,EAAQh0B,WAC3Dy3B,EAAaz3B,UAAUqE,YAAcozB,EAErCA,EAAaz3B,UAAUs3B,eAAiB,WACtC,IAAI5M,EAAWlqB,KAEf,KAAIA,KAAKsB,UAAUI,OAAS,GAA5B,CAIA,IAAIkf,EAAS5gB,KAAK4gB,OACdwW,EAAexW,EAAOhN,QAAQwc,eAC9BiH,EAAiBpF,IAAqBmF,EAEtCC,GACFr3B,KAAKsB,UAAUd,KAAK6uB,MAGtB,IAAIiI,EAAqB,WACvB,IAAI/S,EAAU2F,EAAS3F,QAInBja,EAAW6sB,GAAYjN,EAASjF,MAChCiF,EAAS3F,UAAYjD,IAAShX,IAAa4f,EAASgN,gBAIxDhN,EAASyK,aAAarqB,GAAU,SAAUwW,GACpCuW,GACFpH,GAAarP,EAAQE,EAAOyD,GAAS,EAEzC,GACF,EACAphB,OAAO2sB,iBAAiB,WAAYwH,GACpCt3B,KAAKsB,UAAUd,MAAK,WAClB2C,OAAO6sB,oBAAoB,WAAYsH,EACzC,GA7BA,CA8BF,EAEAL,EAAaz3B,UAAU+3B,GAAK,SAAaC,GACvCr0B,OAAOmsB,QAAQiI,GAAGC,EACpB,EAEAP,EAAaz3B,UAAUgB,KAAO,SAAe8J,EAAUsqB,EAAYC,GACjE,IAAI3K,EAAWlqB,KAGXy3B,EADMz3B,KACUukB,QACpBvkB,KAAK20B,aAAarqB,GAAU,SAAUwW,GACpCoR,GAAUzM,GAAUyE,EAASjF,KAAOnE,EAAMG,WAC1CgP,GAAa/F,EAAStJ,OAAQE,EAAO2W,GAAW,GAChD7C,GAAcA,EAAW9T,EAC3B,GAAG+T,EACL,EAEAoC,EAAaz3B,UAAUsM,QAAU,SAAkBxB,EAAUsqB,EAAYC,GACvE,IAAI3K,EAAWlqB,KAGXy3B,EADMz3B,KACUukB,QACpBvkB,KAAK20B,aAAarqB,GAAU,SAAUwW,GACpC+O,GAAapK,GAAUyE,EAASjF,KAAOnE,EAAMG,WAC7CgP,GAAa/F,EAAStJ,OAAQE,EAAO2W,GAAW,GAChD7C,GAAcA,EAAW9T,EAC3B,GAAG+T,EACL,EAEAoC,EAAaz3B,UAAUy1B,UAAY,SAAoBz0B,GACrD,GAAI22B,GAAYn3B,KAAKilB,QAAUjlB,KAAKukB,QAAQtD,SAAU,CACpD,IAAIsD,EAAUkB,GAAUzlB,KAAKilB,KAAOjlB,KAAKukB,QAAQtD,UACjDzgB,EAAO0xB,GAAU3N,GAAWsL,GAAatL,EAC3C,CACF,EAEA0S,EAAaz3B,UAAUk4B,mBAAqB,WAC1C,OAAOP,GAAYn3B,KAAKilB,KAC1B,EAEOgS,CACT,CAxFgC,CAwF9BzD,IAEF,SAAS2D,GAAalS,GACpB,IAAItS,EAAOxP,OAAOmH,SAASqtB,SACvBC,EAAgBjlB,EAAKnG,cACrBqrB,EAAgB5S,EAAKzY,cAQzB,OAJIyY,GAAU2S,IAAkBC,GAC6B,IAA1DD,EAAc/hB,QAAQ4P,GAAUoS,EAAgB,QACjDllB,EAAOA,EAAKxR,MAAM8jB,EAAKvjB,UAEjBiR,GAAQ,KAAOxP,OAAOmH,SAASwtB,OAAS30B,OAAOmH,SAASyU,IAClE,CAIA,IAAIgZ,GAA4B,SAAUvE,GACxC,SAASuE,EAAanX,EAAQqE,EAAM+S,GAClCxE,EAAQtyB,KAAKlB,KAAM4gB,EAAQqE,GAEvB+S,GAqGR,SAAwB/S,GACtB,IAAI3a,EAAW6sB,GAAYlS,GAC3B,IAAK,OAAOnb,KAAKQ,GAEf,OADAnH,OAAOmH,SAASwB,QAAQ2Z,GAAUR,EAAO,KAAO3a,KACzC,CAEX,CA3GoB2tB,CAAcj4B,KAAKilB,OAGnCiT,IACF,CA8FA,OA5FK1E,IAAUuE,EAAYl3B,UAAY2yB,GACvCuE,EAAYv4B,UAAYD,OAAOqB,OAAQ4yB,GAAWA,EAAQh0B,WAC1Du4B,EAAYv4B,UAAUqE,YAAck0B,EAIpCA,EAAYv4B,UAAUs3B,eAAiB,WACrC,IAAI5M,EAAWlqB,KAEf,KAAIA,KAAKsB,UAAUI,OAAS,GAA5B,CAIA,IACI01B,EADSp3B,KAAK4gB,OACQhN,QAAQwc,eAC9BiH,EAAiBpF,IAAqBmF,EAEtCC,GACFr3B,KAAKsB,UAAUd,KAAK6uB,MAGtB,IAAIiI,EAAqB,WACvB,IAAI/S,EAAU2F,EAAS3F,QAClB2T,MAGLhO,EAASyK,aAAa,MAAW,SAAU7T,GACrCuW,GACFpH,GAAa/F,EAAStJ,OAAQE,EAAOyD,GAAS,GAE3C0N,IACHkG,GAAYrX,EAAMG,SAEtB,GACF,EACImX,EAAYnG,GAAoB,WAAa,aACjD9uB,OAAO2sB,iBACLsI,EACAd,GAEFt3B,KAAKsB,UAAUd,MAAK,WAClB2C,OAAO6sB,oBAAoBoI,EAAWd,EACxC,GA/BA,CAgCF,EAEAS,EAAYv4B,UAAUgB,KAAO,SAAe8J,EAAUsqB,EAAYC,GAChE,IAAI3K,EAAWlqB,KAGXy3B,EADMz3B,KACUukB,QACpBvkB,KAAK20B,aACHrqB,GACA,SAAUwW,GACRuX,GAASvX,EAAMG,UACfgP,GAAa/F,EAAStJ,OAAQE,EAAO2W,GAAW,GAChD7C,GAAcA,EAAW9T,EAC3B,GACA+T,EAEJ,EAEAkD,EAAYv4B,UAAUsM,QAAU,SAAkBxB,EAAUsqB,EAAYC,GACtE,IAAI3K,EAAWlqB,KAGXy3B,EADMz3B,KACUukB,QACpBvkB,KAAK20B,aACHrqB,GACA,SAAUwW,GACRqX,GAAYrX,EAAMG,UAClBgP,GAAa/F,EAAStJ,OAAQE,EAAO2W,GAAW,GAChD7C,GAAcA,EAAW9T,EAC3B,GACA+T,EAEJ,EAEAkD,EAAYv4B,UAAU+3B,GAAK,SAAaC,GACtCr0B,OAAOmsB,QAAQiI,GAAGC,EACpB,EAEAO,EAAYv4B,UAAUy1B,UAAY,SAAoBz0B,GACpD,IAAI+jB,EAAUvkB,KAAKukB,QAAQtD,SACvB,OAAcsD,IAChB/jB,EAAO63B,GAAS9T,GAAW4T,GAAY5T,GAE3C,EAEAwT,EAAYv4B,UAAUk4B,mBAAqB,WACzC,OAAO,IACT,EAEOK,CACT,CAvG+B,CAuG7BvE,IAUF,SAAS0E,KACP,IAAIvlB,EAAO,KACX,MAAuB,MAAnBA,EAAKyS,OAAO,KAGhB+S,GAAY,IAAMxlB,IACX,EACT,CAEA,SAAS,KAGP,IAAIvI,EAAOjH,OAAOmH,SAASF,KACvBqU,EAAQrU,EAAKyL,QAAQ,KAEzB,OAAI4I,EAAQ,EAAY,GAExBrU,EAAOA,EAAKjJ,MAAMsd,EAAQ,EAG5B,CAEA,SAAS6Z,GAAQ3lB,GACf,IAAIvI,EAAOjH,OAAOmH,SAASF,KACvB5I,EAAI4I,EAAKyL,QAAQ,KAErB,OADWrU,GAAK,EAAI4I,EAAKjJ,MAAM,EAAGK,GAAK4I,GACxB,IAAMuI,CACvB,CAEA,SAAS0lB,GAAU1lB,GACbsf,GACFC,GAAUoG,GAAO3lB,IAEjBxP,OAAOmH,SAASyU,KAAOpM,CAE3B,CAEA,SAASwlB,GAAaxlB,GAChBsf,GACFpC,GAAayI,GAAO3lB,IAEpBxP,OAAOmH,SAASwB,QAAQwsB,GAAO3lB,GAEnC,CAIA,IAAI4lB,GAAgC,SAAU/E,GAC5C,SAAS+E,EAAiB3X,EAAQqE,GAChCuO,EAAQtyB,KAAKlB,KAAM4gB,EAAQqE,GAC3BjlB,KAAKqlB,MAAQ,GACbrlB,KAAKye,OAAS,CAChB,CAoEA,OAlEK+U,IAAU+E,EAAgB13B,UAAY2yB,GAC3C+E,EAAgB/4B,UAAYD,OAAOqB,OAAQ4yB,GAAWA,EAAQh0B,WAC9D+4B,EAAgB/4B,UAAUqE,YAAc00B,EAExCA,EAAgB/4B,UAAUgB,KAAO,SAAe8J,EAAUsqB,EAAYC,GACpE,IAAI3K,EAAWlqB,KAEfA,KAAK20B,aACHrqB,GACA,SAAUwW,GACRoJ,EAAS7E,MAAQ6E,EAAS7E,MAAMlkB,MAAM,EAAG+oB,EAASzL,MAAQ,GAAGpd,OAAOyf,GACpEoJ,EAASzL,QACTmW,GAAcA,EAAW9T,EAC3B,GACA+T,EAEJ,EAEA0D,EAAgB/4B,UAAUsM,QAAU,SAAkBxB,EAAUsqB,EAAYC,GAC1E,IAAI3K,EAAWlqB,KAEfA,KAAK20B,aACHrqB,GACA,SAAUwW,GACRoJ,EAAS7E,MAAQ6E,EAAS7E,MAAMlkB,MAAM,EAAG+oB,EAASzL,OAAOpd,OAAOyf,GAChE8T,GAAcA,EAAW9T,EAC3B,GACA+T,EAEJ,EAEA0D,EAAgB/4B,UAAU+3B,GAAK,SAAaC,GAC1C,IAAItN,EAAWlqB,KAEXw4B,EAAcx4B,KAAKye,MAAQ+Y,EAC/B,KAAIgB,EAAc,GAAKA,GAAex4B,KAAKqlB,MAAM3jB,QAAjD,CAGA,IAAIof,EAAQ9gB,KAAKqlB,MAAMmT,GACvBx4B,KAAK+0B,kBACHjU,GACA,WACE,IAAIgU,EAAO5K,EAAS3F,QACpB2F,EAASzL,MAAQ+Z,EACjBtO,EAAS8K,YAAYlU,GACrBoJ,EAAStJ,OAAOsU,WAAWhkB,SAAQ,SAAUnN,GAC3CA,GAAQA,EAAK+c,EAAOgU,EACtB,GACF,IACA,SAAUhV,GACJ+S,GAAoB/S,EAAKqS,GAAsBI,cACjDrI,EAASzL,MAAQ+Z,EAErB,GAhBF,CAkBF,EAEAD,EAAgB/4B,UAAUk4B,mBAAqB,WAC7C,IAAInT,EAAUvkB,KAAKqlB,MAAMrlB,KAAKqlB,MAAM3jB,OAAS,GAC7C,OAAO6iB,EAAUA,EAAQtD,SAAW,GACtC,EAEAsX,EAAgB/4B,UAAUy1B,UAAY,WAEtC,EAEOsD,CACT,CA1EmC,CA0EjC/E,IAMEiF,GAAY,SAAoB7kB,QACjB,IAAZA,IAAqBA,EAAU,CAAC,GAKrC5T,KAAKyO,IAAM,KACXzO,KAAK04B,KAAO,GACZ14B,KAAK4T,QAAUA,EACf5T,KAAK61B,YAAc,GACnB71B,KAAK62B,aAAe,GACpB72B,KAAKk1B,WAAa,GAClBl1B,KAAK24B,QAAU3K,GAAcpa,EAAQ8Y,QAAU,GAAI1sB,MAEnD,IAAI44B,EAAOhlB,EAAQglB,MAAQ,OAW3B,OAVA54B,KAAKg4B,SACM,YAATY,IAAuB3G,KAA0C,IAArBre,EAAQokB,SAClDh4B,KAAKg4B,WACPY,EAAO,QAEJpM,KACHoM,EAAO,YAET54B,KAAK44B,KAAOA,EAEJA,GACN,IAAK,UACH54B,KAAKsvB,QAAU,IAAI2H,GAAaj3B,KAAM4T,EAAQqR,MAC9C,MACF,IAAK,OACHjlB,KAAKsvB,QAAU,IAAIyI,GAAY/3B,KAAM4T,EAAQqR,KAAMjlB,KAAKg4B,UACxD,MACF,IAAK,WACHh4B,KAAKsvB,QAAU,IAAIiJ,GAAgBv4B,KAAM4T,EAAQqR,MAOvD,EAEI4T,GAAqB,CAAE5K,aAAc,CAAE7U,cAAc,IAEzDqf,GAAUj5B,UAAUyb,MAAQ,SAAgBtW,EAAK4f,EAAS5D,GACxD,OAAO3gB,KAAK24B,QAAQ1d,MAAMtW,EAAK4f,EAAS5D,EAC1C,EAEAkY,GAAmB5K,aAAaloB,IAAM,WACpC,OAAO/F,KAAKsvB,SAAWtvB,KAAKsvB,QAAQ/K,OACtC,EAEAkU,GAAUj5B,UAAUklB,KAAO,SAAejW,GACtC,IAAIyb,EAAWlqB,KA0BjB,GAjBAA,KAAK04B,KAAKl4B,KAAKiO,GAIfA,EAAIqqB,MAAM,kBAAkB,WAE1B,IAAIra,EAAQyL,EAASwO,KAAK7iB,QAAQpH,GAC9BgQ,GAAS,GAAKyL,EAASwO,KAAK5iB,OAAO2I,EAAO,GAG1CyL,EAASzb,MAAQA,IAAOyb,EAASzb,IAAMyb,EAASwO,KAAK,IAAM,MAE1DxO,EAASzb,KAAOyb,EAASoF,QAAQyH,UACxC,KAII/2B,KAAKyO,IAAT,CAIAzO,KAAKyO,IAAMA,EAEX,IAAI6gB,EAAUtvB,KAAKsvB,QAEnB,GAAIA,aAAmB2H,IAAgB3H,aAAmByI,GAAa,CACrE,IASIjB,EAAiB,SAAUiC,GAC7BzJ,EAAQwH,iBAVgB,SAAUiC,GAClC,IAAInnB,EAAO0d,EAAQ/K,QACf6S,EAAelN,EAAStW,QAAQwc,eACf6B,IAAqBmF,GAEpB,aAAc2B,GAClC9I,GAAa/F,EAAU6O,EAAcnnB,GAAM,EAE/C,CAGEonB,CAAoBD,EACtB,EACAzJ,EAAQqF,aACNrF,EAAQoI,qBACRZ,EACAA,EAEJ,CAEAxH,EAAQkF,QAAO,SAAU1T,GACvBoJ,EAASwO,KAAKxnB,SAAQ,SAAUzC,GAC9BA,EAAIwqB,OAASnY,CACf,GACF,GA/BA,CAgCF,EAEA2X,GAAUj5B,UAAU05B,WAAa,SAAqBr5B,GACpD,OAAOs5B,GAAan5B,KAAK61B,YAAah2B,EACxC,EAEA44B,GAAUj5B,UAAU45B,cAAgB,SAAwBv5B,GAC1D,OAAOs5B,GAAan5B,KAAK62B,aAAch3B,EACzC,EAEA44B,GAAUj5B,UAAU65B,UAAY,SAAoBx5B,GAClD,OAAOs5B,GAAan5B,KAAKk1B,WAAYr1B,EACvC,EAEA44B,GAAUj5B,UAAUi1B,QAAU,SAAkBxB,EAAIyB,GAClD10B,KAAKsvB,QAAQmF,QAAQxB,EAAIyB,EAC3B,EAEA+D,GAAUj5B,UAAU6U,QAAU,SAAkBqgB,GAC9C10B,KAAKsvB,QAAQjb,QAAQqgB,EACvB,EAEA+D,GAAUj5B,UAAUgB,KAAO,SAAe8J,EAAUsqB,EAAYC,GAC5D,IAAI3K,EAAWlqB,KAGjB,IAAK40B,IAAeC,GAA8B,oBAAZtuB,QACpC,OAAO,IAAIA,SAAQ,SAAUD,EAAS0J,GACpCka,EAASoF,QAAQ9uB,KAAK8J,EAAUhE,EAAS0J,EAC3C,IAEAhQ,KAAKsvB,QAAQ9uB,KAAK8J,EAAUsqB,EAAYC,EAE5C,EAEA4D,GAAUj5B,UAAUsM,QAAU,SAAkBxB,EAAUsqB,EAAYC,GAClE,IAAI3K,EAAWlqB,KAGjB,IAAK40B,IAAeC,GAA8B,oBAAZtuB,QACpC,OAAO,IAAIA,SAAQ,SAAUD,EAAS0J,GACpCka,EAASoF,QAAQxjB,QAAQxB,EAAUhE,EAAS0J,EAC9C,IAEAhQ,KAAKsvB,QAAQxjB,QAAQxB,EAAUsqB,EAAYC,EAE/C,EAEA4D,GAAUj5B,UAAU+3B,GAAK,SAAaC,GACpCx3B,KAAKsvB,QAAQiI,GAAGC,EAClB,EAEAiB,GAAUj5B,UAAU85B,KAAO,WACzBt5B,KAAKu3B,IAAI,EACX,EAEAkB,GAAUj5B,UAAU+5B,QAAU,WAC5Bv5B,KAAKu3B,GAAG,EACV,EAEAkB,GAAUj5B,UAAUg6B,qBAAuB,SAA+B/P,GACxE,IAAI3I,EAAQ2I,EACRA,EAAGtI,QACDsI,EACAzpB,KAAKsG,QAAQmjB,GAAI3I,MACnB9gB,KAAKiuB,aACT,OAAKnN,EAGE,GAAGzf,OAAOoB,MACf,GACAqe,EAAMK,QAAQpP,KAAI,SAAUmV,GAC1B,OAAO3nB,OAAO6G,KAAK8gB,EAAE1M,YAAYzI,KAAI,SAAUnF,GAC7C,OAAOsa,EAAE1M,WAAW5N,EACtB,GACF,KARO,EAUX,EAEA6rB,GAAUj5B,UAAU8G,QAAU,SAC5BmjB,EACAlF,EACAW,GAGA,IAAI5a,EAAWoe,GAAkBe,EADjClF,EAAUA,GAAWvkB,KAAKsvB,QAAQ/K,QACYW,EAAQllB,MAClD8gB,EAAQ9gB,KAAKib,MAAM3Q,EAAUia,GAC7BtD,EAAWH,EAAMH,gBAAkBG,EAAMG,SAEzC7W,EA4CN,SAAqB6a,EAAMhE,EAAU2X,GACnC,IAAIjmB,EAAgB,SAATimB,EAAkB,IAAM3X,EAAWA,EAC9C,OAAOgE,EAAOQ,GAAUR,EAAO,IAAMtS,GAAQA,CAC/C,CA/Ca8mB,CADAz5B,KAAKsvB,QAAQrK,KACIhE,EAAUjhB,KAAK44B,MAC3C,MAAO,CACLtuB,SAAUA,EACVwW,MAAOA,EACP1W,KAAMA,EAENsvB,aAAcpvB,EACd6rB,SAAUrV,EAEd,EAEA2X,GAAUj5B,UAAUovB,UAAY,WAC9B,OAAO5uB,KAAK24B,QAAQ/J,WACtB,EAEA6J,GAAUj5B,UAAUkvB,SAAW,SAAmBC,EAAe7N,GAC/D9gB,KAAK24B,QAAQjK,SAASC,EAAe7N,GACjC9gB,KAAKsvB,QAAQ/K,UAAYjD,IAC3BthB,KAAKsvB,QAAQqF,aAAa30B,KAAKsvB,QAAQoI,qBAE3C,EAEAe,GAAUj5B,UAAUqvB,UAAY,SAAoBnC,GAIlD1sB,KAAK24B,QAAQ9J,UAAUnC,GACnB1sB,KAAKsvB,QAAQ/K,UAAYjD,IAC3BthB,KAAKsvB,QAAQqF,aAAa30B,KAAKsvB,QAAQoI,qBAE3C,EAEAn4B,OAAOo6B,iBAAkBlB,GAAUj5B,UAAWq5B,IAE9C,IAAIe,GAAcnB,GAElB,SAASU,GAAcU,EAAMh6B,GAE3B,OADAg6B,EAAKr5B,KAAKX,GACH,WACL,IAAI2B,EAAIq4B,EAAKhkB,QAAQhW,GACjB2B,GAAK,GAAKq4B,EAAK/jB,OAAOtU,EAAG,EAC/B,CACF,CAQAi3B,GAAUqB,QA70DV,SAAS,EAASC,GAChB,IAAI,EAAQC,WAAazQ,KAASwQ,EAAlC,CACA,EAAQC,WAAY,EAEpBzQ,GAAOwQ,EAEP,IAAIE,EAAQ,SAAUhJ,GAAK,YAAazuB,IAANyuB,CAAiB,EAE/CiJ,EAAmB,SAAU5V,EAAI6V,GACnC,IAAI34B,EAAI8iB,EAAG8V,SAASC,aAChBJ,EAAMz4B,IAAMy4B,EAAMz4B,EAAIA,EAAEsD,OAASm1B,EAAMz4B,EAAIA,EAAE6iB,wBAC/C7iB,EAAE8iB,EAAI6V,EAEV,EAEAJ,EAAIO,MAAM,CACRC,aAAc,WACRN,EAAMj6B,KAAKo6B,SAASxZ,SACtB5gB,KAAKwjB,YAAcxjB,KACnBA,KAAKw6B,QAAUx6B,KAAKo6B,SAASxZ,OAC7B5gB,KAAKw6B,QAAQ9V,KAAK1kB,MAClB+5B,EAAI12B,KAAKo3B,eAAez6B,KAAM,SAAUA,KAAKw6B,QAAQlL,QAAQ/K,UAE7DvkB,KAAKwjB,YAAexjB,KAAK8jB,SAAW9jB,KAAK8jB,QAAQN,aAAgBxjB,KAEnEk6B,EAAiBl6B,KAAMA,KACzB,EACA06B,UAAW,WACTR,EAAiBl6B,KACnB,IAGFT,OAAO0Z,eAAe8gB,EAAIv6B,UAAW,UAAW,CAC9CuG,IAAK,WAAkB,OAAO/F,KAAKwjB,YAAYgX,OAAQ,IAGzDj7B,OAAO0Z,eAAe8gB,EAAIv6B,UAAW,SAAU,CAC7CuG,IAAK,WAAkB,OAAO/F,KAAKwjB,YAAYyV,MAAO,IAGxDc,EAAI7V,UAAU,aAAczB,IAC5BsX,EAAI7V,UAAU,aAAcsF,IAE5B,IAAImR,EAASZ,EAAInV,OAAOgW,sBAExBD,EAAOE,iBAAmBF,EAAOG,iBAAmBH,EAAOI,kBAAoBJ,EAAOK,OA5CtC,CA6ClD,EAgyDAvC,GAAUwC,QAAU,QACpBxC,GAAU5F,oBAAsBA,GAChC4F,GAAUtG,sBAAwBA,GAClCsG,GAAUyC,eAAiB5Z,GAEvBkL,IAAarpB,OAAO42B,KACtB52B,OAAO42B,IAAIoB,IAAI1C,IC5kGjBsB,EAAAA,GAAIoB,IAAIC,IAER,MAAMC,GAAeD,GAAO57B,UAAUgB,KACtC46B,GAAO57B,UAAUgB,KAAO,SAAcipB,EAAImL,EAAYC,GAClD,OAAID,GAAcC,EACPwG,GAAan6B,KAAKlB,KAAMypB,EAAImL,EAAYC,GAC5CwG,GAAan6B,KAAKlB,KAAMypB,GAAItR,OAAM2H,GAAOA,GACpD,EACA,MAwBA,GAxBe,IAAIsb,GAAO,CACtBxC,KAAM,UAGN3T,MAAMqW,EAAAA,GAAAA,IAAY,eAClBhR,gBAAiB,SACjBoC,OAAQ,CACJ,CACI/Z,KAAM,IAENgb,SAAU,CAAE3sB,KAAM,WAAYggB,OAAQ,CAAEua,KAAM,WAElD,CACI5oB,KAAM,wBACN3R,KAAM,WACN2hB,OAAO,IAIfrC,cAAAA,CAAe/C,GACX,MAAM3R,EAASuT,GAAY5Z,UAAUgY,GAAOzR,QAAQ,SAAU,KAC9D,OAAOF,EAAU,IAAMA,EAAU,EACrC,gbCnCJ,wCCoBA,MCpBsG,GDoBtG,CACE5K,KAAM,UACNw6B,MAAO,CAAC,SACR7Y,MAAO,CACLxX,MAAO,CACLN,KAAME,QAER0wB,UAAW,CACT5wB,KAAME,OACN6X,QAAS,gBAEXrQ,KAAM,CACJ1H,KAAMgS,OACN+F,QAAS,sBEff,UAXgB,QACd,ICRW,WAAkB,IAAI8Y,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,gCAAgChX,MAAM,CAAC,eAAc4W,EAAIvwB,OAAQ,KAAY,aAAauwB,EAAIvwB,MAAM,KAAO,OAAOxI,GAAG,CAAC,MAAQ,SAASo5B,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BhX,MAAM,CAAC,KAAO4W,EAAID,UAAU,MAAQC,EAAInpB,KAAK,OAASmpB,EAAInpB,KAAK,QAAU,cAAc,CAACopB,EAAG,OAAO,CAAC7W,MAAM,CAAC,EAAI,g5BAAg5B,CAAE4W,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIjrB,GAAGirB,EAAIvwB,UAAUuwB,EAAI7iB,UACx5C,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,uEEShC,MAAMsjB,IAAaC,EAAAA,GAAAA,GAAU,QAAS,cAAe,CAAC,GACzCC,GAAqB,WAC9B,MAAMjvB,EAAQsM,GAAY,aAAc,CACpC/M,MAAOA,KAAA,CACHwvB,gBAEJ3qB,QAAS,CACL8qB,UAAY3vB,GAAW4uB,GAAS5uB,EAAMwvB,WAAWZ,IAAS,CAAC,GAE/DpsB,QAAS,CAILotB,QAAAA,CAAShB,EAAM3uB,EAAKvH,GACXrF,KAAKm8B,WAAWZ,IACjBxB,EAAAA,GAAAA,IAAQ/5B,KAAKm8B,WAAYZ,EAAM,CAAC,GAEpCxB,EAAAA,GAAAA,IAAQ/5B,KAAKm8B,WAAWZ,GAAO3uB,EAAKvH,EACxC,EAIA,YAAMm3B,CAAOjB,EAAM3uB,EAAKvH,GACpBo3B,GAAAA,EAAMC,KAAIpB,EAAAA,GAAAA,IAAY,4BAADj6B,OAA6Bk6B,EAAI,KAAAl6B,OAAIuL,IAAQ,CAC9DvH,WAEJvD,EAAAA,GAAAA,IAAK,2BAA4B,CAAEy5B,OAAM3uB,MAAKvH,SAClD,EAMAs3B,YAAAA,GAA+C,IAAlC/vB,EAAGtK,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,GAAAA,UAAA,GAAG,WAAYi5B,EAAIj5B,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,GAAAA,UAAA,GAAG,QAElCtC,KAAKw8B,OAAOjB,EAAM,eAAgB3uB,GAClC5M,KAAKw8B,OAAOjB,EAAM,oBAAqB,MAC3C,EAIAqB,sBAAAA,GAAuC,IAAhBrB,EAAIj5B,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,GAAAA,UAAA,GAAG,QAC1B,MACMu6B,EAA4C,SADnC78B,KAAKs8B,UAAUf,IAAS,CAAEuB,kBAAmB,QAChCA,kBAA8B,OAAS,MAEnE98B,KAAKw8B,OAAOjB,EAAM,oBAAqBsB,EAC3C,KAGFE,EAAkB3vB,KAAM9K,WAQ9B,OANKy6B,EAAgBC,gBACjBC,EAAAA,GAAAA,IAAU,4BAA4B,SAAAC,GAAgC,IAAtB,KAAE3B,EAAI,IAAE3uB,EAAG,MAAEvH,GAAO63B,EAChEH,EAAgBR,SAAShB,EAAM3uB,EAAKvH,EACxC,IACA03B,EAAgBC,cAAe,GAE5BD,CACX,EC9DA,IAAeI,WAAAA,MACbC,OAAO,SACPC,aACAC,QCHF,SAASC,GAAUC,EAAO/nB,EAAU7B,GAClC,IAcI6pB,EAdAP,EAAOtpB,GAAW,CAAC,EACnB8pB,EAAkBR,EAAKS,WACvBA,OAAiC,IAApBD,GAAqCA,EAClDE,EAAiBV,EAAKW,UACtBA,OAA+B,IAAnBD,GAAoCA,EAChDE,EAAoBZ,EAAKa,aACzBA,OAAqC,IAAtBD,OAA+Bt7B,EAAYs7B,EAS1DxL,GAAY,EAEZ0L,EAAW,EAEf,SAASC,IACHR,GACFS,aAAaT,EAEjB,CAkBA,SAASU,IACP,IAAK,IAAIC,EAAO97B,UAAUZ,OAAQ28B,EAAa,IAAIz8B,MAAMw8B,GAAOnP,EAAO,EAAGA,EAAOmP,EAAMnP,IACrFoP,EAAWpP,GAAQ3sB,UAAU2sB,GAG/B,IAAIhnB,EAAOjI,KACPs+B,EAAU14B,KAAKJ,MAAQw4B,EAO3B,SAASzhB,IACPyhB,EAAWp4B,KAAKJ,MAChBiQ,EAAShT,MAAMwF,EAAMo2B,EACvB,CAOA,SAASE,IACPd,OAAYj7B,CACd,CAjBI8vB,IAmBCuL,IAAaE,GAAiBN,GAMjClhB,IAGF0hB,SAEqBz7B,IAAjBu7B,GAA8BO,EAAUd,EACtCK,GAMFG,EAAWp4B,KAAKJ,MAEXm4B,IACHF,EAAYhzB,WAAWszB,EAAeQ,EAAQhiB,EAAMihB,KAOtDjhB,KAEsB,IAAfohB,IAYTF,EAAYhzB,WAAWszB,EAAeQ,EAAQhiB,OAAuB/Z,IAAjBu7B,EAA6BP,EAAQc,EAAUd,IAEvG,CAIA,OAFAW,EAAQK,OAxFR,SAAgB5qB,GACd,IACI6qB,GADQ7qB,GAAW,CAAC,GACO8qB,aAC3BA,OAAsC,IAAvBD,GAAwCA,EAE3DR,IACA3L,GAAaoM,CACf,EAmFOP,CACT,iBCzHA,MCpB2G,GDoB3G,CACEn9B,KAAM,eACNw6B,MAAO,CAAC,SACR7Y,MAAO,CACLxX,MAAO,CACLN,KAAME,QAER0wB,UAAW,CACT5wB,KAAME,OACN6X,QAAS,gBAEXrQ,KAAM,CACJ1H,KAAMgS,OACN+F,QAAS,MEff,IAXgB,QACd,ICRW,WAAkB,IAAI8Y,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,sCAAsChX,MAAM,CAAC,eAAc4W,EAAIvwB,OAAQ,KAAY,aAAauwB,EAAIvwB,MAAM,KAAO,OAAOxI,GAAG,CAAC,MAAQ,SAASo5B,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BhX,MAAM,CAAC,KAAO4W,EAAID,UAAU,MAAQC,EAAInpB,KAAK,OAASmpB,EAAInpB,KAAK,QAAU,cAAc,CAACopB,EAAG,OAAO,CAAC7W,MAAM,CAAC,EAAI,8HAA8H,CAAE4W,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIjrB,GAAGirB,EAAIvwB,UAAUuwB,EAAI7iB,UAC5oB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,wBEkBhC,MCpC2L,GDoC3L,CACA7X,KAAA,kBAEAwZ,WAAA,CACAmkB,SAAA,GACAC,oBAAA,KACAC,cAAAA,GAAAA,GAGA/5B,KAAAA,KACA,CACAg6B,qBAAA,EACAC,cAAA3C,EAAAA,GAAAA,GAAA,+BAIA4C,SAAA,CACAC,iBAAAA,GAAA,IAAAC,EAAAC,EAAAC,EACA,MAAAC,GAAAC,EAAAA,GAAAA,IAAA,QAAAJ,EAAA,KAAAH,oBAAA,IAAAG,OAAA,EAAAA,EAAAK,MAAA,MACAC,GAAAF,EAAAA,GAAAA,IAAA,QAAAH,EAAA,KAAAJ,oBAAA,IAAAI,OAAA,EAAAA,EAAAM,OAAA,MAGA,eAAAL,EAAA,KAAAL,oBAAA,IAAAK,OAAA,EAAAA,EAAAK,OAAA,EACA,KAAAC,EAAA,gCAAAL,kBAGA,KAAAK,EAAA,kCACAH,KAAAF,EACAI,MAAAD,GAEA,EACAG,mBAAAA,GACA,YAAAZ,aAAA/Z,SAIA,KAAA0a,EAAA,gCAAAX,cAHA,EAIA,GAGAa,WAAAA,GAKAC,YAAA,KAAAC,2BAAA,MAEA7C,EAAAA,GAAAA,IAAA,0BAAA6C,6BACA7C,EAAAA,GAAAA,IAAA,0BAAA6C,6BACA7C,EAAAA,GAAAA,IAAA,wBAAA6C,6BACA7C,EAAAA,GAAAA,IAAA,0BAAA6C,2BACA,EAEAC,OAAAA,GAAA,IAAAC,EAAAC,GAWA,QAAAD,EAAA,KAAAjB,oBAAA,IAAAiB,OAAA,EAAAA,EAAAP,OAAA,YAAAQ,EAAA,KAAAlB,oBAAA,IAAAkB,OAAA,EAAAA,EAAAC,OAAA,GACA,KAAAC,wBAEA,EAEAC,QAAA,CAEAC,4BLuDMC,GADkB,CAAC,EACCC,QAGjBhD,GK1DT,cAAAp9B,GACA,KAAAqgC,mBAAArgC,EACA,GLwDmC,CAC/B49B,cAA0B,UAHG,IAAjBuC,IAAkCA,OKpDlDR,2BAAAvC,GAAA,cAAAp9B,GACA,KAAAqgC,mBAAArgC,EACA,IAQA,wBAAAqgC,GAAA,IAAArgC,EAAAmC,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,GAAAA,UAAA,QACA,SAAAw8B,oBAAA,CAIA,KAAAA,qBAAA,EACA,QAAA2B,EAAAC,EAAAC,EAAAC,EACA,MAAA/3B,QAAA4zB,GAAAA,EAAA12B,KAAAu1B,EAAAA,GAAAA,IAAA,6BACA,GAAAzyB,SAAA,QAAA43B,EAAA53B,EAAA/D,YAAA,IAAA27B,IAAAA,EAAA37B,KACA,UAAA+G,MAAA,0BAKA,QAAA60B,EAAA,KAAA3B,oBAAA,IAAA2B,OAAA,EAAAA,EAAAR,MAAA,YAAAS,EAAA93B,EAAA/D,KAAAA,YAAA,IAAA67B,OAAA,EAAAA,EAAAT,OAAA,YAAAU,EAAA/3B,EAAA/D,KAAAA,YAAA,IAAA87B,OAAA,EAAAA,EAAAnB,OAAA,GACA,KAAAU,yBAGA,KAAApB,aAAAl2B,EAAA/D,KAAAA,IACA,OAAAkE,GACA63B,GAAA73B,MAAA,mCAAAA,UAEA7I,IACA2gC,EAAAA,GAAAA,IAAApB,EAAA,2CAEA,SACA,KAAAZ,qBAAA,CACA,CAxBA,CAyBA,EAEAqB,sBAAAA,IACAW,EAAAA,GAAAA,IAAA,KAAApB,EAAA,6EACA,EAEAA,EAAAqB,GAAAA,KLKA,IAEMT,yJOvJF1sB,GAAU,CAAC,EAEfA,GAAQotB,kBAAoB,KAC5BptB,GAAQqtB,cAAgB,KAElBrtB,GAAQstB,OAAS,UAAc,KAAM,QAE3CttB,GAAQutB,OAAS,KACjBvtB,GAAQwtB,mBAAqB,KAEhB,KAAI,KAASxtB,IAKJ,MAAW,KAAQytB,QAAS,KAAQA,OCP1D,UAXgB,QACd,ICTW,WAAkB,IAAI3F,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAG,OAAQD,EAAIqD,aAAcpD,EAAG,sBAAsB,CAACG,YAAY,uCAAuC9Q,MAAM,CAAE,sDAAuD0Q,EAAIqD,aAAaU,OAAS,GAAG3a,MAAM,CAAC,aAAa4W,EAAIgE,EAAE,QAAS,wBAAwB,QAAUhE,EAAIoD,oBAAoB,KAAOpD,EAAIuD,kBAAkB,MAAQvD,EAAIiE,oBAAoB,0CAA0C,IAAIh9B,GAAG,CAAC,MAAQ,SAASo5B,GAAyD,OAAjDA,EAAOuF,kBAAkBvF,EAAOzP,iBAAwBoP,EAAI2E,2BAA2B59B,MAAM,KAAMH,UAAU,IAAI,CAACq5B,EAAG,WAAW,CAAC7W,MAAM,CAAC,KAAO,OAAO,KAAO,IAAIyc,KAAK,SAAS7F,EAAIQ,GAAG,KAAMR,EAAIqD,aAAaU,OAAS,EAAG9D,EAAG,gBAAgB,CAAC7W,MAAM,CAAC,KAAO,QAAQ,MAAQ4W,EAAIqD,aAAa/Z,SAAW,GAAG,MAAQuQ,KAAKiM,IAAI9F,EAAIqD,aAAa/Z,SAAU,MAAMuc,KAAK,UAAU7F,EAAI7iB,MAAM,GAAG6iB,EAAI7iB,IACh2B,GACsB,IDUpB,EACA,KACA,WACA,MAI8B,QEnBhC,sCCoBA,MCpB4G,GDoB5G,CACE7X,KAAM,gBACNw6B,MAAO,CAAC,SACR7Y,MAAO,CACLxX,MAAO,CACLN,KAAME,QAER0wB,UAAW,CACT5wB,KAAME,OACN6X,QAAS,gBAEXrQ,KAAM,CACJ1H,KAAMgS,OACN+F,QAAS,MEff,IAXgB,QACd,ICRW,WAAkB,IAAI8Y,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,sCAAsChX,MAAM,CAAC,eAAc4W,EAAIvwB,OAAQ,KAAY,aAAauwB,EAAIvwB,MAAM,KAAO,OAAOxI,GAAG,CAAC,MAAQ,SAASo5B,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BhX,MAAM,CAAC,KAAO4W,EAAID,UAAU,MAAQC,EAAInpB,KAAK,OAASmpB,EAAInpB,KAAK,QAAU,cAAc,CAACopB,EAAG,OAAO,CAAC7W,MAAM,CAAC,EAAI,oMAAoM,CAAE4W,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIjrB,GAAGirB,EAAIvwB,UAAUuwB,EAAI7iB,UACltB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,wBEQhC,MC1BmL,GD0BnL,CACA7X,KAAA,UACA2hB,MAAA,CACA0O,GAAA,CACAxmB,KAAA42B,SACA/X,UAAA,IAGAqW,OAAAA,GACA,KAAA2B,IAAAC,YAAA,KAAAtQ,KACA,GElBA,IAXgB,QACd,ICRW,WAA+C,OAAOsK,EAA5B37B,KAAY47B,MAAMD,IAAa,MACtE,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,QEZ1BiG,IAAaxF,EAAAA,GAAAA,GAAU,QAAS,SAAU,CAC5CyF,aAAa,EACbC,qBAAqB,EACrBC,sBAAsB,EACtBC,oBAAoB,EACpBC,WAAW,IAEFC,GAAqB,WAC9B,MAsBMC,EAtBQzoB,GAAY,aAAc,CACpC/M,MAAOA,KAAA,CACHi1B,gBAEJzyB,QAAS,CAILotB,QAAAA,CAAS3vB,EAAKvH,GACV00B,EAAAA,GAAAA,IAAQ/5B,KAAK4hC,WAAYh1B,EAAKvH,EAClC,EAIA,YAAMm3B,CAAO5vB,EAAKvH,SACRo3B,GAAAA,EAAMC,KAAIpB,EAAAA,GAAAA,IAAY,6BAA+B1uB,GAAM,CAC7DvH,WAEJvD,EAAAA,GAAAA,IAAK,uBAAwB,CAAE8K,MAAKvH,SACxC,IAGgB+H,IAAM9K,WAQ9B,OANK6/B,EAAgBnF,gBACjBC,EAAAA,GAAAA,IAAU,wBAAwB,SAAAC,GAA0B,IAAhB,IAAEtwB,EAAG,MAAEvH,GAAO63B,EACtDiF,EAAgB5F,SAAS3vB,EAAKvH,EAClC,IACA88B,EAAgBnF,cAAe,GAE5BmF,CACX,ECgEA,IACAnhC,KAAA,WACAwZ,WAAA,CACA4nB,UAAA,GACAC,oBAAA,KACAC,qBAAA,KACAC,sBAAA,KACAC,aAAA,KACAC,QAAAA,IAGA9f,MAAA,CACAla,KAAA,CACAoC,KAAAwT,QACAuE,SAAA,IAIAhM,MAAAA,KAEA,CACAurB,gBAFAD,OAMAp9B,IAAAA,GAAA,IAAA49B,EAAAC,EAAAC,EACA,OAEAx+B,UAAA,QAAAs+B,EAAAv/B,OAAA0/B,WAAA,IAAAH,GAAA,QAAAA,EAAAA,EAAAI,aAAA,IAAAJ,GAAA,QAAAA,EAAAA,EAAAK,gBAAA,IAAAL,OAAA,EAAAA,EAAAt+B,WAAA,GAGA4+B,WAAAC,EAAAA,GAAAA,IAAA,aAAApnB,mBAAA,QAAA8mB,GAAAO,EAAAA,GAAAA,aAAA,IAAAP,OAAA,EAAAA,EAAAQ,MACAC,WAAA,iEACAC,gBAAA/H,EAAAA,GAAAA,IAAA,sDACAgI,iBAAA,EACAC,eAAA,QAAAX,GAAAxG,EAAAA,GAAAA,GAAA,iEAAAwG,GAAAA,EAEA,EAEA5D,SAAA,CACA4C,UAAAA,GACA,YAAAO,gBAAAP,UACA,GAGAhC,WAAAA,GAEA,KAAAx7B,SAAA8M,SAAAsyB,GAAAA,EAAA/6B,QACA,EAEAg7B,aAAAA,GAEA,KAAAr/B,SAAA8M,SAAAsyB,GAAAA,EAAAE,SACA,EAEAtD,QAAA,CACAuD,OAAAA,GACA,KAAA3H,MAAA,QACA,EAEA4H,SAAAA,CAAAh3B,EAAAvH,GACA,KAAA88B,gBAAA3F,OAAA5vB,EAAAvH,EACA,EAEA,iBAAAw+B,GACAr6B,SAAA+nB,cAAA,0BAAAuS,SAEA5gC,UAAAoM,iBAMApM,UAAAoM,UAAAC,UAAA,KAAAyzB,WACA,KAAAM,iBAAA,GACAS,EAAAA,GAAAA,IAAArE,EAAA,2CACAj1B,YAAA,KACA,KAAA64B,iBAAA,IACA,OATAxC,EAAAA,GAAAA,IAAApB,EAAA,sCAUA,EAEAA,EAAAqB,GAAAA,KC9LoL,sBCWhL,GAAU,CAAC,EAEf,GAAQC,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,OCP1D,UAXgB,QACd,IbTW,WAAkB,IAAI3F,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,sBAAsB,CAAC7W,MAAM,CAAC,KAAO4W,EAAIjzB,KAAK,mBAAkB,EAAK,KAAOizB,EAAIgE,EAAE,QAAS,mBAAmB/8B,GAAG,CAAC,cAAc+4B,EAAIiI,UAAU,CAAChI,EAAG,uBAAuB,CAAC7W,MAAM,CAAC,GAAK,WAAW,KAAO4W,EAAIgE,EAAE,QAAS,oBAAoB,CAAC/D,EAAG,wBAAwB,CAAC7W,MAAM,CAAC,QAAU4W,EAAIkG,WAAWG,sBAAsBp/B,GAAG,CAAC,iBAAiB,SAASo5B,GAAQ,OAAOL,EAAIkI,UAAU,uBAAwB7H,EAAO,IAAI,CAACL,EAAIQ,GAAG,WAAWR,EAAIjrB,GAAGirB,EAAIgE,EAAE,QAAS,yBAAyB,YAAYhE,EAAIQ,GAAG,KAAKP,EAAG,wBAAwB,CAAC7W,MAAM,CAAC,QAAU4W,EAAIkG,WAAWI,oBAAoBr/B,GAAG,CAAC,iBAAiB,SAASo5B,GAAQ,OAAOL,EAAIkI,UAAU,qBAAsB7H,EAAO,IAAI,CAACL,EAAIQ,GAAG,WAAWR,EAAIjrB,GAAGirB,EAAIgE,EAAE,QAAS,8BAA8B,YAAYhE,EAAIQ,GAAG,KAAKP,EAAG,wBAAwB,CAAC7W,MAAM,CAAC,QAAU4W,EAAIkG,WAAWC,aAAal/B,GAAG,CAAC,iBAAiB,SAASo5B,GAAQ,OAAOL,EAAIkI,UAAU,cAAe7H,EAAO,IAAI,CAACL,EAAIQ,GAAG,WAAWR,EAAIjrB,GAAGirB,EAAIgE,EAAE,QAAS,sBAAsB,YAAYhE,EAAIQ,GAAG,KAAKP,EAAG,wBAAwB,CAAC7W,MAAM,CAAC,QAAU4W,EAAIkG,WAAWE,qBAAqBn/B,GAAG,CAAC,iBAAiB,SAASo5B,GAAQ,OAAOL,EAAIkI,UAAU,sBAAuB7H,EAAO,IAAI,CAACL,EAAIQ,GAAG,WAAWR,EAAIjrB,GAAGirB,EAAIgE,EAAE,QAAS,wBAAwB,YAAYhE,EAAIQ,GAAG,KAAMR,EAAI6H,eAAgB5H,EAAG,wBAAwB,CAAC7W,MAAM,CAAC,QAAU4W,EAAIkG,WAAWK,WAAWt/B,GAAG,CAAC,iBAAiB,SAASo5B,GAAQ,OAAOL,EAAIkI,UAAU,YAAa7H,EAAO,IAAI,CAACL,EAAIQ,GAAG,WAAWR,EAAIjrB,GAAGirB,EAAIgE,EAAE,QAAS,yBAAyB,YAAYhE,EAAI7iB,MAAM,GAAG6iB,EAAIQ,GAAG,KAA8B,IAAxBR,EAAIt3B,SAAS1C,OAAci6B,EAAG,uBAAuB,CAAC7W,MAAM,CAAC,GAAK,gBAAgB,KAAO4W,EAAIgE,EAAE,QAAS,yBAAyB,CAAChE,EAAIsI,GAAItI,EAAIt3B,UAAU,SAASo/B,GAAS,MAAO,CAAC7H,EAAG,UAAU,CAAC/uB,IAAI42B,EAAQxiC,KAAK8jB,MAAM,CAAC,GAAK0e,EAAQnS,MAAM,KAAI,GAAGqK,EAAI7iB,KAAK6iB,EAAIQ,GAAG,KAAKP,EAAG,uBAAuB,CAAC7W,MAAM,CAAC,GAAK,SAAS,KAAO4W,EAAIgE,EAAE,QAAS,YAAY,CAAC/D,EAAG,eAAe,CAAC7W,MAAM,CAAC,GAAK,mBAAmB,MAAQ4W,EAAIgE,EAAE,QAAS,cAAc,wBAAuB,EAAK,QAAUhE,EAAI4H,gBAAgB,wBAAwB5H,EAAIgE,EAAE,QAAS,qBAAqB,MAAQhE,EAAIsH,UAAU,SAAW,WAAW,KAAO,OAAOrgC,GAAG,CAAC,MAAQ,SAASo5B,GAAQ,OAAOA,EAAO/3B,OAAO8/B,QAAQ,EAAE,wBAAwBpI,EAAImI,aAAaI,YAAYvI,EAAIwI,GAAG,CAAC,CAACt3B,IAAI,uBAAuB/M,GAAG,WAAW,MAAO,CAAC87B,EAAG,YAAY,CAAC7W,MAAM,CAAC,KAAO,MAAM,EAAE7d,OAAM,OAAUy0B,EAAIQ,GAAG,KAAKP,EAAG,KAAK,CAACA,EAAG,IAAI,CAACG,YAAY,eAAehX,MAAM,CAAC,KAAO4W,EAAI0H,WAAW,OAAS,SAAS,IAAM,wBAAwB,CAAC1H,EAAIQ,GAAG,aAAaR,EAAIjrB,GAAGirB,EAAIgE,EAAE,QAAS,qDAAqD,kBAAkBhE,EAAIQ,GAAG,KAAKP,EAAG,MAAMD,EAAIQ,GAAG,KAAKP,EAAG,KAAK,CAACA,EAAG,IAAI,CAACG,YAAY,eAAehX,MAAM,CAAC,KAAO4W,EAAI2H,iBAAiB,CAAC3H,EAAIQ,GAAG,aAAaR,EAAIjrB,GAAGirB,EAAIgE,EAAE,QAAS,0FAA0F,mBAAmB,IAAI,EAC/5F,GACsB,IaUpB,EACA,KACA,WACA,MAI8B,QCnB0N,GCU1P,CACI1+B,KAAM,aACNwZ,WAAY,CACR2pB,IAAG,GACHC,gBAAe,GACfC,gBAAe,KACfzF,oBAAmB,KACnB0F,iBAAgB,KAChBC,cAAaA,IAEjB3tB,MAAKA,KAEM,CACHmmB,gBAFoBV,OAK5Bv3B,KAAIA,KACO,CACH0/B,gBAAgB,IAGxBxF,SAAU,CACNyF,aAAAA,GAAgB,IAAAC,EACZ,OAAkB,QAAXA,EAAA,KAAKvhB,cAAM,IAAAuhB,GAAQ,QAARA,EAAXA,EAAa1jB,cAAM,IAAA0jB,OAAA,EAAnBA,EAAqBnJ,OAAQ,OACxC,EACAoJ,WAAAA,GACI,OAAO,KAAKC,MAAMC,MAAKtJ,GAAQA,EAAKl3B,KAAO,KAAKogC,eACpD,EACAG,KAAAA,GACI,OAAO,KAAKE,YAAYF,KAC5B,EACAG,WAAAA,GACI,OAAO,KAAKH,MAEP9yB,QAAOypB,IAASA,EAAKha,SAErB5E,MAAK,CAAC1S,EAAG2S,IACH3S,EAAE+6B,MAAQpoB,EAAEooB,OAE3B,EACAC,UAAAA,GACI,OAAO,KAAKL,MAEP9yB,QAAOypB,KAAUA,EAAKha,SAEtB9T,QAAO,CAACosB,EAAM0B,KACf1B,EAAK0B,EAAKha,QAAU,IAAKsY,EAAK0B,EAAKha,SAAW,GAAKga,GAEnD1B,EAAK0B,EAAKha,QAAQ5E,MAAK,CAAC1S,EAAG2S,IAChB3S,EAAE+6B,MAAQpoB,EAAEooB,QAEhBnL,IACR,CAAC,EACR,GAEJqL,MAAO,CACHP,WAAAA,CAAYpJ,EAAM4J,GACV5J,EAAKl3B,MAAO8gC,aAAO,EAAPA,EAAS9gC,MACrB,KAAKygC,YAAYM,UAAU7J,GAC3BsF,GAAOwE,MAAM,qBAAsB,CAAEhhC,GAAIk3B,EAAKl3B,GAAIk3B,SAClD,KAAK+J,SAAS/J,GAEtB,GAEJqE,WAAAA,GACQ,KAAK+E,cACL9D,GAAOwE,MAAM,6CAA8C,CAAE9J,KAAM,KAAKoJ,cACxE,KAAKW,SAAS,KAAKX,aAE3B,EACAvE,QAAS,CAOLmF,qBAAAA,CAAsBhK,GAAM,IAAAiK,EACxB,OAA+B,QAAxBA,EAAA,KAAKP,WAAW1J,EAAKl3B,WAAG,IAAAmhC,OAAA,EAAxBA,EAA0B9jC,QAAS,CAC9C,EACA4jC,QAAAA,CAAS/J,GAAM,IAAAkK,EAAAC,EAEL,QAAND,EAAAtiC,cAAM,IAAAsiC,GAAK,QAALA,EAANA,EAAQ5C,WAAG,IAAA4C,GAAO,QAAPA,EAAXA,EAAa3C,aAAK,IAAA2C,GAAS,QAATA,EAAlBA,EAAoBE,eAAO,IAAAF,GAAO,QAAPC,EAA3BD,EAA6B/B,aAAK,IAAAgC,GAAlCA,EAAAxkC,KAAAukC,GACA,KAAKX,YAAYM,UAAU7J,IAC3Bz5B,EAAAA,GAAAA,IAAK,2BAA4By5B,EACrC,EAMAqK,cAAAA,CAAerK,GAEX,MAAMsK,EAAa,KAAKA,WAAWtK,GAEnCA,EAAKuK,UAAYD,EACjB,KAAK9I,gBAAgBP,OAAOjB,EAAKl3B,GAAI,YAAawhC,EACtD,EAMAA,UAAAA,CAAWtK,GAAM,IAAAwK,EACb,MAAoE,kBAAf,QAA9CA,EAAO,KAAKhJ,gBAAgBT,UAAUf,EAAKl3B,WAAG,IAAA0hC,OAAA,EAAvCA,EAAyCD,WACI,IAArD,KAAK/I,gBAAgBT,UAAUf,EAAKl3B,IAAIyhC,UACtB,IAAlBvK,EAAKuK,QACf,EAKAE,oBAAAA,CAAqBzK,GACjB,GAAIA,EAAKva,OAAQ,CACb,MAAM,IAAEilB,GAAQ1K,EAAKva,OACrB,MAAO,CAAEhgB,KAAM,WAAYggB,OAAQua,EAAKva,OAAQzD,MAAO,CAAE0oB,OAC7D,CACA,MAAO,CAAEjlC,KAAM,WAAYggB,OAAQ,CAAEua,KAAMA,EAAKl3B,IACpD,EAIA6hC,YAAAA,GACI,KAAK1B,gBAAiB,CAC1B,EAIA2B,eAAAA,GACI,KAAK3B,gBAAiB,CAC1B,EACA9E,EAAGqB,GAAAA,qBClIP,GAAU,CAAC,EAEf,GAAQC,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,OCP1D,UAXgB,QACd,IFTW,WAAkB,IAAI3F,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,kBAAkB,CAAC7W,MAAM,CAAC,2BAA2B,GAAG,aAAa4W,EAAIgE,EAAE,QAAS,UAAUuE,YAAYvI,EAAIwI,GAAG,CAAC,CAACt3B,IAAI,OAAO/M,GAAG,WAAW,OAAO67B,EAAIsI,GAAItI,EAAIqJ,aAAa,SAASxJ,GAAM,OAAOI,EAAG,sBAAsB,CAAC/uB,IAAI2uB,EAAKl3B,GAAGygB,MAAM,CAAC,kBAAiB,EAAK,gCAAgCyW,EAAKl3B,GAAG,MAAQq3B,EAAI6J,sBAAsBhK,GAAM,KAAOA,EAAK6K,UAAU,KAAO7K,EAAKv6B,KAAK,KAAO06B,EAAImK,WAAWtK,GAAM,OAASA,EAAK8K,OAAO,GAAK3K,EAAIsK,qBAAqBzK,IAAO54B,GAAG,CAAC,cAAc,SAASo5B,GAAQ,OAAOL,EAAIkK,eAAerK,EAAK,IAAI,CAAEA,EAAKtsB,KAAM0sB,EAAG,mBAAmB,CAAC7W,MAAM,CAAC,KAAO,OAAO,IAAMyW,EAAKtsB,MAAMsyB,KAAK,SAAS7F,EAAI7iB,KAAK6iB,EAAIQ,GAAG,KAAKR,EAAIsI,GAAItI,EAAIuJ,WAAW1J,EAAKl3B,KAAK,SAASkoB,GAAO,OAAOoP,EAAG,sBAAsB,CAAC/uB,IAAI2f,EAAMloB,GAAGygB,MAAM,CAAC,gCAAgCyH,EAAMloB,GAAG,cAAa,EAAK,KAAOkoB,EAAM6Z,UAAU,KAAO7Z,EAAMvrB,KAAK,GAAK06B,EAAIsK,qBAAqBzZ,KAAS,CAAEA,EAAMtd,KAAM0sB,EAAG,mBAAmB,CAAC7W,MAAM,CAAC,KAAO,OAAO,IAAMyH,EAAMtd,MAAMsyB,KAAK,SAAS7F,EAAI7iB,MAAM,EAAE,KAAI,EAAE,GAAE,EAAE5R,OAAM,GAAM,CAAC2F,IAAI,SAAS/M,GAAG,WAAW,MAAO,CAAC87B,EAAG,KAAK,CAACG,YAAY,kCAAkC,CAACH,EAAG,mBAAmBD,EAAIQ,GAAG,KAAKP,EAAG,sBAAsB,CAAC7W,MAAM,CAAC,aAAa4W,EAAIgE,EAAE,QAAS,+BAA+B,KAAOhE,EAAIgE,EAAE,QAAS,kBAAkB,2CAA2C,IAAI/8B,GAAG,CAAC,MAAQ,SAASo5B,GAAyD,OAAjDA,EAAOzP,iBAAiByP,EAAOuF,kBAAyB5F,EAAIwK,aAAazjC,MAAM,KAAMH,UAAU,IAAI,CAACq5B,EAAG,MAAM,CAAC7W,MAAM,CAAC,KAAO,OAAO,KAAO,IAAIyc,KAAK,UAAU,IAAI,GAAG,EAAEt6B,OAAM,MAAS,CAACy0B,EAAIQ,GAAG,KAAKR,EAAIQ,GAAG,KAAKP,EAAG,gBAAgB,CAAC7W,MAAM,CAAC,KAAO4W,EAAI8I,eAAe,oCAAoC,IAAI7hC,GAAG,CAAC,MAAQ+4B,EAAIyK,oBAAoB,EACrtD,GACsB,IEUpB,EACA,KACA,WACA,MAI8B,QCnBhC,4BCUIG,GAAiB,SAAwBC,EAASC,GACpD,OAAID,EAAUC,GACJ,EAEND,EAAUC,EACL,EAEF,CACT,EAEIC,GAAiB,SAAwBC,EAASC,GACpD,IAAI/6B,EAAS86B,EAAQE,cAAcD,GACnC,OAAO/6B,EAASA,EAAS2pB,KAAKsR,IAAIj7B,GAAU,CAC9C,EAEIk7B,GAAa,8FACbC,GAAqC,aACrCC,GAAiB,OACjBC,GAAkB,kDAClBC,GAAU,6GACVC,GAAkB,qBAElBC,GAAwB,eAExBC,GAAgB,SAAuBX,EAASC,GAClD,OAAID,EAAUC,GACJ,EAEND,EAAUC,EACL,EAEF,CACT,EAoFIW,GAAsB,SAA6BC,GACrD,OAAOA,EAAMz7B,QAAQk7B,GAAgB,KAAKl7B,QAAQi7B,GAAoC,GACxF,EAEIS,GAAc,SAAqBniC,GACrC,GAAqB,IAAjBA,EAAM3D,OAAc,CACtB,IAAI+lC,EAAe5qB,OAAOxX,GAC1B,IAAKwX,OAAOK,MAAMuqB,GAChB,OAAOA,CAEX,CAEF,EAEIC,GAAwB,SAA+BH,EAAO9oB,EAAOkpB,GACvE,GAAIV,GAAgBn9B,KAAKy9B,MAIlBJ,GAAgBr9B,KAAKy9B,IAAoB,IAAV9oB,GAAqC,MAAtBkpB,EAAOlpB,EAAQ,IAChE,OAAO+oB,GAAYD,IAAU,CAInC,EAEIK,GAAiB,SAAwBL,EAAO9oB,EAAOkpB,GACzD,MAAO,CACLF,aAAcC,GAAsBH,EAAO9oB,EAAOkpB,GAClDE,iBAAkBP,GAAoBC,GAE1C,EAMIO,GAAkB,SAAyBziC,GAC7C,IAAI0iC,EALa,SAAsB1iC,GACvC,OAAOA,EAAMyG,QAAQg7B,GAAY,UAAUh7B,QAAQ,MAAO,IAAIA,QAAQ,MAAO,IAAI2O,MAAM,KACzF,CAGmButB,CAAa3iC,GAAO0M,IAAI61B,IACzC,OAAOG,CACT,EAEIE,GAAa,SAAoB5iC,GACnC,MAAwB,mBAAVA,CAChB,EAEI,GAAQ,SAAeA,GACzB,OAAOwX,OAAOK,MAAM7X,IAAUA,aAAiBwX,QAAUA,OAAOK,MAAM7X,EAAM6iC,UAC9E,EAEIC,GAAS,SAAgB9iC,GAC3B,OAAiB,OAAVA,CACT,EAEI8rB,GAAW,SAAkB9rB,GAC/B,QAAiB,OAAVA,GAAmC,iBAAVA,GAAuBzD,MAAM4L,QAAQnI,IAAYA,aAAiBwX,QAAaxX,aAAiB0F,QAAa1F,aAAiBgZ,SAAchZ,aAAiBO,KAC/L,EAEIwiC,GAAW,SAAkB/iC,GAC/B,MAAwB,iBAAVA,CAChB,EAEIgjC,GAAc,SAAqBhjC,GACrC,YAAiB7C,IAAV6C,CACT,EAwCIijC,GAAuB,SAA8BjjC,GACvD,GAAqB,iBAAVA,GAAsBA,aAAiB0F,SAA4B,iBAAV1F,GAAsBA,aAAiBwX,UAAY,GAAMxX,IAA2B,kBAAVA,GAAuBA,aAAiBgZ,SAAWhZ,aAAiBO,KAAM,CACtN,IAAI2iC,EAlBQ,SAAmBljC,GACjC,MAAqB,kBAAVA,GAAuBA,aAAiBgZ,QAC1CxB,OAAOxX,GAAOqC,WAEF,iBAAVrC,GAAsBA,aAAiBwX,OACzCxX,EAAMqC,WAEXrC,aAAiBO,KACZP,EAAMmjC,UAAU9gC,WAEJ,iBAAVrC,GAAsBA,aAAiB0F,OACzC1F,EAAMmH,cAAcV,QAAQi7B,GAAoC,IAElE,EACT,CAIsB,CAAU1hC,GACxBoiC,EA3BQ,SAAmBpiC,GACjC,IAAIoiC,EAAeD,GAAYniC,GAC/B,YAAqB7C,IAAjBilC,EACKA,EAjBK,SAAmBpiC,GACjC,IACE,IAAIojC,EAAa7iC,KAAKZ,MAAMK,GAC5B,OAAKwX,OAAOK,MAAMurB,IACZvB,GAAQp9B,KAAKzE,GACRojC,OAGX,CACF,CAAE,MAAOC,GACP,MACF,CACF,CAOSC,CAAUtjC,EACnB,CAqBuBujC,CAAUL,GAE7B,MAAO,CACLd,aAAcA,EACdE,OAHWG,GAAgBL,EAAe,GAAKA,EAAec,GAI9DljC,MAAOA,EAEX,CACA,MAAO,CACLmI,QAAS5L,MAAM4L,QAAQnI,GACvB4iC,WAAYA,GAAW5iC,GACvB6X,MAAO,GAAM7X,GACb8iC,OAAQA,GAAO9iC,GACf8rB,SAAUA,GAAS9rB,GACnB+iC,SAAUA,GAAS/iC,GACnBgjC,YAAaA,GAAYhjC,GACzBA,MAAOA,EAEX,EA2DIwjC,GAAqB,SAA4BC,GACnD,MAA0B,mBAAfA,EAEFA,EAEF,SAAUzjC,GACf,GAAIzD,MAAM4L,QAAQnI,GAAQ,CACxB,IAAIoZ,EAAQ5B,OAAOisB,GACnB,GAAIjsB,OAAOksB,UAAUtqB,GACnB,OAAOpZ,EAAMoZ,EAEjB,MAAO,GAAIpZ,GAA0B,iBAAVA,EAAoB,CAC7C,IAAIuG,EAASrM,OAAOkc,yBAAyBpW,EAAOyjC,GACpD,OAAiB,MAAVl9B,OAAiB,EAASA,EAAOvG,KAC1C,CACA,OAAOA,CACT,CACF,EAmEA,SAAS2jC,GAAQC,EAAYC,EAAaC,GACxC,IAAKF,IAAernC,MAAM4L,QAAQy7B,GAChC,MAAO,GAET,IAAIG,EApCe,SAAwBF,GAC3C,IAAKA,EACH,MAAO,GAET,IAAIG,EAAkBznC,MAAM4L,QAAQ07B,GAA+B,GAAG7nC,OAAO6nC,GAA1B,CAACA,GACpD,OAAIG,EAAeC,MAAK,SAAUR,GAChC,MAA6B,iBAAfA,GAAiD,iBAAfA,GAAiD,mBAAfA,CACpF,IACS,GAEFO,CACT,CAyB6BE,CAAeL,GACtCM,EAxBU,SAAmBL,GACjC,IAAKA,EACH,MAAO,GAET,IAAIM,EAAa7nC,MAAM4L,QAAQ27B,GAAqB,GAAG9nC,OAAO8nC,GAArB,CAACA,GAC1C,OAAIM,EAAUH,MAAK,SAAUtE,GAC3B,MAAiB,QAAVA,GAA6B,SAAVA,GAAqC,mBAAVA,CACvD,IACS,GAEFyE,CACT,CAawBC,CAAUP,GAChC,OA/DgB,SAAqBF,EAAYC,EAAaC,GAC9D,IAAIQ,EAAgBT,EAAYxnC,OAASwnC,EAAYn3B,IAAI82B,IAAsB,CAAC,SAAUxjC,GACxF,OAAOA,CACT,GAGIukC,EAAmBX,EAAWl3B,KAAI,SAAU83B,EAASprB,GAIvD,MAAO,CACLA,MAAOA,EACPxN,OALW04B,EAAc53B,KAAI,SAAU+2B,GACvC,OAAqCA,EAATe,EAC9B,IAAG93B,IAAIu2B,IAKT,IAMA,OAHAsB,EAAiBjtB,MAAK,SAAUmtB,EAASC,GACvC,OArEkB,SAAyBD,EAASC,EAASZ,GAO/D,IANA,IAAIa,EAASF,EAAQrrB,MACnBwrB,EAAUH,EAAQ74B,OAChBi5B,EAASH,EAAQtrB,MACnB0rB,EAAUJ,EAAQ94B,OAChBvP,EAASuoC,EAAQvoC,OACjB0oC,EAAejB,EAAOznC,OACjBF,EAAI,EAAGA,EAAIE,EAAQF,IAAK,CAC/B,IAAIwjC,EAAQxjC,EAAI4oC,EAAejB,EAAO3nC,GAAK,KAC3C,GAAIwjC,GAA0B,mBAAVA,EAAsB,CACxC,IAAIp5B,EAASo5B,EAAMiF,EAAQzoC,GAAG6D,MAAO8kC,EAAQ3oC,GAAG6D,OAChD,GAAIuG,EACF,OAAOA,CAEX,KAAO,CACL,IAAIy+B,GA5LiCC,EA4LTL,EAAQzoC,GA5LS+oC,EA4LLJ,EAAQ3oC,GA3LhD8oC,EAAOjlC,QAAUklC,EAAOllC,MACnB,OAEmB7C,IAAxB8nC,EAAO7C,mBAAsDjlC,IAAxB+nC,EAAO9C,aACvCnB,GAAegE,EAAO7C,aAAc8C,EAAO9C,cAEhD6C,EAAO3C,QAAU4C,EAAO5C,OA5EV,SAAuB6C,EAASC,GAIlD,IAHA,IAAIC,EAAUF,EAAQ9oC,OAClBipC,EAAUF,EAAQ/oC,OAClB6Q,EAAOgjB,KAAKiM,IAAIkJ,EAASC,GACpBnpC,EAAI,EAAGA,EAAI+Q,EAAM/Q,IAAK,CAC7B,IAAIopC,EAASJ,EAAQhpC,GACjBqpC,EAASJ,EAAQjpC,GACrB,GAAIopC,EAAO/C,mBAAqBgD,EAAOhD,iBAAkB,CACvD,GAAgC,KAA5B+C,EAAO/C,mBAAyD,KAA5BgD,EAAOhD,kBAE7C,MAAmC,KAA5B+C,EAAO/C,kBAA2B,EAAI,EAE/C,QAA4BrlC,IAAxBooC,EAAOnD,mBAAsDjlC,IAAxBqoC,EAAOpD,aAA4B,CAE1E,IAAI77B,EAAS06B,GAAesE,EAAOnD,aAAcoD,EAAOpD,cACxD,OAAe,IAAX77B,EAOKy7B,GAAcuD,EAAO/C,iBAAkBgD,EAAOhD,kBAEhDj8B,CACT,CAAO,YAA4BpJ,IAAxBooC,EAAOnD,mBAAsDjlC,IAAxBqoC,EAAOpD,kBAEtBjlC,IAAxBooC,EAAOnD,cAA8B,EAAI,EACvCL,GAAsBt9B,KAAK8gC,EAAO/C,iBAAmBgD,EAAOhD,kBAE9DpB,GAAemE,EAAO/C,iBAAkBgD,EAAOhD,kBAG/CR,GAAcuD,EAAO/C,iBAAkBgD,EAAOhD,iBAEzD,CACF,CAEA,OAAI6C,EAAUn4B,GAAQo4B,EAAUp4B,EACvBm4B,GAAWn4B,GAAQ,EAAI,EAEzB,CACT,CAmCWu4B,CAAcR,EAAO3C,OAAQ4C,EAAO5C,QAjCvB,SAA2B2C,EAAQC,GACzD,OAAKD,EAAO3C,QAA0B4C,EAAO5C,OAAxB4C,EAAO5C,QAClB2C,EAAO3C,QAAc,EAAL,GAEtB2C,EAAOptB,OAASqtB,EAAOrtB,MAAQqtB,EAAOrtB,OACjCotB,EAAOptB,OAAS,EAAI,GAEzBotB,EAAOlC,UAAYmC,EAAOnC,SAAWmC,EAAOnC,UACvCkC,EAAOlC,UAAY,EAAI,GAE5BkC,EAAOnZ,UAAYoZ,EAAOpZ,SAAWoZ,EAAOpZ,UACvCmZ,EAAOnZ,UAAY,EAAI,GAE5BmZ,EAAO98B,SAAW+8B,EAAO/8B,QAAU+8B,EAAO/8B,SACrC88B,EAAO98B,SAAW,EAAI,GAE3B88B,EAAOrC,YAAcsC,EAAOtC,WAAasC,EAAOtC,YAC3CqC,EAAOrC,YAAc,EAAI,GAE9BqC,EAAOnC,QAAUoC,EAAOpC,OAASoC,EAAOpC,QACnCmC,EAAOnC,QAAU,EAAI,EAEvB,CACT,CAYS4C,CAAkBT,EAAQC,IAmL7B,GAAIF,EACF,OAAOA,GAAqB,SAAVrF,GAAoB,EAAI,EAE9C,CACF,CAjMkB,IAAuBsF,EAAQC,EAkMjD,OAAOP,EAASE,CAClB,CA+CWc,CAAgBlB,EAASC,EAASZ,EAC3C,IACOS,EAAiB73B,KAAI,SAAU83B,GACpC,OA7BoB,SAA2BZ,EAAYxqB,GAC7D,OAAOwqB,EAAWxqB,EACpB,CA2BWwsB,CAAkBhC,EAAYY,EAAQprB,MAC/C,GACF,CAwCSysB,CAAYjC,EAAYG,EAAsBI,EACvD,qDC7XA,MCpB2H,GDoB3H,CACExoC,KAAM,+BACNw6B,MAAO,CAAC,SACR7Y,MAAO,CACLxX,MAAO,CACLN,KAAME,QAER0wB,UAAW,CACT5wB,KAAME,OACN6X,QAAS,gBAEXrQ,KAAM,CACJ1H,KAAMgS,OACN+F,QAAS,MEff,IAXgB,QACd,ICRW,WAAkB,IAAI8Y,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,wDAAwDhX,MAAM,CAAC,eAAc4W,EAAIvwB,OAAQ,KAAY,aAAauwB,EAAIvwB,MAAM,KAAO,OAAOxI,GAAG,CAAC,MAAQ,SAASo5B,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BhX,MAAM,CAAC,KAAO4W,EAAID,UAAU,MAAQC,EAAInpB,KAAK,OAASmpB,EAAInpB,KAAK,QAAU,cAAc,CAACopB,EAAG,OAAO,CAAC7W,MAAM,CAAC,EAAI,4FAA4F,CAAE4W,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIjrB,GAAGirB,EAAIvwB,UAAUuwB,EAAI7iB,UAC5nB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,uEEEhC,MCpB8G,GDoB9G,CACE7X,KAAM,kBACNw6B,MAAO,CAAC,SACR7Y,MAAO,CACLxX,MAAO,CACLN,KAAME,QAER0wB,UAAW,CACT5wB,KAAME,OACN6X,QAAS,gBAEXrQ,KAAM,CACJ1H,KAAMgS,OACN+F,QAAS,MEff,IAXgB,QACd,ICRW,WAAkB,IAAI8Y,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,yCAAyChX,MAAM,CAAC,eAAc4W,EAAIvwB,OAAQ,KAAY,aAAauwB,EAAIvwB,MAAM,KAAO,OAAOxI,GAAG,CAAC,MAAQ,SAASo5B,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BhX,MAAM,CAAC,KAAO4W,EAAID,UAAU,MAAQC,EAAInpB,KAAK,OAASmpB,EAAInpB,KAAK,QAAU,cAAc,CAACopB,EAAG,OAAO,CAAC7W,MAAM,CAAC,EAAI,sKAAsK,CAAE4W,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIjrB,GAAGirB,EAAIvwB,UAAUuwB,EAAI7iB,UACvrB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,QElB2E,GCoB3G,CACE7X,KAAM,eACNw6B,MAAO,CAAC,SACR7Y,MAAO,CACLxX,MAAO,CACLN,KAAME,QAER0wB,UAAW,CACT5wB,KAAME,OACN6X,QAAS,gBAEXrQ,KAAM,CACJ1H,KAAMgS,OACN+F,QAAS,MCff,IAXgB,QACd,ICRW,WAAkB,IAAI8Y,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,sCAAsChX,MAAM,CAAC,eAAc4W,EAAIvwB,OAAQ,KAAY,aAAauwB,EAAIvwB,MAAM,KAAO,OAAOxI,GAAG,CAAC,MAAQ,SAASo5B,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BhX,MAAM,CAAC,KAAO4W,EAAID,UAAU,MAAQC,EAAInpB,KAAK,OAASmpB,EAAInpB,KAAK,QAAU,cAAc,CAACopB,EAAG,OAAO,CAAC7W,MAAM,CAAC,EAAI,0DAA0D,CAAE4W,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIjrB,GAAGirB,EAAIvwB,UAAUuwB,EAAI7iB,UACxkB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,wBEOzB,MACMzJ,GAAS,IAAI+7B,GAAAA,GAAW,CACjC9mC,GAF0B,UAG1B+mC,YAAaA,KAAM1L,EAAAA,GAAAA,IAAE,QAAS,gBAC9B2L,cAAeA,IAAMC,GAErBC,QAAUC,IAAU,IAAA/F,EAAAvI,EAAAuO,EAEhB,OAAqB,IAAjBD,EAAM9pC,UAGL8pC,EAAM,MAIA,QAAP/F,EAACtiC,cAAM,IAAAsiC,GAAK,QAALA,EAANA,EAAQ5C,WAAG,IAAA4C,GAAO,QAAPA,EAAXA,EAAa3C,aAAK,IAAA2C,IAAlBA,EAAoBE,UAG+D,QAAxFzI,GAAqB,QAAbuO,EAAAD,EAAM,GAAGE,YAAI,IAAAD,OAAA,EAAbA,EAAe14B,WAAW,aAAcy4B,EAAM,GAAGG,cAAgBC,GAAAA,GAAWC,YAAI,IAAA3O,GAAAA,CAAU,EAEtG,UAAM3gB,CAAKlT,EAAMkyB,EAAM0K,GACnB,IAKI,aAHM9iC,OAAO0/B,IAAIC,MAAM6C,QAAQl9B,KAAKY,EAAKsJ,MAEzCxP,OAAO2oC,IAAIhJ,MAAM1H,OAAO2Q,UAAU,KAAM,CAAExQ,KAAMA,EAAKl3B,GAAI2nC,OAAQ3iC,EAAK2iC,QAAU,CAAE/F,QAAO,GAClF,IACX,CACA,MAAOj9B,GAEH,OADA63B,GAAO73B,MAAM,8BAA+B,CAAEA,WACvC,CACX,CACJ,EACAg8B,OAAQ,KCtDCiH,GAAgB,WACzB,MAwDMC,EAxDQxyB,GAAY,QAAS,CAC/B/M,MAAOA,KAAA,CACHuD,MAAO,CAAC,EACRi8B,MAAO,CAAC,IAEZ36B,QAAS,CAIL46B,QAAUz/B,GAAWtI,GAAOsI,EAAMuD,MAAM7L,GAKxCgoC,SAAW1/B,GAAW2/B,GAAQA,EACzBv6B,KAAI1N,GAAMsI,EAAMuD,MAAM7L,KACtByN,OAAOuM,SAIZkuB,QAAU5/B,GAAW6/B,GAAY7/B,EAAMw/B,MAAMK,IAEjDr9B,QAAS,CACLs9B,WAAAA,CAAYjB,GAER,MAAMt7B,EAAQs7B,EAAM/9B,QAAO,CAACi/B,EAAKrjC,IACxBA,EAAK2iC,QAIVU,EAAIrjC,EAAK2iC,QAAU3iC,EACZqjC,IAJH7L,GAAO73B,MAAM,6CAA8CK,GACpDqjC,IAIZ,CAAC,GACJ3S,EAAAA,GAAAA,IAAQ/5B,KAAM,QAAS,IAAKA,KAAKkQ,SAAUA,GAC/C,EACAy8B,WAAAA,CAAYnB,GACRA,EAAMt6B,SAAQ7H,IACNA,EAAK2iC,QACLjS,EAAAA,GAAIthB,OAAOzY,KAAKkQ,MAAO7G,EAAK2iC,OAChC,GAER,EACAY,OAAAA,CAAO1P,GAAoB,IAAnB,QAAEsP,EAAO,KAAEd,GAAMxO,EACrBnD,EAAAA,GAAAA,IAAQ/5B,KAAKmsC,MAAOK,EAASd,EACjC,EACAmB,aAAAA,CAAcxjC,GACVrJ,KAAK2sC,YAAY,CAACtjC,GACtB,EACAyjC,aAAAA,CAAczjC,GACVrJ,KAAKysC,YAAY,CAACpjC,GACtB,EACA0jC,aAAAA,CAAc1jC,GACVrJ,KAAKysC,YAAY,CAACpjC,GACtB,IAGU+D,IAAM9K,WAQxB,OANK4pC,EAAUlP,gBACXC,EAAAA,GAAAA,IAAU,qBAAsBiP,EAAUY,gBAC1C7P,EAAAA,GAAAA,IAAU,qBAAsBiP,EAAUW,gBAC1C5P,EAAAA,GAAAA,IAAU,qBAAsBiP,EAAUa,eAC1Cb,EAAUlP,cAAe,GAEtBkP,CACX,EChEac,GAAgB,WACzB,MAAM98B,EAAQ+7B,KAoERgB,EAnEQvzB,GAAY,QAAS,CAC/B/M,MAAOA,KAAA,CACHugC,MAAO,CAAC,IAEZ17B,QAAS,CACL27B,QAAUxgC,GACC,CAAC6/B,EAAS75B,KACb,GAAKhG,EAAMugC,MAAMV,GAGjB,OAAO7/B,EAAMugC,MAAMV,GAAS75B,EAAK,GAI7CxD,QAAS,CACLi+B,OAAAA,CAAQx8B,GAEC5Q,KAAKktC,MAAMt8B,EAAQ47B,UACpBzS,EAAAA,GAAAA,IAAQ/5B,KAAKktC,MAAOt8B,EAAQ47B,QAAS,CAAC,GAG1CzS,EAAAA,GAAAA,IAAQ/5B,KAAKktC,MAAMt8B,EAAQ47B,SAAU57B,EAAQ+B,KAAM/B,EAAQo7B,OAC/D,EACAc,aAAAA,CAAczjC,GAAM,IAAAgkC,EAChB,MAAMb,GAAyB,QAAfa,GAAAC,EAAAA,GAAAA,aAAe,IAAAD,GAAQ,QAARA,EAAfA,EAAiBE,cAAM,IAAAF,OAAA,EAAvBA,EAAyBhpC,KAAM,QAC/C,GAAKgF,EAAK2iC,OAAV,CAcA,GATI3iC,EAAKwB,OAAS2iC,GAAAA,GAASC,QACvBztC,KAAKotC,QAAQ,CACTZ,UACA75B,KAAMtJ,EAAKsJ,KACXq5B,OAAQ3iC,EAAK2iC,SAKA,MAAjB3iC,EAAKqkC,QAAiB,CACtB,MAAMhC,EAAOx7B,EAAMq8B,QAAQC,GAK3B,OAJKd,EAAKiC,WACN5T,EAAAA,GAAAA,IAAQ2R,EAAM,YAAa,SAE/BA,EAAKiC,UAAUntC,KAAK6I,EAAK2iC,OAE7B,CAGA,GAAIhsC,KAAKktC,MAAMV,GAASnjC,EAAKqkC,SAAU,CACnC,MAAME,EAAW5tC,KAAKktC,MAAMV,GAASnjC,EAAKqkC,SACpCG,EAAe39B,EAAMk8B,QAAQwB,GAEnC,OADA/M,GAAOwE,MAAM,yCAA0C,CAAEwI,eAAcxkC,SAClEwkC,GAIAA,EAAaF,WACd5T,EAAAA,GAAAA,IAAQ8T,EAAc,YAAa,SAEvCA,EAAaF,UAAUntC,KAAK6I,EAAK2iC,cAN7BnL,GAAO73B,MAAM,0BAA2B,CAAE4kC,YAQlD,CACA/M,GAAOwE,MAAM,wDAAyD,CAAEh8B,QAnCxE,MAFIw3B,GAAO73B,MAAM,qBAAsB,CAAEK,QAsC7C,IAGW+D,IAAM9K,WASzB,OAPK2qC,EAAWjQ,gBAEZC,EAAAA,GAAAA,IAAU,qBAAsBgQ,EAAWH,eAG3CG,EAAWjQ,cAAe,GAEvBiQ,CACX,EC7Daa,GAAoBp0B,GAAY,YAAa,CACtD/M,MAAOA,KAAA,CACHohC,SAAU,GACVC,cAAe,GACfC,kBAAmB,OAEvB9+B,QAAS,CAIL0D,GAAAA,GAAoB,IAAhBq7B,EAAS5rC,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,GAAAA,UAAA,GAAG,GACZy3B,EAAAA,GAAAA,IAAQ/5B,KAAM,WAAY,IAAI,IAAIoW,IAAI83B,IAC1C,EAIAC,YAAAA,GAAuC,IAA1BF,EAAiB3rC,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,GAAAA,UAAA,GAAG,KAE7By3B,EAAAA,GAAAA,IAAQ/5B,KAAM,gBAAiBiuC,EAAoBjuC,KAAK+tC,SAAW,IACnEhU,EAAAA,GAAAA,IAAQ/5B,KAAM,oBAAqBiuC,EACvC,EAIAG,KAAAA,GACIrU,EAAAA,GAAAA,IAAQ/5B,KAAM,WAAY,IAC1B+5B,EAAAA,GAAAA,IAAQ/5B,KAAM,gBAAiB,IAC/B+5B,EAAAA,GAAAA,IAAQ/5B,KAAM,oBAAqB,KACvC,KClDR,IAAIquC,uDCWG,MAAMC,WAAkBC,KAG3B1qC,WAAAA,CAAY7C,GAAqB,IAAfwtC,EAAQlsC,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,GAAAA,UAAA,GAAG,aACzBmsC,MAAM,GAAIztC,EAAM,CAAE6J,KAAM,2BAH5B,2ZAII7K,KAAK0uC,UAAYF,CACrB,CACA,YAAIA,CAASA,GACTxuC,KAAK0uC,UAAYF,CACrB,CACA,YAAIA,GACA,OAAOxuC,KAAK0uC,SAChB,CACA,QAAIn8B,GACA,OAAOvS,KAAK2uC,sBAAsB3uC,KACtC,CACA,gBAAI4uC,GACA,OAA8B,IAA1B5uC,KAAK0uC,UAAUhtC,OACRkE,KAAKJ,MAETxF,KAAK6uC,uBAAuB7uC,KACvC,CAMA6uC,sBAAAA,CAAuBC,GACnB,OAAOA,EAAUN,SAAS/gC,QAAO,CAACi/B,EAAKv8B,IAC5BA,EAAKy+B,aAAelC,EAIrBv8B,EAAKy+B,aACLlC,GACP,EACP,CAKAiC,qBAAAA,CAAsBG,GAClB,OAAOA,EAAUN,SAAS/gC,QAAO,CAACi/B,EAAKqC,IAI5BrC,EAAMqC,EAAMx8B,MACpB,EACP,EAMG,MAAMy8B,GAAe3/B,UAExB,GAAI0/B,EAAME,OACN,OAAO,IAAI1oC,SAAQ,CAACD,EAAS0J,KACzB++B,EAAM5+B,KAAK7J,EAAS0J,EAAO,IAInC6wB,GAAOwE,MAAM,+BAAgC,CAAE0J,MAAOA,EAAM/tC,OAC5D,MAAM8tC,EAAYC,EACZvyB,QAAgB0yB,GAAcJ,GAC9BN,SAAkBjoC,QAAQ4oC,IAAI3yB,EAAQzK,IAAIi9B,MAAgBlxB,OAChE,OAAO,IAAIwwB,GAAUQ,EAAU9tC,KAAMwtC,EAAS,EAM5CU,GAAiBJ,IACnB,MAAMM,EAAYN,EAAUO,eAC5B,OAAO,IAAI9oC,SAAQ,CAACD,EAAS0J,KACzB,MAAMwM,EAAU,GACV8yB,EAAaA,KACfF,EAAUG,aAAaC,IACfA,EAAQ9tC,QACR8a,EAAQhc,QAAQgvC,GAChBF,KAGAhpC,EAAQkW,EACZ,IACAxT,IACAgH,EAAOhH,EAAM,GACf,EAENsmC,GAAY,GACd,EAEOG,GAA6BpgC,UACtC,MAAMqgC,GAAYC,EAAAA,GAAAA,MAElB,UADwBD,EAAUE,OAAOjgB,GACzB,CACZkR,GAAOwE,MAAM,wCAAyC,CAAE1V,uBAClD+f,EAAUG,gBAAgBlgB,EAAc,CAAEmgB,WAAW,IAC3D,MAAMC,QAAaL,EAAUK,KAAKpgB,EAAc,CAAEqgB,SAAS,EAAMlrC,MAAMmrC,EAAAA,GAAAA,SACvEnuC,EAAAA,GAAAA,IAAK,sBAAsBouC,EAAAA,GAAAA,IAAgBH,EAAKjrC,MACpD,GAESqrC,GAAkB9gC,MAAOa,EAAOkgC,EAAa5B,KACtD,IAEI,MAAM6B,EAAYngC,EAAM4B,QAAQ3B,GACrBq+B,EAAS3J,MAAMx7B,GAASA,EAAKinC,YAAcngC,aAAgBo+B,KAAOp+B,EAAKnP,KAAOmP,EAAKmgC,cAC3Fx+B,OAAOuM,SAEJkyB,EAAUrgC,EAAM4B,QAAQ3B,IAClBkgC,EAAUhqC,SAAS8J,MAGzB,SAAE49B,EAAQ,QAAEyC,SAAkBC,EAAAA,GAAAA,GAAmBL,EAAYz9B,KAAM09B,EAAW7B,GAGpF,OAFA3N,GAAOwE,MAAM,sBAAuB,CAAEkL,UAASxC,WAAUyC,YAEjC,IAApBzC,EAASrsC,QAAmC,IAAnB8uC,EAAQ9uC,SAEjCgvC,EAAAA,GAAAA,KAAShR,EAAAA,GAAAA,IAAE,QAAS,iCACpBmB,GAAO1rB,KAAK,wCACL,IAGJ,IAAIo7B,KAAYxC,KAAayC,EACxC,CACA,MAAOxnC,GACHD,GAAQC,MAAMA,IAEd83B,EAAAA,GAAAA,KAAUpB,EAAAA,GAAAA,IAAE,QAAS,qBACrBmB,GAAO73B,MAAM,4BACjB,CACA,MAAO,EAAE,kBCrIT,GAAU,CAAC,EAEf,GAAQg4B,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,2DCD1D,IAAIrO,GAIG,MAAM2d,GAAWA,KACf3d,KACDA,GAAQ,IAAI4d,GAAAA,EAAO,CAAEC,YAAa,KAE/B7d,IAEJ,IAAI8d,IACX,SAAWA,GACPA,EAAqB,KAAI,OACzBA,EAAqB,KAAI,OACzBA,EAA6B,aAAI,cACpC,CAJD,CAIGA,KAAmBA,GAAiB,CAAC,IACjC,MAAMC,GAAWvF,MACEA,EAAM/9B,QAAO,CAAC+zB,EAAKn4B,IAASksB,KAAKiM,IAAIA,EAAKn4B,EAAKsiC,cAAcC,GAAAA,GAAWoF,KACtEpF,GAAAA,GAAWqF,QAQ1BC,GAAW1F,GANIA,IACjBA,EAAMzpB,OAAM1Y,IAAQ,IAAA8nC,EAAAC,EAEvB,OADwBrsC,KAAKC,MAA2C,QAAtCmsC,EAAgB,QAAhBC,EAAC/nC,EAAKgoC,kBAAU,IAAAD,OAAA,EAAfA,EAAkB,2BAAmB,IAAAD,EAAAA,EAAI,MACpD7H,MAAKgI,GAAiC,gBAApBA,EAAUv6B,QAAiD,IAAtBu6B,EAAU/F,SAAuC,aAAlB+F,EAAU1kC,KAAmB,IAMxI2kC,CAAY/F,8CClDhB,MAAMgG,GAAW,UAAHnwC,OAA6B,QAA7BshC,IAAaO,EAAAA,GAAAA,aAAgB,IAAAP,QAAA,EAAhBA,GAAkBQ,KACvCsO,IAAiBxO,EAAAA,GAAAA,IAAkB,MAAQuO,ICgB3CE,GAAW,SAAU7xB,GAC9B,OAAOA,EAAIpF,MAAM,IAAIhN,QAAO,SAAUxD,EAAG2S,GAErC,OAAO3S,GADDA,GAAK,GAAKA,EAAK2S,EAAEb,WAAW,EAEtC,GAAG,EACP,ECnBM41B,GFDmB,WAA8B,IAA7BC,EAAOtvC,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,GAAAA,UAAA,GAAGmvC,GAChC,MAAME,GAASE,EAAAA,GAAAA,IAAaD,EAAS,CACjCE,QAAS,CACLC,cAAcC,EAAAA,GAAAA,OAAqB,MAmB3C,OAXgBC,EAAAA,GAAAA,MAIRC,MAAM,WAAYt+B,IAAY,IAAAu+B,EAKlC,OAJmB,QAAnBA,EAAIv+B,EAAQk+B,eAAO,IAAAK,GAAfA,EAAiBjsC,SACjB0N,EAAQ1N,OAAS0N,EAAQk+B,QAAQ5rC,cAC1B0N,EAAQk+B,QAAQ5rC,SAEpBksC,EAAAA,GAAAA,GAAQx+B,EAAQ,IAEpB+9B,CACX,CEtBeU,GACFC,GAAe,SAAUjpC,GAAM,IAAAs5B,EACxC,MAAM4P,EAAyB,QAAnB5P,GAAGO,EAAAA,GAAAA,aAAgB,IAAAP,OAAA,EAAhBA,EAAkBQ,IACjC,IAAKoP,EACD,MAAM,IAAI1mC,MAAM,oBAEpB,MAAM8W,EAAQtZ,EAAKsZ,MACbgpB,GAAc6G,EAAAA,GAAAA,IAAoB7vB,aAAK,EAALA,EAAOgpB,aACzC8G,GAAS9vB,EAAM,aAAe4vB,GAAQ7qC,WACtCqe,GAASkd,EAAAA,GAAAA,IAAkB,MAAQuO,GAAWnoC,EAAKqpC,UAInDC,EAAW,CACbtuC,IAJOse,aAAK,EAALA,EAAOqpB,QAAS,EACrB0F,GAAS3rB,IACTpD,aAAK,EAALA,EAAOqpB,SAAU,EAGnBjmB,SACA6sB,MAAO,IAAIhtC,KAAKyD,EAAKwpC,SACrBC,KAAMzpC,EAAKypC,MAAQ,2BACnBvgC,MAAMoQ,aAAK,EAALA,EAAOpQ,OAAQ,EACrBo5B,cACA8G,QACA/G,KAAM8F,GACNH,WAAY,IACLhoC,KACAsZ,EACHowB,WAAYpwB,aAAK,EAALA,EAAQ,eACpBqwB,QAAQrwB,aAAK,EAALA,EAAOqpB,QAAS,IAIhC,cADO2G,EAAStB,WAAW1uB,MACN,SAAdtZ,EAAKwB,KACN,IAAI0jC,GAAAA,GAAKoE,GACT,IAAIlF,GAAAA,GAAOkF,EACrB,EACaM,GAAc,WAAgB,IAAftgC,EAAIrQ,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,GAAAA,UAAA,GAAG,IAC/B,MAAM4wC,EAAa,IAAIC,gBACjBC,GAAkBnD,EAAAA,GAAAA,MACxB,OAAO,IAAIoD,GAAAA,mBAAkBhkC,MAAO/I,EAAS0J,EAAQsjC,KACjDA,GAAS,IAAMJ,EAAW/d,UAC1B,IACI,MAAMoe,QAAyB5B,GAAO6B,qBAAqB7gC,EAAM,CAC7Dq9B,SAAS,EACTlrC,KAAMsuC,EACNK,aAAa,EACbC,OAAQR,EAAWQ,SAEjBhI,EAAO6H,EAAiBzuC,KAAK,GAC7B0pC,EAAW+E,EAAiBzuC,KAAK3D,MAAM,GAC7C,GAAIuqC,EAAKgH,WAAa//B,EAClB,MAAM,IAAI9G,MAAM,2CAEpBvF,EAAQ,CACJqtC,OAAQrB,GAAa5G,GACrB8C,SAAUA,EAASz8B,KAAInG,IACnB,IACI,OAAO0mC,GAAa1mC,EACxB,CACA,MAAO5C,GAEH,OADA63B,GAAO73B,MAAM,0BAAD3H,OAA2BuK,EAAO0kC,SAAQ,KAAK,CAAEtnC,UACtD,IACX,KACD8I,OAAOuM,UAElB,CACA,MAAOrV,GACHgH,EAAOhH,EACX,IAER,ECPa4qC,GAAiBpI,IAC1B,MAAMqI,EAAYrI,EAAM15B,QAAOzI,GAAQA,EAAKwB,OAAS2iC,GAAAA,GAASe,OAAM7sC,OAC9DoyC,EAActI,EAAM15B,QAAOzI,GAAQA,EAAKwB,OAAS2iC,GAAAA,GAASC,SAAQ/rC,OACxE,OAAkB,IAAdmyC,GACOrc,EAAAA,GAAAA,IAAE,QAAS,uBAAwB,wBAAyBsc,EAAa,CAAEA,gBAE7D,IAAhBA,GACEtc,EAAAA,GAAAA,IAAE,QAAS,mBAAoB,oBAAqBqc,EAAW,CAAEA,cAE1D,IAAdA,GACOrc,EAAAA,GAAAA,IAAE,QAAS,kCAAmC,mCAAoCsc,EAAa,CAAEA,gBAExF,IAAhBA,GACOtc,EAAAA,GAAAA,IAAE,QAAS,gCAAiC,iCAAkCqc,EAAW,CAAEA,eAE/FnU,EAAAA,GAAAA,IAAE,QAAS,8CAA+C,CAAEmU,YAAWC,eAAc,ECzC1FC,GAAqBvI,GACnBuF,GAAQvF,GACJ0F,GAAQ1F,GACDsF,GAAekD,aAEnBlD,GAAemD,KAGnBnD,GAAeoD,KAWbC,GAAuB9kC,eAAOhG,EAAM+mC,EAAalqC,GAA8B,IAAtBkuC,EAAS9xC,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,IAAAA,UAAA,GAC3E,IAAK8tC,EACD,OAEJ,GAAIA,EAAYvlC,OAAS2iC,GAAAA,GAASC,OAC9B,MAAM,IAAI5hC,OAAM6zB,EAAAA,GAAAA,IAAE,QAAS,gCAG/B,GAAIx5B,IAAW4qC,GAAemD,MAAQ5qC,EAAKqkC,UAAY0C,EAAYz9B,KAC/D,MAAM,IAAI9G,OAAM6zB,EAAAA,GAAAA,IAAE,QAAS,kDAa/B,GAAI,GAAAr+B,OAAG+uC,EAAYz9B,KAAI,KAAII,WAAW,GAAD1R,OAAIgI,EAAKsJ,KAAI,MAC9C,MAAM,IAAI9G,OAAM6zB,EAAAA,GAAAA,IAAE,QAAS,4EAG/B3F,EAAAA,GAAAA,IAAQ1wB,EAAM,SAAUgrC,GAAAA,GAAWC,SACnC,MAAMthB,EAAQ2d,KACd,aAAa3d,EAAM3c,KAAIhH,UACnB,MAAMklC,EAAc91B,GACF,IAAVA,GACOihB,EAAAA,GAAAA,IAAE,QAAS,WAEfA,EAAAA,GAAAA,IAAE,QAAS,iBAAal9B,EAAWic,GAE9C,IACI,MAAMkzB,GAAShC,EAAAA,GAAAA,MACT6E,GAAc75B,EAAAA,GAAAA,MAAK85B,GAAAA,GAAaprC,EAAKsJ,MACrC+hC,GAAkB/5B,EAAAA,GAAAA,MAAK85B,GAAAA,GAAarE,EAAYz9B,MACtD,GAAIzM,IAAW4qC,GAAeoD,KAAM,CAChC,IAAIlwC,EAASqF,EAAKinC,SAElB,IAAK8D,EAAW,CACZ,MAAMO,QAAmBhD,EAAO6B,qBAAqBkB,GACrD1wC,EDzES,SAAChD,EAAM4zC,GAAyC,IAA7BC,EAAMvyC,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,GAAAA,UAAA,GAAIk1B,GAAC,IAAAn2B,OAASm2B,EAAC,KAC7Dsd,EAAU9zC,EACVQ,EAAI,EACR,KAAOozC,EAAWvuC,SAASyuC,IAAU,CACjC,MAAMC,GAAMC,EAAAA,GAAAA,SAAQh0C,GACpB8zC,EAAU,GAAHzzC,QAAMivC,EAAAA,GAAAA,UAAStvC,EAAM+zC,GAAI,KAAA1zC,OAAIwzC,EAAOrzC,MAAIH,OAAG0zC,EACtD,CACA,OAAOD,CACX,CCiE6BG,CAAc5rC,EAAKinC,SAAUqE,EAAW5iC,KAAKylB,GAAMA,EAAE8Y,WAAWiE,EAC7E,CAGA,SAFM5C,EAAOuD,SAASV,GAAa75B,EAAAA,GAAAA,MAAK+5B,EAAiB1wC,IAErDqF,EAAKqkC,UAAY0C,EAAYz9B,KAAM,CACnC,MAAM,KAAE7N,SAAe6sC,EAAO5B,MAAKp1B,EAAAA,GAAAA,MAAK+5B,EAAiB1wC,GAAS,CAC9DgsC,SAAS,EACTlrC,MAAMmrC,EAAAA,GAAAA,SAEVnuC,EAAAA,GAAAA,IAAK,sBAAsBouC,EAAAA,GAAAA,IAAgBprC,GAC/C,CACJ,KACK,CAED,MAAM6vC,QAAmB1B,GAAY7C,EAAYz9B,MACjD,IAAIwiC,EAAAA,GAAAA,GAAY,CAAC9rC,GAAOsrC,EAAWnG,UAC/B,IAEI,MAAM,SAAET,EAAQ,QAAEyC,SAAkBC,EAAAA,GAAAA,GAAmBL,EAAYz9B,KAAM,CAACtJ,GAAOsrC,EAAWnG,UAG5F,IAAKT,EAASrsC,SAAW8uC,EAAQ9uC,OAG7B,aAFMiwC,EAAOyD,WAAWZ,QACxB1yC,EAAAA,GAAAA,IAAK,qBAAsBuH,EAGnC,CACA,MAAOL,GAGH,YADA83B,EAAAA,GAAAA,KAAUpB,EAAAA,GAAAA,IAAE,QAAS,kBAEzB,OAIEiS,EAAO0D,SAASb,GAAa75B,EAAAA,GAAAA,MAAK+5B,EAAiBrrC,EAAKinC,YAG9DxuC,EAAAA,GAAAA,IAAK,qBAAsBuH,EAC/B,CACJ,CACA,MAAOL,GACH,GAAIA,aAAiBssC,GAAAA,GAAY,KAAAC,EAAAC,EAAAC,EAC7B,GAAgC,OAA5BzsC,SAAe,QAAVusC,EAALvsC,EAAOH,gBAAQ,IAAA0sC,OAAA,EAAfA,EAAiBpsC,QACjB,MAAM,IAAI0C,OAAM6zB,EAAAA,GAAAA,IAAE,QAAS,kEAE1B,GAAgC,OAA5B12B,SAAe,QAAVwsC,EAALxsC,EAAOH,gBAAQ,IAAA2sC,OAAA,EAAfA,EAAiBrsC,QACtB,MAAM,IAAI0C,OAAM6zB,EAAAA,GAAAA,IAAE,QAAS,wBAE1B,GAAgC,OAA5B12B,SAAe,QAAVysC,EAALzsC,EAAOH,gBAAQ,IAAA4sC,OAAA,EAAfA,EAAiBtsC,QACtB,MAAM,IAAI0C,OAAM6zB,EAAAA,GAAAA,IAAE,QAAS,oCAE1B,GAAI12B,EAAMiD,QACX,MAAM,IAAIJ,MAAM7C,EAAMiD,QAE9B,CAEA,MADA40B,GAAOwE,MAAMr8B,GACP,IAAI6C,KACd,CAAC,QAEGkuB,EAAAA,GAAAA,IAAQ1wB,EAAM,cAAU7G,EAC5B,IAER,EAQMkzC,GAA0BrmC,eAAOD,GAA6B,IAArB62B,EAAG3jC,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,GAAAA,UAAA,GAAG,IAAKkpC,EAAKlpC,UAAAZ,OAAA,EAAAY,UAAA,QAAAE,EAC3D,MAAMmzC,EAAUnK,EAAMz5B,KAAI1I,GAAQA,EAAK2iC,SAAQl6B,OAAOuM,SAChDu3B,GAAaC,EAAAA,GAAAA,KAAqBnW,EAAAA,GAAAA,IAAE,QAAS,uBAC9CoW,kBAAiB,GACjBC,WAAWve,MAEJA,EAAEmU,YAAcC,GAAAA,GAAWoK,UAE3BL,EAAQtvC,SAASmxB,EAAEwU,UAE1BiK,kBAAkB,IAClBC,gBAAe,GACfC,QAAQlQ,GACb,OAAO,IAAI1/B,SAAQ,CAACD,EAAS0J,KACzB4lC,EAAWQ,kBAAiB,CAACC,EAAY1jC,KACrC,MAAM2jC,EAAU,GACVtyC,GAASssC,EAAAA,GAAAA,UAAS39B,GAClB4jC,EAAW/K,EAAMz5B,KAAI1I,GAAQA,EAAKqkC,UAClCR,EAAQ1B,EAAMz5B,KAAI1I,GAAQA,EAAKsJ,OAerC,OAdIvD,IAAW0hC,GAAeoD,MAAQ9kC,IAAW0hC,GAAekD,cAC5DsC,EAAQ91C,KAAK,CACT6M,MAAOrJ,GAAS07B,EAAAA,GAAAA,IAAE,QAAS,mBAAoB,CAAE17B,YAAY07B,EAAAA,GAAAA,IAAE,QAAS,QACxE70B,KAAM,UACNoE,KAAMunC,GACN,cAAM/gC,CAAS26B,GACX9pC,EAAQ,CACJ8pC,YAAaA,EAAY,GACzBhhC,OAAQ0hC,GAAeoD,MAE/B,IAIJqC,EAASlwC,SAASsM,IAIlBu6B,EAAM7mC,SAASsM,IAIfvD,IAAW0hC,GAAemD,MAAQ7kC,IAAW0hC,GAAekD,cAC5DsC,EAAQ91C,KAAK,CACT6M,MAAOrJ,GAAS07B,EAAAA,GAAAA,IAAE,QAAS,mBAAoB,CAAE17B,YAAY07B,EAAAA,GAAAA,IAAE,QAAS,QACxE70B,KAAMuE,IAAW0hC,GAAemD,KAAO,UAAY,YACnDhlC,KAAMwnC,GACN,cAAMhhC,CAAS26B,GACX9pC,EAAQ,CACJ8pC,YAAaA,EAAY,GACzBhhC,OAAQ0hC,GAAemD,MAE/B,IAhBGqC,CAmBG,IAEHV,EAAWtY,QACnBhe,OAAOnH,OAAOnP,IACjB63B,GAAOwE,MAAMr8B,GACTA,aAAiB0tC,GAAAA,GACjB1mC,EAAO,IAAInE,OAAM6zB,EAAAA,GAAAA,IAAE,QAAS,sCAG5B1vB,EAAO,IAAInE,OAAM6zB,EAAAA,GAAAA,IAAE,QAAS,kCAChC,GACF,GAEV,EACsB,IAAIyL,GAAAA,GAAW,CACjC9mC,GAAI,YACJ+mC,WAAAA,CAAYI,GACR,OAAQuI,GAAkBvI,IACtB,KAAKsF,GAAemD,KAChB,OAAOvU,EAAAA,GAAAA,IAAE,QAAS,QACtB,KAAKoR,GAAeoD,KAChB,OAAOxU,EAAAA,GAAAA,IAAE,QAAS,QACtB,KAAKoR,GAAekD,aAChB,OAAOtU,EAAAA,GAAAA,IAAE,QAAS,gBAE9B,EACA2L,cAAeA,IAAMoL,GACrBlL,QAAQC,KAECA,EAAMzpB,OAAM1Y,IAAI,IAAAstC,EAAA,OAAa,QAAbA,EAAIttC,EAAKqiC,YAAI,IAAAiL,OAAA,EAATA,EAAW5jC,WAAW,UAAU,KAGlDy4B,EAAM9pC,OAAS,IAAMqvC,GAAQvF,IAAU0F,GAAQ1F,IAE1D,UAAMjvB,CAAKlT,EAAMkyB,EAAM0K,GACnB,MAAM72B,EAAS2kC,GAAkB,CAAC1qC,IAClC,IAAIuC,EACJ,IACIA,QAAe8pC,GAAwBtmC,EAAQ62B,EAAK,CAAC58B,GACzD,CACA,MAAOpE,GAEH,OADA47B,GAAO73B,MAAM/D,IACN,CACX,CACA,IAEI,aADMkvC,GAAqB9qC,EAAMuC,EAAOwkC,YAAaxkC,EAAOwD,SACrD,CACX,CACA,MAAOpG,GACH,SAAIA,aAAiB6C,OAAW7C,EAAMiD,YAClC60B,EAAAA,GAAAA,IAAU93B,EAAMiD,SAET,KAGf,CACJ,EACA,eAAM2qC,CAAUpL,EAAOjQ,EAAM0K,GACzB,MAAM72B,EAAS2kC,GAAkBvI,GAC3B5/B,QAAe8pC,GAAwBtmC,EAAQ62B,EAAKuF,GACpDqL,EAAWrL,EAAMz5B,KAAI1C,UACvB,IAEI,aADM8kC,GAAqB9qC,EAAMuC,EAAOwkC,YAAaxkC,EAAOwD,SACrD,CACX,CACA,MAAOpG,GAEH,OADA63B,GAAO73B,MAAM,aAAD3H,OAAcuK,EAAOwD,OAAM,SAAS,CAAE/F,OAAML,WACjD,CACX,KAKJ,aAAazC,QAAQ4oC,IAAI0H,EAC7B,EACA7R,MAAO,qBCvQJ,MAAM8R,GAAyBznC,UAIlC,MAAMmN,EAAUu6B,EACXjlC,QAAQxN,GACS,SAAdA,EAAK0yC,OACLnW,GAAOwE,MAAM,wBAAyB,CAAE2R,KAAM1yC,EAAK0yC,KAAMnsC,KAAMvG,EAAKuG,QAC7D,KAGZkH,KAAKzN,IAAS,IAAA44B,EAAA+Z,EAAAC,EAAAC,EAEb,OACiC,QADjCja,EAA2B,QAA3B+Z,EAAO3yC,SAAgB,QAAZ4yC,EAAJ5yC,EAAM8yC,kBAAU,IAAAF,OAAA,EAAhBA,EAAAh2C,KAAAoD,UAAoB,IAAA2yC,EAAAA,EACpB3yC,SAAsB,QAAlB6yC,EAAJ7yC,EAAM+yC,wBAAgB,IAAAF,OAAA,EAAtBA,EAAAj2C,KAAAoD,UAA0B,IAAA44B,EAAAA,EAC1B54B,CAAI,IAEf,IAAIgzC,GAAS,EACb,MAAMC,EAAW,IAAIjJ,GAAU,QAE/B,IAAK,MAAMS,KAASvyB,EAEhB,GAAIuyB,aAAiByI,iBAArB,CACI3W,GAAOv9B,KAAK,+DACZ,MAAM6M,EAAO4+B,EAAM0I,YACnB,GAAa,OAATtnC,EAAe,CACf0wB,GAAOv9B,KAAK,qCAAsC,CAAEuH,KAAMkkC,EAAMlkC,KAAMmsC,KAAMjI,EAAMiI,QAClFlW,EAAAA,GAAAA,KAAUpB,EAAAA,GAAAA,IAAE,QAAS,oDACrB,QACJ,CAGA,GAAkB,yBAAdvvB,EAAKtF,OAAoCsF,EAAKtF,KAAM,CAC/CysC,IACDzW,GAAOv9B,KAAK,8EACZo0C,EAAAA,GAAAA,KAAYhY,EAAAA,GAAAA,IAAE,QAAS,uFACvB4X,GAAS,GAEb,QACJ,CACAC,EAAS/I,SAAShuC,KAAK2P,EAE3B,MAEA,IACIonC,EAAS/I,SAAShuC,WAAWwuC,GAAaD,GAC9C,CACA,MAAO/lC,GAEH63B,GAAO73B,MAAM,mCAAoC,CAAEA,SACvD,CAEJ,OAAOuuC,CAAQ,EAENI,GAAsBtoC,MAAOq8B,EAAM0E,EAAa5B,KACzD,MAAMH,GAAWuJ,EAAAA,GAAAA,KAKjB,SAHUzC,EAAAA,GAAAA,GAAYzJ,EAAK8C,SAAUA,KACjC9C,EAAK8C,eAAiB2B,GAAgBzE,EAAK8C,SAAU4B,EAAa5B,IAEzC,IAAzB9C,EAAK8C,SAAS9sC,OAGd,OAFAm/B,GAAO1rB,KAAK,qBAAsB,CAAEu2B,UACpCgF,EAAAA,GAAAA,KAAShR,EAAAA,GAAAA,IAAE,QAAS,uBACb,GAGXmB,GAAOwE,MAAM,sBAADhkC,OAAuB+uC,EAAYz9B,MAAQ,CAAE+4B,OAAM8C,SAAU9C,EAAK8C,WAC9E,MAAMxb,EAAQ,GACR6kB,EAA0BxoC,MAAOy/B,EAAWn8B,KAC9C,IAAK,MAAMxC,KAAQ2+B,EAAUN,SAAU,CAGnC,MAAMsJ,GAAen9B,EAAAA,GAAAA,MAAKhI,EAAMxC,EAAKnP,MAGrC,GAAImP,aAAgBm+B,GAApB,CACI,MAAM3e,GAAeooB,EAAAA,GAAAA,IAAUtD,GAAAA,GAAarE,EAAYz9B,KAAMmlC,GAC9D,IACI/uC,GAAQs8B,MAAM,uBAAwB,CAAEyS,uBAClCrI,GAA2B9f,SAC3BkoB,EAAwB1nC,EAAM2nC,EACxC,CACA,MAAO9uC,IACH83B,EAAAA,GAAAA,KAAUpB,EAAAA,GAAAA,IAAE,QAAS,6CAA8C,CAAEoP,UAAW3+B,EAAKnP,QACrF6/B,GAAO73B,MAAM,GAAI,CAAEA,QAAO2mB,eAAcmf,UAAW3+B,GACvD,CAEJ,MAEA0wB,GAAOwE,MAAM,sBAAuB1qB,EAAAA,GAAAA,MAAKy1B,EAAYz9B,KAAMmlC,GAAe,CAAE3nC,SAE5E6iB,EAAMxyB,KAAK6tC,EAAS2J,OAAOF,EAAc3nC,EAAMigC,EAAYrqB,QAC/D,GAIJsoB,EAAS4J,cAGHJ,EAAwBnM,EAAM,KACpC2C,EAAS6J,QAET,MAEMC,SAFgB5xC,QAAQ6xC,WAAWplB,IAElBlhB,QAAOlG,GAA4B,aAAlBA,EAAOzC,SAC/C,OAAIgvC,EAAOz2C,OAAS,GAChBm/B,GAAO73B,MAAM,8BAA+B,CAAEmvC,YAC9CrX,EAAAA,GAAAA,KAAUpB,EAAAA,GAAAA,IAAE,QAAS,qCACd,KAEXmB,GAAOwE,MAAM,gCACbtB,EAAAA,GAAAA,KAAYrE,EAAAA,GAAAA,IAAE,QAAS,gCAChBn5B,QAAQ4oC,IAAInc,GAAM,EAEhBqlB,GAAsBhpC,eAAOm8B,EAAO4E,EAAa5B,GAA6B,IAAnB8J,EAAMh2C,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,IAAAA,UAAA,GAC1E,MAAM0wB,EAAQ,GAKd,SAHUmiB,EAAAA,GAAAA,GAAY3J,EAAOgD,KACzBhD,QAAc2E,GAAgB3E,EAAO4E,EAAa5B,IAEjC,IAAjBhD,EAAM9pC,OAGN,OAFAm/B,GAAO1rB,KAAK,sBAAuB,CAAEq2B,eACrCkF,EAAAA,GAAAA,KAAShR,EAAAA,GAAAA,IAAE,QAAS,wBAGxB,IAAK,MAAMr2B,KAAQmiC,EACfzR,EAAAA,GAAAA,IAAQ1wB,EAAM,SAAUgrC,GAAAA,GAAWC,SAEnCthB,EAAMxyB,KAAK2zC,GAAqB9qC,EAAM+mC,EAAakI,EAASxH,GAAeoD,KAAOpD,GAAemD,OAGrG,MAAMzE,QAAgBjpC,QAAQ6xC,WAAWplB,GACzCwY,EAAMt6B,SAAQ7H,GAAQ0wB,EAAAA,GAAAA,IAAQ1wB,EAAM,cAAU7G,KAE9C,MAAM21C,EAAS3I,EAAQ19B,QAAOlG,GAA4B,aAAlBA,EAAOzC,SAC/C,GAAIgvC,EAAOz2C,OAAS,EAGhB,OAFAm/B,GAAO73B,MAAM,sCAAuC,CAAEmvC,gBACtDrX,EAAAA,GAAAA,IAAUwX,GAAS5Y,EAAAA,GAAAA,IAAE,QAAS,mCAAoCA,EAAAA,GAAAA,IAAE,QAAS,kCAGjFmB,GAAOwE,MAAM,+BACbtB,EAAAA,GAAAA,IAAYuU,GAAS5Y,EAAAA,GAAAA,IAAE,QAAS,8BAA+BA,EAAAA,GAAAA,IAAE,QAAS,4BAC9E,ECjKa6Y,GAAsB7+B,GAAY,WAAY,CACvD/M,MAAOA,KAAA,CACH6rC,SAAU,KAEdrpC,QAAS,CAIL0D,GAAAA,GAAoB,IAAhBq7B,EAAS5rC,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,GAAAA,UAAA,GAAG,GACZy3B,EAAAA,GAAAA,IAAQ/5B,KAAM,WAAYkuC,EAC9B,EAIAE,KAAAA,GACIrU,EAAAA,GAAAA,IAAQ/5B,KAAM,WAAY,GAC9B,KCjBR,GAAe+5B,EAAAA,GAAIva,OAAO,CACtB1a,KAAIA,KACO,CACH2zC,eAAgB,OAGxB1Y,OAAAA,GAAU,IAAA2Y,EACN,MAAMC,EAAanvC,SAAS+nB,cAAc,oBAC1CvxB,KAAKy4C,eAAwC,QAA1BC,EAAGC,aAAU,EAAVA,EAAYC,mBAAW,IAAAF,EAAAA,EAAI,KACjD14C,KAAK64C,gBAAkB,IAAIC,gBAAgBt8B,IACnCA,EAAQ9a,OAAS,GAAK8a,EAAQ,GAAGxY,SAAW20C,IAC5C34C,KAAKy4C,eAAiBj8B,EAAQ,GAAGu8B,YAAYC,MACjD,IAEJh5C,KAAK64C,gBAAgBI,QAAQN,EACjC,EACAlV,aAAAA,GACIzjC,KAAK64C,gBAAgBK,YACzB,ICxCuP,ICgB5OC,EAAAA,EAAAA,IAAgB,CAC3Bn4C,KAAM,cACNwZ,WAAY,CACR4+B,cAAa,KACbC,aAAY,KACZ/U,iBAAgBA,GAAAA,GAEpBgV,OAAQ,CACJC,IAEJ52B,MAAO,CACHhQ,KAAM,CACF9H,KAAME,OACN6X,QAAS,MAGjBhM,MAAKA,KAKM,CACH4iC,cALkBjB,KAMlBkB,WALexN,KAMfgB,WALeD,KAMf0M,eALmB5L,OAQ3B9O,SAAU,CACN2F,WAAAA,GACI,OAAO,KAAKG,YAAYyI,MAC5B,EACAoM,IAAAA,GAC4BjN,MAIxB,MAAO,CAAC,OAFM,KAAK/5B,KAAK8H,MAAM,KAAK3I,OAAOuM,SAAStM,KAF3B26B,EAE8C,IAFrCrnC,GAAWqnC,GAAG,GAAArrC,OAAOgE,EAAK,OAIrC0M,KAAIY,GAAQA,EAAK7G,QAAQ,WAAY,QAC/D,EACA8tC,QAAAA,GACI,OAAO,KAAKD,KAAK5nC,KAAI,CAACk0B,EAAKxnB,KACvB,MAAMutB,EAAS,KAAK6N,kBAAkB5T,GAChCxc,EAAK,IAAK,KAAKtG,OAAQnC,OAAQ,CAAEgrB,UAAUzuB,MAAO,CAAE0oB,QAC1D,MAAO,CACHA,MACApc,OAAO,EACP7oB,KAAM,KAAK84C,kBAAkB7T,GAC7Bxc,KAEAswB,YAAat7B,IAAU,KAAKk7B,KAAKj4C,OAAS,EAC7C,GAET,EAEAs4C,QAAAA,GAAW,IAAAC,EAAAC,EACP,OAA6B,QAA7BD,EAAuB,QAAvBC,EAAO,KAAKvV,mBAAW,IAAAuV,OAAA,EAAhBA,EAAkBjrC,YAAI,IAAAgrC,EAAAA,4IACjC,EACAE,aAAAA,GACI,OAAO,KAAKT,eAAe3L,QAC/B,EACAqM,aAAAA,GACI,OAAO,KAAKZ,cAAchB,QAC9B,GAEJpY,QAAS,CACLia,aAAAA,CAAch2C,GACV,OAAO,KAAKo1C,WAAWrN,QAAQ/nC,EACnC,EACAw1C,iBAAAA,CAAkBlnC,GAAM,IAAA2nC,EACpB,OAAO,KAAKrN,WAAWE,QAAwB,QAAjBmN,EAAC,KAAK3V,mBAAW,IAAA2V,OAAA,EAAhBA,EAAkBj2C,GAAIsO,EACzD,EACAmnC,iBAAAA,CAAkBnnC,GAAM,IAAAy+B,EACFmJ,EAAlB,GAAa,MAAT5nC,EACA,OAAuB,QAAhB4nC,EAAA,KAAKzV,mBAAW,IAAAyV,GAAQ,QAARA,EAAhBA,EAAkBhN,cAAM,IAAAgN,OAAA,EAAxBA,EAA0Bv5C,QAAQ0+B,EAAAA,GAAAA,IAAE,QAAS,QAExD,MAAM8a,EAAS,KAAKX,kBAAkBlnC,GAChCtJ,EAAO,KAAKgxC,cAAcG,GAChC,OAAOnxC,SAAgB,QAAZ+nC,EAAJ/nC,EAAMgoC,kBAAU,IAAAD,OAAA,EAAhBA,EAAkBhG,eAAekF,EAAAA,GAAAA,UAAS39B,EACrD,EACA8nC,OAAAA,CAAQhxB,GAAI,IAAAixB,GACJjxB,SAAS,QAAPixB,EAAFjxB,EAAIlM,aAAK,IAAAm9B,OAAA,EAATA,EAAWzU,OAAQ,KAAK9iB,OAAO5F,MAAM0oB,KACrC,KAAKjK,MAAM,SAEnB,EACA2e,UAAAA,CAAWx6C,EAAOwS,GAEVA,IAAS,KAAKgnC,KAAK,KAAKA,KAAKj4C,OAAS,GAKtCvB,EAAM6rB,QACN7rB,EAAMy6C,aAAaC,WAAa,OAGhC16C,EAAMy6C,aAAaC,WAAa,OARhC16C,EAAMy6C,aAAaC,WAAa,MAUxC,EACA,YAAMC,CAAO36C,EAAOwS,GAAM,IAAAooC,EAAAC,EAAAC,EAEtB,KAAK,KAAKb,eAAoC,QAAnBW,EAAC56C,EAAMy6C,oBAAY,IAAAG,GAAO,QAAPA,EAAlBA,EAAoBhE,aAAK,IAAAgE,GAAzBA,EAA2Br5C,QACnD,OAKJvB,EAAMmsB,iBAEN,MAAM4hB,EAAY,KAAKkM,cACjBrD,EAAQ,KAAsB,QAAlBiE,EAAA76C,EAAMy6C,oBAAY,IAAAI,OAAA,EAAlBA,EAAoBjE,QAAS,IAGzCQ,QAAiBT,GAAuBC,GAExCvI,QAAiC,QAAtByM,EAAM,KAAKtW,mBAAW,IAAAsW,OAAA,EAAhBA,EAAkBhI,YAAYtgC,IAC/CghC,EAASnF,aAAQ,EAARA,EAAUmF,OACzB,IAAKA,EAED,YADA7S,EAAAA,GAAAA,IAAU,KAAKpB,EAAE,QAAS,0CAG9B,MAAMwb,KAAWvH,EAAOhI,YAAcC,GAAAA,GAAWoK,QAC3CsC,EAASn4C,EAAM6rB,QAGrB,IAAKkvB,GAA4B,IAAjB/6C,EAAMgsB,OAClB,OAIJ,GAFA0U,GAAOwE,MAAM,UAAW,CAAEllC,QAAOwzC,SAAQzF,YAAWqJ,aAEhDA,EAAS/I,SAAS9sC,OAAS,EAE3B,kBADMi2C,GAAoBJ,EAAU5D,EAAQnF,EAASA,UAIzD,MAAMhD,EAAQ0C,EAAUn8B,KAAIi6B,GAAU,KAAKyN,WAAWrN,QAAQJ,WACxDqM,GAAoB7M,EAAOmI,EAAQnF,EAASA,SAAU8J,GAGxDpK,EAAU5E,MAAK0C,GAAU,KAAKmO,cAAc9zC,SAAS2lC,OACrDnL,GAAOwE,MAAM,gDACb,KAAKqU,eAAetL,QAE5B,EACA+M,eAAAA,CAAgB18B,EAAO28B,GAAS,IAAAC,EAC5B,OAAID,SAAW,QAAJC,EAAPD,EAAS3xB,UAAE,IAAA4xB,GAAO,QAAPA,EAAXA,EAAa99B,aAAK,IAAA89B,OAAA,EAAlBA,EAAoBpV,OAAQ,KAAK9iB,OAAO5F,MAAM0oB,KACvCvG,EAAAA,GAAAA,IAAE,QAAS,4BAEH,IAAVjhB,GACEihB,EAAAA,GAAAA,IAAE,QAAS,8BAA+B0b,GAE9C,IACX,EACAE,cAAAA,CAAeF,GAAS,IAAAG,EACpB,OAAIH,SAAW,QAAJG,EAAPH,EAAS3xB,UAAE,IAAA8xB,GAAO,QAAPA,EAAXA,EAAah+B,aAAK,IAAAg+B,OAAA,EAAlBA,EAAoBtV,OAAQ,KAAK9iB,OAAO5F,MAAM0oB,KACvCvG,EAAAA,GAAAA,IAAE,QAAS,4BAEf,IACX,EACAA,EAACA,GAAAA,sBCnKL,GAAU,CAAC,EAEf,GAAQsB,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,OCP1D,UAXgB,QACd,IFTW,WAAkB,IAAI3F,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4f,YAAmB7f,EAAG,gBAAgB,CAAC7W,MAAM,CAAC,oCAAoC,GAAG,aAAa4W,EAAIgE,EAAE,QAAS,2BAA2BuE,YAAYvI,EAAIwI,GAAG,CAAC,CAACt3B,IAAI,UAAU/M,GAAG,WAAW,MAAO,CAAC67B,EAAI+f,GAAG,WAAW,EAAEx0C,OAAM,IAAO,MAAK,IAAOy0B,EAAIsI,GAAItI,EAAIke,UAAU,SAASwB,EAAQ38B,GAAO,OAAOkd,EAAG,eAAeD,EAAIG,GAAG,CAACjvB,IAAIwuC,EAAQnV,IAAInhB,MAAM,CAAC,IAAM,OAAO,GAAKs2B,EAAQ3xB,GAAG,mBAAkB,EAAK,MAAQiS,EAAIyf,gBAAgB18B,EAAO28B,GAAS,mBAAmB1f,EAAI4f,eAAeF,IAAUz4C,GAAG,CAAC,KAAO,SAASo5B,GAAQ,OAAOL,EAAIof,OAAO/e,EAAQqf,EAAQnV,IAAI,GAAGyV,SAAS,CAAC,MAAQ,SAAS3f,GAAQ,OAAOL,EAAI+e,QAAQW,EAAQ3xB,GAAG,EAAE,SAAW,SAASsS,GAAQ,OAAOL,EAAIif,WAAW5e,EAAQqf,EAAQnV,IAAI,GAAGhC,YAAYvI,EAAIwI,GAAG,CAAY,IAAVzlB,EAAa,CAAC7R,IAAI,OAAO/M,GAAG,WAAW,MAAO,CAAC87B,EAAG,mBAAmB,CAAC7W,MAAM,CAAC,KAAO,GAAG,IAAM4W,EAAIse,YAAY,EAAE/yC,OAAM,GAAM,MAAM,MAAK,IAAO,eAAem0C,GAAQ,GAAO,IAAG,EACz8B,GACsB,IEUpB,EACA,KACA,WACA,MAI8B,QCnBhC,gBCsBO,MAAMO,GAAsBjiC,GAAY,cAAe,CAC1D/M,MAAOA,KAAA,CACHivC,OAAQ,SCDHC,GAAmB,WAC5B,MAMMC,EANQpiC,GAAY,WAAY,CAClC/M,MAAOA,KAAA,CACHovC,kBAAcv5C,EACdsyC,QAAS,MAGK1nC,IAAM9K,WAS5B,OAPKw5C,EAAc9e,gBACfC,EAAAA,GAAAA,IAAU,qBAAqB,SAAU5zB,GACrCyyC,EAAcC,aAAe1yC,EAC7ByyC,EAAchH,QAAUzrC,EAAKinC,QACjC,IACAwL,EAAc9e,cAAe,GAE1B8e,CACX,kBCpBA,MCpB+G,GDoB/G,CACE96C,KAAM,mBACNw6B,MAAO,CAAC,SACR7Y,MAAO,CACLxX,MAAO,CACLN,KAAME,QAER0wB,UAAW,CACT5wB,KAAME,OACN6X,QAAS,gBAEXrQ,KAAM,CACJ1H,KAAMgS,OACN+F,QAAS,MEff,IAXgB,QACd,ICRW,WAAkB,IAAI8Y,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,0CAA0ChX,MAAM,CAAC,eAAc4W,EAAIvwB,OAAQ,KAAY,aAAauwB,EAAIvwB,MAAM,KAAO,OAAOxI,GAAG,CAAC,MAAQ,SAASo5B,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BhX,MAAM,CAAC,KAAO4W,EAAID,UAAU,MAAQC,EAAInpB,KAAK,OAASmpB,EAAInpB,KAAK,QAAU,cAAc,CAACopB,EAAG,OAAO,CAAC7W,MAAM,CAAC,EAAI,gIAAgI,CAAE4W,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIjrB,GAAGirB,EAAIvwB,UAAUuwB,EAAI7iB,UAClpB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,QElByE,GCoBzG,CACE7X,KAAM,aACNw6B,MAAO,CAAC,SACR7Y,MAAO,CACLxX,MAAO,CACLN,KAAME,QAER0wB,UAAW,CACT5wB,KAAME,OACN6X,QAAS,gBAEXrQ,KAAM,CACJ1H,KAAMgS,OACN+F,QAAS,MCff,IAXgB,QACd,ICRW,WAAkB,IAAI8Y,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,mCAAmChX,MAAM,CAAC,eAAc4W,EAAIvwB,OAAQ,KAAY,aAAauwB,EAAIvwB,MAAM,KAAO,OAAOxI,GAAG,CAAC,MAAQ,SAASo5B,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BhX,MAAM,CAAC,KAAO4W,EAAID,UAAU,MAAQC,EAAInpB,KAAK,OAASmpB,EAAInpB,KAAK,QAAU,cAAc,CAACopB,EAAG,OAAO,CAAC7W,MAAM,CAAC,EAAI,kGAAkG,CAAE4W,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIjrB,GAAGirB,EAAIvwB,UAAUuwB,EAAI7iB,UAC7mB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,QEbhC,GAAekhB,EAAAA,GAAIva,OAAO,CACtBxe,KAAM,qBACNwZ,WAAY,CACRwhC,iBAAgB,GAChBC,WAAUA,IAEdn3C,KAAIA,KACO,CACH0mC,MAAO,KAGfxM,SAAU,CACNkd,YAAAA,GACI,OAA6B,IAAtB,KAAK1Q,MAAM9pC,MACtB,EACAy6C,cAAAA,GACI,OAAO,KAAKD,cACL,KAAK1Q,MAAM,GAAG3gC,OAAS2iC,GAAAA,GAASC,MAC3C,EACAzsC,IAAAA,GACI,OAAK,KAAKuR,KAGV,GAAAlR,OAAU,KAAK+6C,QAAO,OAAA/6C,OAAM,KAAKkR,MAFtB,KAAK6pC,OAGpB,EACA7pC,IAAAA,GACI,MAAM8pC,EAAY,KAAK7Q,MAAM/9B,QAAO,CAAC6uC,EAAOjzC,IAASizC,EAAQjzC,EAAKkJ,MAAQ,GAAG,GACvEA,EAAOgqC,SAASF,EAAW,KAAO,EACxC,MAAoB,iBAAT9pC,GAAqBA,EAAO,EAC5B,MAEJ+sB,EAAAA,GAAAA,IAAe/sB,GAAM,EAChC,EACA6pC,OAAAA,GACI,GAAI,KAAKF,aAAc,KAAA9K,EACnB,MAAM/nC,EAAO,KAAKmiC,MAAM,GACxB,OAAsB,QAAf4F,EAAA/nC,EAAKgoC,kBAAU,IAAAD,OAAA,EAAfA,EAAiBhG,cAAe/hC,EAAKinC,QAChD,CACA,OAAOsD,GAAc,KAAKpI,MAC9B,GAEJpL,QAAS,CACL5D,MAAAA,CAAOgP,GACH,KAAKA,MAAQA,EACb,KAAKgR,MAAMC,WAAWC,kBAEtBlR,EAAMrqC,MAAM,EAAG,GAAG+P,SAAQ7H,IACtB,MAAMszC,EAAUnzC,SAAS+nB,cAAa,mCAAAlwB,OAAoCgI,EAAK2iC,OAAM,iCACjF2Q,GACoB,KAAKH,MAAMC,WACnB9a,YAAYgb,EAAQC,WAAWC,WAAU,GACzD,IAEJ,KAAKxsB,WAAU,KACX,KAAK2L,MAAM,SAAU,KAAK0F,IAAI,GAEtC,KC7D0P,sBCW9P,GAAU,CAAC,EAEf,GAAQV,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,OCP1D,UAXgB,QACd,IHTW,WAAkB,IAAI3F,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4f,YAAmB7f,EAAG,MAAM,CAACG,YAAY,yBAAyB,CAACH,EAAG,OAAO,CAACG,YAAY,+BAA+B,CAACH,EAAG,OAAO,CAACna,IAAI,eAAeka,EAAIQ,GAAG,KAAMR,EAAIygB,eAAgBxgB,EAAG,cAAcA,EAAG,qBAAqB,GAAGD,EAAIQ,GAAG,KAAKP,EAAG,OAAO,CAACG,YAAY,+BAA+B,CAACJ,EAAIQ,GAAGR,EAAIjrB,GAAGirB,EAAI16B,UACvY,GACsB,IGUpB,EACA,KACA,KACA,MAI8B,QCjB1B87C,GAAU/iB,EAAAA,GAAIva,OAAOu9B,IAC3B,IAAIJ,GC8BJ5iB,EAAAA,GAAIijB,UAAU,iBAAkBC,GAAAA,IAChC,UAAe9D,EAAAA,EAAAA,IAAgB,CAC3Bx2B,MAAO,CACHoD,OAAQ,CACJlb,KAAM,CAAC4iC,GAAAA,GAAQyP,GAAAA,GAAQC,GAAAA,IACvBzzB,UAAU,GAEd8hB,MAAO,CACH3gC,KAAMjJ,MACN8nB,UAAU,GAEd+uB,eAAgB,CACZ5tC,KAAMgS,OACN+F,QAAS,IAGjB9d,KAAIA,KACO,CACHs4C,QAAS,GACTC,UAAU,EACVC,UAAU,IAGlBte,SAAU,CACN2F,WAAAA,GACI,OAAO3kC,KAAK8kC,YAAYyI,MAC5B,EACAgQ,UAAAA,GAAa,IAAA7Y,EAET,QAAmB,QAAXA,EAAA1kC,KAAKmjB,cAAM,IAAAuhB,GAAO,QAAPA,EAAXA,EAAannB,aAAK,IAAAmnB,GAAK,QAALA,EAAlBA,EAAoBuB,WAAG,IAAAvB,OAAA,EAAvBA,EAAyBh9B,aAAc,KAAKoE,QAAQ,WAAY,KAC5E,EACA0xC,aAAAA,GAAgB,IAAAC,EAAAC,EACZ,OAAyB,QAAlBD,EAAAz9C,KAAKmjB,OAAOnC,cAAM,IAAAy8B,OAAA,EAAlBA,EAAoBzR,UAA2B,QAArB0R,EAAI19C,KAAKmjB,OAAO5F,aAAK,IAAAmgC,OAAA,EAAjBA,EAAmB1R,SAAU,IACtE,EACAA,MAAAA,GAAS,IAAA2R,EACL,OAAkB,QAAlBA,EAAO39C,KAAK+lB,cAAM,IAAA43B,OAAA,EAAXA,EAAa3R,MACxB,EACA4R,QAAAA,GACI,OAAOlM,GAAS1xC,KAAK+lB,OAAOA,OAChC,EACA83B,SAAAA,GACI,OAAO79C,KAAK+lB,OAAO5c,SAAWkrC,GAAAA,GAAWC,OAC7C,EACAwJ,SAAAA,GAAY,IAAAC,EACR,OAA0B,QAA1BA,EAAI/9C,KAAK+lB,OAAOsrB,kBAAU,IAAA0M,GAAtBA,EAAwB3S,aACjB4J,EAAAA,GAAAA,SAAQh1C,KAAK+lB,OAAOsrB,WAAWjG,aAEnCprC,KAAK+lB,OAAO+3B,WAAa,EACpC,EACA1S,WAAAA,GACI,MAAM2J,EAAM/0C,KAAK89C,UACX98C,EAAQhB,KAAK+lB,OAAOsrB,WAAWjG,aAC9BprC,KAAK+lB,OAAOuqB,SAEnB,OAAQyE,EAAa/zC,EAAKG,MAAM,EAAG,EAAI4zC,EAAIrzC,QAA7BV,CAClB,EACAo5C,aAAAA,GACI,OAAOp6C,KAAKw5C,cAAchB,QAC9B,EACA2B,aAAAA,GACI,OAAOn6C,KAAK05C,eAAe3L,QAC/B,EACAiQ,UAAAA,GACI,OAAOh+C,KAAKgsC,QAAUhsC,KAAKm6C,cAAc9zC,SAASrG,KAAKgsC,OAC3D,EACAiS,UAAAA,GACI,OAAOj+C,KAAK87C,cAAcC,eAAiB/7C,KAAK+lB,MACpD,EACAm4B,qBAAAA,GACI,OAAOl+C,KAAKi+C,YAAcj+C,KAAKy4C,eAAiB,GACpD,EACAptB,QAAAA,GAAW,IAAA8yB,EAAAC,EAAAC,EAAAC,EACP,OAAkB,QAAXH,EAAAn+C,KAAKgsC,cAAM,IAAAmS,GAAU,QAAVC,EAAXD,EAAaz2C,gBAAQ,IAAA02C,OAAA,EAArBA,EAAAl9C,KAAAi9C,OAAgD,QAAvBE,EAAKr+C,KAAKw9C,qBAAa,IAAAa,GAAU,QAAVC,EAAlBD,EAAoB32C,gBAAQ,IAAA42C,OAAA,EAA5BA,EAAAp9C,KAAAm9C,GACzC,EACAE,OAAAA,GACI,GAAIv+C,KAAKi+C,WACL,OAAO,EAEX,MAAMM,EAAWl1C,OACLA,aAAI,EAAJA,EAAMsiC,aAAcC,GAAAA,GAAWqF,QAG3C,OAAIjxC,KAAKm6C,cAAcz4C,OAAS,EACd1B,KAAKm6C,cAAcpoC,KAAIi6B,GAAUhsC,KAAKy5C,WAAWrN,QAAQJ,KAC1DjqB,MAAMw8B,GAEhBA,EAAQv+C,KAAK+lB,OACxB,EACAm1B,OAAAA,GACI,QAAIl7C,KAAK+lB,OAAOlb,OAAS2iC,GAAAA,GAASC,QAI9BztC,KAAKgsC,QAAUhsC,KAAKo6C,cAAc/zC,SAASrG,KAAKgsC,WAG5ChsC,KAAK+lB,OAAO4lB,YAAcC,GAAAA,GAAWoK,QACjD,EACAwI,WAAY,CACRz4C,GAAAA,GACI,OAAO/F,KAAKy+C,iBAAiB7C,SAAW57C,KAAK49C,SAASl2C,UAC1D,EACAmL,GAAAA,CAAI+oC,GAEA,GAAIA,EAAQ,KAAA8C,EAGR,MAAMhT,EAAe,QAAXgT,EAAG1+C,KAAK0hC,WAAG,IAAAgd,OAAA,EAARA,EAAUC,QAAQ,oBAC/BjT,EAAK5Z,MAAM8sB,eAAe,iBAC1BlT,EAAK5Z,MAAM8sB,eAAe,gBAC9B,CACA5+C,KAAKy+C,iBAAiB7C,OAASA,EAAS57C,KAAK49C,SAASl2C,WAAa,IACvE,IAGRw9B,MAAO,CAKHnf,MAAAA,GACI/lB,KAAK6+C,YACT,GAEJpb,aAAAA,GACIzjC,KAAK6+C,YACT,EACAze,QAAS,CACLye,UAAAA,GAEI7+C,KAAKo9C,QAAU,GACfp9C,KAAKw8C,MAAMG,QAAQvO,QAEnBpuC,KAAKw+C,YAAa,CACtB,EAEAM,YAAAA,CAAa3+C,GAET,GAAIH,KAAKw+C,WACL,OAIJ,IAAKx+C,KAAKs9C,SAAU,KAAAyB,EAEhB,MAAMrT,EAAe,QAAXqT,EAAG/+C,KAAK0hC,WAAG,IAAAqd,OAAA,EAARA,EAAUJ,QAAQ,oBACzB5F,EAAcrN,EAAKha,wBAGzBga,EAAK5Z,MAAMktB,YAAY,gBAAiBzpB,KAAKD,IAAI,EAAGn1B,EAAM8+C,QAAUlG,EAAYn+B,KAAO,KAAO,MAC9F8wB,EAAK5Z,MAAMktB,YAAY,gBAAiBzpB,KAAKD,IAAI,EAAGn1B,EAAM++C,QAAUnG,EAAYnnB,KAAO,KAC3F,CAEA,MAAMutB,EAAwBn/C,KAAKm6C,cAAcz4C,OAAS,EAC1D1B,KAAKy+C,iBAAiB7C,OAAS57C,KAAKg+C,YAAcmB,EAAwB,SAAWn/C,KAAK49C,SAASl2C,WAEnGvH,EAAMmsB,iBACNnsB,EAAMmhC,iBACV,EACA8d,iBAAAA,CAAkBj/C,GACd,GAAIA,EAAM6rB,SAAW7rB,EAAM2rB,QAGvB,OAFA3rB,EAAMmsB,iBACNnpB,OAAOsF,MAAK6yB,EAAAA,GAAAA,IAAY,cAAe,CAAEkf,OAAQx6C,KAAKgsC,WAC/C,EAEXhsC,KAAKw8C,MAAMrtC,QAAQiwC,kBAAkBj/C,EACzC,EACAk/C,sBAAAA,CAAuBl/C,GAAO,IAAAm/C,EAC1Bn/C,EAAMmsB,iBACNnsB,EAAMmhC,kBACFie,UAAsB,QAATD,EAAbC,GAAehU,eAAO,IAAA+T,GAAtBA,EAAAp+C,KAAAq+C,GAAyB,CAACv/C,KAAK+lB,QAAS/lB,KAAK2kC,cAC7C4a,GAAchjC,KAAKvc,KAAK+lB,OAAQ/lB,KAAK2kC,YAAa3kC,KAAKu9C,WAE/D,EACA5C,UAAAA,CAAWx6C,GACPH,KAAKq9C,SAAWr9C,KAAKk7C,QAChBl7C,KAAKk7C,QAKN/6C,EAAM6rB,QACN7rB,EAAMy6C,aAAaC,WAAa,OAGhC16C,EAAMy6C,aAAaC,WAAa,OARhC16C,EAAMy6C,aAAaC,WAAa,MAUxC,EACA2E,WAAAA,CAAYr/C,GAGR,MAAMisB,EAAgBjsB,EAAMisB,cACxBA,SAAAA,EAAeqzB,SAASt/C,EAAMu/C,iBAGlC1/C,KAAKq9C,UAAW,EACpB,EACA,iBAAMsC,CAAYx/C,GAAO,IAAA46C,EAAA6E,EAAA5E,EAErB,GADA76C,EAAMmhC,mBACDthC,KAAKu+C,UAAYv+C,KAAKgsC,OAGvB,OAFA7rC,EAAMmsB,sBACNnsB,EAAMmhC,kBAGVT,GAAOwE,MAAM,eAAgB,CAAEllC,UAEb,QAAlB46C,EAAA56C,EAAMy6C,oBAAY,IAAAG,GAAW,QAAX6E,EAAlB7E,EAAoB8E,iBAAS,IAAAD,GAA7BA,EAAA1+C,KAAA65C,GAEA/6C,KAAK87C,cAAcprC,SAGf1Q,KAAKm6C,cAAc9zC,SAASrG,KAAKgsC,QACjChsC,KAAKw5C,cAAc3mC,IAAI7S,KAAKm6C,eAG5Bn6C,KAAKw5C,cAAc3mC,IAAI,CAAC7S,KAAKgsC,SAEjC,MAAMR,EAAQxrC,KAAKw5C,cAAchB,SAC5BzmC,KAAIi6B,GAAUhsC,KAAKy5C,WAAWrN,QAAQJ,KACrC8T,ODxPmBzwC,UAC1B,IAAI9I,SAASD,IACXq2C,KACDA,IAAU,IAAIG,IAAUiD,SACxBv2C,SAAS4B,KAAKu2B,YAAYgb,GAAQjb,MAEtCib,GAAQngB,OAAOgP,GACfmR,GAAQqD,IAAI,UAAU,KAClB15C,EAAQq2C,GAAQjb,KAChBib,GAAQsD,KAAK,SAAS,GACxB,IC8OsBC,CAAsB1U,GACxB,QAAlBwP,EAAA76C,EAAMy6C,oBAAY,IAAAI,GAAlBA,EAAoBmF,aAAaL,GAAQ,IAAK,GAClD,EACAM,SAAAA,GACIpgD,KAAKw5C,cAAcpL,QACnBpuC,KAAKq9C,UAAW,EAChBxc,GAAOwE,MAAM,aACjB,EACA,YAAMyV,CAAO36C,GAAO,IAAAkgD,EAAAC,EAAApG,EAEhB,KAAKl6C,KAAKo6C,eAAoC,QAAnBiG,EAAClgD,EAAMy6C,oBAAY,IAAAyF,GAAO,QAAPA,EAAlBA,EAAoBtJ,aAAK,IAAAsJ,GAAzBA,EAA2B3+C,QACnD,OAEJvB,EAAMmsB,iBACNnsB,EAAMmhC,kBAEN,MAAM4M,EAAYluC,KAAKo6C,cACjBrD,EAAQ,KAAsB,QAAlBuJ,EAAAngD,EAAMy6C,oBAAY,IAAA0F,OAAA,EAAlBA,EAAoBvJ,QAAS,IAGzCQ,QAAiBT,GAAuBC,GAExCvI,QAAiC,QAAtB0L,EAAMl6C,KAAK2kC,mBAAW,IAAAuV,OAAA,EAAhBA,EAAkBjH,YAAYjzC,KAAK+lB,OAAOpT,OAC3DghC,EAASnF,aAAQ,EAARA,EAAUmF,OACzB,IAAKA,EAED,YADA7S,EAAAA,GAAAA,IAAU9gC,KAAK0/B,EAAE,QAAS,0CAK9B,IAAK1/B,KAAKk7C,SAAW/6C,EAAMgsB,OACvB,OAEJ,MAAMmsB,EAASn4C,EAAM6rB,QAIrB,GAHAhsB,KAAKq9C,UAAW,EAChBxc,GAAOwE,MAAM,UAAW,CAAEllC,QAAOwzC,SAAQzF,YAAWqJ,aAEhDA,EAAS/I,SAAS9sC,OAAS,EAE3B,kBADMi2C,GAAoBJ,EAAU5D,EAAQnF,EAASA,UAIzD,MAAMhD,EAAQ0C,EAAUn8B,KAAIi6B,GAAUhsC,KAAKy5C,WAAWrN,QAAQJ,WACxDqM,GAAoB7M,EAAOmI,EAAQnF,EAASA,SAAU8J,GAGxDpK,EAAU5E,MAAK0C,GAAUhsC,KAAKm6C,cAAc9zC,SAAS2lC,OACrDnL,GAAOwE,MAAM,gDACbrlC,KAAK05C,eAAetL,QAE5B,EACA1O,EAACA,GAAAA,qBCzST,MCNmQ,GDMnQ,CACI1+B,KAAM,sBACN2hB,MAAO,CACHoD,OAAQ,CACJlb,KAAMtL,OACNmqB,UAAU,GAEdib,YAAa,CACT95B,KAAMtL,OACNmqB,UAAU,GAEd7G,OAAQ,CACJhY,KAAM42B,SACN/X,UAAU,IAGlBwb,MAAO,CACHnf,MAAAA,GACI,KAAKw6B,mBACT,EACA5b,WAAAA,GACI,KAAK4b,mBACT,GAEJxgB,OAAAA,GACI,KAAKwgB,mBACT,EACAngB,QAAS,CACL,uBAAMmgB,GACF,MAAM1W,QAAgB,KAAKhnB,OAAO,KAAKkD,OAAQ,KAAK4e,aAChDkF,EACA,KAAKnI,IAAIgb,gBAAgB7S,GAGzB,KAAKnI,IAAIgb,iBAEjB,IExBR,IAXgB,QACd,IFRW,WAA+C,OAAO/gB,EAA5B37B,KAAY47B,MAAMD,IAAa,OACtE,GACsB,IESpB,EACA,KACA,KACA,MAI8B,QClB4E,GCoB5G,CACE36B,KAAM,gBACNw6B,MAAO,CAAC,SACR7Y,MAAO,CACLxX,MAAO,CACLN,KAAME,QAER0wB,UAAW,CACT5wB,KAAME,OACN6X,QAAS,gBAEXrQ,KAAM,CACJ1H,KAAMgS,OACN+F,QAAS,MCff,IAXgB,QACd,ICRW,WAAkB,IAAI8Y,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,uCAAuChX,MAAM,CAAC,eAAc4W,EAAIvwB,OAAQ,KAAY,aAAauwB,EAAIvwB,MAAM,KAAO,OAAOxI,GAAG,CAAC,MAAQ,SAASo5B,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BhX,MAAM,CAAC,KAAO4W,EAAID,UAAU,MAAQC,EAAInpB,KAAK,OAASmpB,EAAInpB,KAAK,QAAU,cAAc,CAACopB,EAAG,OAAO,CAAC7W,MAAM,CAAC,EAAI,2EAA2E,CAAE4W,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIjrB,GAAGirB,EAAIvwB,UAAUuwB,EAAI7iB,UAC1lB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,QElB+E,GCoB/G,CACE7X,KAAM,mBACNw6B,MAAO,CAAC,SACR7Y,MAAO,CACLxX,MAAO,CACLN,KAAME,QAER0wB,UAAW,CACT5wB,KAAME,OACN6X,QAAS,gBAEXrQ,KAAM,CACJ1H,KAAMgS,OACN+F,QAAS,MCff,IAXgB,QACd,ICRW,WAAkB,IAAI8Y,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,0CAA0ChX,MAAM,CAAC,eAAc4W,EAAIvwB,OAAQ,KAAY,aAAauwB,EAAIvwB,MAAM,KAAO,OAAOxI,GAAG,CAAC,MAAQ,SAASo5B,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BhX,MAAM,CAAC,KAAO4W,EAAID,UAAU,MAAQC,EAAInpB,KAAK,OAASmpB,EAAInpB,KAAK,QAAU,cAAc,CAACopB,EAAG,OAAO,CAAC7W,MAAM,CAAC,EAAI,gEAAgE,CAAE4W,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIjrB,GAAGirB,EAAIvwB,UAAUuwB,EAAI7iB,UACllB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,gDEJhC,MAAM1J,IAAUqxC,EAAAA,GAAAA,MAChB,GAAezmB,EAAAA,GAAIva,OAAO,CACtBxe,KAAM,mBACNwZ,WAAY,CACRimC,cAAa,GACbC,iBAAgB,GAChBC,oBAAmB,GACnBC,eAAc,KACdC,UAAS,KACTC,kBAAiB,KACjBxc,iBAAgB,KAChByc,cAAaA,GAAAA,GAEjBp+B,MAAO,CACH81B,eAAgB,CACZ5tC,KAAMgS,OACN6M,UAAU,GAEd0zB,QAAS,CACLvyC,KAAME,OACN2e,UAAU,GAEdkyB,OAAQ,CACJ/wC,KAAMwT,QACNuE,SAAS,GAEbmD,OAAQ,CACJlb,KAAMtL,OACNmqB,UAAU,GAEd4zB,SAAU,CACNzyC,KAAMwT,QACNuE,SAAS,IAGjB9d,KAAIA,KACO,CACHk8C,cAAe,OAGvBhiB,SAAU,CACNue,UAAAA,GAAa,IAAA7Y,EAET,QAAmB,QAAXA,EAAA,KAAKvhB,cAAM,IAAAuhB,GAAO,QAAPA,EAAXA,EAAannB,aAAK,IAAAmnB,GAAK,QAALA,EAAlBA,EAAoBuB,WAAG,IAAAvB,OAAA,EAAvBA,EAAyBh9B,aAAc,KAAKoE,QAAQ,WAAY,KAC5E,EACA64B,WAAAA,GACI,OAAO,KAAKG,YAAYyI,MAC5B,EACAsQ,SAAAA,GACI,OAAO,KAAK93B,OAAO5c,SAAWkrC,GAAAA,GAAWC,OAC7C,EAEA2M,cAAAA,GACI,OAAI,KAAKl7B,OAAOsrB,WAAW2B,OAChB,GAEJ7jC,GACF2C,QAAO1C,IAAWA,EAAOm8B,SAAWn8B,EAAOm8B,QAAQ,CAAC,KAAKxlB,QAAS,KAAK4e,eACvEhoB,MAAK,CAAC1S,EAAG2S,KAAO3S,EAAE+6B,OAAS,IAAMpoB,EAAEooB,OAAS,IACrD,EAEAkc,oBAAAA,GACI,OAAI,KAAKzI,eAAiB,KAAO,KAAK6E,SAC3B,GAEJ,KAAK2D,eAAenvC,QAAO1C,IAAM,IAAA+xC,EAAA,OAAI/xC,SAAc,QAAR+xC,EAAN/xC,EAAQgyC,cAAM,IAAAD,OAAA,EAAdA,EAAAjgD,KAAAkO,EAAiB,KAAK2W,OAAQ,KAAK4e,YAAY,GAC/F,EAEA0c,oBAAAA,GACI,OAAI,KAAK/D,SACE,GAEJ,KAAK2D,eAAenvC,QAAO1C,GAAyC,mBAAxBA,EAAOkyC,cAC9D,EAEAC,qBAAAA,GACI,OAAO,KAAKN,eAAenvC,QAAO1C,KAAYA,UAAAA,EAAQwT,UAC1D,EAEA4+B,kBAAAA,GAGI,GAAI,KAAKR,cACL,OAAO,KAAKE,qBAEhB,MAAM/xC,EAAU,IAET,KAAK+xC,wBAEL,KAAKD,eAAenvC,QAAO1C,GAAUA,EAAOwT,UAAY6+B,GAAAA,GAAYC,QAAyC,mBAAxBtyC,EAAOkyC,gBACjGxvC,QAAO,CAACzM,EAAOoZ,EAAOxW,IAEbwW,IAAUxW,EAAK05C,WAAUvyC,GAAUA,EAAO/K,KAAOgB,EAAMhB,OAG5Du9C,EAAgBzyC,EAAQ2C,QAAO1C,IAAWA,EAAOmS,SAAQxP,KAAI3C,GAAUA,EAAO/K,KAEpF,OAAO8K,EAAQ2C,QAAO1C,KAAYA,EAAOmS,QAAUqgC,EAAcv7C,SAAS+I,EAAOmS,UACrF,EACAsgC,qBAAAA,GACI,OAAO,KAAKZ,eACPnvC,QAAO1C,GAAUA,EAAOmS,SACxB9T,QAAO,CAACkY,EAAKvW,KACTuW,EAAIvW,EAAOmS,UACZoE,EAAIvW,EAAOmS,QAAU,IAEzBoE,EAAIvW,EAAOmS,QAAQ/gB,KAAK4O,GACjBuW,IACR,CAAC,EACR,EACA64B,WAAY,CACRz4C,GAAAA,GACI,OAAO,KAAK61C,MAChB,EACA/oC,GAAAA,CAAIxN,GACA,KAAK22B,MAAM,gBAAiB32B,EAChC,GAOJy8C,qBAAoBA,IACTt4C,SAAS+nB,cAAc,8BAElCwwB,SAAAA,GACI,OAAO,KAAKh8B,OAAOi8B,YAAY,aACnC,GAEJ5hB,QAAS,CACL6hB,iBAAAA,CAAkB7yC,GACd,IAAK,KAAKkuC,UAAa,KAAK7E,eAAiB,KAAOrpC,EAAOgyC,SAAoC,mBAAjBhyC,EAAOjE,MAAsB,CAGvG,MAAMA,EAAQiE,EAAOjE,MAAM,CAAC,KAAK4a,QAAS,KAAK4e,aAC/C,GAAIx5B,EACA,OAAOA,CACf,CACA,OAAOiE,EAAOg8B,YAAY,CAAC,KAAKrlB,QAAS,KAAK4e,YAClD,EACA,mBAAMud,CAAc9yC,GAA2B,IAAnB+yC,EAAS7/C,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,IAAAA,UAAA,GAEjC,GAAI,KAAKu7C,WAA8B,KAAjB,KAAKT,QACvB,OAGJ,GAAI,KAAKyE,sBAAsBzyC,EAAO/K,IAElC,YADA,KAAK28C,cAAgB5xC,GAGzB,MAAMg8B,EAAch8B,EAAOg8B,YAAY,CAAC,KAAKrlB,QAAS,KAAK4e,aAC3D,IAEI,KAAK3I,MAAM,iBAAkB5sB,EAAO/K,IACpC01B,EAAAA,GAAAA,IAAQ,KAAKhU,OAAQ,SAAUsuB,GAAAA,GAAWC,SAC1C,MAAM8N,QAAgBhzC,EAAOmN,KAAK,KAAKwJ,OAAQ,KAAK4e,YAAa,KAAK4Y,YAEtE,GAAI6E,QACA,OAEJ,GAAIA,EAEA,YADAre,EAAAA,GAAAA,KAAYrE,EAAAA,GAAAA,IAAE,QAAS,+CAAgD,CAAE0L,kBAG7EtK,EAAAA,GAAAA,KAAUpB,EAAAA,GAAAA,IAAE,QAAS,gCAAiC,CAAE0L,gBAC5D,CACA,MAAOnmC,GACH47B,GAAO73B,MAAM,+BAAgC,CAAEoG,SAAQnK,KACvD67B,EAAAA,GAAAA,KAAUpB,EAAAA,GAAAA,IAAE,QAAS,gCAAiC,CAAE0L,gBAC5D,CAAC,QAGG,KAAKpP,MAAM,iBAAkB,IAC7BjC,EAAAA,GAAAA,IAAQ,KAAKhU,OAAQ,cAAUvjB,GAE3B2/C,IACA,KAAKnB,cAAgB,KAE7B,CACJ,EACA5B,iBAAAA,CAAkBj/C,GACV,KAAKohD,sBAAsB7/C,OAAS,IACpCvB,EAAMmsB,iBACNnsB,EAAMmhC,kBAEN,KAAKigB,sBAAsB,GAAGhlC,KAAK,KAAKwJ,OAAQ,KAAK4e,YAAa,KAAK4Y,YAE/E,EACA8E,MAAAA,CAAOh+C,GAAI,IAAAi+C,EACP,OAAqC,QAA9BA,EAAA,KAAKT,sBAAsBx9C,UAAG,IAAAi+C,OAAA,EAA9BA,EAAgC5gD,QAAS,CACpD,EACA,uBAAM6gD,CAAkBnzC,GACpB,KAAK4xC,cAAgB,WAEf,KAAK3wB,YAEX,KAAKA,WAAU,KAEX,MAAMmyB,EAAa,KAAKhG,MAAK,UAAAn7C,OAAW+N,EAAO/K,KAAM,GACrC,IAAAo+C,EAAZD,IACsC,QAAtCC,EAAAD,EAAW9gB,IAAInQ,cAAc,iBAAS,IAAAkxB,GAAtCA,EAAwCC,QAC5C,GAER,EACAhjB,EAACA,GAAAA,MC3NgQ,sBCWrQ,GAAU,CAAC,EAEf,GAAQsB,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,uBCftD,GAAU,CAAC,EAEf,GAAQL,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,OCjB1D,IAAI,IAAY,QACd,IJVW,WAAiB,IAAAshB,EAAAC,EAAKlnB,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4f,YAAmB7f,EAAG,KAAK,CAACG,YAAY,0BAA0BhX,MAAM,CAAC,iCAAiC,KAAK,CAAC4W,EAAIsI,GAAItI,EAAI2lB,sBAAsB,SAASjyC,GAAQ,OAAOusB,EAAG,sBAAsB,CAAC/uB,IAAIwC,EAAO/K,GAAGy3B,YAAY,iCAAiC9Q,MAAM,0BAA4B5b,EAAO/K,GAAGygB,MAAM,CAAC,eAAe4W,EAAIiJ,YAAY,OAASv1B,EAAOkyC,aAAa,OAAS5lB,EAAI3V,SAAS,IAAG2V,EAAIQ,GAAG,KAAKP,EAAG,YAAY,CAACna,IAAI,cAAcsD,MAAM,CAAC,qBAAqB4W,EAAIomB,qBAAqB,UAAYpmB,EAAIomB,qBAAqB,cAAa,EAAK,KAAO,WAAW,aAAiD,IAApCpmB,EAAIwlB,qBAAqBx/C,OAAuD,OAASg6B,EAAIwlB,qBAAqBx/C,OAAO,KAAOg6B,EAAI8iB,YAAY77C,GAAG,CAAC,cAAc,SAASo5B,GAAQL,EAAI8iB,WAAWziB,CAAM,EAAE,MAAQ,SAASA,GAAQL,EAAIslB,cAAgB,IAAI,IAAI,CAACtlB,EAAIsI,GAAItI,EAAI8lB,oBAAoB,SAASpyC,GAAO,IAAAyzC,EAAC,OAAOlnB,EAAG,iBAAiB,CAAC/uB,IAAIwC,EAAO/K,GAAGmd,IAAG,UAAAngB,OAAW+N,EAAO/K,IAAKy+C,UAAS,EAAK93B,MAAM,CAClhC,CAAC,0BAAD3pB,OAA2B+N,EAAO/K,MAAO,EACzC,+BAAkCq3B,EAAI2mB,OAAOjzC,EAAO/K,KACnDygB,MAAM,CAAC,qBAAqB4W,EAAI2mB,OAAOjzC,EAAO/K,IAAI,gCAAgC+K,EAAO/K,GAAG,UAAUq3B,EAAI2mB,OAAOjzC,EAAO/K,IAAI,MAAoB,QAAbw+C,EAACzzC,EAAOjE,aAAK,IAAA03C,OAAA,EAAZA,EAAA3hD,KAAAkO,EAAe,CAACssB,EAAI3V,QAAS2V,EAAIiJ,cAAchiC,GAAG,CAAC,MAAQ,SAASo5B,GAAQ,OAAOL,EAAIwmB,cAAc9yC,EAAO,GAAG60B,YAAYvI,EAAIwI,GAAG,CAAC,CAACt3B,IAAI,OAAO/M,GAAG,WAAW,MAAO,CAAE67B,EAAI0hB,UAAYhuC,EAAO/K,GAAIs3B,EAAG,gBAAgB,CAAC7W,MAAM,CAAC,KAAO,MAAM6W,EAAG,mBAAmB,CAAC7W,MAAM,CAAC,IAAM1V,EAAOi8B,cAAc,CAAC3P,EAAI3V,QAAS2V,EAAIiJ,gBAAgB,EAAE19B,OAAM,IAAO,MAAK,IAAO,CAACy0B,EAAIQ,GAAG,WAAWR,EAAIjrB,GAAqB,WAAlBirB,EAAIqmB,WAAwC,mBAAd3yC,EAAO/K,GAA0B,GAAKq3B,EAAIumB,kBAAkB7yC,IAAS,WAAW,IAAGssB,EAAIQ,GAAG,KAAMR,EAAIslB,eAAiBtlB,EAAImmB,sBAAuC,QAAlBc,EAACjnB,EAAIslB,qBAAa,IAAA2B,OAAA,EAAjBA,EAAmBt+C,IAAK,CAACs3B,EAAG,iBAAiB,CAACG,YAAY,8BAA8Bn5B,GAAG,CAAC,MAAQ,SAASo5B,GAAQ,OAAOL,EAAI6mB,kBAAkB7mB,EAAIslB,cAAc,GAAG/c,YAAYvI,EAAIwI,GAAG,CAAC,CAACt3B,IAAI,OAAO/M,GAAG,WAAW,MAAO,CAAC87B,EAAG,iBAAiB,EAAE10B,OAAM,IAAO,MAAK,EAAM,aAAa,CAACy0B,EAAIQ,GAAG,aAAaR,EAAIjrB,GAAGirB,EAAIumB,kBAAkBvmB,EAAIslB,gBAAgB,cAActlB,EAAIQ,GAAG,KAAKP,EAAG,qBAAqBD,EAAIQ,GAAG,KAAKR,EAAIsI,GAAItI,EAAImmB,sBAAuC,QAAlBe,EAAClnB,EAAIslB,qBAAa,IAAA4B,OAAA,EAAjBA,EAAmBv+C,KAAK,SAAS+K,GAAO,IAAA2zC,EAAC,OAAOpnB,EAAG,iBAAiB,CAAC/uB,IAAIwC,EAAO/K,GAAGy3B,YAAY,kCAAkC9Q,MAAK,0BAAA3pB,OAA2B+N,EAAO/K,IAAKygB,MAAM,CAAC,qBAAoB,EAA8C,gCAAgC1V,EAAO/K,GAAG,MAAoB,QAAb0+C,EAAC3zC,EAAOjE,aAAK,IAAA43C,OAAA,EAAZA,EAAA7hD,KAAAkO,EAAe,CAACssB,EAAI3V,QAAS2V,EAAIiJ,cAAchiC,GAAG,CAAC,MAAQ,SAASo5B,GAAQ,OAAOL,EAAIwmB,cAAc9yC,EAAO,GAAG60B,YAAYvI,EAAIwI,GAAG,CAAC,CAACt3B,IAAI,OAAO/M,GAAG,WAAW,MAAO,CAAE67B,EAAI0hB,UAAYhuC,EAAO/K,GAAIs3B,EAAG,gBAAgB,CAAC7W,MAAM,CAAC,KAAO,MAAM6W,EAAG,mBAAmB,CAAC7W,MAAM,CAAC,IAAM1V,EAAOi8B,cAAc,CAAC3P,EAAI3V,QAAS2V,EAAIiJ,gBAAgB,EAAE19B,OAAM,IAAO,MAAK,IAAO,CAACy0B,EAAIQ,GAAG,aAAaR,EAAIjrB,GAAGirB,EAAIumB,kBAAkB7yC,IAAS,aAAa,KAAIssB,EAAI7iB,MAAM,IAAI,EAC90D,GACsB,IIQpB,EACA,KACA,WACA,MAIF,SAAe,GAAiB,QCpB0O,ICQ3PsgC,EAAAA,EAAAA,IAAgB,CAC3Bn4C,KAAM,oBACNwZ,WAAY,CACR+nB,sBAAqB,KACrBwe,cAAaA,GAAAA,GAEjBp+B,MAAO,CACHqpB,OAAQ,CACJnhC,KAAMgS,OACN6M,UAAU,GAEdm0B,UAAW,CACPhzC,KAAMwT,QACNuE,SAAS,GAEb4oB,MAAO,CACH3gC,KAAMjJ,MACN8nB,UAAU,GAEd3D,OAAQ,CACJlb,KAAMtL,OACNmqB,UAAU,IAGlB9S,KAAAA,GACI,MAAM8iC,EAAiB5L,KACjBkV,ECNkB,WAC5B,MAmBMA,EAnBQtpC,GAAY,WAAY,CAClC/M,MAAOA,KAAA,CACHof,QAAQ,EACRC,SAAS,EACTF,SAAS,EACTG,UAAU,IAEd9c,QAAS,CACL8zC,OAAAA,CAAQ9iD,GACCA,IACDA,EAAQgD,OAAOhD,OAEnB45B,EAAAA,GAAAA,IAAQ/5B,KAAM,WAAYG,EAAM4rB,QAChCgO,EAAAA,GAAAA,IAAQ/5B,KAAM,YAAaG,EAAM6rB,SACjC+N,EAAAA,GAAAA,IAAQ/5B,KAAM,YAAaG,EAAM2rB,SACjCiO,EAAAA,GAAAA,IAAQ/5B,KAAM,aAAcG,EAAM8rB,SACtC,IAGc7e,IAAM9K,WAQ5B,OANK0gD,EAAchmB,eACf75B,OAAO2sB,iBAAiB,UAAWkzB,EAAcC,SACjD9/C,OAAO2sB,iBAAiB,QAASkzB,EAAcC,SAC/C9/C,OAAO2sB,iBAAiB,YAAakzB,EAAcC,SACnDD,EAAchmB,cAAe,GAE1BgmB,CACX,CDvB8BE,GACtB,MAAO,CACHF,gBACAtJ,iBAER,EACA1a,SAAU,CACNmb,aAAAA,GACI,OAAO,KAAKT,eAAe3L,QAC/B,EACAiQ,UAAAA,GACI,OAAO,KAAK7D,cAAc9zC,SAAS,KAAK2lC,OAC5C,EACAvtB,KAAAA,GACI,OAAO,KAAK+sB,MAAMmW,WAAWt4C,GAASA,EAAK2iC,SAAW,KAAKA,QAC/D,EACAiD,MAAAA,GACI,OAAO,KAAKlpB,OAAOlb,OAAS2iC,GAAAA,GAASe,IACzC,EACA4U,SAAAA,GACI,OAAO,KAAKlU,QACNvP,EAAAA,GAAAA,IAAE,QAAS,4CAA6C,CAAE0L,YAAa,KAAKrlB,OAAOuqB,YACnF5Q,EAAAA,GAAAA,IAAE,QAAS,8CAA+C,CAAE0L,YAAa,KAAKrlB,OAAOuqB,UAC/F,GAEJlQ,QAAS,CACLgjB,iBAAAA,CAAkBrV,GAAU,IAAAsV,EACxB,MAAMC,EAAmB,KAAK7kC,MACxBwvB,EAAoB,KAAKyL,eAAezL,kBAE9C,GAAsB,QAAlBoV,EAAA,KAAKL,qBAAa,IAAAK,GAAlBA,EAAoBp3B,UAAkC,OAAtBgiB,EAA4B,CAC5D,MAAMsV,EAAoB,KAAKpJ,cAAc9zC,SAAS,KAAK2lC,QACrDkM,EAAQ3iB,KAAKiM,IAAI8hB,EAAkBrV,GACnC/lB,EAAMqN,KAAKD,IAAI2Y,EAAmBqV,GAClCtV,EAAgB,KAAK0L,eAAe1L,cACpCwV,EAAgB,KAAKhY,MACtBz5B,KAAI5B,GAAQA,EAAK67B,SACjB7qC,MAAM+2C,EAAOhwB,EAAM,GACnBpW,OAAOuM,SAEN6vB,EAAY,IAAIF,KAAkBwV,GACnC1xC,QAAOk6B,IAAWuX,GAAqBvX,IAAW,KAAKA,SAI5D,OAHAnL,GAAOwE,MAAM,oDAAqD,CAAE6S,QAAOhwB,MAAKs7B,gBAAeD,2BAE/F,KAAK7J,eAAe7mC,IAAIq7B,EAE5B,CACA,MAAMA,EAAYH,EACZ,IAAI,KAAKoM,cAAe,KAAKnO,QAC7B,KAAKmO,cAAcroC,QAAOk6B,GAAUA,IAAW,KAAKA,SAC1DnL,GAAOwE,MAAM,qBAAsB,CAAE6I,cACrC,KAAKwL,eAAe7mC,IAAIq7B,GACxB,KAAKwL,eAAevL,aAAamV,EACrC,EACAG,cAAAA,GACI,KAAK/J,eAAetL,OACxB,EACA1O,EAACA,GAAAA,MEzET,IAXgB,QACd,IFRW,WAAkB,IAAIhE,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4f,YAAmB7f,EAAG,KAAK,CAACG,YAAY,2BAA2Bn5B,GAAG,CAAC,MAAQ,SAASo5B,GAAQ,OAAIA,EAAOlxB,KAAKgL,QAAQ,QAAQ6lB,EAAIgoB,GAAG3nB,EAAO4nB,QAAQ,MAAM,GAAG5nB,EAAOnvB,IAAI,CAAC,MAAM,YAA0BmvB,EAAO/P,SAAS+P,EAAO9P,UAAU8P,EAAOhQ,QAAQgQ,EAAOjQ,QAA/D,KAA0F4P,EAAI+nB,eAAehhD,MAAM,KAAMH,UAAU,IAAI,CAAEo5B,EAAImiB,UAAWliB,EAAG,iBAAiBA,EAAG,wBAAwB,CAAC7W,MAAM,CAAC,aAAa4W,EAAIynB,UAAU,QAAUznB,EAAIsiB,YAAYr7C,GAAG,CAAC,iBAAiB+4B,EAAI0nB,sBAAsB,EACnkB,GACsB,IESpB,EACA,KACA,KACA,MAI8B,QClBhC,gBAUA,MAAMQ,IAAsBxnB,EAAAA,GAAAA,GAAU,QAAS,sBAAuB,ICVgM,GDWvPrC,EAAAA,GAAIva,OAAO,CACtBxe,KAAM,gBACNwZ,WAAY,CACRqpC,YAAWA,GAAAA,GAEflhC,MAAO,CACHyoB,YAAa,CACTvgC,KAAME,OACN2e,UAAU,GAEdo0B,UAAW,CACPjzC,KAAME,OACN2e,UAAU,GAEd+uB,eAAgB,CACZ5tC,KAAMgS,OACN6M,UAAU,GAEd8hB,MAAO,CACH3gC,KAAMjJ,MACN8nB,UAAU,GAEd3D,OAAQ,CACJlb,KAAMtL,OACNmqB,UAAU,GAEd4zB,SAAU,CACNzyC,KAAMwT,QACNuE,SAAS,IAGjBhM,MAAKA,KAEM,CACHklC,cAFkBD,OAK1B7c,SAAU,CACNif,UAAAA,GACI,OAAO,KAAKnC,cAAcC,eAAiB,KAAKh2B,MACpD,EACAm4B,qBAAAA,GACI,OAAO,KAAKD,YAAc,KAAKxF,eAAiB,GACpD,EACA3D,QAAS,CACL/uC,GAAAA,GACI,OAAO,KAAK+1C,cAAchH,OAC9B,EACAjiC,GAAAA,CAAIiiC,GACA,KAAKgH,cAAchH,QAAUA,CACjC,GAEJgP,WAAAA,GAKI,MAJmB,CACf,CAACtW,GAAAA,GAASe,OAAO7O,EAAAA,GAAAA,IAAE,QAAS,aAC5B,CAAC8N,GAAAA,GAASC,SAAS/N,EAAAA,GAAAA,IAAE,QAAS,gBAEhB,KAAK3Z,OAAOlb,KAClC,EACAk5C,MAAAA,GAAS,IAAAC,EAAArG,EACL,GAAI,KAAK53B,OAAOsrB,WAAW2B,OACvB,MAAO,CACHiR,GAAI,OACJjjC,OAAQ,CACJ7V,OAAOu0B,EAAAA,GAAAA,IAAE,QAAS,8BAI9B,MAAM6hB,EAAoC,QAAfyC,EAAG,KAAKlgC,eAAO,IAAAkgC,GAAO,QAAPA,EAAZA,EAAcxH,aAAK,IAAAwH,GAAS,QAATA,EAAnBA,EAAqB70C,eAAO,IAAA60C,OAAA,EAA5BA,EAA8BzC,sBAC5D,OAAIA,aAAqB,EAArBA,EAAuB7/C,QAAS,EAGzB,CACHuiD,GAAI,IACJjjC,OAAQ,CACJ7V,MALOo2C,EAAsB,GACVnW,YAAY,CAAC,KAAKrlB,QAAS,KAAK4e,aAKnDuf,KAAM,SACNC,SAAU,OAIP,QAAXxG,EAAA,KAAK53B,cAAM,IAAA43B,OAAA,EAAXA,EAAahS,aAAcC,GAAAA,GAAWwY,KAC/B,CACHH,GAAI,IACJjjC,OAAQ,CACJ5Y,SAAU,KAAK2d,OAAOuqB,SACtBlmC,KAAM,KAAK2b,OAAOA,OAClB5a,OAAOu0B,EAAAA,GAAAA,IAAE,QAAS,uBAAwB,CAAE1+B,KAAM,KAAKoqC,cACvD+Y,SAAU,MAIf,CACHF,GAAI,OAEZ,GAEJ/e,MAAO,CAMH+Y,WAAY,CACRoG,WAAW,EACXv5B,OAAAA,CAAQw5B,GACAA,GACA,KAAKC,eAEb,IAGRnkB,QAAS,CAMLokB,kBAAAA,CAAmBrkD,GAAO,IAAAskD,EAAAC,EACtB,MAAM3pC,EAAQ5a,EAAM6D,OACd8wC,GAA2B,QAAjB2P,GAAAC,EAAA,KAAK5P,SAAQ33B,YAAI,IAAAsnC,OAAA,EAAjBA,EAAAvjD,KAAAwjD,KAAyB,GACzC7jB,GAAOwE,MAAM,0BAA2B,CAAEyP,YAC1C,IACI,KAAK6P,gBAAgB7P,GACrB/5B,EAAM6pC,kBAAkB,IACxB7pC,EAAM5P,MAAQ,EAClB,CACA,MAAOlG,GACH8V,EAAM6pC,kBAAkB3/C,EAAEgH,SAC1B8O,EAAM5P,MAAQlG,EAAEgH,OACpB,CAAC,QAEG8O,EAAM8pC,gBACV,CACJ,EACAF,eAAAA,CAAgB3jD,GACZ,MAAM8jD,EAAc9jD,EAAKmc,OACzB,GAAoB,MAAhB2nC,GAAuC,OAAhBA,EACvB,MAAM,IAAIj5C,OAAM6zB,EAAAA,GAAAA,IAAE,QAAS,oCAAqC,CAAE1+B,UAEjE,GAA2B,IAAvB8jD,EAAYpjD,OACjB,MAAM,IAAImK,OAAM6zB,EAAAA,GAAAA,IAAE,QAAS,+BAE1B,IAAkC,IAA9BolB,EAAYjvC,QAAQ,KACzB,MAAM,IAAIhK,OAAM6zB,EAAAA,GAAAA,IAAE,QAAS,2CAE1B,GAAIolB,EAAY7pC,MAAM8pC,GAAGngC,OAAOogC,uBACjC,MAAM,IAAIn5C,OAAM6zB,EAAAA,GAAAA,IAAE,QAAS,uCAAwC,CAAE1+B,UAEpE,GAAI,KAAKikD,kBAAkBjkD,GAC5B,MAAM,IAAI6K,OAAM6zB,EAAAA,GAAAA,IAAE,QAAS,4BAA6B,CAAEoV,QAAS9zC,KAQvE,OANgB8jD,EAAYrqC,MAAM,IAC1BvJ,SAAQg0C,IACZ,IAA2C,IAAvCtB,GAAoB/tC,QAAQqvC,GAC5B,MAAM,IAAIr5C,MAAM,KAAK6zB,EAAE,QAAS,8CAA+C,CAAEwlB,SACrF,KAEG,CACX,EACAD,iBAAAA,CAAkBjkD,GACd,OAAO,KAAKwqC,MAAM3G,MAAKx7B,GAAQA,EAAKinC,WAAatvC,GAAQqI,IAAS,KAAK0c,QAC3E,EACAw+B,aAAAA,GACI,KAAKl0B,WAAU,KAAM,IAAA80B,EAEjB,MAAMC,GAAa,KAAKr/B,OAAO+3B,WAAa,IAAIrjC,MAAM,IAAI/Y,OACpDA,EAAS,KAAKqkB,OAAOuqB,SAAS71B,MAAM,IAAI/Y,OAAS0jD,EACjDrqC,EAA8B,QAAzBoqC,EAAG,KAAK3I,MAAM6I,mBAAW,IAAAF,GAAO,QAAPA,EAAtBA,EAAwB3I,aAAK,IAAA2I,GAAY,QAAZA,EAA7BA,EAA+BG,kBAAU,IAAAH,GAAO,QAAPA,EAAzCA,EAA2C3I,aAAK,IAAA2I,OAAA,EAAhDA,EAAkDpqC,MAC3DA,GAILA,EAAMwqC,kBAAkB,EAAG7jD,GAC3BqZ,EAAM2nC,QAEN3nC,EAAMzR,cAAc,IAAIk8C,MAAM,WAN1B3kB,GAAO73B,MAAM,kCAMsB,GAE/C,EACAy8C,YAAAA,GACS,KAAKxH,YAIV,KAAKnC,cAAcprC,QACvB,EAEA,cAAMg1C,GAAW,IAAAC,EAAAC,EACb,MAAMC,EAAU,KAAK9/B,OAAOuqB,SACtBwV,EAAmB,KAAK//B,OAAOggC,cAC/BjR,GAA2B,QAAjB6Q,GAAAC,EAAA,KAAK9Q,SAAQ33B,YAAI,IAAAwoC,OAAA,EAAjBA,EAAAzkD,KAAA0kD,KAAyB,GACzC,GAAgB,KAAZ9Q,EAIJ,GAAI+Q,IAAY/Q,EAKhB,GAAI,KAAKmQ,kBAAkBnQ,IACvBhU,EAAAA,GAAAA,KAAUpB,EAAAA,GAAAA,IAAE,QAAS,wDADzB,CAKA,KAAK0d,QAAU,WACfrjB,EAAAA,GAAAA,IAAQ,KAAKhU,OAAQ,SAAUsuB,GAAAA,GAAWC,SAE1C,KAAKvuB,OAAOigC,OAAOlR,GACnBjU,GAAOwE,MAAM,iBAAkB,CAAE+K,YAAa,KAAKrqB,OAAOggC,cAAeD,qBACzE,UACUrpB,EAAAA,GAAAA,GAAM,CACRv2B,OAAQ,OACRmC,IAAKy9C,EACLhU,QAAS,CACLmU,YAAa,KAAKlgC,OAAOggC,cACzBG,UAAW,QAInBpkD,EAAAA,GAAAA,IAAK,qBAAsB,KAAKikB,SAChCjkB,EAAAA,GAAAA,IAAK,qBAAsB,KAAKikB,SAChCge,EAAAA,GAAAA,KAAYrE,EAAAA,GAAAA,IAAE,QAAS,qCAAsC,CAAEmmB,UAAS/Q,aAExE,KAAK2Q,eACL,KAAKp1B,WAAU,KACX,KAAKmsB,MAAMlM,SAASoS,OAAO,GAEnC,CACA,MAAO15C,GAAO,IAAAusC,EAAAC,EAKV,GAJA3U,GAAO73B,MAAM,4BAA6B,CAAEA,UAC5C,KAAK+c,OAAOigC,OAAOH,GACnB,KAAKrJ,MAAM6I,YAAY3C,QAES,OAA5B15C,SAAe,QAAVusC,EAALvsC,EAAOH,gBAAQ,IAAA0sC,OAAA,EAAfA,EAAiBpsC,QAEjB,YADA23B,EAAAA,GAAAA,KAAUpB,EAAAA,GAAAA,IAAE,QAAS,2DAA4D,CAAEmmB,aAGlF,GAAgC,OAA5B78C,SAAe,QAAVwsC,EAALxsC,EAAOH,gBAAQ,IAAA2sC,OAAA,EAAfA,EAAiBrsC,QAEtB,YADA23B,EAAAA,GAAAA,KAAUpB,EAAAA,GAAAA,IAAE,QAAS,8FAA+F,CAAEoV,UAAS7O,IAAK,KAAKsX,eAI7Izc,EAAAA,GAAAA,KAAUpB,EAAAA,GAAAA,IAAE,QAAS,+BAAgC,CAAEmmB,YAC3D,CAAC,QAEG,KAAKzI,SAAU,EACfrjB,EAAAA,GAAAA,IAAQ,KAAKhU,OAAQ,cAAUvjB,EACnC,CA7CA,MAPI,KAAKijD,oBAJL3kB,EAAAA,GAAAA,KAAUpB,EAAAA,GAAAA,IAAE,QAAS,wBAyD7B,EACAA,EAACA,GAAAA,MEnPT,IAXgB,QACd,IFRW,WAAkB,IAAIhE,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4f,YAAoB9f,EAAIuiB,WAAYtiB,EAAG,OAAO,CAACwqB,WAAW,CAAC,CAACnlD,KAAK,mBAAmBolD,QAAQ,qBAAqB/gD,MAAOq2B,EAAI+pB,aAAcY,WAAW,iBAAiBvqB,YAAY,yBAAyBhX,MAAM,CAAC,aAAa4W,EAAIgE,EAAE,QAAS,gBAAgB/8B,GAAG,CAAC,OAAS,SAASo5B,GAAyD,OAAjDA,EAAOzP,iBAAiByP,EAAOuF,kBAAyB5F,EAAIgqB,SAASjjD,MAAM,KAAMH,UAAU,IAAI,CAACq5B,EAAG,cAAc,CAACna,IAAI,cAAcsD,MAAM,CAAC,MAAQ4W,EAAIooB,YAAY,WAAY,EAAK,UAAY,EAAE,UAAW,EAAK,MAAQpoB,EAAIoZ,QAAQ,aAAe,QAAQnyC,GAAG,CAAC,eAAe,SAASo5B,GAAQL,EAAIoZ,QAAQ/Y,CAAM,EAAE,MAAQ,CAACL,EAAI8oB,mBAAmB,SAASzoB,GAAQ,OAAIA,EAAOlxB,KAAKgL,QAAQ,QAAQ6lB,EAAIgoB,GAAG3nB,EAAO4nB,QAAQ,MAAM,GAAG5nB,EAAOnvB,IAAI,CAAC,MAAM,WAAkB,KAAY8uB,EAAI+pB,aAAahjD,MAAM,KAAMH,UAAU,OAAO,GAAGq5B,EAAGD,EAAIqoB,OAAOE,GAAGvoB,EAAIG,GAAG,CAACra,IAAI,WAAWmI,IAAI,YAAYmS,YAAY,4BAA4BhX,MAAM,CAAC,cAAc4W,EAAIuiB,WAAW,mCAAmC,IAAIt7C,GAAG,CAAC,MAAQ,SAASo5B,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,YAAYL,EAAIqoB,OAAO/iC,QAAO,GAAO,CAAC2a,EAAG,OAAO,CAACG,YAAY,6BAA6B,CAACH,EAAG,OAAO,CAACG,YAAY,wBAAwBwqB,SAAS,CAAC,YAAc5qB,EAAIjrB,GAAGirB,EAAI0P,gBAAgB1P,EAAIQ,GAAG,KAAKP,EAAG,OAAO,CAACG,YAAY,2BAA2BwqB,SAAS,CAAC,YAAc5qB,EAAIjrB,GAAGirB,EAAIoiB,iBAC13C,GACsB,IESpB,EACA,KACA,KACA,MAI8B,QClBhC,gBCoBA,MCpBuG,GDoBvG,CACE98C,KAAM,WACNw6B,MAAO,CAAC,SACR7Y,MAAO,CACLxX,MAAO,CACLN,KAAME,QAER0wB,UAAW,CACT5wB,KAAME,OACN6X,QAAS,gBAEXrQ,KAAM,CACJ1H,KAAMgS,OACN+F,QAAS,MEff,IAXgB,QACd,ICRW,WAAkB,IAAI8Y,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,iCAAiChX,MAAM,CAAC,eAAc4W,EAAIvwB,OAAQ,KAAY,aAAauwB,EAAIvwB,MAAM,KAAO,OAAOxI,GAAG,CAAC,MAAQ,SAASo5B,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BhX,MAAM,CAAC,KAAO4W,EAAID,UAAU,MAAQC,EAAInpB,KAAK,OAASmpB,EAAInpB,KAAK,QAAU,cAAc,CAACopB,EAAG,OAAO,CAAC7W,MAAM,CAAC,EAAI,0FAA0F,CAAE4W,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIjrB,GAAGirB,EAAIvwB,UAAUuwB,EAAI7iB,UACnmB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,QElB6E,GCoB7G,CACE7X,KAAM,iBACNw6B,MAAO,CAAC,SACR7Y,MAAO,CACLxX,MAAO,CACLN,KAAME,QAER0wB,UAAW,CACT5wB,KAAME,OACN6X,QAAS,gBAEXrQ,KAAM,CACJ1H,KAAMgS,OACN+F,QAAS,MCff,IAXgB,QACd,ICRW,WAAkB,IAAI8Y,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,wCAAwChX,MAAM,CAAC,eAAc4W,EAAIvwB,OAAQ,KAAY,aAAauwB,EAAIvwB,MAAM,KAAO,OAAOxI,GAAG,CAAC,MAAQ,SAASo5B,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BhX,MAAM,CAAC,KAAO4W,EAAID,UAAU,MAAQC,EAAInpB,KAAK,OAASmpB,EAAInpB,KAAK,QAAU,cAAc,CAACopB,EAAG,OAAO,CAAC7W,MAAM,CAAC,EAAI,6IAA6I,CAAE4W,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIjrB,GAAGirB,EAAIvwB,UAAUuwB,EAAI7iB,UAC7pB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,QElBsE,GCoBtG,CACE7X,KAAM,UACNw6B,MAAO,CAAC,SACR7Y,MAAO,CACLxX,MAAO,CACLN,KAAME,QAER0wB,UAAW,CACT5wB,KAAME,OACN6X,QAAS,gBAEXrQ,KAAM,CACJ1H,KAAMgS,OACN+F,QAAS,MCff,IAXgB,QACd,ICRW,WAAkB,IAAI8Y,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,gCAAgChX,MAAM,CAAC,eAAc4W,EAAIvwB,OAAQ,KAAY,aAAauwB,EAAIvwB,MAAM,KAAO,OAAOxI,GAAG,CAAC,MAAQ,SAASo5B,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BhX,MAAM,CAAC,KAAO4W,EAAID,UAAU,MAAQC,EAAInpB,KAAK,OAASmpB,EAAInpB,KAAK,QAAU,cAAc,CAACopB,EAAG,OAAO,CAAC7W,MAAM,CAAC,EAAI,0KAA0K,CAAE4W,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIjrB,GAAGirB,EAAIvwB,UAAUuwB,EAAI7iB,UAClrB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,QElB0E,GCoB1G,CACE7X,KAAM,cACNw6B,MAAO,CAAC,SACR7Y,MAAO,CACLxX,MAAO,CACLN,KAAME,QAER0wB,UAAW,CACT5wB,KAAME,OACN6X,QAAS,gBAEXrQ,KAAM,CACJ1H,KAAMgS,OACN+F,QAAS,MCff,IAXgB,QACd,ICRW,WAAkB,IAAI8Y,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,oCAAoChX,MAAM,CAAC,eAAc4W,EAAIvwB,OAAQ,KAAY,aAAauwB,EAAIvwB,MAAM,KAAO,OAAOxI,GAAG,CAAC,MAAQ,SAASo5B,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BhX,MAAM,CAAC,KAAO4W,EAAID,UAAU,MAAQC,EAAInpB,KAAK,OAASmpB,EAAInpB,KAAK,QAAU,cAAc,CAACopB,EAAG,OAAO,CAAC7W,MAAM,CAAC,EAAI,uLAAuL,CAAE4W,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIjrB,GAAGirB,EAAIvwB,UAAUuwB,EAAI7iB,UACnsB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,QElBsE,GCoBtG,CACE7X,KAAM,UACNw6B,MAAO,CAAC,SACR7Y,MAAO,CACLxX,MAAO,CACLN,KAAME,QAER0wB,UAAW,CACT5wB,KAAME,OACN6X,QAAS,gBAEXrQ,KAAM,CACJ1H,KAAMgS,OACN+F,QAAS,MCff,IAXgB,QACd,ICRW,WAAkB,IAAI8Y,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,gCAAgChX,MAAM,CAAC,eAAc4W,EAAIvwB,OAAQ,KAAY,aAAauwB,EAAIvwB,MAAM,KAAO,OAAOxI,GAAG,CAAC,MAAQ,SAASo5B,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BhX,MAAM,CAAC,KAAO4W,EAAID,UAAU,MAAQC,EAAInpB,KAAK,OAASmpB,EAAInpB,KAAK,QAAU,cAAc,CAACopB,EAAG,OAAO,CAAC7W,MAAM,CAAC,EAAI,gVAAgV,CAAE4W,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIjrB,GAAGirB,EAAIvwB,UAAUuwB,EAAI7iB,UACx1B,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,QElB6E,GCoB7G,CACE7X,KAAM,iBACNw6B,MAAO,CAAC,SACR7Y,MAAO,CACLxX,MAAO,CACLN,KAAME,QAER0wB,UAAW,CACT5wB,KAAME,OACN6X,QAAS,gBAEXrQ,KAAM,CACJ1H,KAAMgS,OACN+F,QAAS,MCff,IAXgB,QACd,ICRW,WAAkB,IAAI8Y,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,wCAAwChX,MAAM,CAAC,eAAc4W,EAAIvwB,OAAQ,KAAY,aAAauwB,EAAIvwB,MAAM,KAAO,OAAOxI,GAAG,CAAC,MAAQ,SAASo5B,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BhX,MAAM,CAAC,KAAO4W,EAAID,UAAU,MAAQC,EAAInpB,KAAK,OAASmpB,EAAInpB,KAAK,QAAU,cAAc,CAACopB,EAAG,OAAO,CAAC7W,MAAM,CAAC,EAAI,mGAAmG,CAAE4W,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIjrB,GAAGirB,EAAIvwB,UAAUuwB,EAAI7iB,UACnnB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,QElBiK,GCuBjM,CACA7X,KAAA,kBACA2hB,MAAA,CACAxX,MAAA,CACAN,KAAAE,OACA6X,QAAA,IAEA6Y,UAAA,CACA5wB,KAAAE,OACA6X,QAAA,gBAEArQ,KAAA,CACA1H,KAAAgS,OACA+F,QAAA,MClBA,IAXgB,QACd,ICRW,WAAkB,IAAI8Y,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,wCAAwChX,MAAM,CAAC,eAAe4W,EAAIvwB,MAAM,aAAauwB,EAAIvwB,MAAM,KAAO,OAAOxI,GAAG,CAAC,MAAQ,SAASo5B,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BhX,MAAM,CAAC,KAAO4W,EAAID,UAAU,MAAQC,EAAInpB,KAAK,OAASmpB,EAAInpB,KAAK,QAAU,cAAc,CAACopB,EAAG,OAAO,CAAC7W,MAAM,CAAC,EAAI,gGAAgG4W,EAAIQ,GAAG,KAAKP,EAAG,OAAO,CAAC7W,MAAM,CAAC,EAAI,8FAA8F4W,EAAIQ,GAAG,KAAKP,EAAG,OAAO,CAAC7W,MAAM,CAAC,EAAI,gFAAgF4W,EAAIQ,GAAG,KAAKP,EAAG,OAAO,CAAC7W,MAAM,CAAC,EAAI,gGAAgG4W,EAAIQ,GAAG,KAAKP,EAAG,OAAO,CAAC7W,MAAM,CAAC,EAAI,kFAAkF4W,EAAIQ,GAAG,KAAKP,EAAG,OAAO,CAAC7W,MAAM,CAAC,EAAI,4SACpjC,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,QElBqO,ICetPq0B,EAAAA,EAAAA,IAAgB,CAC3Bn4C,KAAM,eACNwZ,WAAY,CACR8pB,iBAAgBA,GAAAA,GAEpBx/B,KAAIA,KACO,CACHyhD,8MAGR,aAAMxmB,GAAU,IAAAymB,QACN,KAAKn2B,YAEX,MAAMgB,EAAK,KAAKqQ,IAAInQ,cAAc,OAClCF,SAAgB,QAAdm1B,EAAFn1B,EAAIo1B,oBAAY,IAAAD,GAAhBA,EAAAtlD,KAAAmwB,EAAmB,UAAW,cAClC,EACA+O,QAAS,CACLV,EAACA,GAAAA,sBCrBL,GAAU,CAAC,EAEf,GAAQsB,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,OCP1D,UAXgB,QACd,IFTW,WAAkB,IAAI3F,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4f,YAAmB7f,EAAG,mBAAmB,CAACG,YAAY,uBAAuBhX,MAAM,CAAC,KAAO4W,EAAIgE,EAAE,QAAS,YAAY,IAAMhE,EAAI6qB,UAC7M,GACsB,IEUpB,EACA,KACA,WACA,MAI8B,QCnByO,GjCmB1PxsB,EAAAA,GAAIva,OAAO,CACtBxe,KAAM,mBACNwZ,WAAY,CACRksC,iBAAgB,KAChBC,gBAAe,GACfC,gBAAe,GACfC,aAAY,GACZC,SAAQ,GACR7K,WAAU,GACV8K,eAAc,GACdC,QAAO,GACPC,SAAQ,KACRC,YAAW,GACXC,QAAOA,IAEXxkC,MAAO,CACHoD,OAAQ,CACJlb,KAAMtL,OACNmqB,UAAU,GAEd2zB,SAAU,CACNxyC,KAAMwT,QACNuE,SAAS,GAEb06B,SAAU,CACNzyC,KAAMwT,QACNuE,SAAS,IAGjBhM,MAAKA,KAEM,CACHurB,gBAFoBD,OAK5Bp9B,KAAIA,KACO,CACHsiD,sBAAkB5kD,IAG1Bw8B,SAAU,CACNgN,MAAAA,GAAS,IAAA2R,EAAA0J,EACL,OAAkB,QAAlB1J,EAAO,KAAK53B,cAAM,IAAA43B,GAAQ,QAARA,EAAXA,EAAa3R,cAAM,IAAA2R,GAAU,QAAV0J,EAAnB1J,EAAqBj2C,gBAAQ,IAAA2/C,OAAA,EAA7BA,EAAAnmD,KAAAy8C,EACX,EACA2J,UAAAA,GACI,OAA2C,IAApC,KAAKvhC,OAAOsrB,WAAWkW,QAClC,EACA3lB,UAAAA,GACI,OAAO,KAAKO,gBAAgBP,UAChC,EACA4lB,YAAAA,GACI,OAA+C,IAAxC,KAAK5lB,WAAWE,mBAC3B,EACA2lB,UAAAA,GACI,GAAI,KAAK1hC,OAAOlb,OAAS2iC,GAAAA,GAASC,OAC9B,OAAO,KAEX,IAA8B,IAA1B,KAAK2Z,iBACL,OAAO,KAEX,IACI,MAAMK,EAAa,KAAK1hC,OAAOsrB,WAAWoW,aACnCnsB,EAAAA,GAAAA,IAAY,gCAAiC,CAC5C0Q,OAAQ,KAAKA,SAEf3jC,EAAM,IAAIkC,IAAIpH,OAAOmH,SAASD,OAASo9C,GAO7C,OALAp/C,EAAIq/C,aAAa70C,IAAI,IAAK,KAAKyqC,SAAW,MAAQ,MAClDj1C,EAAIq/C,aAAa70C,IAAI,IAAK,KAAKyqC,SAAW,MAAQ,MAClDj1C,EAAIq/C,aAAa70C,IAAI,eAAgB,QAErCxK,EAAIq/C,aAAa70C,IAAI,KAA2B,IAAtB,KAAK20C,aAAwB,IAAM,KACtDn/C,EAAI+B,IACf,CACA,MAAOnF,GACH,OAAO,IACX,CACJ,EACA0iD,WAAAA,GACI,YkCrEgDnlD,IlCqEhC,KAAKujB,OkCrEjBsrB,WAAW,6BlCsEJuW,GAEJ,IACX,EACAC,aAAAA,GAAgB,IAAAC,EAAAC,EAAAC,EAAAC,EACZ,GAAI,KAAKliC,OAAOlb,OAAS2iC,GAAAA,GAASC,OAC9B,OAAO,KAGX,GAAkD,KAAnC,QAAXqa,EAAA,KAAK/hC,cAAM,IAAA+hC,GAAY,QAAZA,EAAXA,EAAazW,kBAAU,IAAAyW,OAAA,EAAvBA,EAA0B,iBAC1B,OAAOd,GAGX,GAAe,QAAfe,EAAI,KAAKhiC,cAAM,IAAAgiC,GAAY,QAAZA,EAAXA,EAAa1W,kBAAU,IAAA0W,GAAvBA,EAA0B,UAC1B,OAAOZ,GAGX,MAAMe,EAAa3oD,OAAO0R,QAAkB,QAAX+2C,EAAA,KAAKjiC,cAAM,IAAAiiC,GAAY,QAAZA,EAAXA,EAAa3W,kBAAU,IAAA2W,OAAA,EAAvBA,EAA0B,iBAAkB,CAAC,GAAGlqC,OACjF,GAAIoqC,EAAW5e,MAAKz+B,GAAQA,IAASs9C,GAAAA,EAAUC,iBAAmBv9C,IAASs9C,GAAAA,EAAUE,mBACjF,OAAOpB,GAAAA,EAGX,GAAIiB,EAAWxmD,OAAS,EACpB,OAAOilD,GAEX,OAAmB,QAAnBsB,EAAQ,KAAKliC,cAAM,IAAAkiC,GAAY,QAAZA,EAAXA,EAAa5W,kBAAU,IAAA4W,OAAA,EAAvBA,EAA0B,eAC9B,IAAK,WACL,IAAK,mBACD,OAAOf,GACX,IAAK,QACD,OAAOR,GAAAA,EACX,IAAK,aACD,OAAOE,GAEf,OAAO,IACX,GAEJxmB,QAAS,CACLgO,KAAAA,IACkC,IAA1B,KAAKgZ,kBAA6B,KAAK5K,MAAMC,aAC7C,KAAKD,MAAMC,WAAW6L,IAAM,IAGhC,KAAKlB,sBAAmB5kD,CAC5B,EACAk9B,EAACA,GAAAA,MmC9HT,IAXgB,QACd,InCRW,WAAkB,IAAIhE,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4f,YAAmB7f,EAAG,OAAO,CAACG,YAAY,wBAAwB,CAAsB,WAApBJ,EAAI3V,OAAOlb,KAAmB,CAAE6wB,EAAI2hB,SAAU3hB,EAAI6sB,GAAG,GAAG,CAAC7sB,EAAI6sB,GAAG,GAAG7sB,EAAIQ,GAAG,KAAMR,EAAImsB,cAAelsB,EAAGD,EAAImsB,cAAc,CAACl+B,IAAI,cAAcmS,YAAY,iCAAiCJ,EAAI7iB,OAAQ6iB,EAAI+rB,aAAuC,IAAzB/rB,EAAI0rB,iBAA2BzrB,EAAG,MAAM,CAACna,IAAI,aAAasa,YAAY,+BAA+B9Q,MAAM,CAAC,wCAAiE,IAAzB0Q,EAAI0rB,kBAA4BtiC,MAAM,CAAC,IAAM,GAAG,QAAU,OAAO,IAAM4W,EAAI+rB,YAAY9kD,GAAG,CAAC,MAAQ,SAASo5B,GAAQL,EAAI0rB,kBAAmB,CAAI,EAAE,KAAO,SAASrrB,GAAQL,EAAI0rB,kBAAmB,CAAK,KAAK1rB,EAAI6sB,GAAG,GAAG7sB,EAAIQ,GAAG,KAAMR,EAAI4rB,WAAY3rB,EAAG,OAAO,CAACG,YAAY,iCAAiC,CAACJ,EAAI6sB,GAAG,IAAI,GAAG7sB,EAAI7iB,KAAK6iB,EAAIQ,GAAG,KAAMR,EAAIisB,YAAahsB,EAAGD,EAAIisB,YAAY,CAACh+B,IAAI,cAAcmS,YAAY,oEAAoEJ,EAAI7iB,MAAM,EAC19B,GACsB,CAAC,WAAY,IAAa8iB,EAAL37B,KAAY47B,MAAMD,GAAgC,OAAlD37B,KAAgC47B,MAAM4f,YAAmB7f,EAAG,iBACvG,EAAE,WAAY,IAAaA,EAAL37B,KAAY47B,MAAMD,GAAgC,OAAlD37B,KAAgC47B,MAAM4f,YAAmB7f,EAAG,aAClF,EAAE,WAAY,IAAaA,EAAL37B,KAAY47B,MAAMD,GAAgC,OAAlD37B,KAAgC47B,MAAM4f,YAAmB7f,EAAG,WAClF,EAAE,WAAY,IAAaA,EAAL37B,KAAY47B,MAAMD,GAAgC,OAAlD37B,KAAgC47B,MAAM4f,YAAmB7f,EAAG,eAClF,ImCKE,EACA,KACA,KACA,MAI8B,QClByN,ICe1Owd,EAAAA,EAAAA,IAAgB,CAC3Bn4C,KAAM,YACNwZ,WAAY,CACRmmC,oBAAmB,GACnB6H,iBAAgB,GAChBC,kBAAiB,GACjBC,cAAa,GACbC,iBAAgB,GAChBC,WAAUA,GAAAA,GAEdtP,OAAQ,CACJuP,IAEJlmC,MAAO,CACHmmC,iBAAkB,CACdj+C,KAAMwT,QACNuE,SAAS,GAEbmmC,gBAAiB,CACbl+C,KAAMwT,QACNuE,SAAS,GAEbomC,QAAS,CACLn+C,KAAMwT,QACNuE,SAAS,IAGjBhM,MAAKA,KAMM,CACH6nC,iBANqB9C,KAOrBnC,cANkBjB,KAOlBkB,WANexN,KAOf6P,cANkBD,KAOlBnC,eANmB5L,OAS3B9O,SAAU,CAKNiqB,YAAAA,GAOI,MAAO,IANc,KAAKhL,WACpB,CAAC,EACD,CACEiL,UAAW,KAAKvJ,YAChBtC,SAAU,KAAK1C,YAInBwO,YAAa,KAAKrK,aAClBsK,UAAW,KAAK5J,YAChB6J,QAAS,KAAKjJ,UACdkJ,KAAM,KAAKxO,OAEnB,EACAyO,OAAAA,GAAU,IAAArP,EAEN,OAAI,KAAKzB,eAAiB,KAAO,KAAKuQ,QAC3B,IAEY,QAAhB9O,EAAA,KAAKvV,mBAAW,IAAAuV,OAAA,EAAhBA,EAAkBqP,UAAW,EACxC,EACAh3C,IAAAA,GACI,MAAMA,EAAOgqC,SAAS,KAAKx2B,OAAOxT,KAAM,KAAO,EAC/C,MAAoB,iBAATA,GAAqBA,EAAO,EAC5B,KAAKmtB,EAAE,QAAS,YAEpBJ,EAAAA,GAAAA,IAAe/sB,GAAM,EAChC,EACAi3C,WAAAA,GACI,MACMj3C,EAAOgqC,SAAS,KAAKx2B,OAAOxT,KAAM,KAAO,EAC/C,IAAKA,GAAQA,EAAO,EAChB,MAAO,CAAC,EAEZ,MAAMk3C,EAAQl0B,KAAKm0B,MAAMn0B,KAAKiM,IAAI,IAAK,IAAMjM,KAAKo0B,IAAK,KAAK5jC,OAAOxT,KAL5C,SAKoE,KAC3F,MAAO,CACHxD,MAAK,6CAAA1N,OAA+CooD,EAAK,qCAEjE,EACAG,YAAAA,GAAe,IAAAC,EAAAC,EACX,MAAMC,EAAiB,QACjBnX,EAAyB,QAApBiX,EAAG,KAAK9jC,OAAO6sB,aAAK,IAAAiX,GAAS,QAATC,EAAjBD,EAAmBrhB,eAAO,IAAAshB,OAAA,EAA1BA,EAAA5oD,KAAA2oD,GACd,IAAKjX,EACD,MAAO,CAAC,EAGZ,MAAM6W,EAAQl0B,KAAKm0B,MAAMn0B,KAAKiM,IAAI,IAAK,KAAOuoB,GAAkBnkD,KAAKJ,MAAQotC,IAAUmX,IACvF,OAAIN,EAAQ,EACD,CAAC,EAEL,CACH16C,MAAK,6CAAA1N,OAA+CooD,EAAK,qCAEjE,EACAO,UAAAA,GACI,OAAI,KAAKjkC,OAAO6sB,OACLqX,EAAAA,GAAAA,GAAO,KAAKlkC,OAAO6sB,OAAOsX,OAAO,OAErC,EACX,EAIA7+B,QAAAA,GAAW,IAAAgzB,EAAAC,EACP,OAAO,KAAKtS,UAA6B,QAAvBqS,EAAK,KAAKb,qBAAa,IAAAa,GAAU,QAAVC,EAAlBD,EAAoB32C,gBAAQ,IAAA42C,OAAA,EAA5BA,EAAAp9C,KAAAm9C,GAC3B,GAEJje,QAAS,CACLd,eAAcA,GAAAA,MChHtB,IAXgB,QACd,IDRW,WAAkB,IAAI5D,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4f,YAAmB7f,EAAG,KAAKD,EAAIyuB,GAAG,CAACruB,YAAY,kBAAkB9Q,MAAM,CAClJ,4BAA6B0Q,EAAI2hB,SACjC,2BAA4B3hB,EAAImiB,UAChC,0BAA2BniB,EAAIrQ,UAC9BvG,MAAM,CAAC,yBAAyB,GAAG,gCAAgC4W,EAAIsQ,OAAO,8BAA8BtQ,EAAI3V,OAAOuqB,SAAS,UAAY5U,EAAI6iB,UAAU7iB,EAAIutB,cAAc,CAAEvtB,EAAI3V,OAAOsrB,WAAW2B,OAAQrX,EAAG,OAAO,CAACG,YAAY,4BAA4BJ,EAAI7iB,KAAK6iB,EAAIQ,GAAG,KAAKP,EAAG,oBAAoB,CAAC7W,MAAM,CAAC,OAAS4W,EAAIsQ,OAAO,aAAatQ,EAAImiB,UAAU,MAAQniB,EAAI8P,MAAM,OAAS9P,EAAI3V,UAAU2V,EAAIQ,GAAG,KAAKP,EAAG,KAAK,CAACG,YAAY,uBAAuBhX,MAAM,CAAC,8BAA8B,KAAK,CAAC6W,EAAG,mBAAmB,CAACna,IAAI,UAAUsD,MAAM,CAAC,OAAS4W,EAAI3V,OAAO,SAAW2V,EAAI2hB,UAAU3B,SAAS,CAAC,MAAQ,SAAS3f,GAAQ,OAAOL,EAAI0jB,kBAAkB38C,MAAM,KAAMH,UAAU,KAAKo5B,EAAIQ,GAAG,KAAKP,EAAG,gBAAgB,CAACna,IAAI,OAAOsD,MAAM,CAAC,eAAe4W,EAAI0P,YAAY,UAAY1P,EAAIoiB,UAAU,mBAAmBpiB,EAAI+c,eAAe,MAAQ/c,EAAI8P,MAAM,OAAS9P,EAAI3V,QAAQpjB,GAAG,CAAC,MAAQ+4B,EAAI0jB,sBAAsB,GAAG1jB,EAAIQ,GAAG,KAAKP,EAAG,mBAAmB,CAACwqB,WAAW,CAAC,CAACnlD,KAAK,OAAOolD,QAAQ,SAAS/gD,OAAQq2B,EAAIwiB,sBAAuBmI,WAAW,2BAA2B7kC,IAAI,UAAUwJ,MAAK,2BAAA3pB,OAA4Bq6B,EAAIkiB,UAAW94B,MAAM,CAAC,mBAAmB4W,EAAI+c,eAAe,QAAU/c,EAAI0hB,QAAQ,OAAS1hB,EAAI8iB,WAAW,OAAS9iB,EAAI3V,QAAQpjB,GAAG,CAAC,iBAAiB,SAASo5B,GAAQL,EAAI0hB,QAAQrhB,CAAM,EAAE,gBAAgB,SAASA,GAAQL,EAAI8iB,WAAWziB,CAAM,KAAKL,EAAIQ,GAAG,MAAOR,EAAIstB,SAAWttB,EAAIqtB,gBAAiBptB,EAAG,KAAK,CAACG,YAAY,uBAAuBhK,MAAO4J,EAAI8tB,YAAa1kC,MAAM,CAAC,8BAA8B,IAAIniB,GAAG,CAAC,MAAQ+4B,EAAI2jB,yBAAyB,CAAC1jB,EAAG,OAAO,CAACD,EAAIQ,GAAGR,EAAIjrB,GAAGirB,EAAInpB,WAAWmpB,EAAI7iB,KAAK6iB,EAAIQ,GAAG,MAAOR,EAAIstB,SAAWttB,EAAIotB,iBAAkBntB,EAAG,KAAK,CAACG,YAAY,wBAAwBhK,MAAO4J,EAAIkuB,aAAc9kC,MAAM,CAAC,+BAA+B,IAAIniB,GAAG,CAAC,MAAQ+4B,EAAI2jB,yBAAyB,CAAC1jB,EAAG,aAAa,CAAC7W,MAAM,CAAC,UAAY4W,EAAI3V,OAAO6sB,MAAM,kBAAiB,MAAS,GAAGlX,EAAI7iB,KAAK6iB,EAAIQ,GAAG,KAAKR,EAAIsI,GAAItI,EAAI6tB,SAAS,SAASa,GAAO,IAAAC,EAAC,OAAO1uB,EAAG,KAAK,CAAC/uB,IAAIw9C,EAAO/lD,GAAGy3B,YAAY,gCAAgC9Q,MAAK,mBAAA3pB,OAAmC,QAAnCgpD,EAAoB3uB,EAAIiJ,mBAAW,IAAA0lB,OAAA,EAAfA,EAAiBhmD,GAAE,KAAAhD,OAAI+oD,EAAO/lD,IAAKygB,MAAM,CAAC,uCAAuCslC,EAAO/lD,IAAI1B,GAAG,CAAC,MAAQ+4B,EAAI2jB,yBAAyB,CAAC1jB,EAAG,sBAAsB,CAAC7W,MAAM,CAAC,eAAe4W,EAAIiJ,YAAY,OAASylB,EAAOvnC,OAAO,OAAS6Y,EAAI3V,WAAW,EAAE,KAAI,EACjvE,GACsB,ICKpB,EACA,KACA,KACA,MAI8B,QClB6N,ICW9OozB,EAAAA,EAAAA,IAAgB,CAC3Bn4C,KAAM,gBACNwZ,WAAY,CACRguC,iBAAgB,GAChBC,kBAAiB,GACjBC,cAAa,GACbC,iBAAgBA,IAEpBrP,OAAQ,CACJuP,IAEJyB,cAAc,EACd1zC,MAAKA,KAMM,CACH6nC,iBANqB9C,KAOrBnC,cANkBjB,KAOlBkB,WANexN,KAOf6P,cANkBD,KAOlBnC,eANmB5L,OAS3BhpC,KAAIA,KACO,CACHw4C,UAAU,MCrBtB,IAXgB,QACd,IDRW,WAAkB,IAAI5hB,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4f,YAAmB7f,EAAG,KAAK,CAACG,YAAY,kBAAkB9Q,MAAM,CAAC,0BAA2B0Q,EAAIrQ,SAAU,4BAA6BqQ,EAAI2hB,SAAU,2BAA4B3hB,EAAImiB,WAAW/4B,MAAM,CAAC,yBAAyB,GAAG,gCAAgC4W,EAAIsQ,OAAO,8BAA8BtQ,EAAI3V,OAAOuqB,SAAS,UAAY5U,EAAI6iB,SAAS57C,GAAG,CAAC,YAAc+4B,EAAIojB,aAAa,SAAWpjB,EAAIif,WAAW,UAAYjf,EAAI8jB,YAAY,UAAY9jB,EAAIikB,YAAY,QAAUjkB,EAAI0kB,UAAU,KAAO1kB,EAAIof,SAAS,CAAEpf,EAAI3V,OAAOsrB,WAAW2B,OAAQrX,EAAG,OAAO,CAACG,YAAY,4BAA4BJ,EAAI7iB,KAAK6iB,EAAIQ,GAAG,KAAKP,EAAG,oBAAoB,CAAC7W,MAAM,CAAC,OAAS4W,EAAIsQ,OAAO,aAAatQ,EAAImiB,UAAU,MAAQniB,EAAI8P,MAAM,OAAS9P,EAAI3V,UAAU2V,EAAIQ,GAAG,KAAKP,EAAG,KAAK,CAACG,YAAY,uBAAuBhX,MAAM,CAAC,8BAA8B,KAAK,CAAC6W,EAAG,mBAAmB,CAACna,IAAI,UAAUsD,MAAM,CAAC,SAAW4W,EAAI2hB,SAAS,aAAY,EAAK,OAAS3hB,EAAI3V,QAAQ21B,SAAS,CAAC,MAAQ,SAAS3f,GAAQ,OAAOL,EAAI0jB,kBAAkB38C,MAAM,KAAMH,UAAU,KAAKo5B,EAAIQ,GAAG,KAAKP,EAAG,gBAAgB,CAACna,IAAI,OAAOsD,MAAM,CAAC,eAAe4W,EAAI0P,YAAY,UAAY1P,EAAIoiB,UAAU,mBAAmBpiB,EAAI+c,eAAe,aAAY,EAAK,MAAQ/c,EAAI8P,MAAM,OAAS9P,EAAI3V,QAAQpjB,GAAG,CAAC,MAAQ+4B,EAAI0jB,sBAAsB,GAAG1jB,EAAIQ,GAAG,KAAKP,EAAG,mBAAmB,CAACna,IAAI,UAAUwJ,MAAK,2BAAA3pB,OAA4Bq6B,EAAIkiB,UAAW94B,MAAM,CAAC,mBAAmB4W,EAAI+c,eAAe,aAAY,EAAK,QAAU/c,EAAI0hB,QAAQ,OAAS1hB,EAAI8iB,WAAW,OAAS9iB,EAAI3V,QAAQpjB,GAAG,CAAC,iBAAiB,SAASo5B,GAAQL,EAAI0hB,QAAQrhB,CAAM,EAAE,gBAAgB,SAASA,GAAQL,EAAI8iB,WAAWziB,CAAM,MAAM,EACxpD,GACsB,ICSpB,EACA,KACA,KACA,MAI8B,QClBhC,gBAMA,MCN+P,GDM/P,CACI/6B,KAAM,kBACN2hB,MAAO,CACH4nC,OAAQ,CACJ1/C,KAAMtL,OACNmqB,UAAU,GAEd8gC,cAAe,CACX3/C,KAAMtL,OACNmqB,UAAU,GAEdib,YAAa,CACT95B,KAAMtL,OACNmqB,UAAU,IAGlBsV,SAAU,CACNuM,OAAAA,GACI,OAAO,KAAKgf,OAAOhf,QAAQ,KAAKif,cAAe,KAAK7lB,YACxD,GAEJO,MAAO,CACHqG,OAAAA,CAAQA,GACCA,GAGL,KAAKgf,OAAO/0B,QAAQ,KAAKg1B,cAAe,KAAK7lB,YACjD,EACA6lB,aAAAA,GACI,KAAKD,OAAO/0B,QAAQ,KAAKg1B,cAAe,KAAK7lB,YACjD,GAEJ5E,OAAAA,GACIh3B,GAAQs8B,MAAM,UAAW,KAAKklB,OAAOlmD,IACrC,KAAKkmD,OAAO1nC,OAAO,KAAK25B,MAAMiO,MAAO,KAAKD,cAAe,KAAK7lB,YAClE,GEvBJ,IAXgB,QACd,IFRW,WAAkB,IAAIjJ,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,MAAM,CAACwqB,WAAW,CAAC,CAACnlD,KAAK,OAAOolD,QAAQ,SAAS/gD,MAAOq2B,EAAI6P,QAAS8a,WAAW,YAAYr7B,MAAK,sBAAA3pB,OAAuBq6B,EAAI6uB,OAAOlmD,KAAM,CAACs3B,EAAG,OAAO,CAACna,IAAI,WAC/N,GACsB,IESpB,EACA,KACA,KACA,MAI8B,QClBoO,GCKrPuY,EAAAA,GAAIva,OAAO,CACtBxe,KAAM,uBACNwZ,WAAY,CAAC,EACbmI,MAAO,CACHmmC,iBAAkB,CACdj+C,KAAMwT,QACNuE,SAAS,GAEbmmC,gBAAiB,CACbl+C,KAAMwT,QACNuE,SAAS,GAEb4oB,MAAO,CACH3gC,KAAMjJ,MACN8nB,UAAU,GAEd0yB,QAAS,CACLvxC,KAAME,OACN6X,QAAS,IAEb61B,eAAgB,CACZ5tC,KAAMgS,OACN+F,QAAS,IAGjBhM,KAAAA,GACI,MAAMq2B,EAAaD,KAEnB,MAAO,CACHyM,WAFexN,KAGfgB,aAER,EACAjO,SAAU,CACN2F,WAAAA,GACI,OAAO,KAAKG,YAAYyI,MAC5B,EACAtH,GAAAA,GAAM,IAAAvB,EAEF,QAAmB,QAAXA,EAAA,KAAKvhB,cAAM,IAAAuhB,GAAO,QAAPA,EAAXA,EAAannB,aAAK,IAAAmnB,OAAA,EAAlBA,EAAoBuB,MAAO,KAAKn6B,QAAQ,WAAY,KAChE,EACA0+C,aAAAA,GAAgB,IAAAtQ,EACZ,GAAqB,QAAjBA,EAAC,KAAKvV,mBAAW,IAAAuV,IAAhBA,EAAkB71C,GACnB,OAEJ,GAAiB,MAAb,KAAK4hC,IACL,OAAO,KAAKwT,WAAWlN,QAAQ,KAAK5H,YAAYtgC,IAEpD,MAAMm2C,EAAS,KAAKvN,WAAWE,QAAQ,KAAKxI,YAAYtgC,GAAI,KAAK4hC,KACjE,OAAO,KAAKwT,WAAWrN,QAAQoO,EACnC,EACA+O,OAAAA,GAAU,IAAAjP,EAEN,OAAI,KAAK7B,eAAiB,IACf,IAEY,QAAhB6B,EAAA,KAAK3V,mBAAW,IAAA2V,OAAA,EAAhBA,EAAkBiP,UAAW,EACxC,EACAlN,SAAAA,GAAY,IAAAqO,EAER,OAAsB,QAAtBA,EAAI,KAAKF,qBAAa,IAAAE,GAAlBA,EAAoBn4C,MACb+sB,EAAAA,GAAAA,IAAe,KAAKkrB,cAAcj4C,MAAM,IAG5C+sB,EAAAA,GAAAA,IAAe,KAAKkM,MAAM/9B,QAAO,CAAC6uC,EAAOjzC,IAASizC,EAAQjzC,EAAKkJ,MAAQ,GAAG,IAAI,EACzF,GAEJ6tB,QAAS,CACLuqB,cAAAA,CAAeP,GACX,MAAO,CACH,iCAAiC,EACjC,oBAAA/oD,OAAoB,KAAKsjC,YAAYtgC,GAAE,KAAAhD,OAAI+oD,EAAO/lD,MAAO,EAEjE,EACAq7B,EAAGqB,GAAAA,sBCpEP,GAAU,CAAC,EAEf,GAAQC,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,OCP1D,UAXgB,QACd,IFTW,WAAkB,IAAI3F,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4f,YAAmB7f,EAAG,KAAK,CAACA,EAAG,KAAK,CAACG,YAAY,4BAA4B,CAACH,EAAG,OAAO,CAACG,YAAY,mBAAmB,CAACJ,EAAIQ,GAAGR,EAAIjrB,GAAGirB,EAAIgE,EAAE,QAAS,4BAA4BhE,EAAIQ,GAAG,KAAKP,EAAG,KAAK,CAACG,YAAY,wBAAwB,CAACH,EAAG,OAAO,CAACG,YAAY,yBAAyBJ,EAAIQ,GAAG,KAAKP,EAAG,OAAO,CAACD,EAAIQ,GAAGR,EAAIjrB,GAAGirB,EAAI0gB,cAAc1gB,EAAIQ,GAAG,KAAKP,EAAG,KAAK,CAACG,YAAY,4BAA4BJ,EAAIQ,GAAG,KAAMR,EAAIqtB,gBAAiBptB,EAAG,KAAK,CAACG,YAAY,2CAA2C,CAACH,EAAG,OAAO,CAACD,EAAIQ,GAAGR,EAAIjrB,GAAGirB,EAAI2gB,gBAAgB3gB,EAAI7iB,KAAK6iB,EAAIQ,GAAG,KAAMR,EAAIotB,iBAAkBntB,EAAG,KAAK,CAACG,YAAY,6CAA6CJ,EAAI7iB,KAAK6iB,EAAIQ,GAAG,KAAKR,EAAIsI,GAAItI,EAAI6tB,SAAS,SAASa,GAAO,IAAAQ,EAAC,OAAOjvB,EAAG,KAAK,CAAC/uB,IAAIw9C,EAAO/lD,GAAG2mB,MAAM0Q,EAAIivB,eAAeP,IAAS,CAACzuB,EAAG,OAAO,CAACD,EAAIQ,GAAGR,EAAIjrB,GAAiB,QAAfm6C,EAACR,EAAOhO,eAAO,IAAAwO,OAAA,EAAdA,EAAA1pD,KAAAkpD,EAAiB1uB,EAAI8P,MAAO9P,EAAIiJ,kBAAkB,KAAI,EACt6B,GACsB,IEUpB,EACA,KACA,WACA,MAI8B,QCnBhC,2BCyBA,SAAe5K,EAAAA,GAAIva,OAAO,CACtBwf,SAAU,KvK+vDIllB,GuK9vDEuiB,GvK8vDQwuB,GuK9vDY,CAAC,YAAa,eAAgB,0BvK+vD3DjpD,MAAM4L,QAAQq9C,IACfA,GAAap9C,QAAO,CAACq9C,EAASl+C,KAC5Bk+C,EAAQl+C,GAAO,WACX,OAAOkN,GAAS9Z,KAAK+qD,QAAQn+C,EACjC,EACOk+C,IACR,CAAC,GACFvrD,OAAO6G,KAAKykD,IAAcp9C,QAAO,CAACq9C,EAASl+C,KAEzCk+C,EAAQl+C,GAAO,WACX,MAAMQ,EAAQ0M,GAAS9Z,KAAK+qD,QACtBC,EAAWH,GAAaj+C,GAG9B,MAA2B,mBAAbo+C,EACRA,EAAS9pD,KAAKlB,KAAMoN,GACpBA,EAAM49C,EAChB,EACOF,IACR,CAAC,IuKjxDJnmB,WAAAA,GACI,OAAO3kC,KAAK8kC,YAAYyI,MAC5B,EAIA0d,WAAAA,GAAc,IAAAC,EAAAhR,EACV,OAA0C,QAAnCgR,EAAAlrD,KAAKs8B,UAAUt8B,KAAK2kC,YAAYtgC,WAAG,IAAA6mD,OAAA,EAAnCA,EAAqCC,gBACrB,QADiCjR,EACjDl6C,KAAK2kC,mBAAW,IAAAuV,OAAA,EAAhBA,EAAkBkR,iBAClB,UACX,EAIAC,YAAAA,GAAe,IAAAC,EAEX,MAA4B,UADgC,QAAtCA,EAAGtrD,KAAKs8B,UAAUt8B,KAAK2kC,YAAYtgC,WAAG,IAAAinD,OAAA,EAAnCA,EAAqCxuB,kBAElE,GAEJsD,QAAS,CACLmrB,YAAAA,CAAa3+C,GAEL5M,KAAKirD,cAAgBr+C,EAKzB5M,KAAK28B,aAAa/vB,EAAK5M,KAAK2kC,YAAYtgC,IAJpCrE,KAAK48B,uBAAuB58B,KAAK2kC,YAAYtgC,GAKrD,KCxDkQ,ICM3P80C,EAAAA,EAAAA,IAAgB,CAC3Bn4C,KAAM,6BACNwZ,WAAY,CACRgxC,SAAQ,KACRC,OAAM,KACNC,SAAQA,GAAAA,GAEZpS,OAAQ,CACJqS,IAEJhpC,MAAO,CACH3hB,KAAM,CACF6J,KAAME,OACN2e,UAAU,GAEdkP,KAAM,CACF/tB,KAAME,OACN2e,UAAU,IAGlB0W,QAAS,CACLV,EAAGqB,GAAAA,MzK8vDX,IAAkBjnB,GAAU+wC,e0K9wDxB,GAAU,CAAC,EAEf,GAAQ7pB,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,OCP1D,UAXgB,QACd,IFTW,WAAkB,IAAI3F,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4f,YAAmB7f,EAAG,WAAW,CAAC3Q,MAAM,CAAC,iCAAkC,CACtJ,yCAA0C0Q,EAAIuvB,cAAgBvvB,EAAI9C,KAClE,uCAA4D,SAApB8C,EAAIuvB,cAC1CnmC,MAAM,CAAC,UAAyB,SAAb4W,EAAI9C,KAAkB,MAAQ,gBAAgB,KAAO,YAAYj2B,GAAG,CAAC,MAAQ,SAASo5B,GAAQ,OAAOL,EAAI6vB,aAAa7vB,EAAI9C,KAAK,GAAGqL,YAAYvI,EAAIwI,GAAG,CAAC,CAACt3B,IAAI,OAAO/M,GAAG,WAAW,MAAO,CAAE67B,EAAIuvB,cAAgBvvB,EAAI9C,MAAQ8C,EAAI2vB,aAAc1vB,EAAG,SAAS,CAACG,YAAY,wCAAwCH,EAAG,WAAW,CAACG,YAAY,wCAAwC,EAAE70B,OAAM,MAAS,CAACy0B,EAAIQ,GAAG,KAAKP,EAAG,OAAO,CAACG,YAAY,uCAAuC,CAACJ,EAAIQ,GAAGR,EAAIjrB,GAAGirB,EAAI16B,UACrf,GACsB,IEOpB,EACA,KACA,WACA,MAI8B,QCnBoO,INQrPm4C,EAAAA,EAAAA,IAAgB,CAC3Bn4C,KAAM,uBACNwZ,WAAY,CACRoxC,2BAA0B,GAC1BrpB,sBAAqBA,GAAAA,GAEzB+W,OAAQ,CACJqS,IAEJhpC,MAAO,CACHmmC,iBAAkB,CACdj+C,KAAMwT,QACNuE,SAAS,GAEbmmC,gBAAiB,CACbl+C,KAAMwT,QACNuE,SAAS,GAEb4oB,MAAO,CACH3gC,KAAMjJ,MACN8nB,UAAU,GAEd+uB,eAAgB,CACZ5tC,KAAMgS,OACN+F,QAAS,IAGjBhM,MAAKA,KAGM,CACH6iC,WAHexN,KAIfyN,eAHmB5L,OAM3B9O,SAAU,CACN2F,WAAAA,GACI,OAAO,KAAKG,YAAYyI,MAC5B,EACAgc,OAAAA,GAAU,IAAArP,EAEN,OAAI,KAAKzB,eAAiB,IACf,IAEY,QAAhByB,EAAA,KAAKvV,mBAAW,IAAAuV,OAAA,EAAhBA,EAAkBqP,UAAW,EACxC,EACAtjB,GAAAA,GAAM,IAAAvB,EAEF,QAAmB,QAAXA,EAAA,KAAKvhB,cAAM,IAAAuhB,GAAO,QAAPA,EAAXA,EAAannB,aAAK,IAAAmnB,OAAA,EAAlBA,EAAoBuB,MAAO,KAAKn6B,QAAQ,WAAY,KAChE,EACA+/C,aAAAA,GACI,MAAMx+C,GAAQqyB,EAAAA,GAAAA,IAAE,QAAS,8CACzB,MAAO,CACH,aAAcryB,EACdy+C,QAAS,KAAKC,cACdC,cAAe,KAAKC,eACpB9gD,MAAOkC,EAEf,EACA6+C,aAAAA,GACI,OAAO,KAAKxS,eAAe3L,QAC/B,EACAge,aAAAA,GACI,OAAO,KAAKG,cAAcxqD,SAAW,KAAK8pC,MAAM9pC,MACpD,EACAyqD,cAAAA,GACI,OAAqC,IAA9B,KAAKD,cAAcxqD,MAC9B,EACAuqD,cAAAA,GACI,OAAQ,KAAKF,gBAAkB,KAAKI,cACxC,GAEJ/rB,QAAS,CACLgsB,eAAAA,CAAgBxzB,GACZ,OAAI,KAAKqyB,cAAgBryB,EACd,KAAKyyB,aAAe,YAAc,aAEtC,IACX,EACAV,cAAAA,CAAeP,GAAQ,IAAA9P,EACnB,MAAO,CACH,sBAAsB,EACtB,iCAAkC8P,EAAOztC,KACzC,iCAAiC,EACjC,oBAAAtb,OAAoC,QAApCi5C,EAAoB,KAAK3V,mBAAW,IAAA2V,OAAA,EAAhBA,EAAkBj2C,GAAE,KAAAhD,OAAI+oD,EAAO/lD,MAAO,EAElE,EACAgoD,WAAAA,CAAYte,GACR,GAAIA,EAAU,CACV,MAAMG,EAAY,KAAK1C,MAAMz5B,KAAI1I,GAAQA,EAAK2iC,SAAQl6B,OAAOuM,SAC7DwiB,GAAOwE,MAAM,+BAAgC,CAAE6I,cAC/C,KAAKwL,eAAevL,aAAa,MACjC,KAAKuL,eAAe7mC,IAAIq7B,EAC5B,MAEIrN,GAAOwE,MAAM,qBACb,KAAKqU,eAAetL,OAE5B,EACAqV,cAAAA,GACI,KAAK/J,eAAetL,OACxB,EACA1O,EAACA,GAAAA,sBOnGL,GAAU,CAAC,EAEf,GAAQsB,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,OCP1D,UAXgB,QACd,IRTW,WAAkB,IAAI3F,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4f,YAAmB7f,EAAG,KAAK,CAACG,YAAY,wBAAwB,CAACH,EAAG,KAAK,CAACG,YAAY,8CAA8Cn5B,GAAG,CAAC,MAAQ,SAASo5B,GAAQ,OAAIA,EAAOlxB,KAAKgL,QAAQ,QAAQ6lB,EAAIgoB,GAAG3nB,EAAO4nB,QAAQ,MAAM,GAAG5nB,EAAOnvB,IAAI,CAAC,MAAM,YAA0BmvB,EAAO/P,SAAS+P,EAAO9P,UAAU8P,EAAOhQ,QAAQgQ,EAAOjQ,QAA/D,KAA0F4P,EAAI+nB,eAAehhD,MAAM,KAAMH,UAAU,IAAI,CAACq5B,EAAG,wBAAwBD,EAAIG,GAAG,CAACl5B,GAAG,CAAC,iBAAiB+4B,EAAI2wB,cAAc,wBAAwB3wB,EAAImwB,eAAc,KAAS,GAAGnwB,EAAIQ,GAAG,KAAKP,EAAG,KAAK,CAACG,YAAY,uEAAuEhX,MAAM,CAAC,YAAY4W,EAAI0wB,gBAAgB,cAAc,CAACzwB,EAAG,OAAO,CAACG,YAAY,yBAAyBJ,EAAIQ,GAAG,KAAKP,EAAG,6BAA6B,CAAC7W,MAAM,CAAC,KAAO4W,EAAIgE,EAAE,QAAS,QAAQ,KAAO,eAAe,GAAGhE,EAAIQ,GAAG,KAAKP,EAAG,KAAK,CAACG,YAAY,4BAA4BJ,EAAIQ,GAAG,KAAMR,EAAIqtB,gBAAiBptB,EAAG,KAAK,CAACG,YAAY,0CAA0C9Q,MAAM,CAAE,+BAAgC0Q,EAAIqtB,iBAAkBjkC,MAAM,CAAC,YAAY4W,EAAI0wB,gBAAgB,UAAU,CAACzwB,EAAG,6BAA6B,CAAC7W,MAAM,CAAC,KAAO4W,EAAIgE,EAAE,QAAS,QAAQ,KAAO,WAAW,GAAGhE,EAAI7iB,KAAK6iB,EAAIQ,GAAG,KAAMR,EAAIotB,iBAAkBntB,EAAG,KAAK,CAACG,YAAY,2CAA2C9Q,MAAM,CAAE,+BAAgC0Q,EAAIotB,kBAAmBhkC,MAAM,CAAC,YAAY4W,EAAI0wB,gBAAgB,WAAW,CAACzwB,EAAG,6BAA6B,CAAC7W,MAAM,CAAC,KAAO4W,EAAIgE,EAAE,QAAS,YAAY,KAAO,YAAY,GAAGhE,EAAI7iB,KAAK6iB,EAAIQ,GAAG,KAAKR,EAAIsI,GAAItI,EAAI6tB,SAAS,SAASa,GAAQ,OAAOzuB,EAAG,KAAK,CAAC/uB,IAAIw9C,EAAO/lD,GAAG2mB,MAAM0Q,EAAIivB,eAAeP,GAAQtlC,MAAM,CAAC,YAAY4W,EAAI0wB,gBAAgBhC,EAAO/lD,MAAM,CAAI+lD,EAAOztC,KAAMgf,EAAG,6BAA6B,CAAC7W,MAAM,CAAC,KAAOslC,EAAOj/C,MAAM,KAAOi/C,EAAO/lD,MAAMs3B,EAAG,OAAO,CAACD,EAAIQ,GAAG,WAAWR,EAAIjrB,GAAG25C,EAAOj/C,OAAO,aAAa,EAAE,KAAI,EAC74D,GACsB,IQUpB,EACA,KACA,WACA,MAI8B,QCnBhC,uCAIA,MCJ2P,GDI5O4uB,EAAAA,GAAIva,OAAO,CACtBxe,KAAM,cACNs4C,OAAQ,CAACC,IACT52B,MAAO,CACH2pC,cAAe,CACXzhD,KAAM,CAACtL,OAAQkiC,UACf/X,UAAU,GAEd6iC,QAAS,CACL1hD,KAAME,OACN2e,UAAU,GAEd8iC,YAAa,CACT3hD,KAAMjJ,MACN8nB,UAAU,GAEd+iC,WAAY,CACR5hD,KAAMtL,OACNqjB,QAASA,KAAA,CAAS,IAEtB8pC,cAAe,CACX7hD,KAAMgS,OACN+F,QAAS,GAEb06B,SAAU,CACNzyC,KAAMwT,QACNuE,SAAS,GAKb+pC,QAAS,CACL9hD,KAAME,OACN6X,QAAS,KAGjB9d,IAAAA,GACI,MAAO,CACH2Z,MAAO,KAAKiuC,cACZE,aAAc,EACdC,aAAc,EACdC,YAAa,EACbC,eAAgB,KAExB,EACA/tB,SAAU,CAENguB,OAAAA,GACI,OAAO,KAAKF,YAAc,CAC9B,EAEAG,WAAAA,GACI,OAAI,KAAK3P,SACE,KAAK4P,YAET,CACX,EACAC,UAAAA,GAGI,OAAO,KAAK7P,SAAY,IAAiB,EAC7C,EAEA8P,UAASA,IAEE,IAEXC,QAAAA,GACI,OAAO93B,KAAK+3B,MAAM,KAAKR,YAAc,KAAKD,cAAgB,KAAKM,YAAe,KAAKF,YAAc,KAAKC,YAAe,EAAI,CAC7H,EACAA,WAAAA,GACI,OAAK,KAAK5P,SAGH/nB,KAAKg4B,MAAM,KAAK9U,eAAiB,KAAK2U,WAFlC,CAGf,EACAI,UAAAA,GACI,OAAOj4B,KAAKD,IAAI,EAAG,KAAK7W,MAAQ,KAAKwuC,YACzC,EACAQ,UAAAA,GAEI,OAAI,KAAKnQ,SACE,KAAK+P,SAAW,KAAKH,YAEzB,KAAKG,QAChB,EACAK,aAAAA,GACI,IAAK,KAAKV,QACN,MAAO,GAEX,MAAMjW,EAAQ,KAAKyV,YAAYrrD,MAAM,KAAKqsD,WAAY,KAAKA,WAAa,KAAKC,YAEvEE,EADW5W,EAAMjlC,QAAOxN,GAAQ/E,OAAO0R,OAAO,KAAK28C,gBAAgBvnD,SAAS/B,EAAK,KAAKioD,YAC9Dx6C,KAAIzN,GAAQA,EAAK,KAAKioD,WAC9CsB,EAAatuD,OAAO6G,KAAK,KAAKwnD,gBAAgB97C,QAAOlF,IAAQ+gD,EAAatnD,SAAS,KAAKunD,eAAehhD,MAC7G,OAAOmqC,EAAMhlC,KAAIzN,IACb,MAAMma,EAAQlf,OAAO0R,OAAO,KAAK28C,gBAAgB/3C,QAAQvR,EAAK,KAAKioD,UAEnE,IAAe,IAAX9tC,EACA,MAAO,CACH7R,IAAKrN,OAAO6G,KAAK,KAAKwnD,gBAAgBnvC,GACtCna,QAIR,MAAMsI,EAAMihD,EAAWvoC,OAASiQ,KAAKu4B,SAASpmD,SAAS,IAAIigB,OAAO,GAElE,OADA,KAAKimC,eAAehhD,GAAOtI,EAAK,KAAKioD,SAC9B,CAAE3/C,MAAKtI,OAAM,GAE5B,EACAypD,UAAAA,GACI,MAAMC,EAAiB,KAAKR,WAAa,KAAKH,SAAW,KAAKb,YAAY9qD,OACpEusD,EAAY,KAAKzB,YAAY9qD,OAAS,KAAK8rD,WAAa,KAAKC,WAC7DS,EAAmB34B,KAAKg4B,MAAMh4B,KAAKiM,IAAI,KAAKgrB,YAAY9qD,OAAS,KAAK8rD,WAAYS,GAAa,KAAKf,aAC1G,MAAO,CACHiB,WAAU,GAAA9sD,OAAKk0B,KAAKg4B,MAAM,KAAKC,WAAa,KAAKN,aAAe,KAAKC,WAAU,MAC/EiB,cAAeJ,EAAiB,EAAC,GAAA3sD,OAAM6sD,EAAmB,KAAKf,WAAU,MAEjF,GAEJjoB,MAAO,CACHwnB,aAAAA,CAAcjuC,GACV,KAAKsT,SAAStT,EAClB,EACAyuC,WAAAA,CAAYA,EAAamB,GACE,IAAnBA,EAQJ,KAAKt8B,SAAS,KAAKtT,OALf1V,GAAQs8B,MAAM,iDAMtB,GAEJtF,OAAAA,GAAU,IAAAuuB,EAAAC,EACN,MAAMC,EAAmB,QAAbF,EAAG,KAAK9R,aAAK,IAAA8R,OAAA,EAAVA,EAAYE,OACrB9iB,EAAO,KAAKhK,IACZ+sB,EAAkB,QAAbF,EAAG,KAAK/R,aAAK,IAAA+R,OAAA,EAAVA,EAAYE,MAC1B,KAAK1B,eAAiB,IAAIjU,gBAAe4V,EAAAA,GAAAA,WAAS,KAAM,IAAAC,EAAAC,EAAAC,EACpD,KAAKjC,aAAmC,QAAvB+B,EAAGH,aAAM,EAANA,EAAQM,oBAAY,IAAAH,EAAAA,EAAI,EAC5C,KAAK9B,aAAkC,QAAtB+B,EAAGH,aAAK,EAALA,EAAOK,oBAAY,IAAAF,EAAAA,EAAI,EAC3C,KAAK9B,YAAgC,QAArB+B,EAAGnjB,aAAI,EAAJA,EAAMojB,oBAAY,IAAAD,EAAAA,EAAI,EACzChuB,GAAOwE,MAAM,uCACb,KAAK0pB,UAAU,GAChB,KAAK,IACR,KAAKhC,eAAe9T,QAAQuV,GAC5B,KAAKzB,eAAe9T,QAAQvN,GAC5B,KAAKqhB,eAAe9T,QAAQwV,GACxB,KAAK/B,eACL,KAAK36B,SAAS,KAAK26B,eAGvB,KAAKhrB,IAAI5R,iBAAiB,SAAU,KAAKi/B,SAAU,CAAEC,SAAS,IAC9D,KAAKpB,eAAiB,CAAC,CAC3B,EACAnqB,aAAAA,GACQ,KAAKspB,gBACL,KAAKA,eAAe7T,YAE5B,EACA9Y,QAAS,CACLrO,QAAAA,CAAStT,GACL,MAAMwwC,EAAY15B,KAAK+3B,KAAK,KAAKd,YAAY9qD,OAAS,KAAKwrD,aAC3D,GAAI+B,EAAY,KAAK5B,SAEjB,YADAxsB,GAAOwE,MAAM,iDAAkD,CAAE5mB,QAAOwwC,YAAW5B,SAAU,KAAKA,WAGtG,KAAK5uC,MAAQA,EAEb,MAAMywC,GAAa35B,KAAKg4B,MAAM9uC,EAAQ,KAAKyuC,aAAe,IAAO,KAAKC,WAAa,KAAKP,aACxF/rB,GAAOwE,MAAM,mCAAqC5mB,EAAO,CAAEywC,YAAWhC,YAAa,KAAKA,cACxF,KAAKxrB,IAAIwtB,UAAYA,CACzB,EACAH,QAAAA,GAAW,IAAAI,EACa,QAApBA,EAAA,KAAKC,uBAAe,IAAAD,IAApB,KAAKC,gBAAoBC,uBAAsB,KAC3C,KAAKD,gBAAkB,KACvB,MAAME,EAAY,KAAK5tB,IAAIwtB,UAAY,KAAKtC,aACtCnuC,EAAQ8W,KAAKg4B,MAAM+B,EAAY,KAAKnC,YAAc,KAAKD,YAE7D,KAAKzuC,MAAQ8W,KAAKD,IAAI,EAAG7W,GACzB,KAAKud,MAAM,SAAS,IAE5B,KEzKR,IAXgB,QACd,IFRW,WAAkB,IAAIN,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4f,YAAmB7f,EAAG,MAAM,CAACG,YAAY,aAAahX,MAAM,CAAC,qBAAqB,KAAK,CAAC6W,EAAG,MAAM,CAACna,IAAI,SAASsa,YAAY,sBAAsB,CAACJ,EAAI+f,GAAG,WAAW,GAAG/f,EAAIQ,GAAG,KAAQR,EAAIxQ,aAAa,kBAAmByQ,EAAG,MAAM,CAACG,YAAY,6BAA6B,CAACJ,EAAI+f,GAAG,mBAAmB,GAAG/f,EAAI7iB,KAAK6iB,EAAIQ,GAAG,KAAKP,EAAG,QAAQ,CAACG,YAAY,oBAAoB9Q,MAAM,CAAE,0CAA2C0Q,EAAIxQ,aAAa,oBAAqB,CAAEwQ,EAAIixB,QAAShxB,EAAG,UAAU,CAACG,YAAY,mBAAmB,CAACJ,EAAIQ,GAAG,WAAWR,EAAIjrB,GAAGirB,EAAIixB,SAAS,YAAYjxB,EAAI7iB,KAAK6iB,EAAIQ,GAAG,KAAKP,EAAG,QAAQ,CAACna,IAAI,QAAQsa,YAAY,oBAAoBhX,MAAM,CAAC,2BAA2B,KAAK,CAAC4W,EAAI+f,GAAG,WAAW,GAAG/f,EAAIQ,GAAG,KAAKP,EAAG,QAAQ,CAACG,YAAY,oBAAoB9Q,MAAM0Q,EAAI4hB,SAAW,0BAA4B,0BAA0BxrB,MAAO4J,EAAIqyB,WAAYjpC,MAAM,CAAC,2BAA2B,KAAK4W,EAAIsI,GAAItI,EAAIgyB,eAAe,SAAAxwB,EAAqB17B,GAAE,IAAd,IAACoL,EAAG,KAAEtI,GAAK44B,EAAI,OAAOvB,EAAGD,EAAI4wB,cAAc5wB,EAAIG,GAAG,CAACjvB,IAAIA,EAAI+c,IAAI,YAAY7E,MAAM,CAAC,OAASxgB,EAAK,MAAQ9C,IAAI,YAAYk6B,EAAI+wB,YAAW,GAAO,IAAG,GAAG/wB,EAAIQ,GAAG,KAAKP,EAAG,QAAQ,CAACwqB,WAAW,CAAC,CAACnlD,KAAK,OAAOolD,QAAQ,SAAS/gD,MAAOq2B,EAAIsxB,QAAS3G,WAAW,YAAYvqB,YAAY,oBAAoBhX,MAAM,CAAC,2BAA2B,KAAK,CAAC4W,EAAI+f,GAAG,WAAW,MAC30C,GACsB,IESpB,EACA,KACA,KACA,MAI8B,QCJ1BtsC,IAAUqxC,EAAAA,GAAAA,MAChB,IAAerH,EAAAA,EAAAA,IAAgB,CAC3Bn4C,KAAM,8BACNwZ,WAAY,CACRqmC,UAAS,KACTD,eAAc,KACdtc,iBAAgB,KAChByc,cAAaA,GAAAA,GAEjBzH,OAAQ,CACJC,IAEJ52B,MAAO,CACHgiB,YAAa,CACT95B,KAAMtL,OACNmqB,UAAU,GAEdwiC,cAAe,CACXrhD,KAAMjJ,MACNghB,QAASA,IAAO,KAGxBhM,MAAKA,KAIM,CACH6nC,iBAJqB9C,KAKrBlC,WAJexN,KAKfyN,eAJmB5L,OAO3BhpC,KAAIA,KACO,CACHs4C,QAAS,OAGjBpe,SAAU,CACNiH,GAAAA,GAAM,IAAAvB,EAEF,QAAmB,QAAXA,EAAA,KAAKvhB,cAAM,IAAAuhB,GAAO,QAAPA,EAAXA,EAAannB,aAAK,IAAAmnB,OAAA,EAAlBA,EAAoBuB,MAAO,KAAKn6B,QAAQ,WAAY,KAChE,EACAm1C,cAAAA,GACI,OAAO9xC,GACF2C,QAAO1C,GAAUA,EAAOwnC,YACxB9kC,QAAO1C,IAAWA,EAAOm8B,SAAWn8B,EAAOm8B,QAAQ,KAAKC,MAAO,KAAK7G,eACpEhoB,MAAK,CAAC1S,EAAG2S,KAAO3S,EAAE+6B,OAAS,IAAMpoB,EAAEooB,OAAS,IACrD,EACAwG,KAAAA,GACI,OAAO,KAAK0gB,cACPn6C,KAAIi6B,GAAU,KAAKI,QAAQJ,KAC3Bl6B,OAAOuM,QAChB,EACAkxC,mBAAAA,GACI,OAAO,KAAK/jB,MAAMlC,MAAKjgC,GAAQA,EAAKF,SAAWkrC,GAAAA,GAAWC,SAC9D,EACAkK,WAAY,CACRz4C,GAAAA,GACI,MAAwC,WAAjC,KAAK04C,iBAAiB7C,MACjC,EACA/oC,GAAAA,CAAI+oC,GACA,KAAK6C,iBAAiB7C,OAASA,EAAS,SAAW,IACvD,GAEJ4T,aAAAA,GACI,OAAI,KAAK/W,eAAiB,IACf,EAEP,KAAKA,eAAiB,IACf,EAEP,KAAKA,eAAiB,KACf,EAEJ,CACX,GAEJrY,QAAS,CAOLgM,OAAAA,CAAQoO,GACJ,OAAO,KAAKf,WAAWrN,QAAQoO,EACnC,EACA,mBAAM0H,CAAc9yC,GAChB,MAAMg8B,EAAch8B,EAAOg8B,YAAY,KAAKI,MAAO,KAAK7G,aAClD8qB,EAAe,KAAKvD,cAC1B,IAEI,KAAK9O,QAAUhuC,EAAO/K,GACtB,KAAKmnC,MAAMt6B,SAAQ7H,IACf0wB,EAAAA,GAAAA,IAAQ1wB,EAAM,SAAUgrC,GAAAA,GAAWC,QAAQ,IAG/C,MAAM9E,QAAgBpgC,EAAOwnC,UAAU,KAAKpL,MAAO,KAAK7G,YAAa,KAAKsB,KAE1E,IAAKuJ,EAAQlG,MAAK19B,GAAqB,OAAXA,IAGxB,YADA,KAAK8tC,eAAetL,QAIxB,GAAIoB,EAAQlG,MAAK19B,IAAqB,IAAXA,IAAmB,CAE1C,MAAM8jD,EAAYD,EACb39C,QAAO,CAACk6B,EAAQvtB,KAA6B,IAAnB+wB,EAAQ/wB,KAEvC,GADA,KAAKi7B,eAAe7mC,IAAI68C,GACpBlgB,EAAQlG,MAAK19B,GAAqB,OAAXA,IAGvB,OAGJ,YADAk1B,EAAAA,GAAAA,IAAU,KAAKpB,EAAE,QAAS,2CAA4C,CAAE0L,gBAE5E,EAEArH,EAAAA,GAAAA,IAAY,KAAKrE,EAAE,QAAS,qDAAsD,CAAE0L,iBACpF,KAAKsO,eAAetL,OACxB,CACA,MAAOnpC,GACH47B,GAAO73B,MAAM,+BAAgC,CAAEoG,SAAQnK,OACvD67B,EAAAA,GAAAA,IAAU,KAAKpB,EAAE,QAAS,gCAAiC,CAAE0L,gBACjE,CAAC,QAGG,KAAKgS,QAAU,KACf,KAAK5R,MAAMt6B,SAAQ7H,IACf0wB,EAAAA,GAAAA,IAAQ1wB,EAAM,cAAU7G,EAAU,GAE1C,CACJ,EACAk9B,EAAGqB,GAAAA,MCpJgQ,sBCWvQ,GAAU,CAAC,EAEf,GAAQC,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,OClB1D,IAAI,IAAY,QACd,IHTW,WAAkB,IAAI3F,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4f,YAAmB7f,EAAG,MAAM,CAACG,YAAY,oDAAoD,CAACH,EAAG,YAAY,CAACna,IAAI,cAAcsD,MAAM,CAAC,WAAa4W,EAAI0hB,SAAW1hB,EAAI6zB,oBAAoB,cAAa,EAAK,OAAS7zB,EAAI8zB,cAAc,YAAY9zB,EAAI8zB,eAAiB,EAAI9zB,EAAIgE,EAAE,QAAS,WAAa,KAAK,KAAOhE,EAAI8iB,YAAY77C,GAAG,CAAC,cAAc,SAASo5B,GAAQL,EAAI8iB,WAAWziB,CAAM,IAAIL,EAAIsI,GAAItI,EAAIulB,gBAAgB,SAAS7xC,GAAQ,OAAOusB,EAAG,iBAAiB,CAAC/uB,IAAIwC,EAAO/K,GAAG2mB,MAAM,iCAAmC5b,EAAO/K,GAAG1B,GAAG,CAAC,MAAQ,SAASo5B,GAAQ,OAAOL,EAAIwmB,cAAc9yC,EAAO,GAAG60B,YAAYvI,EAAIwI,GAAG,CAAC,CAACt3B,IAAI,OAAO/M,GAAG,WAAW,MAAO,CAAE67B,EAAI0hB,UAAYhuC,EAAO/K,GAAIs3B,EAAG,gBAAgB,CAAC7W,MAAM,CAAC,KAAO,MAAM6W,EAAG,mBAAmB,CAAC7W,MAAM,CAAC,IAAM1V,EAAOi8B,cAAc3P,EAAI8P,MAAO9P,EAAIiJ,gBAAgB,EAAE19B,OAAM,IAAO,MAAK,IAAO,CAACy0B,EAAIQ,GAAG,WAAWR,EAAIjrB,GAAGrB,EAAOg8B,YAAY1P,EAAI8P,MAAO9P,EAAIiJ,cAAc,WAAW,IAAG,IAAI,EACj+B,GACsB,IGUpB,EACA,KACA,WACA,MAIF,SAAe,GAAiB,QCnBgO,IzGkBjPwU,EAAAA,EAAAA,IAAgB,CAC3Bn4C,KAAM,mBACNwZ,WAAY,CACRm1C,gBAAe,GACfC,qBAAoB,GACpBC,qBAAoB,GACpBC,YAAW,GACXC,4BAA2BA,IAE/BzW,OAAQ,CACJC,IAEJ52B,MAAO,CACHgiB,YAAa,CACT95B,KAAM4X,GAAAA,GACNiH,UAAU,GAEd8gC,cAAe,CACX3/C,KAAM4iC,GAAAA,GACN/jB,UAAU,GAEd8hB,MAAO,CACH3gC,KAAMjJ,MACN8nB,UAAU,IAGlB9S,MAAKA,KAGM,CACHurB,gBAHoBD,KAIpBwX,eAHmB5L,OAM3BhpC,KAAIA,KACO,CACHkrD,UAAS,GACTC,cAAa,GACbne,SAASoe,EAAAA,GAAAA,MACTxD,cAAe,EACfyD,WAAY,OAGpBnxB,SAAU,CACN4C,UAAAA,GACI,OAAO,KAAKO,gBAAgBP,UAChC,EACA4Y,MAAAA,GACI,OAAO+B,SAAS,KAAKp5B,OAAOnC,OAAOgrB,SAAW,IAClD,EAKAokB,QAAAA,GACI,QAAS,KAAKjtC,OAAO5F,MAAM8yC,QAC/B,EACAjU,OAAAA,GACI,OAAOxI,GAAc,KAAKpI,MAC9B,EACAsd,gBAAAA,GAEI,QAAI,KAAKrQ,eAAiB,MAGnB,KAAKjN,MAAMlC,MAAKjgC,QAAuB7G,IAAf6G,EAAKupC,OACxC,EACAmW,eAAAA,GAEI,QAAI,KAAKtQ,eAAiB,MAGnB,KAAKjN,MAAMlC,MAAKjgC,QAAiC7G,IAAzB6G,EAAKgoC,WAAW9+B,MACnD,EACA+9C,aAAAA,GACI,OAAK,KAAK9F,eAAkB,KAAK7lB,YAG1B,IAAI,KAAKmN,SAASn1B,MAAK,CAAC1S,EAAG2S,IAAM3S,EAAE+6B,MAAQpoB,EAAEooB,QAFzC,EAGf,EACA2nB,OAAAA,GACI,MAAM4D,GAAiB7wB,EAAAA,GAAAA,IAAE,QAAS,8BAC5B8wB,EAAc,KAAK7rB,YAAYgoB,SAAW4D,EAC1CE,GAAkB/wB,EAAAA,GAAAA,IAAE,QAAS,6CAC7BgxB,GAAkBhxB,EAAAA,GAAAA,IAAE,QAAS,yHACnC,SAAAr+B,OAAUmvD,EAAW,MAAAnvD,OAAKovD,EAAe,MAAApvD,OAAKqvD,EAClD,EACAxE,aAAAA,GACI,OAAO,KAAKxS,eAAe3L,QAC/B,EACAoe,cAAAA,GACI,OAAqC,IAA9B,KAAKD,cAAcxqD,MAC9B,GAEJwjC,MAAO,CACHsV,MAAAA,CAAOA,GACH,KAAKmW,aAAanW,GAAQ,EAC9B,EACA4V,QAAAA,CAAS3nD,GACDA,GACA,KAAK4nB,WAAU,IAAM,KAAKugC,eAAe,KAAKpW,SAEtD,GAEJza,OAAAA,GAEwB58B,OAAOqG,SAAS+nB,cAAc,oBACtCzB,iBAAiB,WAAY,KAAK6qB,YAE9C,MAAM,GAAEt2C,IAAO+3B,EAAAA,GAAAA,GAAU,QAAS,eAAgB,CAAC,GACnD,KAAKu0B,aAAatsD,QAAAA,EAAM,KAAKm2C,QAC7B,KAAKqW,mBAAmBxsD,QAAAA,EAAM,KAAKm2C,QACnC,KAAKoW,eAAevsD,QAAAA,EAAM,KAC9B,EACAo/B,aAAAA,GACwBtgC,OAAOqG,SAAS+nB,cAAc,oBACtCvB,oBAAoB,WAAY,KAAK2qB,WACrD,EACAva,QAAS,CAGLywB,kBAAAA,CAAmBrW,GACf,GAAIhxC,SAASioB,gBAAgBmnB,YAAc,MAAQ,KAAK4R,cAAcxe,SAAWwO,EAAQ,KAAA8E,EAGrF,MAAMj2C,EAAO,KAAKmiC,MAAM3G,MAAKrN,GAAKA,EAAEwU,SAAWwO,IAC3CnxC,SAAQk2C,IAAsB,QAATD,EAAbC,GAAehU,eAAO,IAAA+T,GAAtBA,EAAAp+C,KAAAq+C,GAAyB,CAACl2C,GAAO,KAAKs7B,eAC9C9D,GAAOwE,MAAM,2BAA6Bh8B,EAAKsJ,KAAM,CAAEtJ,SACvDk2C,GAAchjC,KAAKlT,EAAM,KAAKs7B,YAAa,KAAK6lB,cAAc73C,MAEtE,CACJ,EACAg+C,YAAAA,CAAanW,GAAqB,IAAbl3C,IAAIhB,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,KAAAA,UAAA,GACrB,GAAIk4C,EAAQ,CACR,MAAM/7B,EAAQ,KAAK+sB,MAAMmW,WAAUt4C,GAAQA,EAAK2iC,SAAWwO,IACvDl3C,IAAmB,IAAXmb,GAAgB+7B,IAAW,KAAKgQ,cAAcxe,SACtDlL,EAAAA,GAAAA,IAAU,KAAKpB,EAAE,QAAS,mBAE9B,KAAKgtB,cAAgBn3B,KAAKD,IAAI,EAAG7W,EACrC,CACJ,EAKAmyC,cAAAA,CAAepW,GACX,GAAe,OAAXA,GAAmB,KAAK2V,aAAe3V,EACvC,OAEJ,MAAMnxC,EAAO,KAAKmiC,MAAM3G,MAAKrN,GAAKA,EAAEwU,SAAWwO,SAClCh4C,IAAT6G,GAAsBA,EAAKwB,OAAS2iC,GAAAA,GAASC,SAGjD5M,GAAOwE,MAAM,gBAAkBh8B,EAAKsJ,KAAM,CAAEtJ,SAC5C,KAAK8mD,WAAa3V,GAClBgG,EAAAA,GAAAA,MACK1uC,QAAO1C,IAAWA,EAAOm8B,SAAWn8B,EAAOm8B,QAAQ,CAACliC,GAAO,KAAKs7B,eAChEhoB,MAAK,CAAC1S,EAAG2S,KAAO3S,EAAE+6B,OAAS,IAAMpoB,EAAEooB,OAAS,KAC5ClzB,QAAO1C,KAAYA,UAAAA,EAAQwT,WAAS,GAAGrG,KAAKlT,EAAM,KAAKs7B,YAAa,KAAK6lB,cAAc73C,MAChG,EACAm+C,UAAUznD,GACCA,EAAK2iC,OAEhB2O,UAAAA,CAAWx6C,GAAO,IAAA46C,EAGd,GADwC,QAArBA,EAAG56C,EAAMy6C,oBAAY,IAAAG,OAAA,EAAlBA,EAAoBgW,MAAM1qD,SAAS,SAIrD,OAEJlG,EAAMmsB,iBACNnsB,EAAMmhC,kBACN,MAAM0vB,EAAW,KAAKxU,MAAMyU,MAAMvvB,IAAIhQ,wBAAwBE,IACxDs/B,EAAcF,EAAW,KAAKxU,MAAMyU,MAAMvvB,IAAIhQ,wBAAwBy/B,OAExEhxD,EAAM++C,QAAU8R,EAAW,IAC3B,KAAKxU,MAAMyU,MAAMvvB,IAAIwtB,UAAY,KAAK1S,MAAMyU,MAAMvvB,IAAIwtB,UAAY,GAIlE/uD,EAAM++C,QAAUgS,EAAc,KAC9B,KAAK1U,MAAMyU,MAAMvvB,IAAIwtB,UAAY,KAAK1S,MAAMyU,MAAMvvB,IAAIwtB,UAAY,GAE1E,EACAxvB,EAACA,GAAAA,qB0GhML,GAAU,CAAC,EAEf,GAAQsB,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,uBCftD,GAAU,CAAC,EAEf,GAAQL,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,OCN1D,UAXgB,QACd,I5GVW,WAAkB,IAAI3F,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4f,YAAmB7f,EAAG,cAAc,CAACna,IAAI,QAAQsD,MAAM,CAAC,iBAAiB4W,EAAIkG,WAAWK,UAAYvG,EAAIu0B,cAAgBv0B,EAAIs0B,UAAU,WAAW,SAAS,eAAet0B,EAAI8P,MAAM,YAAY9P,EAAIkG,WAAWK,UAAU,cAAc,CACjT6mB,iBAAkBptB,EAAIotB,iBACtBC,gBAAiBrtB,EAAIqtB,gBACrBvd,MAAO9P,EAAI8P,MACXiN,eAAgB/c,EAAI+c,gBACnB,kBAAkB/c,EAAIgxB,cAAc,QAAUhxB,EAAIixB,SAAS1oB,YAAYvI,EAAIwI,GAAG,CAAGxI,EAAIywB,eAAwL,KAAxK,CAACv/C,IAAI,iBAAiB/M,GAAG,WAAW,MAAO,CAAC87B,EAAG,8BAA8B,CAAC7W,MAAM,CAAC,eAAe4W,EAAIiJ,YAAY,iBAAiBjJ,EAAIwwB,iBAAiB,EAAEjlD,OAAM,GAAW,CAAC2F,IAAI,SAAS/M,GAAG,WAAW,OAAO67B,EAAIsI,GAAItI,EAAI40B,eAAe,SAAS/F,GAAQ,OAAO5uB,EAAG,kBAAkB,CAAC/uB,IAAI29C,EAAOlmD,GAAGygB,MAAM,CAAC,iBAAiB4W,EAAI8uB,cAAc,eAAe9uB,EAAIiJ,YAAY,OAAS4lB,IAAS,GAAE,EAAEtjD,OAAM,GAAM,CAAC2F,IAAI,SAAS/M,GAAG,WAAW,MAAO,CAAC87B,EAAG,uBAAuB,CAACna,IAAI,QAAQsD,MAAM,CAAC,mBAAmB4W,EAAI+c,eAAe,qBAAqB/c,EAAIotB,iBAAiB,oBAAoBptB,EAAIqtB,gBAAgB,MAAQrtB,EAAI8P,SAAS,EAAEvkC,OAAM,GAAM,CAAC2F,IAAI,SAAS/M,GAAG,WAAW,MAAO,CAAC87B,EAAG,uBAAuB,CAAC7W,MAAM,CAAC,mBAAmB4W,EAAI+c,eAAe,qBAAqB/c,EAAIotB,iBAAiB,oBAAoBptB,EAAIqtB,gBAAgB,MAAQrtB,EAAI8P,MAAM,QAAU9P,EAAI0gB,WAAW,EAAEn1C,OAAM,IAAO,MAAK,IACp+B,GACsB,I4GMpB,EACA,KACA,WACA,MAI8B,QCpBgF,GCoBhH,CACEjG,KAAM,oBACNw6B,MAAO,CAAC,SACR7Y,MAAO,CACLxX,MAAO,CACLN,KAAME,QAER0wB,UAAW,CACT5wB,KAAME,OACN6X,QAAS,gBAEXrQ,KAAM,CACJ1H,KAAMgS,OACN+F,QAAS,MCff,IAXgB,QACd,ICRW,WAAkB,IAAI8Y,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAG,OAAOA,EAAG,OAAOD,EAAIG,GAAG,CAACC,YAAY,4CAA4ChX,MAAM,CAAC,eAAc4W,EAAIvwB,OAAQ,KAAY,aAAauwB,EAAIvwB,MAAM,KAAO,OAAOxI,GAAG,CAAC,MAAQ,SAASo5B,GAAQ,OAAOL,EAAIM,MAAM,QAASD,EAAO,IAAI,OAAOL,EAAIO,QAAO,GAAO,CAACN,EAAG,MAAM,CAACG,YAAY,4BAA4BhX,MAAM,CAAC,KAAO4W,EAAID,UAAU,MAAQC,EAAInpB,KAAK,OAASmpB,EAAInpB,KAAK,QAAU,cAAc,CAACopB,EAAG,OAAO,CAAC7W,MAAM,CAAC,EAAI,uJAAuJ,CAAE4W,EAAS,MAAEC,EAAG,QAAQ,CAACD,EAAIQ,GAAGR,EAAIjrB,GAAGirB,EAAIvwB,UAAUuwB,EAAI7iB,UAC3qB,GACsB,IDSpB,EACA,KACA,KACA,MAI8B,QElBiO,ICQlPsgC,EAAAA,EAAAA,IAAgB,CAC3Bn4C,KAAM,oBACNwZ,WAAY,CACR42C,kBAAiBA,IAErBzuC,MAAO,CACH6nC,cAAe,CACX3/C,KAAM4iC,GAAAA,GACN/jB,UAAU,IAGlB5kB,KAAIA,KACO,CACHu4C,UAAU,IAGlBre,SAAU,CACN2F,WAAAA,GACI,OAAO,KAAKG,YAAYyI,MAC5B,EAIA8jB,SAAAA,GACI,OAAO,KAAK7G,kBAAkB,KAAKA,cAAc7e,YAAcC,GAAAA,GAAWoK,OAC9E,EACAsb,eAAAA,GAAkB,IAAA5G,EACd,OAAqE,KAA5C,QAAlBA,EAAA,KAAKF,qBAAa,IAAAE,GAAY,QAAZA,EAAlBA,EAAoBrZ,kBAAU,IAAAqZ,OAAA,EAA9BA,EAAiC,yBAC5C,EACA6G,eAAAA,GACI,OAAI,KAAKD,gBACE,KAAK5xB,EAAE,QAAS,mEAEjB,KAAK2xB,UAGR,KAFI,KAAK3xB,EAAE,QAAS,2DAG/B,GAEJK,OAAAA,GAEI,MAAMyxB,EAAcruD,OAAOqG,SAAS+nB,cAAc,oBAClDigC,EAAY1hC,iBAAiB,WAAY,KAAK6qB,YAC9C6W,EAAY1hC,iBAAiB,YAAa,KAAK0vB,aAC/CgS,EAAY1hC,iBAAiB,OAAQ,KAAK2hC,cAC9C,EACAhuB,aAAAA,GACI,MAAM+tB,EAAcruD,OAAOqG,SAAS+nB,cAAc,oBAClDigC,EAAYxhC,oBAAoB,WAAY,KAAK2qB,YACjD6W,EAAYxhC,oBAAoB,YAAa,KAAKwvB,aAClDgS,EAAYxhC,oBAAoB,OAAQ,KAAKyhC,cACjD,EACArxB,QAAS,CACLua,UAAAA,CAAWx6C,GAAO,IAAA46C,EAEd56C,EAAMmsB,kBACkC,QAArByuB,EAAG56C,EAAMy6C,oBAAY,IAAAG,OAAA,EAAlBA,EAAoBgW,MAAM1qD,SAAS,YAGrD,KAAKg3C,UAAW,EAExB,EACAmC,WAAAA,CAAYr/C,GAAO,IAAAuxD,EAIf,MAAMtlC,EAAgBjsB,EAAMisB,cACxBA,SAAAA,EAAeqzB,SAA6B,QAArBiS,EAAEvxD,EAAMu/C,qBAAa,IAAAgS,EAAAA,EAAIvxD,EAAM6D,SAGtD,KAAKq5C,WACL,KAAKA,UAAW,EAExB,EACAoU,aAAAA,CAActxD,GACV0gC,GAAOwE,MAAM,kDAAmD,CAAEllC,UAClEA,EAAMmsB,iBACF,KAAK+wB,WACL,KAAKA,UAAW,EAExB,EACA,YAAMvC,CAAO36C,GAAO,IAAAwxD,EAAA3W,EAAAd,EAEhB,GAAI,KAAKqX,gBAEL,YADAzwB,EAAAA,GAAAA,IAAU,KAAKywB,iBAGnB,GAAmC,QAAnCI,EAAI,KAAKjwB,IAAInQ,cAAc,gBAAQ,IAAAogC,GAA/BA,EAAiClS,SAASt/C,EAAM6D,QAChD,OAEJ7D,EAAMmsB,iBACNnsB,EAAMmhC,kBAEN,MAAMyV,EAAQ,KAAsB,QAAlBiE,EAAA76C,EAAMy6C,oBAAY,IAAAI,OAAA,EAAlBA,EAAoBjE,QAAS,IAGzCQ,QAAiBT,GAAuBC,GAExCvI,QAAiC,QAAtB0L,EAAM,KAAKvV,mBAAW,IAAAuV,OAAA,EAAhBA,EAAkBjH,YAAY,KAAKuX,cAAc73C,OAClEghC,EAASnF,aAAQ,EAARA,EAAUmF,OACzB,IAAKA,EAED,YADA7S,EAAAA,GAAAA,IAAU,KAAKpB,EAAE,QAAS,0CAK9B,GAAIv/B,EAAMgsB,OACN,OAEJ0U,GAAOwE,MAAM,UAAW,CAAEllC,QAAOwzC,SAAQ4D,aAEzC,MAEMqa,SAFgBja,GAAoBJ,EAAU5D,EAAQnF,EAASA,WAE1CqjB,UAAU7Z,IAAM,IAAA8Z,EAAA,OAAK9Z,EAAO7uC,SAAW4oD,GAAAA,EAAaC,SACvEha,EAAO7nC,KAAK8hD,mBAAmB5rD,SAAS,OAC1B,QAD8ByrD,EAC7C9Z,EAAOnvC,gBAAQ,IAAAipD,GAAS,QAATA,EAAfA,EAAiBhgB,eAAO,IAAAggB,OAAA,EAAxBA,EAA2B,eAEoC,IAA/D9Z,EAAOjyB,OAAOja,QAAQ6nC,EAAO5tB,OAAQ,IAAItL,MAAM,KAAK/Y,MAAY,IACzC,IAAAwwD,EAAAzU,OAAXj7C,IAAfovD,IACA/wB,GAAOwE,MAAM,6CAA8C,CAAEusB,eAC7D,KAAKznC,QAAQ3pB,KAAK,IACX,KAAK2iB,OACRnC,OAAQ,CACJua,KAA8B,QAA1B22B,EAAoB,QAApBzU,EAAE,KAAKt6B,OAAOnC,cAAM,IAAAy8B,OAAA,EAAlBA,EAAoBliB,YAAI,IAAA22B,EAAAA,EAAI,QAClClmB,OAAQuQ,SAASqV,EAAW/oD,SAASipC,QAAQ,kBAIzD,KAAKuL,UAAW,CACpB,EACA3d,EAACA,GAAAA,sBC/HL,GAAU,CAAC,EAEf,GAAQsB,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,OCP1D,UAXgB,QACd,IFTW,WAAkB,IAAI3F,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4f,YAAmB7f,EAAG,MAAM,CAACwqB,WAAW,CAAC,CAACnlD,KAAK,OAAOolD,QAAQ,SAAS/gD,MAAOq2B,EAAI2hB,SAAUgJ,WAAW,aAAavqB,YAAY,+BAA+BhX,MAAM,CAAC,+BAA+B,IAAIniB,GAAG,CAAC,KAAO+4B,EAAIof,SAAS,CAACnf,EAAG,MAAM,CAACG,YAAY,wCAAwC,CAAEJ,EAAI21B,YAAc31B,EAAI41B,gBAAiB,CAAC31B,EAAG,oBAAoB,CAAC7W,MAAM,CAAC,KAAO,MAAM4W,EAAIQ,GAAG,KAAKP,EAAG,KAAK,CAACG,YAAY,sCAAsC,CAACJ,EAAIQ,GAAG,aAAaR,EAAIjrB,GAAGirB,EAAIgE,EAAE,QAAS,uCAAuC,eAAe,CAAC/D,EAAG,KAAK,CAACG,YAAY,sCAAsC,CAACJ,EAAIQ,GAAG,aAAaR,EAAIjrB,GAAGirB,EAAI61B,iBAAiB,gBAAgB,IACxuB,GACsB,IEUpB,EACA,KACA,WACA,MAI8B,2BtJiBhC,MAAMY,QAAwD3vD,KAApB,QAAjB4vD,IAAAC,EAAAA,GAAAA,YAAiB,IAAAD,QAAA,EAAjBA,GAAmBE,euJpC6M,IvJqC1OnZ,EAAAA,EAAAA,IAAgB,CAC3Bn4C,KAAM,YACNwZ,WAAY,CACR+3C,YAAW,GACXC,kBAAiB,GACjBC,iBAAgB,GAChBxL,SAAQ,KACRyL,aAAY,GACZC,aAAY,KACZjH,SAAQ,KACRkH,eAAc,KACdtuB,iBAAgB,KAChByc,cAAa,KACb8R,SAAQ,KACRlM,gBAAe,GACfmM,aAAY,KACZC,aAAYA,IAEhBzZ,OAAQ,CACJC,GACAoS,IAEJ/0C,KAAAA,GAAQ,IAAAgsB,EACJ,MAAM6W,EAAaxN,KACbgB,EAAaD,KACb0M,EAAiB5L,KACjBklB,EkB5DkB,WAQ5B,OANA3kB,IAAWuJ,EAAAA,GAAAA,KACGl+B,GAAY,WAAY,CAClC/M,MAAOA,KAAA,CACHqmB,MAAOqb,GAASrb,SAGjB5lB,IAAM9K,UACjB,ClBmD8B2wD,GAItB,MAAO,CACHxZ,aACAxM,aACAyM,iBACAsZ,gBACA7wB,gBARoBD,KASpBnF,gBARoBV,KASpBkH,eARqF,QAArEX,GAAIxG,EAAAA,GAAAA,GAAU,OAAQ,SAAU,IAAI,yCAAiC,IAAAwG,GAAAA,EAU7F,EACA99B,KAAIA,KACO,CACHouD,WAAY,GACZ9V,SAAS,EACT+V,QAAS,KACTC,KAAIA,GAAAA,IAGZp0B,SAAU,CACN4C,UAAAA,GACI,OAAO,KAAKO,gBAAgBP,UAChC,EACA+C,WAAAA,GACI,OAAO,KAAKG,YAAYyI,QAAU,KAAKzI,YAAYF,MAAMC,MAAMtJ,IAAI,IAAA22B,EAAAzU,EAAA,OAAKliB,EAAKl3B,MAAgC,QAA9B6tD,EAAwB,QAAxBzU,EAAM,KAAKt6B,OAAOnC,cAAM,IAAAy8B,OAAA,EAAlBA,EAAoBliB,YAAI,IAAA22B,EAAAA,EAAI,QAAQ,GAC7H,EACAmB,WAAAA,GAAc,IAAAC,EAAApZ,EACV,OAA6B,QAA7BoZ,EAAuB,QAAvBpZ,EAAO,KAAKvV,mBAAW,IAAAuV,OAAA,EAAhBA,EAAkBl5C,YAAI,IAAAsyD,EAAAA,EAAI,KAAK5zB,EAAE,QAAS,QACrD,EAIAuG,GAAAA,GAAM,IAAAvB,EAEF,QAAmB,QAAXA,EAAA,KAAKvhB,cAAM,IAAAuhB,GAAO,QAAPA,EAAXA,EAAannB,aAAK,IAAAmnB,GAAK,QAALA,EAAlBA,EAAoBuB,WAAG,IAAAvB,OAAA,EAAvBA,EAAyBh9B,aAAc,KAAKoE,QAAQ,WAAY,KAC5E,EAIA0+C,aAAAA,GAAgB,IAAAlQ,EACZ,GAAqB,QAAjBA,EAAC,KAAK3V,mBAAW,IAAA2V,IAAhBA,EAAkBj2C,GACnB,OAEJ,GAAiB,MAAb,KAAK4hC,IACL,OAAO,KAAKwT,WAAWlN,QAAQ,KAAK5H,YAAYtgC,IAEpD,MAAMm2C,EAAS,KAAKvN,WAAWE,QAAQ,KAAKxI,YAAYtgC,GAAI,KAAK4hC,KACjE,OAAO,KAAKwT,WAAWrN,QAAQoO,EACnC,EAKA+Y,iBAAAA,GA2BI,MAAO,CA1Ba,IAEZ,KAAK3xB,WAAWG,qBAAuB,CAAC9Q,IAAC,IAAAuiC,EAAA,OAA+B,KAAf,QAAZA,EAAAviC,EAAEogB,kBAAU,IAAAmiB,OAAA,EAAZA,EAAcjM,SAAc,GAAI,MAE7E,KAAK3lB,WAAWI,mBAAqB,CAAC/Q,GAAgB,WAAXA,EAAEpmB,MAAqB,MAE7C,aAArB,KAAKogD,YAA6B,CAACh6B,GAAKA,EAAE,KAAKg6B,cAAgB,GAEnEh6B,IAAC,IAAAwiC,EAAA,OAAgB,QAAZA,EAAAxiC,EAAEogB,kBAAU,IAAAoiB,OAAA,EAAZA,EAAcroB,cAAena,EAAEqf,QAAQ,EAE5Crf,GAAKA,EAAEqf,UAEI,IAEP,KAAK1O,WAAWG,qBAAuB,CAAC,OAAS,MAEjD,KAAKH,WAAWI,mBAAqB,CAAC,OAAS,MAE1B,UAArB,KAAKipB,YAA0B,CAAC,KAAKI,aAAe,OAAS,OAAS,MAEjD,UAArB,KAAKJ,aAAgD,aAArB,KAAKA,YAA6B,CAAC,KAAKI,aAAe,MAAQ,QAAU,GAE7G,KAAKA,aAAe,MAAQ,OAE5B,KAAKA,aAAe,MAAQ,QAGpC,EAIAqI,iBAAAA,GAAoB,IAAAzY,EAChB,IAAK,KAAKtW,YACN,MAAO,GAEX,IAAIgvB,EAAqB,IAAI,KAAKC,aAE9B,KAAKV,aACLS,EAAqBA,EAAmB7hD,QAAOzI,GACpCA,EAAKgoC,WAAWf,SAAS9jC,cAAcnG,SAAS,KAAK6sD,WAAW1mD,iBAE3EzD,GAAQs8B,MAAM,sBAAuBsuB,IAEzC,MAAME,IAAgC,QAAhB5Y,EAAA,KAAKtW,mBAAW,IAAAsW,OAAA,EAAhBA,EAAkBsO,UAAW,IAC9C1kB,MAAKulB,GAAUA,EAAO/lD,KAAO,KAAK4mD,cAEvC,GAAI4I,SAAAA,EAAcl3C,MAAqC,mBAAtBk3C,EAAal3C,KAAqB,CAC/D,MAAM6yB,EAAU,IAAI,KAAKokB,aAAaj3C,KAAKk3C,EAAal3C,MACxD,OAAO,KAAK0uC,aAAe7b,EAAUA,EAAQtb,SACjD,CACA,OAAO8U,GAAQ2qB,KAAuB,KAAKJ,kBAC/C,EACAK,WAAAA,GAAc,IAAAE,EAAApJ,EACV,MAAMqJ,EAAiC,QAAvBD,EAAG,KAAK3xB,uBAAe,IAAA2xB,OAAA,EAApBA,EAAsBlyB,WAAWC,YACpD,QAA0B,QAAlB6oB,EAAA,KAAKF,qBAAa,IAAAE,OAAA,EAAlBA,EAAoB/c,YAAa,IACpC57B,IAAI,KAAKq6B,SACTt6B,QAAO3B,IACS,IAAA6jD,EAAjB,OAAKD,IAGI5jD,EAFEA,IAAqC,KAA7BA,SAAgB,QAAZ6jD,EAAJ7jD,EAAMkhC,kBAAU,IAAA2iB,OAAA,EAAhBA,EAAkBC,WAAoB9jD,SAAAA,EAAMmgC,SAASv9B,WAAW,KAEtE,GAErB,EAIAmhD,UAAAA,GACI,OAAmC,IAA5B,KAAKN,YAAYlyD,MAC5B,EAMAyyD,YAAAA,GACI,YAA8B3xD,IAAvB,KAAKgoD,gBACJ,KAAK0J,YACN,KAAK9W,OAChB,EAIAgX,aAAAA,GACI,MAAMnuB,EAAM,KAAKA,IAAIxrB,MAAM,KAAKtZ,MAAM,GAAI,GAAGwZ,KAAK,MAAQ,IAC1D,MAAO,IAAK,KAAKwI,OAAQ5F,MAAO,CAAE0oB,OACtC,EACAouB,eAAAA,GAAkB,IAAAC,EAAAC,EACd,GAAuB,QAAnBD,EAAC,KAAK9J,qBAAa,IAAA8J,GAAY,QAAZA,EAAlBA,EAAoBjjB,kBAAU,IAAAijB,GAA9BA,EAAiC,eAGtC,OAAO/0D,OAAO0R,QAAyB,QAAlBsjD,EAAA,KAAK/J,qBAAa,IAAA+J,GAAY,QAAZA,EAAlBA,EAAoBljB,kBAAU,IAAAkjB,OAAA,EAA9BA,EAAiC,iBAAkB,CAAC,GAAGz2C,MAChF,EACA02C,gBAAAA,GACI,OAAK,KAAKH,gBAGN,KAAKI,kBAAoBrB,GAAAA,EAAKhL,gBACvB,KAAK1oB,EAAE,QAAS,kBAEpB,KAAKA,EAAE,QAAS,UALZ,KAAKA,EAAE,QAAS,QAM/B,EACA+0B,eAAAA,GACI,OAAK,KAAKJ,gBAIN,KAAKA,gBAAgB/qB,MAAKz+B,GAAQA,IAASuoD,GAAAA,EAAKhL,kBACzCgL,GAAAA,EAAKhL,gBAETgL,GAAAA,EAAKsB,gBAND,IAOf,EACAC,mBAAAA,GACI,OAAO,KAAK/yB,WAAWK,UACjB,KAAKvC,EAAE,QAAS,uBAChB,KAAKA,EAAE,QAAS,sBAC1B,EAIA2xB,SAAAA,GACI,OAAO,KAAK7G,kBAAkB,KAAKA,cAAc7e,YAAcC,GAAAA,GAAWoK,OAC9E,EACAsb,eAAAA,GAAkB,IAAAsD,EACd,OAAqE,KAA5C,QAAlBA,EAAA,KAAKpK,qBAAa,IAAAoK,GAAY,QAAZA,EAAlBA,EAAoBvjB,kBAAU,IAAAujB,OAAA,EAA9BA,EAAiC,yBAC5C,EACArD,eAAAA,GACI,OAAI,KAAKD,gBACE,KAAK5xB,EAAE,QAAS,mEAEpB,KAAKA,EAAE,QAAS,2DAC3B,EAIAm1B,QAAAA,GACI,OAAO1C,IACA,KAAK3H,kBAAkB,KAAKA,cAAc7e,YAAcC,GAAAA,GAAWkpB,MAC9E,GAEJ5vB,MAAO,CACHP,WAAAA,CAAYowB,EAAS5vB,IACb4vB,aAAO,EAAPA,EAAS1wD,OAAO8gC,aAAO,EAAPA,EAAS9gC,MAG7Bw8B,GAAOwE,MAAM,eAAgB,CAAE0vB,UAAS5vB,YACxC,KAAKuU,eAAetL,QACpB,KAAK4mB,eACT,EACA/uB,GAAAA,CAAIgvB,EAAQC,GAAQ,IAAA5G,EAChBztB,GAAOwE,MAAM,oBAAqB,CAAE4vB,SAAQC,WAE5C,KAAKxb,eAAetL,QACpB,KAAK4mB,eAES,QAAd1G,EAAI,KAAK9R,aAAK,IAAA8R,GAAkB,QAAlBA,EAAVA,EAAY6G,wBAAgB,IAAA7G,GAA5BA,EAA8B5sB,MAC9B,KAAK8a,MAAM2Y,iBAAiBzzB,IAAIwtB,UAAY,EAEpD,EACA0E,WAAAA,CAAYplB,GACR3N,GAAOwE,MAAM,6BAA8B,CAAE9J,KAAM,KAAKoJ,YAAagP,OAAQ,KAAK6W,cAAehc,cACjG1sC,EAAAA,GAAAA,IAAK,qBAAsB,CAAEy5B,KAAM,KAAKoJ,YAAagP,OAAQ,KAAK6W,cAAehc,YACrF,GAEJzO,OAAAA,GACI,KAAKi1B,gBACL/3B,EAAAA,GAAAA,IAAU,qBAAsB,KAAK8P,gBACrC9P,EAAAA,GAAAA,IAAU,kCAAmC,KAAKm4B,WAClDn4B,EAAAA,GAAAA,IAAU,iCAAkC,KAAKm4B,SACrD,EACAC,SAAAA,IACIC,EAAAA,GAAAA,IAAY,qBAAsB,KAAKvoB,cAC3C,EACA3M,QAAS,CACL,kBAAM40B,GAAe,IAAAO,EACjB,KAAKnY,SAAU,EACf,MAAMnX,EAAM,KAAKA,IACXtB,EAAc,KAAKA,YACzB,GAAKA,EAAL,CAKoC,mBAAb,QAAnB4wB,EAAO,KAAKpC,eAAO,IAAAoC,OAAA,EAAZA,EAAc/2B,UACrB,KAAK20B,QAAQ30B,SACbqC,GAAOwE,MAAM,qCAGjB,KAAK8tB,QAAUxuB,EAAYsO,YAAYhN,GACvC,IACI,MAAM,OAAE0N,EAAM,SAAEnF,SAAmB,KAAK2kB,QACxCtyB,GAAOwE,MAAM,mBAAoB,CAAEY,MAAK0N,SAAQnF,aAEhD,KAAKiL,WAAWhN,YAAY+B,GAG5B,KAAKgnB,KAAK7hB,EAAQ,YAAanF,EAASz8B,KAAI1I,GAAQA,EAAK2iC,UAE7C,MAAR/F,EACA,KAAKwT,WAAW7M,QAAQ,CAAEJ,QAAS7H,EAAYtgC,GAAIqnC,KAAMiI,IAIrDA,EAAO3H,QACP,KAAKyN,WAAWhN,YAAY,CAACkH,IAC7B,KAAK1G,WAAWG,QAAQ,CAAEZ,QAAS7H,EAAYtgC,GAAI2nC,OAAQ2H,EAAO3H,OAAQr5B,KAAMszB,KAIhFpF,GAAO73B,MAAM,+BAAgC,CAAEi9B,MAAK0N,SAAQhP,gBAIpD6J,EAAS18B,QAAOzI,GAAsB,WAAdA,EAAKwB,OACrCqG,SAAQ7H,IACZ,KAAK4jC,WAAWG,QAAQ,CAAEZ,QAAS7H,EAAYtgC,GAAI2nC,OAAQ3iC,EAAK2iC,OAAQr5B,MAAMgI,EAAAA,GAAAA,MAAKsrB,EAAK58B,EAAKinC,WAAY,GAEjH,CACA,MAAOtnC,GACH63B,GAAO73B,MAAM,+BAAgC,CAAEA,SACnD,CAAC,QAEG,KAAKo0C,SAAU,CACnB,CA1CA,MAFIvc,GAAOwE,MAAM,mDAAqD,CAAEV,eA6C5E,EAOAyH,OAAAA,CAAQoO,GACJ,OAAO,KAAKf,WAAWrN,QAAQoO,EACnC,EAKAib,QAAAA,CAASzd,GAAQ,IAAA0d,GAGahoB,EAAAA,GAAAA,SAAQsK,EAAOjyB,WACoB,QAAvB2vC,EAAK,KAAKlL,qBAAa,IAAAkL,OAAA,EAAlBA,EAAoB3vC,SAK3D,KAAKivC,cAEb,EACA,kBAAMW,CAAa3d,GAAQ,IAAA8Z,EACvB,MAAM3oD,GAAwB,QAAf2oD,EAAA9Z,EAAOnvC,gBAAQ,IAAAipD,OAAA,EAAfA,EAAiB3oD,SAAU,EAE1C,GAAe,MAAXA,EAIC,GAAe,MAAXA,GAA6B,MAAXA,EAItB,GAAe,MAAXA,EAAJ,CAKL,IAAI,IAAAysD,EACA,MAAMC,EAAS,IAAIC,GAAAA,OAAO,CAAE34C,MAAM,EAAM44C,cAAc,IAEhD9pD,SADiB4pD,EAAOG,mBAAkC,QAAhBJ,EAAC5d,EAAOnvC,gBAAQ,IAAA+sD,OAAA,EAAfA,EAAiB9wD,OACzC,aAAa,GACtC,GAAuB,iBAAZmH,GAA2C,KAAnBA,EAAQkR,OAGvC,YADA2jB,EAAAA,GAAAA,IAAU,KAAKpB,EAAE,QAAS,iCAAkC,CAAEzzB,YAGtE,CACA,MAAOjD,GACH63B,GAAO73B,MAAM,sBAAuB,CAAEA,SAC1C,CAEe,IAAXG,GAIJ23B,EAAAA,GAAAA,IAAU,KAAKpB,EAAE,QAAS,iCAHtBoB,EAAAA,GAAAA,IAAU,KAAKpB,EAAE,QAAS,4CAA6C,CAAEv2B,WAjB7E,MAFI23B,EAAAA,GAAAA,IAAU,KAAKpB,EAAE,QAAS,gDAJ1BoB,EAAAA,GAAAA,IAAU,KAAKpB,EAAE,QAAS,+CAJ1BoB,EAAAA,GAAAA,IAAU,KAAKpB,EAAE,QAAS,yBA+BlC,EAMAqN,aAAAA,CAAc1jC,GAAM,IAAA4sD,GACZ5sD,aAAI,EAAJA,EAAM2iC,WAA6B,QAAvBiqB,EAAK,KAAKzL,qBAAa,IAAAyL,OAAA,EAAlBA,EAAoBjqB,SACrC,KAAKgpB,cAEb,EAMAI,SAAU1G,MAAS,SAAUwH,GACzBntD,GAAQs8B,MAAM,yDAA0D6wB,GACxE,KAAKhD,WAAagD,EAAY34C,KAClC,GAAG,KACH44C,kBAAAA,GAAqB,IAAA1wB,EACZ,KAAK+kB,eAIA,QAAV/kB,EAAItiC,cAAM,IAAAsiC,GAAK,QAALA,EAANA,EAAQ5C,WAAG,IAAA4C,GAAO,QAAPA,EAAXA,EAAa3C,aAAK,IAAA2C,GAAS,QAATA,EAAlBA,EAAoBE,eAAO,IAAAF,GAA3BA,EAA6B2wB,cAC7BjzD,OAAO0/B,IAAIC,MAAM6C,QAAQywB,aAAa,WAE1C7W,GAAchjC,KAAK,KAAKiuC,cAAe,KAAK7lB,YAAa,KAAK6lB,cAAc73C,OANxEkuB,GAAOwE,MAAM,sDAOrB,EACAgxB,cAAAA,GACI,KAAKl0B,gBAAgB3F,OAAO,aAAc,KAAKoF,WAAWK,UAC9D,EACAvC,EAAGqB,GAAAA,GACHvJ,EAAG8+B,GAAAA,sBwJ3aP,GAAU,CAAC,EAEf,GAAQt1B,kBAAoB,KAC5B,GAAQC,cAAgB,KAElB,GAAQC,OAAS,UAAc,KAAM,QAE3C,GAAQC,OAAS,KACjB,GAAQC,mBAAqB,KAEhB,KAAI,KAAS,IAKJ,MAAW,KAAQC,QAAS,KAAQA,OCP1D,UAXgB,QACd,IzJTW,WAAiB,IAAAgpB,EAAAkM,EAAK76B,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4f,YAAmB7f,EAAG,eAAe,CAAC7W,MAAM,CAAC,eAAe4W,EAAI23B,YAAY,wBAAwB,KAAK,CAAC13B,EAAG,MAAM,CAACG,YAAY,sBAAsB,CAACH,EAAG,cAAc,CAAC7W,MAAM,CAAC,KAAO4W,EAAIuK,KAAKtjC,GAAG,CAAC,OAAS+4B,EAAIs5B,cAAc/wB,YAAYvI,EAAIwI,GAAG,CAAC,CAACt3B,IAAI,UAAU/M,GAAG,WAAW,MAAO,CAAE67B,EAAIm5B,UAAYn5B,EAAI+c,gBAAkB,IAAK9c,EAAG,WAAW,CAACG,YAAY,kCAAkC9Q,MAAM,CAAE,0CAA2C0Q,EAAI+4B,iBAAkB3vC,MAAM,CAAC,aAAa4W,EAAI84B,iBAAiB,MAAQ94B,EAAI84B,iBAAiB,KAAO,YAAY7xD,GAAG,CAAC,MAAQ+4B,EAAIy6B,oBAAoBlyB,YAAYvI,EAAIwI,GAAG,CAAC,CAACt3B,IAAI,OAAO/M,GAAG,WAAW,MAAO,CAAE67B,EAAI+4B,kBAAoB/4B,EAAI03B,KAAKhL,gBAAiBzsB,EAAG,YAAYA,EAAG,kBAAkB,CAAC7W,MAAM,CAAC,KAAO,MAAM,EAAE7d,OAAM,IAAO,MAAK,EAAM,cAAcy0B,EAAI7iB,KAAK6iB,EAAIQ,GAAG,MAAOR,EAAI21B,WAAa31B,EAAI41B,gBAAiB31B,EAAG,WAAW,CAACG,YAAY,6CAA6ChX,MAAM,CAAC,aAAa4W,EAAI61B,gBAAgB,MAAQ71B,EAAI61B,gBAAgB,UAAW,EAAK,KAAO,aAAattB,YAAYvI,EAAIwI,GAAG,CAAC,CAACt3B,IAAI,OAAO/M,GAAG,WAAW,MAAO,CAAC87B,EAAG,WAAW,CAAC7W,MAAM,CAAC,KAAO,MAAM,EAAE7d,OAAM,IAAO,MAAK,EAAM,aAAa,CAACy0B,EAAIQ,GAAG,eAAeR,EAAIjrB,GAAGirB,EAAIgE,EAAE,QAAS,QAAQ,gBAAiBhE,EAAI8uB,cAAe7uB,EAAG,eAAe,CAACG,YAAY,mCAAmChX,MAAM,CAAC,QAAU4W,EAAIk4B,YAAY,YAAcl4B,EAAI8uB,cAAc,UAAW,GAAM7nD,GAAG,CAAC,OAAS+4B,EAAIi6B,aAAa,SAAWj6B,EAAI+5B,YAAY/5B,EAAI7iB,KAAK,EAAE5R,OAAM,OAAUy0B,EAAIQ,GAAG,KAAMR,EAAI+c,gBAAkB,KAAO/c,EAAI6H,eAAgB5H,EAAG,WAAW,CAACG,YAAY,iCAAiChX,MAAM,CAAC,aAAa4W,EAAIi5B,oBAAoB,MAAQj5B,EAAIi5B,oBAAoB,KAAO,YAAYhyD,GAAG,CAAC,MAAQ+4B,EAAI26B,gBAAgBpyB,YAAYvI,EAAIwI,GAAG,CAAC,CAACt3B,IAAI,OAAO/M,GAAG,WAAW,MAAO,CAAE67B,EAAIkG,WAAWK,UAAWtG,EAAG,gBAAgBA,EAAG,gBAAgB,EAAE10B,OAAM,IAAO,MAAK,EAAM,cAAcy0B,EAAI7iB,KAAK6iB,EAAIQ,GAAG,KAAMR,EAAIy4B,aAAcx4B,EAAG,gBAAgB,CAACG,YAAY,6BAA6BJ,EAAI7iB,MAAM,GAAG6iB,EAAIQ,GAAG,MAAOR,EAAI0hB,SAAW1hB,EAAI21B,UAAW11B,EAAG,oBAAoB,CAAC7W,MAAM,CAAC,iBAAiB4W,EAAI8uB,iBAAiB9uB,EAAI7iB,KAAK6iB,EAAIQ,GAAG,KAAMR,EAAI0hB,UAAY1hB,EAAIy4B,aAAcx4B,EAAG,gBAAgB,CAACG,YAAY,2BAA2BhX,MAAM,CAAC,KAAO,GAAG,KAAO4W,EAAIgE,EAAE,QAAS,8BAA+BhE,EAAI0hB,SAAW1hB,EAAIw4B,WAAYv4B,EAAG,iBAAiB,CAAC7W,MAAM,CAAC,MAAsB,QAAfulC,EAAA3uB,EAAIiJ,mBAAW,IAAA0lB,OAAA,EAAfA,EAAiBmM,aAAc96B,EAAIgE,EAAE,QAAS,oBAAoB,aAA6B,QAAf62B,EAAA76B,EAAIiJ,mBAAW,IAAA4xB,OAAA,EAAfA,EAAiBE,eAAgB/6B,EAAIgE,EAAE,QAAS,kDAAkD,8BAA8B,IAAIuE,YAAYvI,EAAIwI,GAAG,CAAC,CAACt3B,IAAI,SAAS/M,GAAG,WAAW,MAAO,CAAc,MAAZ67B,EAAIuK,IAAatK,EAAG,WAAW,CAAC7W,MAAM,CAAC,aAAa4W,EAAIgE,EAAE,QAAS,6BAA6B,KAAO,UAAU,GAAKhE,EAAI04B,gBAAgB,CAAC14B,EAAIQ,GAAG,aAAaR,EAAIjrB,GAAGirB,EAAIgE,EAAE,QAAS,YAAY,cAAchE,EAAI7iB,KAAK,EAAE5R,OAAM,GAAM,CAAC2F,IAAI,OAAO/M,GAAG,WAAW,MAAO,CAAC87B,EAAG,mBAAmB,CAAC7W,MAAM,CAAC,IAAM4W,EAAIiJ,YAAY11B,QAAQ,EAAEhI,OAAM,OAAU00B,EAAG,mBAAmB,CAACna,IAAI,mBAAmBsD,MAAM,CAAC,iBAAiB4W,EAAI8uB,cAAc,eAAe9uB,EAAIiJ,YAAY,MAAQjJ,EAAIg4B,sBAAsB,EAC9nG,GACsB,IyJUpB,EACA,KACA,WACA,MAI8B,QCnB+M,I7LIhOva,EAAAA,EAAAA,IAAgB,CAC3Bn4C,KAAM,WACNwZ,WAAY,CACRk8C,UAAS,KACTC,UAAS,GACTC,WAAUA,M8LSlB,IAXgB,QACd,I9LRW,WAAkB,IAAIl7B,EAAI17B,KAAK27B,EAAGD,EAAIE,MAAMD,GAAgC,OAAtBD,EAAIE,MAAM4f,YAAmB7f,EAAG,YAAY,CAAC7W,MAAM,CAAC,WAAW,UAAU,CAAC6W,EAAG,cAAcD,EAAIQ,GAAG,KAAKP,EAAG,cAAc,EAC3L,GACsB,I8LSpB,EACA,KACA,KACA,MAI8B,kBCRhCk7B,EAAAA,GAAoBC,MAAK9kB,EAAAA,GAAAA,OAEzB7uC,OAAO0/B,IAAIC,MAAwB,QAAnBi0B,GAAG5zD,OAAO0/B,IAAIC,aAAK,IAAAi0B,GAAAA,GAAI,CAAC,EACxC5zD,OAAO2oC,IAAIhJ,MAAwB,QAAnBk0B,GAAG7zD,OAAO2oC,IAAIhJ,aAAK,IAAAk0B,GAAAA,GAAI,CAAC,EAExC,MAAM57B,GAAS,ICfA,MAEXv3B,WAAAA,CAAY+c,eAAQ,yZAChB5gB,KAAKw6B,QAAU5Z,CACnB,CACA,QAAI5f,GACA,OAAOhB,KAAKw6B,QAAQvM,aAAajtB,IACrC,CACA,SAAIuc,GACA,OAAOvd,KAAKw6B,QAAQvM,aAAa1Q,OAAS,CAAC,CAC/C,CACA,UAAIyD,GACA,OAAOhhB,KAAKw6B,QAAQvM,aAAajN,QAAU,CAAC,CAChD,CAQAi2C,IAAAA,CAAKtkD,GAAuB,IAAjB7G,EAAOxJ,UAAAZ,OAAA,QAAAc,IAAAF,UAAA,IAAAA,UAAA,GACd,OAAOtC,KAAKw6B,QAAQh6B,KAAK,CACrBmS,OACA7G,WAER,CAUAigC,SAAAA,CAAU/qC,EAAMggB,EAAQzD,EAAOzR,GAC3B,OAAO9L,KAAKw6B,QAAQh6B,KAAK,CACrBQ,OACAuc,QACAyD,SACAlV,WAER,GD5B6B8U,IACjCrhB,OAAOmF,OAAOvB,OAAO2oC,IAAIhJ,MAAO,CAAE1H,YAElCrB,EAAAA,GAAIoB,KvMs5DmB,SAAU5R,GAG7BA,EAAK+Q,MAAM,CACP,YAAAC,GACI,MAAM3mB,EAAU5T,KAAKo6B,SACrB,GAAIxmB,EAAQvM,MAAO,CACf,MAAMA,EAAQuM,EAAQvM,MAGtB,IAAKrH,KAAKk3D,UAAW,CACjB,MAAMC,EAAe,CAAC,EACtB53D,OAAO0Z,eAAejZ,KAAM,YAAa,CACrC+F,IAAK,IAAMoxD,EACXtkD,IAAMoe,GAAM1xB,OAAOmF,OAAOyyD,EAAclmC,IAEhD,CACAjxB,KAAKk3D,UAAU5vD,GAAeD,EAIzBrH,KAAK+qD,SACN/qD,KAAK+qD,OAAS1jD,GAElBA,EAAM3B,GAAK1F,KACP6H,GAGAT,EAAeC,GAEfS,GACA0G,EAAsBnH,EAAM3B,GAAI2B,EAExC,MACUrH,KAAK+qD,QAAUn3C,EAAQ2N,QAAU3N,EAAQ2N,OAAOwpC,SACtD/qD,KAAK+qD,OAASn3C,EAAQ2N,OAAOwpC,OAErC,EACA,SAAArwB,UACW16B,KAAK+Q,QAChB,GAER,IuM/7DA,MAAM1J,GvMm7BN,WACI,MAAM0P,GAAQ,SAAY,GAGpBpK,EAAQoK,EAAMwB,KAAI,KAAM,QAAI,CAAC,KACnC,IAAIF,EAAK,GAEL++C,EAAgB,GACpB,MAAM/vD,GAAQ,QAAQ,CAClB,OAAAyyB,CAAQrrB,GAGJrH,EAAeC,GACV,IACDA,EAAM3B,GAAK+I,EACXA,EAAI4oD,QAAQ/vD,EAAaD,GACzBoH,EAAImW,OAAO0yC,iBAAiBvM,OAAS1jD,EAEjCS,GACA0G,EAAsBC,EAAKpH,GAE/B+vD,EAAclmD,SAASpN,GAAWuU,EAAG7X,KAAKsD,KAC1CszD,EAAgB,GAExB,EACA,GAAAj8B,CAAIr3B,GAOA,OANK9D,KAAK0F,IAAO,EAIb2S,EAAG7X,KAAKsD,GAHRszD,EAAc52D,KAAKsD,GAKhB9D,IACX,EACAqY,KAGA3S,GAAI,KACJmT,GAAI9B,EACJtG,GAAI,IAAI0F,IACRxJ,UAOJ,OAHI7E,GAAiC,oBAAVtE,OACvB6D,EAAM8zB,IAAIxnB,GAEPtM,CACX,CuMn+BckwD,GAGRX,GAAa78B,EAAAA,GAAIy9B,YAAWlqB,EAAAA,GAAAA,OAClCvT,EAAAA,GAAIv6B,UAAUslC,YAAc8xB,GAE5B,MAAM7zB,GAAW,IEHF,MAIdl/B,WAAAA,eAAc,2ZACb7D,KAAKy3D,UAAY,GACjB1uD,GAAQs8B,MAAM,iCACf,CASAqyB,QAAAA,CAASn8B,GACR,OAAIv7B,KAAKy3D,UAAU3lD,QAAO7M,GAAKA,EAAEjE,OAASu6B,EAAKv6B,OAAMU,OAAS,GAC7DqH,GAAQC,MAAM,uDACP,IAERhJ,KAAKy3D,UAAUj3D,KAAK+6B,IACb,EACR,CAOA,YAAIn3B,GACH,OAAOpE,KAAKy3D,SACb,GF5BDl4D,OAAOmF,OAAOvB,OAAO0/B,IAAIC,MAAO,CAAEC,SAAQA,KAC1CxjC,OAAOmF,OAAOvB,OAAO0/B,IAAIC,MAAMC,SAAU,CAAEN,QGJ5B,MAiBd5+B,WAAAA,CAAY7C,EAAIk8B,GAAuB,IAArB,GAAE7L,EAAE,KAAE5oB,EAAI,MAAEi7B,GAAOxG,EAAAy6B,GAAA,sBAAAA,GAAA,mBAAAA,GAAA,qBAAAA,GAAA,qBACpC33D,KAAK43D,MAAQ52D,EACbhB,KAAK63D,IAAMxmC,EACXrxB,KAAK83D,MAAQrvD,EACbzI,KAAK+3D,OAASr0B,EAEY,mBAAf1jC,KAAK83D,QACf93D,KAAK83D,MAAQ,QAGa,mBAAhB93D,KAAK+3D,SACf/3D,KAAK+3D,OAAS,OAEhB,CAEA,QAAI/2D,GACH,OAAOhB,KAAK43D,KACb,CAEA,MAAIvmC,GACH,OAAOrxB,KAAK63D,GACb,CAEA,QAAIpvD,GACH,OAAOzI,KAAK83D,KACb,CAEA,SAAIp0B,GACH,OAAO1jC,KAAK+3D,MACb,KHxCD,IADoBh+B,EAAAA,GAAIva,OAAOw4C,IAC/B,CAAgB,CACZp3C,OAAM,GACNvZ,WACD04C,OAAO,uCIhCV,6BAAmD,OAAOkY,EAAU,mBAAqB1wD,QAAU,iBAAmBA,OAAOgvB,SAAW,SAAUxd,GAAO,cAAcA,CAAK,EAAI,SAAUA,GAAO,OAAOA,GAAO,mBAAqBxR,QAAUwR,EAAIlV,cAAgB0D,QAAUwR,IAAQxR,OAAO/H,UAAY,gBAAkBuZ,CAAK,EAAGk/C,EAAQl/C,EAAM,CActT,oBAAf3V,WAA6BA,WAA6B,oBAAT6E,MAAuBA,KAV1D,EAUuE,SAAUiwD,GACvG,aAYA,SAASC,EAAgB1wD,EAAG6R,GAA6I,OAAxI6+C,EAAkB54D,OAAO64D,eAAiB74D,OAAO64D,eAAelkD,OAAS,SAAyBzM,EAAG6R,GAAsB,OAAjB7R,EAAE5G,UAAYyY,EAAU7R,CAAG,EAAU0wD,EAAgB1wD,EAAG6R,EAAI,CAEvM,SAAS++C,EAAaC,GAAW,IAAIC,EAMrC,WAAuC,GAAuB,oBAAZ9kD,UAA4BA,QAAQ+kD,UAAW,OAAO,EAAO,GAAI/kD,QAAQ+kD,UAAUC,KAAM,OAAO,EAAO,GAAqB,mBAAVj1D,MAAsB,OAAO,EAAM,IAAsF,OAAhF6a,QAAQ7e,UAAU0oC,QAAQhnC,KAAKuS,QAAQ+kD,UAAUn6C,QAAS,IAAI,WAAa,MAAY,CAAM,CAAE,MAAOpZ,GAAK,OAAO,CAAO,CAAE,CANvQyzD,GAA6B,OAAO,WAAkC,IAAsC9sD,EAAlC+sD,EAAQC,EAAgBN,GAAkB,GAAIC,EAA2B,CAAE,IAAIM,EAAYD,EAAgB54D,MAAM6D,YAAa+H,EAAS6H,QAAQ+kD,UAAUG,EAAOr2D,UAAWu2D,EAAY,MAASjtD,EAAS+sD,EAAMl2D,MAAMzC,KAAMsC,WAAc,OAEpX,SAAoC2F,EAAM/G,GAAQ,GAAIA,IAA2B,WAAlB+2D,EAAQ/2D,IAAsC,mBAATA,GAAwB,OAAOA,EAAa,QAAa,IAATA,EAAmB,MAAM,IAAId,UAAU,4DAA+D,OAE1P,SAAgC6H,GAAQ,QAAa,IAATA,EAAmB,MAAM,IAAI6wD,eAAe,6DAAgE,OAAO7wD,CAAM,CAF4F8wD,CAAuB9wD,EAAO,CAF4F+wD,CAA2Bh5D,KAAM4L,EAAS,CAAG,CAQxa,SAASgtD,EAAgBnxD,GAA+J,OAA1JmxD,EAAkBr5D,OAAO64D,eAAiB74D,OAAO05D,eAAe/kD,OAAS,SAAyBzM,GAAK,OAAOA,EAAE5G,WAAatB,OAAO05D,eAAexxD,EAAI,EAAUmxD,EAAgBnxD,EAAI,CAEnN,SAASyxD,EAA2BzxD,EAAG0xD,GAAkB,IAAIC,EAAuB,oBAAX7xD,QAA0BE,EAAEF,OAAOgvB,WAAa9uB,EAAE,cAAe,IAAK2xD,EAAI,CAAE,GAAIx3D,MAAM4L,QAAQ/F,KAAO2xD,EAE9K,SAAqC3xD,EAAG4xD,GAAU,GAAK5xD,EAAL,CAAgB,GAAiB,iBAANA,EAAgB,OAAO6xD,EAAkB7xD,EAAG4xD,GAAS,IAAI7hC,EAAIj4B,OAAOC,UAAUkI,SAASxG,KAAKuG,GAAGtG,MAAM,GAAI,GAAiE,MAAnD,WAANq2B,GAAkB/vB,EAAE5D,cAAa2zB,EAAI/vB,EAAE5D,YAAY7C,MAAgB,QAANw2B,GAAqB,QAANA,EAAoB51B,MAAMgQ,KAAKnK,GAAc,cAAN+vB,GAAqB,2CAA2C1tB,KAAK0tB,GAAW8hC,EAAkB7xD,EAAG4xD,QAAzG,CAA7O,CAA+V,CAF5OE,CAA4B9xD,KAAO0xD,GAAkB1xD,GAAyB,iBAAbA,EAAE/F,OAAqB,CAAM03D,IAAI3xD,EAAI2xD,GAAI,IAAI53D,EAAI,EAAOg4D,EAAI,WAAc,EAAG,MAAO,CAAEC,EAAGD,EAAGhiC,EAAG,WAAe,OAAIh2B,GAAKiG,EAAE/F,OAAe,CAAEg4D,MAAM,GAAe,CAAEA,MAAM,EAAOr0D,MAAOoC,EAAEjG,KAAQ,EAAGyD,EAAG,SAAW4T,GAAM,MAAMA,CAAI,EAAG8gD,EAAGH,EAAK,CAAE,MAAM,IAAIp5D,UAAU,wIAA0I,CAAE,IAA6C0f,EAAzC85C,GAAmB,EAAMC,GAAS,EAAY,MAAO,CAAEJ,EAAG,WAAeL,EAAKA,EAAGl4D,KAAKuG,EAAI,EAAG+vB,EAAG,WAAe,IAAItE,EAAOkmC,EAAG/xC,OAAsC,OAA9BuyC,EAAmB1mC,EAAKwmC,KAAaxmC,CAAM,EAAGjuB,EAAG,SAAW60D,GAAOD,GAAS,EAAM/5C,EAAMg6C,CAAK,EAAGH,EAAG,WAAe,IAAWC,GAAiC,MAAbR,EAAGW,QAAgBX,EAAGW,QAAU,CAAE,QAAU,GAAIF,EAAQ,MAAM/5C,CAAK,CAAE,EAAK,CAIr+B,SAASw5C,EAAkB3zC,EAAKtjB,IAAkB,MAAPA,GAAeA,EAAMsjB,EAAIjkB,UAAQW,EAAMsjB,EAAIjkB,QAAQ,IAAK,IAAIF,EAAI,EAAGw4D,EAAO,IAAIp4D,MAAMS,GAAMb,EAAIa,EAAKb,IAAOw4D,EAAKx4D,GAAKmkB,EAAInkB,GAAM,OAAOw4D,CAAM,CAEtL,SAASC,EAAgB73C,EAAU83C,GAAe,KAAM93C,aAAoB83C,GAAgB,MAAM,IAAI95D,UAAU,oCAAwC,CAExJ,SAAS+5D,EAAkBn2D,EAAQ2e,GAAS,IAAK,IAAInhB,EAAI,EAAGA,EAAImhB,EAAMjhB,OAAQF,IAAK,CAAE,IAAIoF,EAAa+b,EAAMnhB,GAAIoF,EAAWyS,WAAazS,EAAWyS,aAAc,EAAOzS,EAAWwS,cAAe,EAAU,UAAWxS,IAAYA,EAAWuS,UAAW,GAAM5Z,OAAO0Z,eAAejV,EAAQ4C,EAAWgG,IAAKhG,EAAa,CAAE,CAE5T,SAASwzD,EAAaF,EAAaG,EAAYC,GAAyN,OAAtMD,GAAYF,EAAkBD,EAAY16D,UAAW66D,GAAiBC,GAAaH,EAAkBD,EAAaI,GAAc/6D,OAAO0Z,eAAeihD,EAAa,YAAa,CAAE/gD,UAAU,IAAiB+gD,CAAa,CAE5R,SAASvC,EAAgB5+C,EAAKnM,EAAKvH,GAAiK,OAApJuH,KAAOmM,EAAOxZ,OAAO0Z,eAAeF,EAAKnM,EAAK,CAAEvH,MAAOA,EAAOgU,YAAY,EAAMD,cAAc,EAAMD,UAAU,IAAkBJ,EAAInM,GAAOvH,EAAgB0T,CAAK,CAEhN,SAASwhD,EAA2BxhD,EAAKyhD,EAAYn1D,IAErD,SAAoC0T,EAAK0hD,GAAqB,GAAIA,EAAkBn7D,IAAIyZ,GAAQ,MAAM,IAAI3Y,UAAU,iEAAqE,EAF3Hs6D,CAA2B3hD,EAAKyhD,GAAaA,EAAW3nD,IAAIkG,EAAK1T,EAAQ,CAIvI,SAASs1D,EAAsBC,EAAUJ,GAA0F,OAEnI,SAAkCI,EAAUh0D,GAAc,OAAIA,EAAWb,IAAca,EAAWb,IAAI7E,KAAK05D,GAAoBh0D,EAAWvB,KAAO,CAFPw1D,CAAyBD,EAA3FE,EAA6BF,EAAUJ,EAAY,OAA+D,CAI1L,SAASO,EAAsBH,EAAUJ,EAAYn1D,GAA4I,OAIjM,SAAkCu1D,EAAUh0D,EAAYvB,GAAS,GAAIuB,EAAWiM,IAAOjM,EAAWiM,IAAI3R,KAAK05D,EAAUv1D,OAAe,CAAE,IAAKuB,EAAWuS,SAAY,MAAM,IAAI/Y,UAAU,4CAA+CwG,EAAWvB,MAAQA,CAAO,CAAE,CAJvH21D,CAAyBJ,EAApFE,EAA6BF,EAAUJ,EAAY,OAAuDn1D,GAAeA,CAAO,CAE/M,SAASy1D,EAA6BF,EAAUJ,EAAYprD,GAAU,IAAKorD,EAAWl7D,IAAIs7D,GAAa,MAAM,IAAIx6D,UAAU,gBAAkBgP,EAAS,kCAAqC,OAAOorD,EAAWz0D,IAAI60D,EAAW,CA9C5Nr7D,OAAO0Z,eAAei/C,EAAU,aAAc,CAC5C7yD,OAAO,IAET6yD,EAAS7kB,uBAAoB,EAC7B6kB,EAAS+C,WAAaA,EACtB/C,EAASt1C,aAAU,EACnBs1C,EAASgD,oBAAsBA,EA4C/B,IAAI5nC,EAAgC,oBAAX/rB,OAAyBA,OAAO+rB,YAAc,gBAEnE6nC,EAA0B,IAAIzkD,QAE9B0kD,EAAwB,IAAI1kD,QAE5B2kD,EAAyC,WAC3C,SAASA,EAA0Bn+B,GACjC,IAAIo+B,EAAgBp+B,EAAKq+B,SACrBA,OAA6B,IAAlBD,EAA2B,WAAa,EAAIA,EACvDE,EAAiBt+B,EAAKu+B,UACtBA,OAA+B,IAAnBD,EAmNX,CACLE,YAAY,EACZC,aAAc,IArNmDH,EAC7DI,EAAe1+B,EAAKi2B,QACpBA,OAA2B,IAAjByI,EAA0B,IAAIr1D,SAAQ,SAAUD,EAAS0J,GACrE,OAAOurD,EAASj1D,EAAS0J,GAAQ,SAAUsjC,GACzCmoB,EAAUE,aAAan7D,KAAK8yC,EAC9B,GACF,IAAKsoB,EAEL3B,EAAgBj6D,KAAMq7D,GAEtBd,EAA2Bv6D,KAAMm7D,EAAY,CAC3ChiD,UAAU,EACV9T,WAAO,IAGTk1D,EAA2Bv6D,KAAMo7D,EAAU,CACzCjiD,UAAU,EACV9T,WAAO,IAGTsyD,EAAgB33D,KAAMszB,EAAa,qBAEnCtzB,KAAKw+B,OAASx+B,KAAKw+B,OAAOtqB,KAAKlU,MAE/B+6D,EAAsB/6D,KAAMm7D,EAAYM,GAExCV,EAAsB/6D,KAAMo7D,EAAUjI,GAAW,IAAI5sD,SAAQ,SAAUD,EAAS0J,GAC9E,OAAOurD,EAASj1D,EAAS0J,GAAQ,SAAUsjC,GACzCmoB,EAAUE,aAAan7D,KAAK8yC,EAC9B,GACF,IACF,CAsEA,OApEA8mB,EAAaiB,EAA2B,CAAC,CACvCzuD,IAAK,OACLvH,MAAO,SAAcw2D,EAAaC,GAChC,OAAOC,EAAepB,EAAsB36D,KAAMo7D,GAAUvjD,KAAKmkD,EAAeH,EAAalB,EAAsB36D,KAAMm7D,IAAca,EAAeF,EAAYnB,EAAsB36D,KAAMm7D,KAAeR,EAAsB36D,KAAMm7D,GAC3O,GACC,CACDvuD,IAAK,QACLvH,MAAO,SAAgBy2D,GACrB,OAAOC,EAAepB,EAAsB36D,KAAMo7D,GAAUjjD,MAAM6jD,EAAeF,EAAYnB,EAAsB36D,KAAMm7D,KAAeR,EAAsB36D,KAAMm7D,GACtK,GACC,CACDvuD,IAAK,UACLvH,MAAO,SAAkB42D,EAAWC,GAClC,IAAIC,EAAQn8D,KAMZ,OAJIk8D,GACFvB,EAAsB36D,KAAMm7D,GAAYQ,aAAan7D,KAAKy7D,GAGrDF,EAAepB,EAAsB36D,KAAMo7D,GAAUgB,QAAQJ,GAAe,WACjF,GAAIC,EAOF,OANIC,IACFvB,EAAsBwB,EAAOhB,GAAYQ,aAAehB,EAAsBwB,EAAOhB,GAAYQ,aAAa7pD,QAAO,SAAU2D,GAC7H,OAAOA,IAAawmD,CACtB,KAGKA,GAEX,GAAGtB,EAAsB36D,KAAMm7D,KAAeR,EAAsB36D,KAAMm7D,GAC5E,GACC,CACDvuD,IAAK,SACLvH,MAAO,WACLs1D,EAAsB36D,KAAMm7D,GAAYO,YAAa,EAErD,IAAIW,EAAY1B,EAAsB36D,KAAMm7D,GAAYQ,aAExDhB,EAAsB36D,KAAMm7D,GAAYQ,aAAe,GAEvD,IACIW,EADAC,EAAYrD,EAA2BmD,GAG3C,IACE,IAAKE,EAAU9C,MAAO6C,EAAQC,EAAU/kC,KAAKkiC,MAAO,CAClD,IAAIjkD,EAAW6mD,EAAMj3D,MAErB,GAAwB,mBAAboQ,EACT,IACEA,GACF,CAAE,MAAOqK,GACP/W,EAAQC,MAAM8W,EAChB,CAEJ,CACF,CAAE,MAAOA,GACPy8C,EAAUt3D,EAAE6a,EACd,CAAE,QACAy8C,EAAU5C,GACZ,CACF,GACC,CACD/sD,IAAK,aACLvH,MAAO,WACL,OAA8D,IAAvDs1D,EAAsB36D,KAAMm7D,GAAYO,UACjD,KAGKL,CACT,CA3G6C,GA6GzChoB,EAAiC,SAAUmpB,IA7J/C,SAAmBC,EAAUC,GAAc,GAA0B,mBAAfA,GAA4C,OAAfA,EAAuB,MAAM,IAAIt8D,UAAU,sDAAyDq8D,EAASj9D,UAAYD,OAAOqB,OAAO87D,GAAcA,EAAWl9D,UAAW,CAAEqE,YAAa,CAAEwB,MAAOo3D,EAAUtjD,UAAU,EAAMC,cAAc,KAAW7Z,OAAO0Z,eAAewjD,EAAU,YAAa,CAAEtjD,UAAU,IAAcujD,GAAYvE,EAAgBsE,EAAUC,EAAa,CA8JjcC,CAAUtpB,EAAmBmpB,GAE7B,IAAII,EAASvE,EAAahlB,GAE1B,SAASA,EAAkBkoB,GAGzB,OAFAtB,EAAgBj6D,KAAMqzC,GAEfupB,EAAO17D,KAAKlB,KAAM,CACvBu7D,SAAUA,GAEd,CAEA,OAAOnB,EAAa/mB,EACtB,CAdqC,CAcnCgoB,GAEFnD,EAAS7kB,kBAAoBA,EAE7BskB,EAAgBtkB,EAAmB,OAAO,SAAawpB,GACrD,OAAOC,EAAkBD,EAAUt2D,QAAQ4oC,IAAI0tB,GACjD,IAEAlF,EAAgBtkB,EAAmB,cAAc,SAAoBwpB,GACnE,OAAOC,EAAkBD,EAAUt2D,QAAQ6xC,WAAWykB,GACxD,IAEAlF,EAAgBtkB,EAAmB,OAAO,SAAawpB,GACrD,OAAOC,EAAkBD,EAAUt2D,QAAQw2D,IAAIF,GACjD,IAEAlF,EAAgBtkB,EAAmB,QAAQ,SAAcwpB,GACvD,OAAOC,EAAkBD,EAAUt2D,QAAQy2D,KAAKH,GAClD,IAEAlF,EAAgBtkB,EAAmB,WAAW,SAAiBhuC,GAC7D,OAAO41D,EAAW10D,QAAQD,QAAQjB,GACpC,IAEAsyD,EAAgBtkB,EAAmB,UAAU,SAAgBjd,GAC3D,OAAO6kC,EAAW10D,QAAQyJ,OAAOomB,GACnC,IAEAuhC,EAAgBtkB,EAAmB,eAAgB6nB,GAEnD,IAAI+B,EAAW5pB,EAGf,SAAS4nB,EAAW9H,GAClB,OAAO4I,EAAe5I,EA2Df,CACLuI,YAAY,EACZC,aAAc,IA5DlB,CAEA,SAAST,EAAoB/H,GAC3B,OAAOA,aAAmB9f,GAAqB8f,aAAmBkI,CACpE,CAEA,SAASW,EAAekB,EAAUzB,GAChC,GAAIyB,EACF,OAAO,SAAUC,GACf,IAAK1B,EAAUC,WAAY,CACzB,IAAI9vD,EAASsxD,EAASC,GAMtB,OAJIjC,EAAoBtvD,IACtB6vD,EAAUE,aAAan7D,KAAKoL,EAAO4yB,QAG9B5yB,CACT,CAEA,OAAOuxD,CACT,CAEJ,CAEA,SAASpB,EAAe5I,EAASsI,GAC/B,OAAO,IAAIJ,EAA0B,CACnCI,UAAWA,EACXtI,QAASA,GAEb,CAEA,SAAS2J,EAAkBD,EAAU1J,GACnC,IAAIsI,EA0BG,CACLC,YAAY,EACZC,aAAc,IAThB,OAlBAF,EAAUE,aAAan7D,MAAK,WAC1B,IACI48D,EADAC,EAAanE,EAA2B2D,GAG5C,IACE,IAAKQ,EAAW5D,MAAO2D,EAASC,EAAW7lC,KAAKkiC,MAAO,CACrD,IAAI4D,EAAaF,EAAO/3D,MAEpB61D,EAAoBoC,IACtBA,EAAW9+B,QAEf,CACF,CAAE,MAAO1e,GACPu9C,EAAWp4D,EAAE6a,EACf,CAAE,QACAu9C,EAAW1D,GACb,CACF,IACO,IAAI0B,EAA0B,CACnCI,UAAWA,EACXtI,QAASA,GAEb,CA3DA+E,EAASt1C,QAAUq6C,CAmErB,OAlS+B,iBAApB,CAAC,OAAmB,2HCA3BM,EAAgC,IAAIhzD,IAAI,cACxCizD,EAAgC,IAAIjzD,IAAI,cACxCkzD,EAA0B,IAA4B,KACtDC,EAAqC,IAAgCH,GACrEI,EAAqC,IAAgCH,GAEzEC,EAAwBj9D,KAAK,CAACuC,EAAOsB,GAAI,0hEAiEfq5D,+oCAyCAC,s1MAqQvB,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,8DAA8D,MAAQ,GAAG,SAAW,m2FAAm2F,eAAiB,CAAC,shUAAshU,WAAa,MAE1ga,4FCxXIF,QAA0B,GAA4B,KAE1DA,EAAwBj9D,KAAK,CAACuC,EAAOsB,GAAI,0zBAsCtC,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,6EAA6E,MAAQ,GAAG,SAAW,yTAAyT,eAAiB,CAAC,2zBAA2zB,WAAa,MAEpxC,4FC1CIo5D,QAA0B,GAA4B,KAE1DA,EAAwBj9D,KAAK,CAACuC,EAAOsB,GAAI,6HAA8H,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,yDAAyD,MAAQ,GAAG,SAAW,8CAA8C,eAAiB,CAAC,qKAAqK,WAAa,MAEngB,4FCJIo5D,QAA0B,GAA4B,KAE1DA,EAAwBj9D,KAAK,CAACuC,EAAOsB,GAAI,+jBAAgkB,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,+DAA+D,MAAQ,GAAG,SAAW,wOAAwO,eAAiB,CAAC,sqBAAsqB,WAAa,MAEtoD,4FCJIo5D,QAA0B,GAA4B,KAE1DA,EAAwBj9D,KAAK,CAACuC,EAAOsB,GAAI,omCAAqmC,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,gEAAgE,MAAQ,GAAG,SAAW,gYAAgY,eAAiB,CAAC,23CAA23C,WAAa,MAEzhG,4FCJIo5D,QAA0B,GAA4B,KAE1DA,EAAwBj9D,KAAK,CAACuC,EAAOsB,GAAI,8YAA+Y,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,oEAAoE,MAAQ,GAAG,SAAW,4IAA4I,eAAiB,CAAC,6sBAA6sB,WAAa,MAEr6C,4FCJIo5D,QAA0B,GAA4B,KAE1DA,EAAwBj9D,KAAK,CAACuC,EAAOsB,GAAI,2ZAA4Z,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,wEAAwE,MAAQ,GAAG,SAAW,oDAAoD,eAAiB,CAAC,kkBAAskB,WAAa,MAEvtC,4FCJIo5D,QAA0B,GAA4B,KAE1DA,EAAwBj9D,KAAK,CAACuC,EAAOsB,GAAI,uMAAwM,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,wEAAwE,MAAQ,GAAG,SAAW,oCAAoC,eAAiB,CAAC,kOAAkO,WAAa,MAE/oB,4FCJIo5D,QAA0B,GAA4B,KAE1DA,EAAwBj9D,KAAK,CAACuC,EAAOsB,GAAI,mPAAoP,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,kEAAkE,MAAQ,GAAG,SAAW,gFAAgF,eAAiB,CAAC,8XAA8X,WAAa,MAE73B,4FCJIo5D,QAA0B,GAA4B,KAE1DA,EAAwBj9D,KAAK,CAACuC,EAAOsB,GAAI,sKAAuK,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,kEAAkE,MAAQ,GAAG,SAAW,8CAA8C,eAAiB,CAAC,wNAAwN,WAAa,MAExmB,4FCJIo5D,QAA0B,GAA4B,KAE1DA,EAAwBj9D,KAAK,CAACuC,EAAOsB,GAAI,2FAA4F,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,yEAAyE,MAAQ,GAAG,SAAW,6BAA6B,eAAiB,CAAC,6FAA6F,WAAa,MAExZ,4FCJIo5D,QAA0B,GAA4B,KAE1DA,EAAwBj9D,KAAK,CAACuC,EAAOsB,GAAI,q5BAAs5B,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,wEAAwE,MAAQ,GAAG,SAAW,4IAA4I,eAAiB,CAAC,ilBAAilB,WAAa,MAEpzD,2FCJIo5D,QAA0B,GAA4B,KAE1DA,EAAwBj9D,KAAK,CAACuC,EAAOsB,GAAI,yuPAA0uP,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,8DAA8D,MAAQ,GAAG,SAAW,44DAA44D,eAAiB,CAAC,qnSAAqnS,WAAa,MAEl6lB,4FCJIo5D,QAA0B,GAA4B,KAE1DA,EAAwBj9D,KAAK,CAACuC,EAAOsB,GAAI,y2DAA02D,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,8DAA8D,MAAQ,GAAG,SAAW,0kBAA0kB,eAAiB,CAAC,6nEAA6nE,WAAa,MAExuJ,4FCJIo5D,QAA0B,GAA4B,KAE1DA,EAAwBj9D,KAAK,CAACuC,EAAOsB,GAAI,mQAAoQ,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,6DAA6D,MAAQ,GAAG,SAAW,mEAAmE,eAAiB,CAAC,+UAA+U,WAAa,MAE50B,4FCJIo5D,QAA0B,GAA4B,KAE1DA,EAAwBj9D,KAAK,CAACuC,EAAOsB,GAAI,gnBAAinB,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,kDAAkD,MAAQ,GAAG,SAAW,4NAA4N,eAAiB,CAAC,u7BAAu7B,WAAa,MAE/6D,4FCJIo5D,QAA0B,GAA4B,KAE1DA,EAAwBj9D,KAAK,CAACuC,EAAOsB,GAAI,sfAAuf,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,mDAAmD,MAAQ,GAAG,SAAW,iHAAiH,eAAiB,CAAC,mrBAAmrB,WAAa,MAEv8C,4FCJIo5D,QAA0B,GAA4B,KAE1DA,EAAwBj9D,KAAK,CAACuC,EAAOsB,GAAI,kEAAmE,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,iDAAiD,MAAQ,GAAG,SAAW,mBAAmB,eAAiB,CAAC,+DAA+D,WAAa,MAE/T,kDCPC,SAAWu5D,GACVA,EAAI/H,OAAS,SAAUz5C,EAAQyhD,GAAO,OAAO,IAAIC,EAAU1hD,EAAQyhD,EAAK,EACxED,EAAIE,UAAYA,EAChBF,EAAIG,UAAYA,EAChBH,EAAII,aAwKJ,SAAuB5hD,EAAQyhD,GAC7B,OAAO,IAAIE,EAAU3hD,EAAQyhD,EAC/B,EA/JAD,EAAIK,kBAAoB,MAExB,IA+IIC,EA/IAC,EAAU,CACZ,UAAW,WAAY,WAAY,UAAW,UAC9C,eAAgB,eAAgB,SAAU,aAC1C,cAAe,QAAS,UAwB1B,SAASL,EAAW1hD,EAAQyhD,GAC1B,KAAM79D,gBAAgB89D,GACpB,OAAO,IAAIA,EAAU1hD,EAAQyhD,GAG/B,IAAIhI,EAAS71D,MAqFf,SAAuB61D,GACrB,IAAK,IAAIr0D,EAAI,EAAGC,EAAI08D,EAAQz8D,OAAQF,EAAIC,EAAGD,IACzCq0D,EAAOsI,EAAQ38D,IAAM,EAEzB,CAxFE48D,CAAavI,GACbA,EAAOwI,EAAIxI,EAAOl2C,EAAI,GACtBk2C,EAAOyI,oBAAsBV,EAAIK,kBACjCpI,EAAOgI,IAAMA,GAAO,CAAC,EACrBhI,EAAOgI,IAAIU,UAAY1I,EAAOgI,IAAIU,WAAa1I,EAAOgI,IAAIW,cAC1D3I,EAAO4I,UAAY5I,EAAOgI,IAAIU,UAAY,cAAgB,cAC1D1I,EAAO6I,KAAO,GACd7I,EAAO8I,OAAS9I,EAAO+I,WAAa/I,EAAOgJ,SAAU,EACrDhJ,EAAOlsC,IAAMksC,EAAO7sD,MAAQ,KAC5B6sD,EAAOz5C,SAAWA,EAClBy5C,EAAOiJ,YAAc1iD,IAAUy5C,EAAOgI,IAAIiB,UAC1CjJ,EAAOlpD,MAAQoyD,EAAEC,MACjBnJ,EAAOoJ,eAAiBpJ,EAAOgI,IAAIoB,eACnCpJ,EAAOqJ,SAAWrJ,EAAOoJ,eAAiB1/D,OAAOqB,OAAOg9D,EAAIuB,cAAgB5/D,OAAOqB,OAAOg9D,EAAIsB,UAC9FrJ,EAAOuJ,WAAa,GAKhBvJ,EAAOgI,IAAIwB,QACbxJ,EAAOyJ,GAAK//D,OAAOqB,OAAO2+D,IAI5B1J,EAAO2J,eAAwC,IAAxB3J,EAAOgI,IAAIvtC,SAC9BulC,EAAO2J,gBACT3J,EAAOvlC,SAAWulC,EAAO4J,KAAO5J,EAAOzL,OAAS,GAElDtoD,EAAK+zD,EAAQ,UACf,CAxDA+H,EAAI8B,OAAS,CACX,OACA,wBACA,kBACA,UACA,UACA,eACA,YACA,UACA,WACA,YACA,QACA,aACA,QACA,MACA,QACA,SACA,gBACA,kBAwCGngE,OAAOqB,SACVrB,OAAOqB,OAAS,SAAU6G,GACxB,SAAS+xD,IAAM,CAGf,OAFAA,EAAEh6D,UAAYiI,EACH,IAAI+xD,CAEjB,GAGGj6D,OAAO6G,OACV7G,OAAO6G,KAAO,SAAUqB,GACtB,IAAIwC,EAAI,GACR,IAAK,IAAIzI,KAAKiG,EAAOA,EAAEhI,eAAe+B,IAAIyI,EAAEzJ,KAAKgB,GACjD,OAAOyI,CACT,GAyDF6zD,EAAUt+D,UAAY,CACpB0oB,IAAK,WAAcA,EAAIloB,KAAM,EAC7B2/D,MA2yBF,SAAgBp4B,GACd,IAAIsuB,EAAS71D,KACb,GAAIA,KAAKgJ,MACP,MAAMhJ,KAAKgJ,MAEb,GAAI6sD,EAAO8I,OACT,OAAO31D,EAAM6sD,EACX,wDAEJ,GAAc,OAAVtuB,EACF,OAAOrf,EAAI2tC,GAEQ,iBAAVtuB,IACTA,EAAQA,EAAM7/B,YAIhB,IAFA,IAAIlG,EAAI,EACJme,EAAI,GAENA,EAAIyF,EAAOmiB,EAAO/lC,KAClBq0D,EAAOl2C,EAAIA,EAENA,GAcL,OAVIk2C,EAAO2J,gBACT3J,EAAOvlC,WACG,OAAN3Q,GACFk2C,EAAO4J,OACP5J,EAAOzL,OAAS,GAEhByL,EAAOzL,UAIHyL,EAAOlpD,OACb,KAAKoyD,EAAEC,MAEL,GADAnJ,EAAOlpD,MAAQoyD,EAAEa,iBACP,WAANjgD,EACF,SAEFkgD,EAAgBhK,EAAQl2C,GACxB,SAEF,KAAKo/C,EAAEa,iBACLC,EAAgBhK,EAAQl2C,GACxB,SAEF,KAAKo/C,EAAEe,KACL,GAAIjK,EAAOgJ,UAAYhJ,EAAO+I,WAAY,CAExC,IADA,IAAImB,EAASv+D,EAAI,EACVme,GAAW,MAANA,GAAmB,MAANA,IACvBA,EAAIyF,EAAOmiB,EAAO/lC,OACTq0D,EAAO2J,gBACd3J,EAAOvlC,WACG,OAAN3Q,GACFk2C,EAAO4J,OACP5J,EAAOzL,OAAS,GAEhByL,EAAOzL,UAIbyL,EAAOmK,UAAYz4B,EAAM04B,UAAUF,EAAQv+D,EAAI,EACjD,CACU,MAANme,GAAek2C,EAAOgJ,SAAWhJ,EAAO+I,aAAe/I,EAAOz5C,QAI3D8jD,EAAavgD,IAAQk2C,EAAOgJ,UAAWhJ,EAAO+I,YACjDuB,EAAWtK,EAAQ,mCAEX,MAANl2C,EACFk2C,EAAOlpD,MAAQoyD,EAAEqB,YAEjBvK,EAAOmK,UAAYrgD,IATrBk2C,EAAOlpD,MAAQoyD,EAAEsB,UACjBxK,EAAOyK,iBAAmBzK,EAAOvlC,UAWnC,SAEF,KAAKyuC,EAAEwB,OAEK,MAAN5gD,EACFk2C,EAAOlpD,MAAQoyD,EAAEyB,cAEjB3K,EAAO4K,QAAU9gD,EAEnB,SAEF,KAAKo/C,EAAEyB,cACK,MAAN7gD,EACFk2C,EAAOlpD,MAAQoyD,EAAE2B,WAEjB7K,EAAO4K,QAAU,IAAM9gD,EACvBk2C,EAAOlpD,MAAQoyD,EAAEwB,QAEnB,SAEF,KAAKxB,EAAEsB,UAEL,GAAU,MAAN1gD,EACFk2C,EAAOlpD,MAAQoyD,EAAE4B,UACjB9K,EAAO+K,SAAW,QACb,GAAIV,EAAavgD,SAEjB,GAAIkhD,EAAQC,EAAWnhD,GAC5Bk2C,EAAOlpD,MAAQoyD,EAAEgC,SACjBlL,EAAOmL,QAAUrhD,OACZ,GAAU,MAANA,EACTk2C,EAAOlpD,MAAQoyD,EAAE2B,UACjB7K,EAAOmL,QAAU,QACZ,GAAU,MAANrhD,EACTk2C,EAAOlpD,MAAQoyD,EAAEkC,UACjBpL,EAAOqL,aAAerL,EAAOsL,aAAe,OACvC,CAGL,GAFAhB,EAAWtK,EAAQ,eAEfA,EAAOyK,iBAAmB,EAAIzK,EAAOvlC,SAAU,CACjD,IAAI8wC,EAAMvL,EAAOvlC,SAAWulC,EAAOyK,iBACnC3gD,EAAI,IAAI/d,MAAMw/D,GAAKzmD,KAAK,KAAOgF,CACjC,CACAk2C,EAAOmK,UAAY,IAAMrgD,EACzBk2C,EAAOlpD,MAAQoyD,EAAEe,IACnB,CACA,SAEF,KAAKf,EAAE4B,WACA9K,EAAO+K,SAAWjhD,GAAG3D,gBAAkBqlD,GAC1CC,EAASzL,EAAQ,eACjBA,EAAOlpD,MAAQoyD,EAAEsC,MACjBxL,EAAO+K,SAAW,GAClB/K,EAAO0L,MAAQ,IACN1L,EAAO+K,SAAWjhD,IAAM,MACjCk2C,EAAOlpD,MAAQoyD,EAAEyC,QACjB3L,EAAO4L,QAAU,GACjB5L,EAAO+K,SAAW,KACR/K,EAAO+K,SAAWjhD,GAAG3D,gBAAkB0lD,GACjD7L,EAAOlpD,MAAQoyD,EAAE2C,SACb7L,EAAO8L,SAAW9L,EAAOgJ,UAC3BsB,EAAWtK,EACT,+CAEJA,EAAO8L,QAAU,GACjB9L,EAAO+K,SAAW,IACH,MAANjhD,GACT2hD,EAASzL,EAAQ,oBAAqBA,EAAO+K,UAC7C/K,EAAO+K,SAAW,GAClB/K,EAAOlpD,MAAQoyD,EAAEe,MACR8B,EAAQjiD,IACjBk2C,EAAOlpD,MAAQoyD,EAAE8C,iBACjBhM,EAAO+K,UAAYjhD,GAEnBk2C,EAAO+K,UAAYjhD,EAErB,SAEF,KAAKo/C,EAAE8C,iBACDliD,IAAMk2C,EAAOwI,IACfxI,EAAOlpD,MAAQoyD,EAAE4B,UACjB9K,EAAOwI,EAAI,IAEbxI,EAAO+K,UAAYjhD,EACnB,SAEF,KAAKo/C,EAAE2C,QACK,MAAN/hD,GACFk2C,EAAOlpD,MAAQoyD,EAAEe,KACjBwB,EAASzL,EAAQ,YAAaA,EAAO8L,SACrC9L,EAAO8L,SAAU,IAEjB9L,EAAO8L,SAAWhiD,EACR,MAANA,EACFk2C,EAAOlpD,MAAQoyD,EAAE+C,YACRF,EAAQjiD,KACjBk2C,EAAOlpD,MAAQoyD,EAAEgD,eACjBlM,EAAOwI,EAAI1+C,IAGf,SAEF,KAAKo/C,EAAEgD,eACLlM,EAAO8L,SAAWhiD,EACdA,IAAMk2C,EAAOwI,IACfxI,EAAOwI,EAAI,GACXxI,EAAOlpD,MAAQoyD,EAAE2C,SAEnB,SAEF,KAAK3C,EAAE+C,YACLjM,EAAO8L,SAAWhiD,EACR,MAANA,EACFk2C,EAAOlpD,MAAQoyD,EAAE2C,QACRE,EAAQjiD,KACjBk2C,EAAOlpD,MAAQoyD,EAAEiD,mBACjBnM,EAAOwI,EAAI1+C,GAEb,SAEF,KAAKo/C,EAAEiD,mBACLnM,EAAO8L,SAAWhiD,EACdA,IAAMk2C,EAAOwI,IACfxI,EAAOlpD,MAAQoyD,EAAE+C,YACjBjM,EAAOwI,EAAI,IAEb,SAEF,KAAKU,EAAEyC,QACK,MAAN7hD,EACFk2C,EAAOlpD,MAAQoyD,EAAEkD,eAEjBpM,EAAO4L,SAAW9hD,EAEpB,SAEF,KAAKo/C,EAAEkD,eACK,MAANtiD,GACFk2C,EAAOlpD,MAAQoyD,EAAEmD,cACjBrM,EAAO4L,QAAUU,EAAStM,EAAOgI,IAAKhI,EAAO4L,SACzC5L,EAAO4L,SACTH,EAASzL,EAAQ,YAAaA,EAAO4L,SAEvC5L,EAAO4L,QAAU,KAEjB5L,EAAO4L,SAAW,IAAM9hD,EACxBk2C,EAAOlpD,MAAQoyD,EAAEyC,SAEnB,SAEF,KAAKzC,EAAEmD,cACK,MAANviD,GACFwgD,EAAWtK,EAAQ,qBAGnBA,EAAO4L,SAAW,KAAO9hD,EACzBk2C,EAAOlpD,MAAQoyD,EAAEyC,SAEjB3L,EAAOlpD,MAAQoyD,EAAEe,KAEnB,SAEF,KAAKf,EAAEsC,MACK,MAAN1hD,EACFk2C,EAAOlpD,MAAQoyD,EAAEqD,aAEjBvM,EAAO0L,OAAS5hD,EAElB,SAEF,KAAKo/C,EAAEqD,aACK,MAANziD,EACFk2C,EAAOlpD,MAAQoyD,EAAEsD,gBAEjBxM,EAAO0L,OAAS,IAAM5hD,EACtBk2C,EAAOlpD,MAAQoyD,EAAEsC,OAEnB,SAEF,KAAKtC,EAAEsD,eACK,MAAN1iD,GACEk2C,EAAO0L,OACTD,EAASzL,EAAQ,UAAWA,EAAO0L,OAErCD,EAASzL,EAAQ,gBACjBA,EAAO0L,MAAQ,GACf1L,EAAOlpD,MAAQoyD,EAAEe,MACF,MAANngD,EACTk2C,EAAO0L,OAAS,KAEhB1L,EAAO0L,OAAS,KAAO5hD,EACvBk2C,EAAOlpD,MAAQoyD,EAAEsC,OAEnB,SAEF,KAAKtC,EAAEkC,UACK,MAANthD,EACFk2C,EAAOlpD,MAAQoyD,EAAEuD,iBACRpC,EAAavgD,GACtBk2C,EAAOlpD,MAAQoyD,EAAEwD,eAEjB1M,EAAOqL,cAAgBvhD,EAEzB,SAEF,KAAKo/C,EAAEwD,eACL,IAAK1M,EAAOsL,cAAgBjB,EAAavgD,GACvC,SACe,MAANA,EACTk2C,EAAOlpD,MAAQoyD,EAAEuD,iBAEjBzM,EAAOsL,cAAgBxhD,EAEzB,SAEF,KAAKo/C,EAAEuD,iBACK,MAAN3iD,GACF2hD,EAASzL,EAAQ,0BAA2B,CAC1C70D,KAAM60D,EAAOqL,aACb91D,KAAMyqD,EAAOsL,eAEftL,EAAOqL,aAAerL,EAAOsL,aAAe,GAC5CtL,EAAOlpD,MAAQoyD,EAAEe,OAEjBjK,EAAOsL,cAAgB,IAAMxhD,EAC7Bk2C,EAAOlpD,MAAQoyD,EAAEwD,gBAEnB,SAEF,KAAKxD,EAAEgC,SACDF,EAAQ2B,EAAU7iD,GACpBk2C,EAAOmL,SAAWrhD,GAElB8iD,EAAO5M,GACG,MAANl2C,EACF+iD,EAAQ7M,GACO,MAANl2C,EACTk2C,EAAOlpD,MAAQoyD,EAAE4D,gBAEZzC,EAAavgD,IAChBwgD,EAAWtK,EAAQ,iCAErBA,EAAOlpD,MAAQoyD,EAAE6D,SAGrB,SAEF,KAAK7D,EAAE4D,eACK,MAANhjD,GACF+iD,EAAQ7M,GAAQ,GAChBgN,EAAShN,KAETsK,EAAWtK,EAAQ,kDACnBA,EAAOlpD,MAAQoyD,EAAE6D,QAEnB,SAEF,KAAK7D,EAAE6D,OAEL,GAAI1C,EAAavgD,GACf,SACe,MAANA,EACT+iD,EAAQ7M,GACO,MAANl2C,EACTk2C,EAAOlpD,MAAQoyD,EAAE4D,eACR9B,EAAQC,EAAWnhD,IAC5Bk2C,EAAOiN,WAAanjD,EACpBk2C,EAAOkN,YAAc,GACrBlN,EAAOlpD,MAAQoyD,EAAEiE,aAEjB7C,EAAWtK,EAAQ,0BAErB,SAEF,KAAKkJ,EAAEiE,YACK,MAANrjD,EACFk2C,EAAOlpD,MAAQoyD,EAAEkE,aACF,MAANtjD,GACTwgD,EAAWtK,EAAQ,2BACnBA,EAAOkN,YAAclN,EAAOiN,WAC5BI,EAAOrN,GACP6M,EAAQ7M,IACCqK,EAAavgD,GACtBk2C,EAAOlpD,MAAQoyD,EAAEoE,sBACRtC,EAAQ2B,EAAU7iD,GAC3Bk2C,EAAOiN,YAAcnjD,EAErBwgD,EAAWtK,EAAQ,0BAErB,SAEF,KAAKkJ,EAAEoE,sBACL,GAAU,MAANxjD,EACFk2C,EAAOlpD,MAAQoyD,EAAEkE,iBACZ,IAAI/C,EAAavgD,GACtB,SAEAwgD,EAAWtK,EAAQ,2BACnBA,EAAOlsC,IAAI0nB,WAAWwkB,EAAOiN,YAAc,GAC3CjN,EAAOkN,YAAc,GACrBzB,EAASzL,EAAQ,cAAe,CAC9B70D,KAAM60D,EAAOiN,WACbz9D,MAAO,KAETwwD,EAAOiN,WAAa,GACV,MAANnjD,EACF+iD,EAAQ7M,GACCgL,EAAQC,EAAWnhD,IAC5Bk2C,EAAOiN,WAAanjD,EACpBk2C,EAAOlpD,MAAQoyD,EAAEiE,cAEjB7C,EAAWtK,EAAQ,0BACnBA,EAAOlpD,MAAQoyD,EAAE6D,OAErB,CACA,SAEF,KAAK7D,EAAEkE,aACL,GAAI/C,EAAavgD,GACf,SACSiiD,EAAQjiD,IACjBk2C,EAAOwI,EAAI1+C,EACXk2C,EAAOlpD,MAAQoyD,EAAEqE,sBAEjBjD,EAAWtK,EAAQ,4BACnBA,EAAOlpD,MAAQoyD,EAAEsE,sBACjBxN,EAAOkN,YAAcpjD,GAEvB,SAEF,KAAKo/C,EAAEqE,oBACL,GAAIzjD,IAAMk2C,EAAOwI,EAAG,CACR,MAAN1+C,EACFk2C,EAAOlpD,MAAQoyD,EAAEuE,sBAEjBzN,EAAOkN,aAAepjD,EAExB,QACF,CACAujD,EAAOrN,GACPA,EAAOwI,EAAI,GACXxI,EAAOlpD,MAAQoyD,EAAEwE,oBACjB,SAEF,KAAKxE,EAAEwE,oBACDrD,EAAavgD,GACfk2C,EAAOlpD,MAAQoyD,EAAE6D,OACF,MAANjjD,EACT+iD,EAAQ7M,GACO,MAANl2C,EACTk2C,EAAOlpD,MAAQoyD,EAAE4D,eACR9B,EAAQC,EAAWnhD,IAC5BwgD,EAAWtK,EAAQ,oCACnBA,EAAOiN,WAAanjD,EACpBk2C,EAAOkN,YAAc,GACrBlN,EAAOlpD,MAAQoyD,EAAEiE,aAEjB7C,EAAWtK,EAAQ,0BAErB,SAEF,KAAKkJ,EAAEsE,sBACL,IAAKG,EAAY7jD,GAAI,CACT,MAANA,EACFk2C,EAAOlpD,MAAQoyD,EAAE0E,sBAEjB5N,EAAOkN,aAAepjD,EAExB,QACF,CACAujD,EAAOrN,GACG,MAANl2C,EACF+iD,EAAQ7M,GAERA,EAAOlpD,MAAQoyD,EAAE6D,OAEnB,SAEF,KAAK7D,EAAE2B,UACL,GAAK7K,EAAOmL,QAaK,MAANrhD,EACTkjD,EAAShN,GACAgL,EAAQ2B,EAAU7iD,GAC3Bk2C,EAAOmL,SAAWrhD,EACTk2C,EAAO4K,QAChB5K,EAAO4K,QAAU,KAAO5K,EAAOmL,QAC/BnL,EAAOmL,QAAU,GACjBnL,EAAOlpD,MAAQoyD,EAAEwB,SAEZL,EAAavgD,IAChBwgD,EAAWtK,EAAQ,kCAErBA,EAAOlpD,MAAQoyD,EAAE2E,yBAzBE,CACnB,GAAIxD,EAAavgD,GACf,SACSgkD,EAAS7C,EAAWnhD,GACzBk2C,EAAO4K,QACT5K,EAAO4K,QAAU,KAAO9gD,EACxBk2C,EAAOlpD,MAAQoyD,EAAEwB,QAEjBJ,EAAWtK,EAAQ,mCAGrBA,EAAOmL,QAAUrhD,CAErB,CAcA,SAEF,KAAKo/C,EAAE2E,oBACL,GAAIxD,EAAavgD,GACf,SAEQ,MAANA,EACFkjD,EAAShN,GAETsK,EAAWtK,EAAQ,qCAErB,SAEF,KAAKkJ,EAAEqB,YACP,KAAKrB,EAAEuE,sBACP,KAAKvE,EAAE0E,sBACL,IAAIG,EACAC,EACJ,OAAQhO,EAAOlpD,OACb,KAAKoyD,EAAEqB,YACLwD,EAAc7E,EAAEe,KAChB+D,EAAS,WACT,MAEF,KAAK9E,EAAEuE,sBACLM,EAAc7E,EAAEqE,oBAChBS,EAAS,cACT,MAEF,KAAK9E,EAAE0E,sBACLG,EAAc7E,EAAEsE,sBAChBQ,EAAS,cAIb,GAAU,MAANlkD,EACF,GAAIk2C,EAAOgI,IAAIiG,iBAAkB,CAC/B,IAAIC,EAAeC,EAAYnO,GAC/BA,EAAOoO,OAAS,GAChBpO,EAAOlpD,MAAQi3D,EACf/N,EAAO8J,MAAMoE,EACf,MACElO,EAAOgO,IAAWG,EAAYnO,GAC9BA,EAAOoO,OAAS,GAChBpO,EAAOlpD,MAAQi3D,OAER/C,EAAQhL,EAAOoO,OAAOviE,OAASwiE,EAAaC,EAAaxkD,GAClEk2C,EAAOoO,QAAUtkD,GAEjBwgD,EAAWtK,EAAQ,oCACnBA,EAAOgO,IAAW,IAAMhO,EAAOoO,OAAStkD,EACxCk2C,EAAOoO,OAAS,GAChBpO,EAAOlpD,MAAQi3D,GAGjB,SAEF,QACE,MAAM,IAAI/3D,MAAMgqD,EAAQ,kBAAoBA,EAAOlpD,OAQzD,OAHIkpD,EAAOvlC,UAAYulC,EAAOyI,qBAt4ChC,SAA4BzI,GAG1B,IAFA,IAAIuO,EAAa7uC,KAAKD,IAAIsoC,EAAIK,kBAAmB,IAC7CoG,EAAY,EACP7iE,EAAI,EAAGC,EAAI08D,EAAQz8D,OAAQF,EAAIC,EAAGD,IAAK,CAC9C,IAAIa,EAAMwzD,EAAOsI,EAAQ38D,IAAIE,OAC7B,GAAIW,EAAM+hE,EAKR,OAAQjG,EAAQ38D,IACd,IAAK,WACH8iE,EAAUzO,GACV,MAEF,IAAK,QACHyL,EAASzL,EAAQ,UAAWA,EAAO0L,OACnC1L,EAAO0L,MAAQ,GACf,MAEF,IAAK,SACHD,EAASzL,EAAQ,WAAYA,EAAO4K,QACpC5K,EAAO4K,OAAS,GAChB,MAEF,QACEz3D,EAAM6sD,EAAQ,+BAAiCsI,EAAQ38D,IAG7D6iE,EAAY9uC,KAAKD,IAAI+uC,EAAWhiE,EAClC,CAEA,IAAI6kB,EAAI02C,EAAIK,kBAAoBoG,EAChCxO,EAAOyI,oBAAsBp3C,EAAI2uC,EAAOvlC,QAC1C,CAq2CIi0C,CAAkB1O,GAEbA,CACT,EAj1CE2O,OAAQ,WAAiC,OAAnBxkE,KAAKgJ,MAAQ,KAAahJ,IAAK,EACrD0jC,MAAO,WAAc,OAAO1jC,KAAK2/D,MAAM,KAAM,EAC7C1qD,MAAO,WAjBT,IAAuB4gD,EACrByO,EADqBzO,EAiBa71D,MAfb,KAAjB61D,EAAO0L,QACTD,EAASzL,EAAQ,UAAWA,EAAO0L,OACnC1L,EAAO0L,MAAQ,IAEK,KAAlB1L,EAAO4K,SACTa,EAASzL,EAAQ,WAAYA,EAAO4K,QACpC5K,EAAO4K,OAAS,GASsB,GAI1C,IACEvC,EAAS,eACX,CAAE,MAAOuG,GACPvG,EAAS,WAAa,CACxB,CACKA,IAAQA,EAAS,WAAa,GAEnC,IAAIwG,EAAc9G,EAAI8B,OAAO5tD,QAAO,SAAU6yD,GAC5C,MAAc,UAAPA,GAAyB,QAAPA,CAC3B,IAMA,SAAS5G,EAAW3hD,EAAQyhD,GAC1B,KAAM79D,gBAAgB+9D,GACpB,OAAO,IAAIA,EAAU3hD,EAAQyhD,GAG/BK,EAAOz7D,MAAMzC,MAEbA,KAAK4kE,QAAU,IAAI9G,EAAU1hD,EAAQyhD,GACrC79D,KAAKmZ,UAAW,EAChBnZ,KAAK6kE,UAAW,EAEhB,IAAIC,EAAK9kE,KAETA,KAAK4kE,QAAQG,MAAQ,WACnBD,EAAGhjE,KAAK,MACV,EAEA9B,KAAK4kE,QAAQ97D,QAAU,SAAUk8D,GAC/BF,EAAGhjE,KAAK,QAASkjE,GAIjBF,EAAGF,QAAQ57D,MAAQ,IACrB,EAEAhJ,KAAKilE,SAAW,KAEhBP,EAAYxzD,SAAQ,SAAUyzD,GAC5BplE,OAAO0Z,eAAe6rD,EAAI,KAAOH,EAAI,CACnC5+D,IAAK,WACH,OAAO++D,EAAGF,QAAQ,KAAOD,EAC3B,EACA9xD,IAAK,SAAUoQ,GACb,IAAKA,EAGH,OAFA6hD,EAAGliE,mBAAmB+hE,GACtBG,EAAGF,QAAQ,KAAOD,GAAM1hD,EACjBA,EAET6hD,EAAGniE,GAAGgiE,EAAI1hD,EACZ,EACA5J,YAAY,EACZD,cAAc,GAElB,GACF,CAEA2kD,EAAUv+D,UAAYD,OAAOqB,OAAOs9D,EAAO1+D,UAAW,CACpDqE,YAAa,CACXwB,MAAO04D,KAIXA,EAAUv+D,UAAUmgE,MAAQ,SAAU76D,GACpC,GAAsB,mBAAXogE,GACkB,mBAApBA,EAAOC,UACdD,EAAOC,SAASrgE,GAAO,CACvB,IAAK9E,KAAKilE,SAAU,CAClB,IAAIG,EAAK,WACTplE,KAAKilE,SAAW,IAAIG,EAAG,OACzB,CACAtgE,EAAO9E,KAAKilE,SAAStF,MAAM76D,EAC7B,CAIA,OAFA9E,KAAK4kE,QAAQjF,MAAM76D,EAAK4C,YACxB1H,KAAK8B,KAAK,OAAQgD,IACX,CACT,EAEAi5D,EAAUv+D,UAAU0oB,IAAM,SAAUqf,GAKlC,OAJIA,GAASA,EAAM7lC,QACjB1B,KAAK2/D,MAAMp4B,GAEbvnC,KAAK4kE,QAAQ18C,OACN,CACT,EAEA61C,EAAUv+D,UAAUmD,GAAK,SAAUgiE,EAAI75C,GACrC,IAAIg6C,EAAK9kE,KAST,OARK8kE,EAAGF,QAAQ,KAAOD,KAAoC,IAA7BD,EAAY7uD,QAAQ8uD,KAChDG,EAAGF,QAAQ,KAAOD,GAAM,WACtB,IAAIviE,EAA4B,IAArBE,UAAUZ,OAAe,CAACY,UAAU,IAAMV,MAAMa,MAAM,KAAMH,WACvEF,EAAK0T,OAAO,EAAG,EAAG6uD,GAClBG,EAAGhjE,KAAKW,MAAMqiE,EAAI1iE,EACpB,GAGK87D,EAAO1+D,UAAUmD,GAAGzB,KAAK4jE,EAAIH,EAAI75C,EAC1C,EAIA,IAAIu2C,EAAQ,UACRK,EAAU,UACV2D,EAAgB,uCAChBC,EAAkB,gCAClB/F,EAAS,CAAEgG,IAAKF,EAAehG,MAAOiG,GAQtCxE,EAAY,4JAEZ0B,EAAW,gMAEX2B,EAAc,6JACdD,EAAa,iMAEjB,SAAShE,EAAcvgD,GACrB,MAAa,MAANA,GAAmB,OAANA,GAAoB,OAANA,GAAoB,OAANA,CAClD,CAEA,SAASiiD,EAASjiD,GAChB,MAAa,MAANA,GAAmB,MAANA,CACtB,CAEA,SAAS6jD,EAAa7jD,GACpB,MAAa,MAANA,GAAaugD,EAAavgD,EACnC,CAEA,SAASkhD,EAASrzC,EAAO7N,GACvB,OAAO6N,EAAM1jB,KAAK6V,EACpB,CAEA,SAASgkD,EAAUn2C,EAAO7N,GACxB,OAAQkhD,EAAQrzC,EAAO7N,EACzB,CAEA,IAgsCQ6lD,EACAjY,EACAkY,EAlsCJ1G,EAAI,EAsTR,IAAK,IAAItF,KArTTmE,EAAI8H,MAAQ,CACV1G,MAAOD,IACPa,iBAAkBb,IAClBe,KAAMf,IACNqB,YAAarB,IACbsB,UAAWtB,IACX4B,UAAW5B,IACX8C,iBAAkB9C,IAClB2C,QAAS3C,IACTgD,eAAgBhD,IAChB+C,YAAa/C,IACbiD,mBAAoBjD,IACpB4G,iBAAkB5G,IAClByC,QAASzC,IACTkD,eAAgBlD,IAChBmD,cAAenD,IACfsC,MAAOtC,IACPqD,aAAcrD,IACdsD,eAAgBtD,IAChBkC,UAAWlC,IACXwD,eAAgBxD,IAChBuD,iBAAkBvD,IAClBgC,SAAUhC,IACV4D,eAAgB5D,IAChB6D,OAAQ7D,IACRiE,YAAajE,IACboE,sBAAuBpE,IACvBkE,aAAclE,IACdqE,oBAAqBrE,IACrBwE,oBAAqBxE,IACrBsE,sBAAuBtE,IACvBuE,sBAAuBvE,IACvB0E,sBAAuB1E,IACvB2B,UAAW3B,IACX2E,oBAAqB3E,IACrBwB,OAAQxB,IACRyB,cAAezB,KAGjBnB,EAAIuB,aAAe,CACjB,IAAO,IACP,GAAM,IACN,GAAM,IACN,KAAQ,IACR,KAAQ,KAGVvB,EAAIsB,SAAW,CACb,IAAO,IACP,GAAM,IACN,GAAM,IACN,KAAQ,IACR,KAAQ,IACR,MAAS,IACT,OAAU,IACV,MAAS,IACT,OAAU,IACV,MAAS,IACT,OAAU,IACV,KAAQ,IACR,OAAU,IACV,IAAO,IACP,OAAU,IACV,MAAS,IACT,OAAU,IACV,KAAQ,IACR,OAAU,IACV,MAAS,IACT,OAAU,IACV,KAAQ,IACR,OAAU,IACV,OAAU,IACV,MAAS,IACT,OAAU,IACV,OAAU,IACV,OAAU,IACV,KAAQ,IACR,MAAS,IACT,OAAU,IACV,MAAS,IACT,OAAU,IACV,KAAQ,IACR,OAAU,IACV,OAAU,IACV,MAAS,IACT,MAAS,IACT,OAAU,IACV,MAAS,IACT,OAAU,IACV,KAAQ,IACR,OAAU,IACV,OAAU,IACV,MAAS,IACT,OAAU,IACV,IAAO,IACP,KAAQ,IACR,OAAU,IACV,MAAS,IACT,OAAU,IACV,KAAQ,IACR,OAAU,IACV,OAAU,IACV,MAAS,IACT,OAAU,IACV,OAAU,IACV,OAAU,IACV,KAAQ,IACR,MAAS,IACT,MAAS,IACT,OAAU,IACV,MAAS,IACT,OAAU,IACV,KAAQ,IACR,OAAU,IACV,KAAQ,IACR,KAAQ,IACR,IAAO,IACP,KAAQ,IACR,MAAS,IACT,KAAQ,IACR,MAAS,IACT,OAAU,IACV,IAAO,IACP,OAAU,IACV,KAAQ,IACR,IAAO,IACP,KAAQ,IACR,MAAS,IACT,IAAO,IACP,IAAO,IACP,KAAQ,IACR,IAAO,IACP,OAAU,IACV,KAAQ,IACR,KAAQ,IACR,KAAQ,IACR,MAAS,IACT,MAAS,IACT,KAAQ,IACR,OAAU,IACV,MAAS,IACT,KAAQ,IACR,MAAS,IACT,OAAU,IACV,OAAU,IACV,OAAU,IACV,OAAU,IACV,MAAS,IACT,OAAU,IACV,MAAS,IACT,MAAS,IACT,OAAU,IACV,OAAU,IACV,KAAQ,IACR,KAAQ,IACR,KAAQ,IACR,MAAS,IACT,MAAS,IACT,KAAQ,IACR,MAAS,IACT,MAAS,IACT,QAAW,IACX,KAAQ,IACR,IAAO,IACP,MAAS,IACT,KAAQ,IACR,MAAS,IACT,OAAU,IACV,GAAM,IACN,GAAM,IACN,GAAM,IACN,QAAW,IACX,GAAM,IACN,IAAO,IACP,MAAS,IACT,IAAO,IACP,QAAW,IACX,IAAO,IACP,IAAO,IACP,IAAO,IACP,MAAS,IACT,MAAS,IACT,KAAQ,IACR,MAAS,IACT,MAAS,IACT,QAAW,IACX,KAAQ,IACR,IAAO,IACP,MAAS,IACT,KAAQ,IACR,MAAS,IACT,OAAU,IACV,GAAM,IACN,GAAM,IACN,GAAM,IACN,QAAW,IACX,GAAM,IACN,IAAO,IACP,OAAU,IACV,MAAS,IACT,IAAO,IACP,QAAW,IACX,IAAO,IACP,IAAO,IACP,IAAO,IACP,MAAS,IACT,SAAY,IACZ,MAAS,IACT,IAAO,IACP,KAAQ,KACR,KAAQ,KACR,OAAU,KACV,KAAQ,KACR,IAAO,KACP,IAAO,KACP,IAAO,KACP,MAAS,KACT,MAAS,KACT,MAAS,KACT,MAAS,KACT,MAAS,KACT,MAAS,KACT,MAAS,KACT,MAAS,KACT,OAAU,KACV,OAAU,KACV,KAAQ,KACR,OAAU,KACV,OAAU,KACV,MAAS,KACT,MAAS,KACT,OAAU,KACV,OAAU,KACV,MAAS,KACT,MAAS,KACT,KAAQ,KACR,MAAS,KACT,OAAU,KACV,KAAQ,KACR,MAAS,KACT,QAAW,KACX,KAAQ,KACR,KAAQ,KACR,KAAQ,KACR,KAAQ,KACR,KAAQ,KACR,MAAS,KACT,KAAQ,KACR,KAAQ,KACR,KAAQ,KACR,KAAQ,KACR,KAAQ,KACR,OAAU,KACV,KAAQ,KACR,MAAS,KACT,MAAS,KACT,MAAS,KACT,KAAQ,KACR,MAAS,KACT,GAAM,KACN,KAAQ,KACR,IAAO,KACP,MAAS,KACT,OAAU,KACV,MAAS,KACT,KAAQ,KACR,MAAS,KACT,IAAO,KACP,IAAO,KACP,GAAM,KACN,IAAO,KACP,IAAO,KACP,IAAO,KACP,OAAU,KACV,IAAO,KACP,KAAQ,KACR,MAAS,KACT,GAAM,KACN,MAAS,KACT,GAAM,KACN,GAAM,KACN,IAAO,KACP,IAAO,KACP,KAAQ,KACR,KAAQ,KACR,KAAQ,KACR,MAAS,KACT,OAAU,KACV,KAAQ,KACR,KAAQ,KACR,MAAS,KACT,MAAS,KACT,OAAU,KACV,OAAU,KACV,KAAQ,KACR,KAAQ,KACR,IAAO,KACP,OAAU,KACV,MAAS,KACT,OAAU,KACV,MAAS,MAGX3/D,OAAO6G,KAAKw3D,EAAIsB,UAAUhuD,SAAQ,SAAUtE,GAC1C,IAAI3H,EAAI24D,EAAIsB,SAAStyD,GACjB6sD,EAAiB,iBAANx0D,EAAiB8F,OAAOC,aAAa/F,GAAKA,EACzD24D,EAAIsB,SAAStyD,GAAO6sD,CACtB,IAEcmE,EAAI8H,MAChB9H,EAAI8H,MAAM9H,EAAI8H,MAAMjM,IAAMA,EAM5B,SAAS33D,EAAM+zD,EAAQ11D,EAAO2E,GAC5B+wD,EAAO11D,IAAU01D,EAAO11D,GAAO2E,EACjC,CAEA,SAASw8D,EAAUzL,EAAQ+P,EAAU9gE,GAC/B+wD,EAAOmK,UAAUsE,EAAUzO,GAC/B/zD,EAAK+zD,EAAQ+P,EAAU9gE,EACzB,CAEA,SAASw/D,EAAWzO,GAClBA,EAAOmK,SAAWmC,EAAStM,EAAOgI,IAAKhI,EAAOmK,UAC1CnK,EAAOmK,UAAUl+D,EAAK+zD,EAAQ,SAAUA,EAAOmK,UACnDnK,EAAOmK,SAAW,EACpB,CAEA,SAASmC,EAAUtE,EAAKztD,GAGtB,OAFIytD,EAAI1gD,OAAM/M,EAAOA,EAAK+M,QACtB0gD,EAAIgI,YAAWz1D,EAAOA,EAAKtE,QAAQ,OAAQ,MACxCsE,CACT,CAEA,SAASpH,EAAO6sD,EAAQmP,GAUtB,OATAV,EAAUzO,GACNA,EAAO2J,gBACTwF,GAAM,WAAanP,EAAO4J,KACxB,aAAe5J,EAAOzL,OACtB,WAAayL,EAAOl2C,GAExBqlD,EAAK,IAAIn5D,MAAMm5D,GACfnP,EAAO7sD,MAAQg8D,EACfljE,EAAK+zD,EAAQ,UAAWmP,GACjBnP,CACT,CAEA,SAAS3tC,EAAK2tC,GAYZ,OAXIA,EAAOgJ,UAAYhJ,EAAO+I,YAAYuB,EAAWtK,EAAQ,qBACxDA,EAAOlpD,QAAUoyD,EAAEC,OACrBnJ,EAAOlpD,QAAUoyD,EAAEa,kBACnB/J,EAAOlpD,QAAUoyD,EAAEe,MACpB92D,EAAM6sD,EAAQ,kBAEhByO,EAAUzO,GACVA,EAAOl2C,EAAI,GACXk2C,EAAO8I,QAAS,EAChB78D,EAAK+zD,EAAQ,SACbiI,EAAU58D,KAAK20D,EAAQA,EAAOz5C,OAAQy5C,EAAOgI,KACtChI,CACT,CAEA,SAASsK,EAAYtK,EAAQ5pD,GAC3B,GAAsB,iBAAX4pD,KAAyBA,aAAkBiI,GACpD,MAAM,IAAIjyD,MAAM,0BAEdgqD,EAAOz5C,QACTpT,EAAM6sD,EAAQ5pD,EAElB,CAEA,SAASw2D,EAAQ5M,GACVA,EAAOz5C,SAAQy5C,EAAOmL,QAAUnL,EAAOmL,QAAQnL,EAAO4I,cAC3D,IAAIl9C,EAASs0C,EAAO6I,KAAK7I,EAAO6I,KAAKh9D,OAAS,IAAMm0D,EAChDlsC,EAAMksC,EAAOlsC,IAAM,CAAE3oB,KAAM60D,EAAOmL,QAAS3vB,WAAY,CAAC,GAGxDwkB,EAAOgI,IAAIwB,QACb11C,EAAI21C,GAAK/9C,EAAO+9C,IAElBzJ,EAAOuJ,WAAW19D,OAAS,EAC3B4/D,EAASzL,EAAQ,iBAAkBlsC,EACrC,CAEA,SAASm8C,EAAO9kE,EAAMswC,GACpB,IACIy0B,EADI/kE,EAAK6U,QAAQ,KACF,EAAI,CAAE,GAAI7U,GAASA,EAAKyZ,MAAM,KAC7C/a,EAASqmE,EAAS,GAClBC,EAAQD,EAAS,GAQrB,OALIz0B,GAAsB,UAATtwC,IACftB,EAAS,QACTsmE,EAAQ,IAGH,CAAEtmE,OAAQA,EAAQsmE,MAAOA,EAClC,CAEA,SAAS9C,EAAQrN,GAKf,GAJKA,EAAOz5C,SACVy5C,EAAOiN,WAAajN,EAAOiN,WAAWjN,EAAO4I,eAGO,IAAlD5I,EAAOuJ,WAAWvpD,QAAQggD,EAAOiN,aACnCjN,EAAOlsC,IAAI0nB,WAAW5xC,eAAeo2D,EAAOiN,YAC5CjN,EAAOiN,WAAajN,EAAOkN,YAAc,OAF3C,CAMA,GAAIlN,EAAOgI,IAAIwB,MAAO,CACpB,IAAI4G,EAAKH,EAAMjQ,EAAOiN,YAAY,GAC9BpjE,EAASumE,EAAGvmE,OACZsmE,EAAQC,EAAGD,MAEf,GAAe,UAAXtmE,EAEF,GAAc,QAAVsmE,GAAmBnQ,EAAOkN,cAAgBsC,EAC5ClF,EAAWtK,EACT,gCAAkCwP,EAAlC,aACaxP,EAAOkN,kBACjB,GAAc,UAAViD,GAAqBnQ,EAAOkN,cAAgBuC,EACrDnF,EAAWtK,EACT,kCAAoCyP,EAApC,aACazP,EAAOkN,iBACjB,CACL,IAAIp5C,EAAMksC,EAAOlsC,IACbpI,EAASs0C,EAAO6I,KAAK7I,EAAO6I,KAAKh9D,OAAS,IAAMm0D,EAChDlsC,EAAI21C,KAAO/9C,EAAO+9C,KACpB31C,EAAI21C,GAAK//D,OAAOqB,OAAO2gB,EAAO+9C,KAEhC31C,EAAI21C,GAAG0G,GAASnQ,EAAOkN,WACzB,CAMFlN,EAAOuJ,WAAW5+D,KAAK,CAACq1D,EAAOiN,WAAYjN,EAAOkN,aACpD,MAEElN,EAAOlsC,IAAI0nB,WAAWwkB,EAAOiN,YAAcjN,EAAOkN,YAClDzB,EAASzL,EAAQ,cAAe,CAC9B70D,KAAM60D,EAAOiN,WACbz9D,MAAOwwD,EAAOkN,cAIlBlN,EAAOiN,WAAajN,EAAOkN,YAAc,EAxCzC,CAyCF,CAEA,SAASL,EAAS7M,EAAQqQ,GACxB,GAAIrQ,EAAOgI,IAAIwB,MAAO,CAEpB,IAAI11C,EAAMksC,EAAOlsC,IAGbs8C,EAAKH,EAAMjQ,EAAOmL,SACtBr3C,EAAIjqB,OAASumE,EAAGvmE,OAChBiqB,EAAIq8C,MAAQC,EAAGD,MACfr8C,EAAIw8C,IAAMx8C,EAAI21C,GAAG2G,EAAGvmE,SAAW,GAE3BiqB,EAAIjqB,SAAWiqB,EAAIw8C,MACrBhG,EAAWtK,EAAQ,6BACjB9wD,KAAKQ,UAAUswD,EAAOmL,UACxBr3C,EAAIw8C,IAAMF,EAAGvmE,QAGf,IAAI6hB,EAASs0C,EAAO6I,KAAK7I,EAAO6I,KAAKh9D,OAAS,IAAMm0D,EAChDlsC,EAAI21C,IAAM/9C,EAAO+9C,KAAO31C,EAAI21C,IAC9B//D,OAAO6G,KAAKujB,EAAI21C,IAAIpuD,SAAQ,SAAUoI,GACpCgoD,EAASzL,EAAQ,kBAAmB,CAClCn2D,OAAQ4Z,EACR6sD,IAAKx8C,EAAI21C,GAAGhmD,IAEhB,IAMF,IAAK,IAAI9X,EAAI,EAAGC,EAAIo0D,EAAOuJ,WAAW19D,OAAQF,EAAIC,EAAGD,IAAK,CACxD,IAAI4kE,EAAKvQ,EAAOuJ,WAAW59D,GACvBR,EAAOolE,EAAG,GACV/gE,EAAQ+gE,EAAG,GACXL,EAAWD,EAAM9kE,GAAM,GACvBtB,EAASqmE,EAASrmE,OAClBsmE,EAAQD,EAASC,MACjBG,EAAiB,KAAXzmE,EAAgB,GAAMiqB,EAAI21C,GAAG5/D,IAAW,GAC9CuK,EAAI,CACNjJ,KAAMA,EACNqE,MAAOA,EACP3F,OAAQA,EACRsmE,MAAOA,EACPG,IAAKA,GAKHzmE,GAAqB,UAAXA,IAAuBymE,IACnChG,EAAWtK,EAAQ,6BACjB9wD,KAAKQ,UAAU7F,IACjBuK,EAAEk8D,IAAMzmE,GAEVm2D,EAAOlsC,IAAI0nB,WAAWrwC,GAAQiJ,EAC9Bq3D,EAASzL,EAAQ,cAAe5rD,EAClC,CACA4rD,EAAOuJ,WAAW19D,OAAS,CAC7B,CAEAm0D,EAAOlsC,IAAI08C,gBAAkBH,EAG7BrQ,EAAOgJ,SAAU,EACjBhJ,EAAO6I,KAAKl+D,KAAKq1D,EAAOlsC,KACxB23C,EAASzL,EAAQ,YAAaA,EAAOlsC,KAChCu8C,IAEErQ,EAAOiJ,UAA6C,WAAjCjJ,EAAOmL,QAAQx0D,cAGrCqpD,EAAOlpD,MAAQoyD,EAAEe,KAFjBjK,EAAOlpD,MAAQoyD,EAAEwB,OAInB1K,EAAOlsC,IAAM,KACbksC,EAAOmL,QAAU,IAEnBnL,EAAOiN,WAAajN,EAAOkN,YAAc,GACzClN,EAAOuJ,WAAW19D,OAAS,CAC7B,CAEA,SAASmhE,EAAUhN,GACjB,IAAKA,EAAOmL,QAIV,OAHAb,EAAWtK,EAAQ,0BACnBA,EAAOmK,UAAY,WACnBnK,EAAOlpD,MAAQoyD,EAAEe,MAInB,GAAIjK,EAAO4K,OAAQ,CACjB,GAAuB,WAAnB5K,EAAOmL,QAIT,OAHAnL,EAAO4K,QAAU,KAAO5K,EAAOmL,QAAU,IACzCnL,EAAOmL,QAAU,QACjBnL,EAAOlpD,MAAQoyD,EAAEwB,QAGnBe,EAASzL,EAAQ,WAAYA,EAAO4K,QACpC5K,EAAO4K,OAAS,EAClB,CAIA,IAAI/gC,EAAIm2B,EAAO6I,KAAKh9D,OAChBs/D,EAAUnL,EAAOmL,QAChBnL,EAAOz5C,SACV4kD,EAAUA,EAAQnL,EAAO4I,cAG3B,IADA,IAAI6H,EAAUtF,EACPthC,KACOm2B,EAAO6I,KAAKh/B,GACd1+B,OAASslE,GAEjBnG,EAAWtK,EAAQ,wBAOvB,GAAIn2B,EAAI,EAIN,OAHAygC,EAAWtK,EAAQ,0BAA4BA,EAAOmL,SACtDnL,EAAOmK,UAAY,KAAOnK,EAAOmL,QAAU,SAC3CnL,EAAOlpD,MAAQoyD,EAAEe,MAGnBjK,EAAOmL,QAAUA,EAEjB,IADA,IAAIvH,EAAI5D,EAAO6I,KAAKh9D,OACb+3D,KAAM/5B,GAAG,CACd,IAAI/V,EAAMksC,EAAOlsC,IAAMksC,EAAO6I,KAAKp5C,MACnCuwC,EAAOmL,QAAUnL,EAAOlsC,IAAI3oB,KAC5BsgE,EAASzL,EAAQ,aAAcA,EAAOmL,SAEtC,IAAIllD,EAAI,CAAC,EACT,IAAK,IAAIta,KAAKmoB,EAAI21C,GAChBxjD,EAAEta,GAAKmoB,EAAI21C,GAAG99D,GAGhB,IAAI+f,EAASs0C,EAAO6I,KAAK7I,EAAO6I,KAAKh9D,OAAS,IAAMm0D,EAChDA,EAAOgI,IAAIwB,OAAS11C,EAAI21C,KAAO/9C,EAAO+9C,IAExC//D,OAAO6G,KAAKujB,EAAI21C,IAAIpuD,SAAQ,SAAUoI,GACpC,IAAIke,EAAI7N,EAAI21C,GAAGhmD,GACfgoD,EAASzL,EAAQ,mBAAoB,CAAEn2D,OAAQ4Z,EAAG6sD,IAAK3uC,GACzD,GAEJ,CACU,IAANkI,IAASm2B,EAAO+I,YAAa,GACjC/I,EAAOmL,QAAUnL,EAAOkN,YAAclN,EAAOiN,WAAa,GAC1DjN,EAAOuJ,WAAW19D,OAAS,EAC3Bm0D,EAAOlpD,MAAQoyD,EAAEe,IACnB,CAEA,SAASkE,EAAanO,GACpB,IAEI0Q,EAFAtC,EAASpO,EAAOoO,OAChBuC,EAAWvC,EAAOz3D,cAElBi6D,EAAS,GAEb,OAAI5Q,EAAOqJ,SAAS+E,GACXpO,EAAOqJ,SAAS+E,GAErBpO,EAAOqJ,SAASsH,GACX3Q,EAAOqJ,SAASsH,IAGA,OADzBvC,EAASuC,GACEphD,OAAO,KACS,MAArB6+C,EAAO7+C,OAAO,IAChB6+C,EAASA,EAAO9iE,MAAM,GAEtBslE,GADAF,EAAMhqB,SAAS0nB,EAAQ,KACVv8D,SAAS,MAEtBu8D,EAASA,EAAO9iE,MAAM,GAEtBslE,GADAF,EAAMhqB,SAAS0nB,EAAQ,KACVv8D,SAAS,MAG1Bu8D,EAASA,EAAOn4D,QAAQ,MAAO,IAC3BoR,MAAMqpD,IAAQE,EAAOj6D,gBAAkBy3D,GACzC9D,EAAWtK,EAAQ,4BACZ,IAAMA,EAAOoO,OAAS,KAGxBl5D,OAAO06D,cAAcc,GAC9B,CAEA,SAAS1G,EAAiBhK,EAAQl2C,GACtB,MAANA,GACFk2C,EAAOlpD,MAAQoyD,EAAEsB,UACjBxK,EAAOyK,iBAAmBzK,EAAOvlC,UACvB4vC,EAAavgD,KAGvBwgD,EAAWtK,EAAQ,oCACnBA,EAAOmK,SAAWrgD,EAClBk2C,EAAOlpD,MAAQoyD,EAAEe,KAErB,CAEA,SAAS16C,EAAQmiB,EAAO/lC,GACtB,IAAIoK,EAAS,GAIb,OAHIpK,EAAI+lC,EAAM7lC,SACZkK,EAAS27B,EAAMniB,OAAO5jB,IAEjBoK,CACT,CAtVAmzD,EAAInB,EAAI8H,MAm4BH36D,OAAO06D,gBAEJD,EAAqBz6D,OAAOC,aAC5BuiD,EAAQh4B,KAAKg4B,MACbkY,EAAgB,WAClB,IAEIiB,EACAC,EAFAC,EAAY,GAGZnoD,GAAS,EACT/c,EAASY,UAAUZ,OACvB,IAAKA,EACH,MAAO,GAGT,IADA,IAAIkK,EAAS,KACJ6S,EAAQ/c,GAAQ,CACvB,IAAImlE,EAAYhqD,OAAOva,UAAUmc,IACjC,IACGqoD,SAASD,IACVA,EAAY,GACZA,EAAY,SACZtZ,EAAMsZ,KAAeA,EAErB,MAAME,WAAW,uBAAyBF,GAExCA,GAAa,MACfD,EAAUpmE,KAAKqmE,IAIfH,EAAoC,QADpCG,GAAa,QACiB,IAC9BF,EAAgBE,EAAY,KAAS,MACrCD,EAAUpmE,KAAKkmE,EAAeC,KAE5BloD,EAAQ,IAAM/c,GAAUklE,EAAUllE,OA7BzB,SA8BXkK,GAAU45D,EAAmB/iE,MAAM,KAAMmkE,GACzCA,EAAUllE,OAAS,EAEvB,CACA,OAAOkK,CACT,EAEIrM,OAAO0Z,eACT1Z,OAAO0Z,eAAelO,OAAQ,gBAAiB,CAC7C1F,MAAOogE,EACPrsD,cAAc,EACdD,UAAU,IAGZpO,OAAO06D,cAAgBA,EAI9B,CAriDA,CAqiDmDziE,0CCriDnD,SAAUkF,EAAQ1F,GACf,aAEA,IAAI0F,EAAO8+D,aAAX,CAIA,IAIIC,EA6HIC,EAZAC,EArBAC,EACAC,EAjGJC,EAAa,EACbC,EAAgB,CAAC,EACjBC,GAAwB,EACxBC,EAAMv/D,EAAOsB,SAoJbk+D,EAAWnoE,OAAO05D,gBAAkB15D,OAAO05D,eAAe/wD,GAC9Dw/D,EAAWA,GAAYA,EAASj9D,WAAai9D,EAAWx/D,EAGf,qBAArC,CAAC,EAAER,SAASxG,KAAKgH,EAAOy/D,SApFxBV,EAAoB,SAASW,GACzBD,EAAQE,UAAS,WAAcC,EAAaF,EAAS,GACzD,EAGJ,WAGI,GAAI1/D,EAAO6/D,cAAgB7/D,EAAO8/D,cAAe,CAC7C,IAAIC,GAA4B,EAC5BC,EAAehgE,EAAOigE,UAM1B,OALAjgE,EAAOigE,UAAY,WACfF,GAA4B,CAChC,EACA//D,EAAO6/D,YAAY,GAAI,KACvB7/D,EAAOigE,UAAYD,EACZD,CACX,CACJ,CAsEWG,IA/DHhB,EAAgB,gBAAkB7xC,KAAKu4B,SAAW,IAClDuZ,EAAkB,SAASlnE,GACvBA,EAAM4lB,SAAW7d,GACK,iBAAf/H,EAAM2E,MACyB,IAAtC3E,EAAM2E,KAAK+Q,QAAQuxD,IACnBU,GAAc3nE,EAAM2E,KAAK3D,MAAMimE,EAAc1lE,QAErD,EAEIwG,EAAO4nB,iBACP5nB,EAAO4nB,iBAAiB,UAAWu3C,GAAiB,GAEpDn/D,EAAOmgE,YAAY,YAAahB,GAGpCJ,EAAoB,SAASW,GACzB1/D,EAAO6/D,YAAYX,EAAgBQ,EAAQ,IAC/C,GAkDO1/D,EAAOogE,iBA9CVnB,EAAU,IAAImB,gBACVC,MAAMJ,UAAY,SAAShoE,GAE/B2nE,EADa3nE,EAAM2E,KAEvB,EAEAmiE,EAAoB,SAASW,GACzBT,EAAQqB,MAAMT,YAAYH,EAC9B,GA0COH,GAAO,uBAAwBA,EAAIv9D,cAAc,WAtCpDg9D,EAAOO,EAAIh2C,gBACfw1C,EAAoB,SAASW,GAGzB,IAAInH,EAASgH,EAAIv9D,cAAc,UAC/Bu2D,EAAOgI,mBAAqB,WACxBX,EAAaF,GACbnH,EAAOgI,mBAAqB,KAC5BvB,EAAKwB,YAAYjI,GACjBA,EAAS,IACb,EACAyG,EAAKvlC,YAAY8+B,EACrB,GAIAwG,EAAoB,SAASW,GACzBn9D,WAAWq9D,EAAc,EAAGF,EAChC,EA6BJF,EAASV,aA1KT,SAAsBvxD,GAEI,mBAAbA,IACTA,EAAW,IAAIgsB,SAAS,GAAKhsB,IAI/B,IADA,IAAIrT,EAAO,IAAIR,MAAMU,UAAUZ,OAAS,GAC/BF,EAAI,EAAGA,EAAIY,EAAKV,OAAQF,IAC7BY,EAAKZ,GAAKc,UAAUd,EAAI,GAG5B,IAAImnE,EAAO,CAAElzD,SAAUA,EAAUrT,KAAMA,GAGvC,OAFAmlE,EAAcD,GAAcqB,EAC5B1B,EAAkBK,GACXA,GACT,EA4JAI,EAASkB,eAAiBA,CAnL1B,CAyBA,SAASA,EAAehB,UACbL,EAAcK,EACzB,CAwBA,SAASE,EAAaF,GAGlB,GAAIJ,EAGA/8D,WAAWq9D,EAAc,EAAGF,OACzB,CACH,IAAIe,EAAOpB,EAAcK,GACzB,GAAIe,EAAM,CACNnB,GAAwB,EACxB,KAjCZ,SAAamB,GACT,IAAIlzD,EAAWkzD,EAAKlzD,SAChBrT,EAAOumE,EAAKvmE,KAChB,OAAQA,EAAKV,QACb,KAAK,EACD+T,IACA,MACJ,KAAK,EACDA,EAASrT,EAAK,IACd,MACJ,KAAK,EACDqT,EAASrT,EAAK,GAAIA,EAAK,IACvB,MACJ,KAAK,EACDqT,EAASrT,EAAK,GAAIA,EAAK,GAAIA,EAAK,IAChC,MACJ,QACIqT,EAAShT,MAnDrB,UAmDsCL,GAGlC,CAcgBmW,CAAIowD,EACR,CAAE,QACEC,EAAehB,GACfJ,GAAwB,CAC5B,CACJ,CACJ,CACJ,CA8GJ,CAzLA,CAyLkB,oBAATv/D,UAAyC,IAAX,EAAA4gE,EAAyB7oE,KAAO,EAAA6oE,EAAS5gE,iBCtKhF,SAASmsB,EAActY,EAAWgtD,GAChC,OAAO,MAAChtD,EAAiCgtD,EAAIhtD,CAC/C,CA8EA/Y,EAAOC,QA5EP,SAAiB4Q,GAEf,IAbyBm1D,EAarBzzC,EAAMlB,GADVxgB,EAAUA,GAAW,CAAC,GACA0hB,IAAK,GACvBkM,EAAMpN,EAAIxgB,EAAQ4tB,IAAK,GACvBwnC,EAAY50C,EAAIxgB,EAAQo1D,WAAW,GACnCC,EAAqB70C,EAAIxgB,EAAQq1D,oBAAoB,GAErDC,EAA2B,KAC3BC,EAAoC,KACpCC,EAAmC,KAEnCt3D,GAtBqBi3D,EAsBM30C,EAAIxgB,EAAQy1D,oBAAqB,KArBzD,SAAUC,EAAgBvuD,EAAOwuD,GAEtC,OAAOD,EADOC,GAAMA,EAAKR,IACQhuD,EAAQuuD,EAC3C,GAoBA,SAASpxB,IACPsxB,EAAOhoC,EACT,CAWA,SAASgoC,EAAOC,EAAwBC,GAKtC,GAJyB,iBAAdA,IACTA,EAAY9jE,KAAKJ,OAGf2jE,IAAkBO,KAClBT,GAAsBG,IAAiBK,GAA3C,CAEA,GAAsB,OAAlBN,GAA2C,OAAjBC,EAG5B,OAFAA,EAAeK,OACfN,EAAgBO,GAIlB,IACIC,EAAiB,MAASD,EAAYP,GACtCS,GAFgBH,EAAWL,GAEGO,EAElCT,EAAgB,OAATA,EACHU,EACA93D,EAAOo3D,EAAMU,EAAaD,GAC9BP,EAAeK,EACfN,EAAgBO,CAhB+C,CAiBjE,CAkBA,MAAO,CACLxxB,MAAOA,EACP9J,MApDF,WACE86B,EAAO,KACPC,EAAgB,KAChBC,EAAe,KACXJ,GACF9wB,GAEJ,EA8CEsxB,OAAQA,EACRK,SApBF,SAAkBH,GAChB,GAAqB,OAAjBN,EAAyB,OAAOU,IACpC,GAAIV,GAAgB9zC,EAAO,OAAO,EAClC,GAAa,OAAT4zC,EAAiB,OAAOY,IAE5B,IAAIC,GAAiBz0C,EAAM8zC,GAAgBF,EAI3C,MAHyB,iBAAdQ,GAAmD,iBAAlBP,IAC1CY,GAA+C,MAA7BL,EAAYP,IAEzB5zC,KAAKD,IAAI,EAAGy0C,EACrB,EAWEb,KATF,WACE,OAAgB,OAATA,EAAgB,EAAIA,CAC7B,EASF,yBCjGA,IAAInyD,OAA2B,IAAX,EAAA8xD,GAA0B,EAAAA,GACjB,oBAAT5gE,MAAwBA,MAChC9E,OACRV,EAAQg/B,SAASjiC,UAAUiD,MAiB/B,SAASunE,EAAQ3lE,EAAI4lE,GACnBjqE,KAAKkqE,IAAM7lE,EACXrE,KAAKmqE,SAAWF,CAClB,CAhBAjnE,EAAQyH,WAAa,WACnB,OAAO,IAAIu/D,EAAQvnE,EAAMvB,KAAKuJ,WAAYsM,EAAOzU,WAAY47B,aAC/D,EACAl7B,EAAQ68B,YAAc,WACpB,OAAO,IAAImqC,EAAQvnE,EAAMvB,KAAK2+B,YAAa9oB,EAAOzU,WAAY8nE,cAChE,EACApnE,EAAQk7B,aACRl7B,EAAQonE,cAAgB,SAASC,GAC3BA,GACFA,EAAQ3mC,OAEZ,EAMAsmC,EAAQxqE,UAAU8qE,MAAQN,EAAQxqE,UAAUgiB,IAAM,WAAY,EAC9DwoD,EAAQxqE,UAAUkkC,MAAQ,WACxB1jC,KAAKmqE,SAASjpE,KAAK6V,EAAO/W,KAAKkqE,IACjC,EAGAlnE,EAAQunE,OAAS,SAASjmE,EAAMkmE,GAC9BtsC,aAAa55B,EAAKmmE,gBAClBnmE,EAAKomE,aAAeF,CACtB,EAEAxnE,EAAQ2nE,SAAW,SAASrmE,GAC1B45B,aAAa55B,EAAKmmE,gBAClBnmE,EAAKomE,cAAgB,CACvB,EAEA1nE,EAAQ4nE,aAAe5nE,EAAQuqC,OAAS,SAASjpC,GAC/C45B,aAAa55B,EAAKmmE,gBAElB,IAAID,EAAQlmE,EAAKomE,aACbF,GAAS,IACXlmE,EAAKmmE,eAAiBhgE,YAAW,WAC3BnG,EAAKumE,YACPvmE,EAAKumE,YACT,GAAGL,GAEP,EAGA,EAAQ,OAIRxnE,EAAQgkE,aAAgC,oBAAT/+D,MAAwBA,KAAK++D,mBAClB,IAAX,EAAA6B,GAA0B,EAAAA,EAAO7B,cACxChnE,MAAQA,KAAKgnE,aACrChkE,EAAQ4lE,eAAkC,oBAAT3gE,MAAwBA,KAAK2gE,qBAClB,IAAX,EAAAC,GAA0B,EAAAA,EAAOD,gBACxC5oE,MAAQA,KAAK4oE,qCC7DvC,WACE,aACA5lE,EAAQ8nE,SAAW,SAASjrD,GAC1B,MAAe,WAAXA,EAAI,GACCA,EAAIogD,UAAU,GAEdpgD,CAEX,CAED,GAAE3e,KAAKlB,8BCVR,WACE,aACA,IAAI+qE,EAASC,EAAUC,EAAaC,EAAeC,EACjDC,EAAU,CAAC,EAAE3rE,eAEfsrE,EAAU,EAAQ,OAElBC,EAAW,kBAEXE,EAAgB,SAASn8B,GACvB,MAAwB,iBAAVA,IAAuBA,EAAMl5B,QAAQ,MAAQ,GAAKk5B,EAAMl5B,QAAQ,MAAQ,GAAKk5B,EAAMl5B,QAAQ,MAAQ,EACnH,EAEAs1D,EAAY,SAASp8B,GACnB,MAAO,YAAek8B,EAAYl8B,GAAU,KAC9C,EAEAk8B,EAAc,SAASl8B,GACrB,OAAOA,EAAMjjC,QAAQ,MAAO,kBAC9B,EAEA9I,EAAQqoE,QAAU,WAChB,SAASA,EAAQ/iE,GACf,IAAIsE,EAAK4U,EAAKnc,EAGd,IAAKuH,KAFL5M,KAAK4T,QAAU,CAAC,EAChB4N,EAAMwpD,EAAS,IAERI,EAAQlqE,KAAKsgB,EAAK5U,KACvBvH,EAAQmc,EAAI5U,GACZ5M,KAAK4T,QAAQhH,GAAOvH,GAEtB,IAAKuH,KAAOtE,EACL8iE,EAAQlqE,KAAKoH,EAAMsE,KACxBvH,EAAQiD,EAAKsE,GACb5M,KAAK4T,QAAQhH,GAAOvH,EAExB,CAqFA,OAnFAgmE,EAAQ7rE,UAAU8rE,YAAc,SAASC,GACvC,IAAIC,EAASC,EAAS5oD,EAAQ6oD,EAAaC,EASxBxP,EAsEnB,OA9EAqP,EAAUxrE,KAAK4T,QAAQ43D,QACvBC,EAAUzrE,KAAK4T,QAAQ63D,QACc,IAAhClsE,OAAO6G,KAAKmlE,GAAS7pE,QAAkB1B,KAAK4T,QAAQ+3D,WAAaX,EAAS,IAAOW,SAEpFJ,EAAUA,EADVI,EAAWpsE,OAAO6G,KAAKmlE,GAAS,IAGhCI,EAAW3rE,KAAK4T,QAAQ+3D,SAEPxP,EAiEhBn8D,KAjEH6iB,EACS,SAASgnB,EAAS9wB,GACvB,IAAI6yD,EAAMr/C,EAAOwiB,EAAOtwB,EAAO7R,EAAKvH,EACpC,GAAmB,iBAAR0T,EACLojD,EAAMvoD,QAAQ2tD,OAAS2J,EAAcnyD,GACvC8wB,EAAQllC,IAAIwmE,EAAUpyD,IAEtB8wB,EAAQgiC,IAAI9yD,QAET,GAAInX,MAAM4L,QAAQuL,IACvB,IAAK0F,KAAS1F,EACZ,GAAKqyD,EAAQlqE,KAAK6X,EAAK0F,GAEvB,IAAK7R,KADL2f,EAAQxT,EAAI0F,GAEVswB,EAAQxiB,EAAM3f,GACdi9B,EAAUhnB,EAAOgnB,EAAQiiC,IAAIl/D,GAAMmiC,GAAOg9B,UAI9C,IAAKn/D,KAAOmM,EACV,GAAKqyD,EAAQlqE,KAAK6X,EAAKnM,GAEvB,GADA2f,EAAQxT,EAAInM,GACRA,IAAQ4+D,GACV,GAAqB,iBAAVj/C,EACT,IAAKq/C,KAAQr/C,EACXlnB,EAAQknB,EAAMq/C,GACd/hC,EAAUA,EAAQmiC,IAAIJ,EAAMvmE,QAG3B,GAAIuH,IAAQ6+D,EAEf5hC,EADEsyB,EAAMvoD,QAAQ2tD,OAAS2J,EAAc3+C,GAC7Bsd,EAAQllC,IAAIwmE,EAAU5+C,IAEtBsd,EAAQgiC,IAAIt/C,QAEnB,GAAI3qB,MAAM4L,QAAQ+e,GACvB,IAAK9N,KAAS8N,EACP6+C,EAAQlqE,KAAKqrB,EAAO9N,KAIrBorB,EAFiB,iBADrBkF,EAAQxiB,EAAM9N,IAER09C,EAAMvoD,QAAQ2tD,OAAS2J,EAAcn8B,GAC7BlF,EAAQiiC,IAAIl/D,GAAKjI,IAAIwmE,EAAUp8B,IAAQg9B,KAEvCliC,EAAQiiC,IAAIl/D,EAAKmiC,GAAOg9B,KAG1BlpD,EAAOgnB,EAAQiiC,IAAIl/D,GAAMmiC,GAAOg9B,UAGpB,iBAAVx/C,EAChBsd,EAAUhnB,EAAOgnB,EAAQiiC,IAAIl/D,GAAM2f,GAAOw/C,KAErB,iBAAVx/C,GAAsB4vC,EAAMvoD,QAAQ2tD,OAAS2J,EAAc3+C,GACpEsd,EAAUA,EAAQiiC,IAAIl/D,GAAKjI,IAAIwmE,EAAU5+C,IAAQw/C,MAEpC,MAATx/C,IACFA,EAAQ,IAEVsd,EAAUA,EAAQiiC,IAAIl/D,EAAK2f,EAAM7kB,YAAYqkE,MAKrD,OAAOliC,CACT,EAEF6hC,EAAcX,EAAQnqE,OAAO+qE,EAAU3rE,KAAK4T,QAAQq4D,OAAQjsE,KAAK4T,QAAQ+tD,QAAS,CAChFuK,SAAUlsE,KAAK4T,QAAQs4D,SACvBC,oBAAqBnsE,KAAK4T,QAAQu4D,sBAE7BtpD,EAAO6oD,EAAaH,GAASrjD,IAAIloB,KAAK4T,QAAQw4D,WACvD,EAEOf,CAER,CAtGiB,EAwGnB,GAAEnqE,KAAKlB,4BC7HR,WACEgD,EAAQgoE,SAAW,CACjB,GAAO,CACLqB,iBAAiB,EACjBlvD,MAAM,EACN0oD,WAAW,EACXyG,eAAe,EACfd,QAAS,IACTC,QAAS,IACTc,eAAe,EACfC,aAAa,EACbC,YAAY,EACZ1W,cAAc,EACd2W,UAAW,KACXrN,OAAO,EACPsN,kBAAkB,EAClBC,SAAU,KACVC,iBAAiB,EACjBC,mBAAmB,EACnBz9D,OAAO,EACP+M,QAAQ,EACR2wD,mBAAoB,KACpBC,oBAAqB,KACrBC,kBAAmB,KACnBC,gBAAiB,KACjBC,SAAU,IAEZ,GAAO,CACLd,iBAAiB,EACjBlvD,MAAM,EACN0oD,WAAW,EACXyG,eAAe,EACfd,QAAS,IACTC,QAAS,IACTc,eAAe,EACfC,aAAa,EACbC,YAAY,EACZ1W,cAAc,EACd2W,UAAW,KACXrN,OAAO,EACPsN,kBAAkB,EAClBS,uBAAuB,EACvBR,SAAU,KACVC,iBAAiB,EACjBC,mBAAmB,EACnBz9D,OAAO,EACP+M,QAAQ,EACR2wD,mBAAoB,KACpBC,oBAAqB,KACrBC,kBAAmB,KACnBC,gBAAiB,KACjBvB,SAAU,OACVM,OAAQ,CACN,QAAW,MACX,SAAY,QACZ,YAAc,GAEhBtK,QAAS,KACTyK,WAAY,CACV,QAAU,EACV,OAAU,KACV,QAAW,MAEbF,UAAU,EACVmB,UAAW,IACXF,SAAU,GACV5L,OAAO,GAIZ,GAAErgE,KAAKlB,8BCtER,WACE,aACA,IAAIiL,EAAK+/D,EAAU/xD,EAAgBlY,EAAQusE,EAASC,EAAaC,EAAY5P,EAAKoJ,EAChF9yD,EAAO,SAASrU,EAAIilE,GAAK,OAAO,WAAY,OAAOjlE,EAAG4C,MAAMqiE,EAAIxiE,UAAY,CAAG,EAE/E8oE,EAAU,CAAC,EAAE3rE,eAEfm+D,EAAM,EAAQ,OAEd78D,EAAS,EAAQ,OAEjBkK,EAAM,EAAQ,OAEduiE,EAAa,EAAQ,OAErBxG,EAAe,sBAEfgE,EAAW,kBAEXsC,EAAU,SAASG,GACjB,MAAwB,iBAAVA,GAAgC,MAATA,GAAgD,IAA9BluE,OAAO6G,KAAKqnE,GAAO/rE,MAC5E,EAEA6rE,EAAc,SAASC,EAAYlpE,EAAMsI,GACvC,IAAIpL,EAAGa,EACP,IAAKb,EAAI,EAAGa,EAAMmrE,EAAW9rE,OAAQF,EAAIa,EAAKb,IAE5C8C,GADAqjE,EAAU6F,EAAWhsE,IACN8C,EAAMsI,GAEvB,OAAOtI,CACT,EAEA2U,EAAiB,SAASF,EAAKnM,EAAKvH,GAClC,IAAIuB,EAMJ,OALAA,EAAarH,OAAOqB,OAAO,OAChByE,MAAQA,EACnBuB,EAAWuS,UAAW,EACtBvS,EAAWyS,YAAa,EACxBzS,EAAWwS,cAAe,EACnB7Z,OAAO0Z,eAAeF,EAAKnM,EAAKhG,EACzC,EAEA5D,EAAQ8yD,OAAS,SAAU4G,GAGzB,SAAS5G,EAAOxtD,GAMd,IAAIsE,EAAK4U,EAAKnc,EACd,GANArF,KAAKg2D,mBAAqB9hD,EAAKlU,KAAKg2D,mBAAoBh2D,MACxDA,KAAK0tE,YAAcx5D,EAAKlU,KAAK0tE,YAAa1tE,MAC1CA,KAAKouC,MAAQl6B,EAAKlU,KAAKouC,MAAOpuC,MAC9BA,KAAK2tE,aAAez5D,EAAKlU,KAAK2tE,aAAc3tE,MAC5CA,KAAK4tE,aAAe15D,EAAKlU,KAAK4tE,aAAc5tE,QAEtCA,gBAAgBgD,EAAQ8yD,QAC5B,OAAO,IAAI9yD,EAAQ8yD,OAAOxtD,GAI5B,IAAKsE,KAFL5M,KAAK4T,QAAU,CAAC,EAChB4N,EAAMwpD,EAAS,IAERI,EAAQlqE,KAAKsgB,EAAK5U,KACvBvH,EAAQmc,EAAI5U,GACZ5M,KAAK4T,QAAQhH,GAAOvH,GAEtB,IAAKuH,KAAOtE,EACL8iE,EAAQlqE,KAAKoH,EAAMsE,KACxBvH,EAAQiD,EAAKsE,GACb5M,KAAK4T,QAAQhH,GAAOvH,GAElBrF,KAAK4T,QAAQyrD,QACfr/D,KAAK4T,QAAQi6D,SAAW7tE,KAAK4T,QAAQ43D,QAAU,MAE7CxrE,KAAK4T,QAAQ04D,gBACVtsE,KAAK4T,QAAQq5D,oBAChBjtE,KAAK4T,QAAQq5D,kBAAoB,IAEnCjtE,KAAK4T,QAAQq5D,kBAAkBr6D,QAAQ46D,EAAW3H,YAEpD7lE,KAAKouC,OACP,CA4RA,OArWS,SAAS7hB,EAAOhL,GAAU,IAAK,IAAI3U,KAAO2U,EAAc6pD,EAAQlqE,KAAKqgB,EAAQ3U,KAAM2f,EAAM3f,GAAO2U,EAAO3U,IAAQ,SAASkhE,IAAS9tE,KAAK6D,YAAc0oB,CAAO,CAAEuhD,EAAKtuE,UAAY+hB,EAAO/hB,UAAW+sB,EAAM/sB,UAAY,IAAIsuE,EAAQvhD,EAAMwhD,UAAYxsD,EAAO/hB,SAAyB,CAuCzRggB,CAAOs2C,EAAQ4G,GAoCf5G,EAAOt2D,UAAUouE,aAAe,WAC9B,IAAIrmC,EAAOznB,EACX,IACE,OAAI9f,KAAKguE,UAAUtsE,QAAU1B,KAAK4T,QAAQy5D,WACxC9lC,EAAQvnC,KAAKguE,UACbhuE,KAAKguE,UAAY,GACjBhuE,KAAKiuE,UAAYjuE,KAAKiuE,UAAUtO,MAAMp4B,GAC/BvnC,KAAKiuE,UAAUvqC,UAEtB6D,EAAQvnC,KAAKguE,UAAUrmD,OAAO,EAAG3nB,KAAK4T,QAAQy5D,WAC9CrtE,KAAKguE,UAAYhuE,KAAKguE,UAAUrmD,OAAO3nB,KAAK4T,QAAQy5D,UAAWrtE,KAAKguE,UAAUtsE,QAC9E1B,KAAKiuE,UAAYjuE,KAAKiuE,UAAUtO,MAAMp4B,GAC/By/B,EAAahnE,KAAK4tE,cAE7B,CAAE,MAAOM,GAEP,GADApuD,EAAMouD,GACDluE,KAAKiuE,UAAUE,UAElB,OADAnuE,KAAKiuE,UAAUE,WAAY,EACpBnuE,KAAK8B,KAAKge,EAErB,CACF,EAEAg2C,EAAOt2D,UAAUmuE,aAAe,SAAS50D,EAAKnM,EAAKgB,GACjD,OAAMhB,KAAOmM,GAOLA,EAAInM,aAAgBhL,OACxBqX,EAAeF,EAAKnM,EAAK,CAACmM,EAAInM,KAEzBmM,EAAInM,GAAKpM,KAAKoN,IAThB5N,KAAK4T,QAAQ24D,cAGTtzD,EAAeF,EAAKnM,EAAK,CAACgB,IAF1BqL,EAAeF,EAAKnM,EAAKgB,EAUtC,EAEAkoD,EAAOt2D,UAAU4uC,MAAQ,WACvB,IAAIo9B,EAASC,EAAS2C,EAAQ/oD,EAQK82C,EA8KnC,OArLAn8D,KAAK4C,qBACL5C,KAAKiuE,UAAYrQ,EAAI/H,OAAO71D,KAAK4T,QAAQwI,OAAQ,CAC/Ce,MAAM,EACN0oD,WAAW,EACXxG,MAAOr/D,KAAK4T,QAAQyrD,QAEtBr/D,KAAKiuE,UAAUE,WAAY,EAC3BnuE,KAAKiuE,UAAUnlE,SAAoBqzD,EAQhCn8D,KAPM,SAASgJ,GAEd,GADAmzD,EAAM8R,UAAUzJ,UACXrI,EAAM8R,UAAUE,UAEnB,OADAhS,EAAM8R,UAAUE,WAAY,EACrBhS,EAAMr6D,KAAK,QAASkH,EAE/B,GAEFhJ,KAAKiuE,UAAUlJ,MAAQ,SAAU5I,GAC/B,OAAO,WACL,IAAKA,EAAM8R,UAAUI,MAEnB,OADAlS,EAAM8R,UAAUI,OAAQ,EACjBlS,EAAMr6D,KAAK,MAAOq6D,EAAMmS,aAEnC,CACD,CAPsB,CAOpBtuE,MACHA,KAAKiuE,UAAUI,OAAQ,EACvBruE,KAAKuuE,iBAAmBvuE,KAAK4T,QAAQy4D,gBACrCrsE,KAAKsuE,aAAe,KACpBjpD,EAAQ,GACRmmD,EAAUxrE,KAAK4T,QAAQ43D,QACvBC,EAAUzrE,KAAK4T,QAAQ63D,QACvBzrE,KAAKiuE,UAAUO,UAAY,SAAUrS,GACnC,OAAO,SAAS9yD,GACd,IAAIuD,EAAKgB,EAAUmL,EAAK01D,EAAcjtD,EAGtC,IAFAzI,EAAM,CAAC,GACH0yD,GAAW,IACVtP,EAAMvoD,QAAQ44D,YAEjB,IAAK5/D,KADL4U,EAAMnY,EAAKgoC,WAEJ+5B,EAAQlqE,KAAKsgB,EAAK5U,KACjB4+D,KAAWzyD,GAASojD,EAAMvoD,QAAQ64D,aACtC1zD,EAAIyyD,GAAW,CAAC,GAElB59D,EAAWuuD,EAAMvoD,QAAQo5D,oBAAsBO,EAAYpR,EAAMvoD,QAAQo5D,oBAAqB3jE,EAAKgoC,WAAWzkC,GAAMA,GAAOvD,EAAKgoC,WAAWzkC,GAC3I6hE,EAAetS,EAAMvoD,QAAQm5D,mBAAqBQ,EAAYpR,EAAMvoD,QAAQm5D,mBAAoBngE,GAAOA,EACnGuvD,EAAMvoD,QAAQ64D,WAChBtQ,EAAMwR,aAAa50D,EAAK01D,EAAc7gE,GAEtCqL,EAAeF,EAAIyyD,GAAUiD,EAAc7gE,IAWjD,OAPAmL,EAAI,SAAWojD,EAAMvoD,QAAQq5D,kBAAoBM,EAAYpR,EAAMvoD,QAAQq5D,kBAAmB5jE,EAAKrI,MAAQqI,EAAKrI,KAC5Gm7D,EAAMvoD,QAAQyrD,QAChBtmD,EAAIojD,EAAMvoD,QAAQi6D,UAAY,CAC5B1H,IAAK98D,EAAK88D,IACVH,MAAO38D,EAAK28D,QAGT3gD,EAAM7kB,KAAKuY,EACpB,CACD,CA9B0B,CA8BxB/Y,MACHA,KAAKiuE,UAAUS,WAAa,SAAUvS,GACpC,OAAO,WACL,IAAIoF,EAAOoN,EAAU/hE,EAAKvD,EAAMulE,EAAU71D,EAAK81D,EAAUC,EAAKrV,EAAGsV,EAqDjE,GApDAh2D,EAAMsM,EAAMC,MACZspD,EAAW71D,EAAI,SACVojD,EAAMvoD,QAAQ+4D,kBAAqBxQ,EAAMvoD,QAAQw5D,8BAC7Cr0D,EAAI,UAEK,IAAdA,EAAIwoD,QACNA,EAAQxoD,EAAIwoD,aACLxoD,EAAIwoD,OAEb9H,EAAIp0C,EAAMA,EAAM3jB,OAAS,GACrBqX,EAAI0yD,GAASxwD,MAAM,WAAasmD,GAClCoN,EAAW51D,EAAI0yD,UACR1yD,EAAI0yD,KAEPtP,EAAMvoD,QAAQuJ,OAChBpE,EAAI0yD,GAAW1yD,EAAI0yD,GAAStuD,QAE1Bg/C,EAAMvoD,QAAQiyD,YAChB9sD,EAAI0yD,GAAW1yD,EAAI0yD,GAAS3/D,QAAQ,UAAW,KAAKqR,QAEtDpE,EAAI0yD,GAAWtP,EAAMvoD,QAAQs5D,gBAAkBK,EAAYpR,EAAMvoD,QAAQs5D,gBAAiBn0D,EAAI0yD,GAAUmD,GAAY71D,EAAI0yD,GACxF,IAA5BlsE,OAAO6G,KAAK2S,GAAKrX,QAAgB+pE,KAAW1yD,IAAQojD,EAAMoS,mBAC5Dx1D,EAAMA,EAAI0yD,KAGV6B,EAAQv0D,KAERA,EADoC,mBAA3BojD,EAAMvoD,QAAQu5D,SACjBhR,EAAMvoD,QAAQu5D,WAEa,KAA3BhR,EAAMvoD,QAAQu5D,SAAkBhR,EAAMvoD,QAAQu5D,SAAWwB,GAGpC,MAA3BxS,EAAMvoD,QAAQ84D,YAChBqC,EAAQ,IAAO,WACb,IAAIvtE,EAAGa,EAAKmtC,EAEZ,IADAA,EAAU,GACLhuC,EAAI,EAAGa,EAAMgjB,EAAM3jB,OAAQF,EAAIa,EAAKb,IACvC6H,EAAOgc,EAAM7jB,GACbguC,EAAQhvC,KAAK6I,EAAK,UAEpB,OAAOmmC,CACR,CARa,GAQRnuC,OAAOutE,GAAUj0D,KAAK,KAC5B,WACE,IAAImF,EACJ,IACE,OAAO/G,EAAMojD,EAAMvoD,QAAQ84D,UAAUqC,EAAOtV,GAAKA,EAAEmV,GAAW71D,EAChE,CAAE,MAAOm1D,GAEP,OADApuD,EAAMouD,EACC/R,EAAMr6D,KAAK,QAASge,EAC7B,CACD,CARD,IAUEq8C,EAAMvoD,QAAQ+4D,mBAAqBxQ,EAAMvoD,QAAQ64D,YAA6B,iBAAR1zD,EACxE,GAAKojD,EAAMvoD,QAAQw5D,uBAcZ,GAAI3T,EAAG,CAGZ,IAAK7sD,KAFL6sD,EAAE0C,EAAMvoD,QAAQg5D,UAAYnT,EAAE0C,EAAMvoD,QAAQg5D,WAAa,GACzDiC,EAAW,CAAC,EACA91D,EACLqyD,EAAQlqE,KAAK6X,EAAKnM,IACvBqM,EAAe41D,EAAUjiE,EAAKmM,EAAInM,IAEpC6sD,EAAE0C,EAAMvoD,QAAQg5D,UAAUpsE,KAAKquE,UACxB91D,EAAI,SACqB,IAA5BxZ,OAAO6G,KAAK2S,GAAKrX,QAAgB+pE,KAAW1yD,IAAQojD,EAAMoS,mBAC5Dx1D,EAAMA,EAAI0yD,GAEd,OAzBEpiE,EAAO,CAAC,EACJ8yD,EAAMvoD,QAAQ43D,WAAWzyD,IAC3B1P,EAAK8yD,EAAMvoD,QAAQ43D,SAAWzyD,EAAIojD,EAAMvoD,QAAQ43D,gBACzCzyD,EAAIojD,EAAMvoD,QAAQ43D,WAEtBrP,EAAMvoD,QAAQi5D,iBAAmB1Q,EAAMvoD,QAAQ63D,WAAW1yD,IAC7D1P,EAAK8yD,EAAMvoD,QAAQ63D,SAAW1yD,EAAIojD,EAAMvoD,QAAQ63D,gBACzC1yD,EAAIojD,EAAMvoD,QAAQ63D,UAEvBlsE,OAAOyvE,oBAAoBj2D,GAAKrX,OAAS,IAC3C2H,EAAK8yD,EAAMvoD,QAAQg5D,UAAY7zD,GAEjCA,EAAM1P,EAeV,OAAIgc,EAAM3jB,OAAS,EACVy6D,EAAMwR,aAAalU,EAAGmV,EAAU71D,IAEnCojD,EAAMvoD,QAAQmiD,eAChB+Y,EAAM/1D,EAENE,EADAF,EAAM,CAAC,EACa61D,EAAUE,IAEhC3S,EAAMmS,aAAev1D,EACrBojD,EAAM8R,UAAUI,OAAQ,EACjBlS,EAAMr6D,KAAK,MAAOq6D,EAAMmS,cAEnC,CACD,CAjG2B,CAiGzBtuE,MACHouE,EAAS,SAAUjS,GACjB,OAAO,SAAS/rD,GACd,IAAI6+D,EAAWxV,EAEf,GADAA,EAAIp0C,EAAMA,EAAM3jB,OAAS,GAcvB,OAZA+3D,EAAEgS,IAAYr7D,EACV+rD,EAAMvoD,QAAQ+4D,kBAAoBxQ,EAAMvoD,QAAQw5D,uBAAyBjR,EAAMvoD,QAAQi5D,kBAAoB1Q,EAAMvoD,QAAQk5D,mBAAyD,KAApC18D,EAAKtE,QAAQ,OAAQ,IAAIqR,UACzKs8C,EAAE0C,EAAMvoD,QAAQg5D,UAAYnT,EAAE0C,EAAMvoD,QAAQg5D,WAAa,IACzDqC,EAAY,CACV,QAAS,aAEDxD,GAAWr7D,EACjB+rD,EAAMvoD,QAAQiyD,YAChBoJ,EAAUxD,GAAWwD,EAAUxD,GAAS3/D,QAAQ,UAAW,KAAKqR,QAElEs8C,EAAE0C,EAAMvoD,QAAQg5D,UAAUpsE,KAAKyuE,IAE1BxV,CAEX,CACD,CApBQ,CAoBNz5D,MACHA,KAAKiuE,UAAUG,OAASA,EACjBpuE,KAAKiuE,UAAUiB,QACb,SAAS9+D,GACd,IAAIqpD,EAEJ,GADAA,EAAI2U,EAAOh+D,GAET,OAAOqpD,EAAE8H,OAAQ,CAErB,CAEJ,EAEAzL,EAAOt2D,UAAUkuE,YAAc,SAAS7tD,EAAKoT,GAC3C,IAAInT,EACO,MAANmT,GAA6B,mBAAPA,IACzBjzB,KAAK2C,GAAG,OAAO,SAASiJ,GAEtB,OADA5L,KAAKouC,QACEnb,EAAG,KAAMrnB,EAClB,IACA5L,KAAK2C,GAAG,SAAS,SAASmd,GAExB,OADA9f,KAAKouC,QACEnb,EAAGnT,EACZ,KAEF,IAEE,MAAmB,MADnBD,EAAMA,EAAInY,YACFyV,QACNnd,KAAK8B,KAAK,MAAO,OACV,IAET+d,EAAM5U,EAAI6/D,SAASjrD,GACf7f,KAAK4T,QAAQvE,OACfrP,KAAKguE,UAAYnuD,EACjBmnD,EAAahnE,KAAK4tE,cACX5tE,KAAKiuE,WAEPjuE,KAAKiuE,UAAUtO,MAAM9/C,GAAK6jB,QACnC,CAAE,MAAOwqC,GAEP,GADApuD,EAAMouD,GACAluE,KAAKiuE,UAAUE,YAAanuE,KAAKiuE,UAAUI,MAE/C,OADAruE,KAAK8B,KAAK,QAASge,GACZ9f,KAAKiuE,UAAUE,WAAY,EAC7B,GAAInuE,KAAKiuE,UAAUI,MACxB,MAAMvuD,CAEV,CACF,EAEAg2C,EAAOt2D,UAAUw2D,mBAAqB,SAASn2C,GAC7C,OAAO,IAAItZ,SAAkB41D,EAU1Bn8D,KATM,SAASsG,EAAS0J,GACvB,OAAOmsD,EAAMuR,YAAY7tD,GAAK,SAASC,EAAKza,GAC1C,OAAIya,EACK9P,EAAO8P,GAEPxZ,EAAQjB,EAEnB,GACF,IATiB,IAAU82D,CAW/B,EAEOrG,CAER,CAjUgB,CAiUd/0D,GAEHiC,EAAQ0qE,YAAc,SAAS7tD,EAAK5V,EAAG2S,GACrC,IAAIqW,EAAIrf,EAeR,OAdS,MAALgJ,GACe,mBAANA,IACTqW,EAAKrW,GAEU,iBAAN3S,IACT2J,EAAU3J,KAGK,mBAANA,IACTgpB,EAAKhpB,GAEP2J,EAAU,CAAC,GAEJ,IAAI5Q,EAAQ8yD,OAAOliD,GACd85D,YAAY7tD,EAAKoT,EACjC,EAEAjwB,EAAQgzD,mBAAqB,SAASn2C,EAAK5V,GACzC,IAAI2J,EAKJ,MAJiB,iBAAN3J,IACT2J,EAAU3J,GAEH,IAAIjH,EAAQ8yD,OAAOliD,GACdoiD,mBAAmBn2C,EACnC,CAED,GAAE3e,KAAKlB,4BCzYR,WACE,aACA,IAAImvE,EAEJA,EAAc,IAAI90D,OAAO,iBAEzBrX,EAAQ6iE,UAAY,SAAShmD,GAC3B,OAAOA,EAAIrT,aACb,EAEAxJ,EAAQosE,mBAAqB,SAASvvD,GACpC,OAAOA,EAAIuF,OAAO,GAAG5Y,cAAgBqT,EAAI1e,MAAM,EACjD,EAEA6B,EAAQqsE,YAAc,SAASxvD,GAC7B,OAAOA,EAAI/T,QAAQqjE,EAAa,GAClC,EAEAnsE,EAAQia,aAAe,SAAS4C,GAI9B,OAHK3C,MAAM2C,KACTA,EAAMA,EAAM,GAAM,EAAI08B,SAAS18B,EAAK,IAAMyvD,WAAWzvD,IAEhDA,CACT,EAEA7c,EAAQoa,cAAgB,SAASyC,GAI/B,MAHI,oBAAoB/V,KAAK+V,KAC3BA,EAA4B,SAAtBA,EAAIrT,eAELqT,CACT,CAED,GAAE3e,KAAKlB,8BChCR,WACE,aACA,IAAI+qE,EAASC,EAAUnV,EAAQ2X,EAE7BpC,EAAU,CAAC,EAAE3rE,eAEfurE,EAAW,EAAQ,OAEnBD,EAAU,EAAQ,OAElBlV,EAAS,EAAQ,OAEjB2X,EAAa,EAAQ,OAErBxqE,EAAQgoE,SAAWA,EAASA,SAE5BhoE,EAAQwqE,WAAaA,EAErBxqE,EAAQusE,gBAAkB,SAAU7S,GAGlC,SAAS6S,EAAgBtjE,GACvBjM,KAAKiM,QAAUA,CACjB,CAEA,OAtBS,SAASsgB,EAAOhL,GAAU,IAAK,IAAI3U,KAAO2U,EAAc6pD,EAAQlqE,KAAKqgB,EAAQ3U,KAAM2f,EAAM3f,GAAO2U,EAAO3U,IAAQ,SAASkhE,IAAS9tE,KAAK6D,YAAc0oB,CAAO,CAAEuhD,EAAKtuE,UAAY+hB,EAAO/hB,UAAW+sB,EAAM/sB,UAAY,IAAIsuE,EAAQvhD,EAAMwhD,UAAYxsD,EAAO/hB,SAAyB,CAgBzRggB,CAAO+vD,EAQN1jE,OAFM0jE,CAER,CATyB,GAW1BvsE,EAAQqoE,QAAUN,EAAQM,QAE1BroE,EAAQ8yD,OAASD,EAAOC,OAExB9yD,EAAQ0qE,YAAc7X,EAAO6X,YAE7B1qE,EAAQgzD,mBAAqBH,EAAOG,kBAErC,GAAE90D,KAAKlB,0BCrCR,WACE+C,EAAOC,QAAU,CACfwsE,aAAc,EACdC,UAAW,EACXC,UAAW,EACXC,SAAU,EACVC,YAAa,GACbC,uBAAwB,GAG3B,GAAE3uE,KAAKlB,0BCVR,WACE+C,EAAOC,QAAU,CACf8sE,QAAS,EACTC,UAAW,EACXC,KAAM,EACNC,MAAO,EACPC,gBAAiB,EACjBC,kBAAmB,EACnBC,sBAAuB,EACvBC,QAAS,EACTC,SAAU,EACVC,QAAS,GACTC,iBAAkB,GAClBC,oBAAqB,GACrBC,YAAa,IACbC,IAAK,IACLC,qBAAsB,IACtBC,mBAAoB,IACpBC,MAAO,IAGV,GAAE5vE,KAAKlB,0BCrBR,WACE,IAAI0E,EAAQqsE,EAAUvjE,EAAS8/D,EAASrlC,EAAY9W,EAAU3pB,EAC5DrG,EAAQ,GAAGA,MACXiqE,EAAU,CAAC,EAAE3rE,eAEfiF,EAAS,WACP,IAAIlD,EAAGoL,EAAKvK,EAAK0jB,EAAQirD,EAAShtE,EAElC,GADAA,EAAS1B,UAAU,GAAI0uE,EAAU,GAAK1uE,UAAUZ,OAASP,EAAMD,KAAKoB,UAAW,GAAK,GAChF2lC,EAAW1oC,OAAOmF,QACpBnF,OAAOmF,OAAOjC,MAAM,KAAMH,gBAE1B,IAAKd,EAAI,EAAGa,EAAM2uE,EAAQtvE,OAAQF,EAAIa,EAAKb,IAEzC,GAAc,OADdukB,EAASirD,EAAQxvE,IAEf,IAAKoL,KAAOmZ,EACLqlD,EAAQlqE,KAAK6kB,EAAQnZ,KAC1B5I,EAAO4I,GAAOmZ,EAAOnZ,IAK7B,OAAO5I,CACT,EAEAikC,EAAa,SAAS5nB,GACpB,QAASA,GAA+C,sBAAxC9gB,OAAOC,UAAUkI,SAASxG,KAAKmf,EACjD,EAEA8Q,EAAW,SAAS9Q,GAClB,IAAImB,EACJ,QAASnB,IAA+B,aAAtBmB,SAAanB,IAA+B,WAARmB,EACxD,EAEAhU,EAAU,SAAS6S,GACjB,OAAI4nB,EAAWrmC,MAAM4L,SACZ5L,MAAM4L,QAAQ6S,GAE0B,mBAAxC9gB,OAAOC,UAAUkI,SAASxG,KAAKmf,EAE1C,EAEAitD,EAAU,SAASjtD,GACjB,IAAIzT,EACJ,GAAIY,EAAQ6S,GACV,OAAQA,EAAI3e,OAEZ,IAAKkL,KAAOyT,EACV,GAAK+qD,EAAQlqE,KAAKmf,EAAKzT,GACvB,OAAO,EAET,OAAO,CAEX,EAEApF,EAAgB,SAAS6Y,GACvB,IAAIytD,EAAMmD,EACV,OAAO9/C,EAAS9Q,KAAS4wD,EAAQ1xE,OAAO05D,eAAe54C,MAAUytD,EAAOmD,EAAMptE,cAAiC,mBAATiqE,GAAyBA,aAAgBA,GAAUrsC,SAASjiC,UAAUkI,SAASxG,KAAK4sE,KAAUrsC,SAASjiC,UAAUkI,SAASxG,KAAK3B,OACvO,EAEAwxE,EAAW,SAASh4D,GAClB,OAAIkvB,EAAWlvB,EAAImvB,SACVnvB,EAAImvB,UAEJnvB,CAEX,EAEAhW,EAAOC,QAAQ0B,OAASA,EAExB3B,EAAOC,QAAQilC,WAAaA,EAE5BllC,EAAOC,QAAQmuB,SAAWA,EAE1BpuB,EAAOC,QAAQwK,QAAUA,EAEzBzK,EAAOC,QAAQsqE,QAAUA,EAEzBvqE,EAAOC,QAAQwE,cAAgBA,EAE/BzE,EAAOC,QAAQ+tE,SAAWA,CAE3B,GAAE7vE,KAAKlB,0BCjFR,WACE+C,EAAOC,QAAU,CACfkuE,KAAM,EACNC,QAAS,EACTC,UAAW,EACXC,SAAU,EAGb,GAAEnwE,KAAKlB,8BCRR,WACE,IAAIsxE,EAEJA,EAAW,EAAQ,OAET,EAAQ,OAElBvuE,EAAOC,QAAyB,WAC9B,SAASuuE,EAAahwD,EAAQvgB,EAAMqE,GAMlC,GALArF,KAAKuhB,OAASA,EACVvhB,KAAKuhB,SACPvhB,KAAK4T,QAAU5T,KAAKuhB,OAAO3N,QAC3B5T,KAAKuF,UAAYvF,KAAKuhB,OAAOhc,WAEnB,MAARvE,EACF,MAAM,IAAI6K,MAAM,2BAA6B7L,KAAKwxE,UAAUxwE,IAE9DhB,KAAKgB,KAAOhB,KAAKuF,UAAUvE,KAAKA,GAChChB,KAAKqF,MAAQrF,KAAKuF,UAAUksE,SAASpsE,GACrCrF,KAAK6K,KAAOymE,EAASvB,UACrB/vE,KAAK0xE,MAAO,EACZ1xE,KAAK2xE,eAAiB,IACxB,CAgFA,OA9EApyE,OAAO0Z,eAAes4D,EAAa/xE,UAAW,WAAY,CACxDuG,IAAK,WACH,OAAO/F,KAAK6K,IACd,IAGFtL,OAAO0Z,eAAes4D,EAAa/xE,UAAW,eAAgB,CAC5DuG,IAAK,WACH,OAAO/F,KAAKuhB,MACd,IAGFhiB,OAAO0Z,eAAes4D,EAAa/xE,UAAW,cAAe,CAC3DuG,IAAK,WACH,OAAO/F,KAAKqF,KACd,EACAwN,IAAK,SAASxN,GACZ,OAAOrF,KAAKqF,MAAQA,GAAS,EAC/B,IAGF9F,OAAO0Z,eAAes4D,EAAa/xE,UAAW,eAAgB,CAC5DuG,IAAK,WACH,MAAO,EACT,IAGFxG,OAAO0Z,eAAes4D,EAAa/xE,UAAW,SAAU,CACtDuG,IAAK,WACH,MAAO,EACT,IAGFxG,OAAO0Z,eAAes4D,EAAa/xE,UAAW,YAAa,CACzDuG,IAAK,WACH,OAAO/F,KAAKgB,IACd,IAGFzB,OAAO0Z,eAAes4D,EAAa/xE,UAAW,YAAa,CACzDuG,IAAK,WACH,OAAO,CACT,IAGFwrE,EAAa/xE,UAAUqhB,MAAQ,WAC7B,OAAOthB,OAAOqB,OAAOZ,KACvB,EAEAuxE,EAAa/xE,UAAUkI,SAAW,SAASkM,GACzC,OAAO5T,KAAK4T,QAAQg+D,OAAOtgC,UAAUtxC,KAAMA,KAAK4T,QAAQg+D,OAAOC,cAAcj+D,GAC/E,EAEA29D,EAAa/xE,UAAUgyE,UAAY,SAASxwE,GAE1C,OAAY,OADZA,EAAOA,GAAQhB,KAAKgB,MAEX,YAAchB,KAAKuhB,OAAOvgB,KAAO,IAEjC,eAAiBA,EAAO,eAAiBhB,KAAKuhB,OAAOvgB,KAAO,GAEvE,EAEAuwE,EAAa/xE,UAAUsyE,YAAc,SAASzoE,GAC5C,OAAIA,EAAK0oE,eAAiB/xE,KAAK+xE,cAG3B1oE,EAAK3J,SAAWM,KAAKN,QAGrB2J,EAAK2oE,YAAchyE,KAAKgyE,WAGxB3oE,EAAKhE,QAAUrF,KAAKqF,KAI1B,EAEOksE,CAER,CAjG+B,EAmGjC,GAAErwE,KAAKlB,8BC1GR,WACE,IAAIsxE,EAAoBW,EAEtB7G,EAAU,CAAC,EAAE3rE,eAEf6xE,EAAW,EAAQ,OAEnBW,EAAmB,EAAQ,OAE3BlvE,EAAOC,QAAqB,SAAU05D,GAGpC,SAASwV,EAAS3wD,EAAQnR,GAExB,GADA8hE,EAASnE,UAAUlqE,YAAY3C,KAAKlB,KAAMuhB,GAC9B,MAARnR,EACF,MAAM,IAAIvE,MAAM,uBAAyB7L,KAAKwxE,aAEhDxxE,KAAKgB,KAAO,iBACZhB,KAAK6K,KAAOymE,EAASrB,MACrBjwE,KAAKqF,MAAQrF,KAAKuF,UAAUg8D,MAAMnxD,EACpC,CAUA,OA5BS,SAASmc,EAAOhL,GAAU,IAAK,IAAI3U,KAAO2U,EAAc6pD,EAAQlqE,KAAKqgB,EAAQ3U,KAAM2f,EAAM3f,GAAO2U,EAAO3U,IAAQ,SAASkhE,IAAS9tE,KAAK6D,YAAc0oB,CAAO,CAAEuhD,EAAKtuE,UAAY+hB,EAAO/hB,UAAW+sB,EAAM/sB,UAAY,IAAIsuE,EAAQvhD,EAAMwhD,UAAYxsD,EAAO/hB,SAAyB,CAQzRggB,CAAO0yD,EAAUxV,GAYjBwV,EAAS1yE,UAAUqhB,MAAQ,WACzB,OAAOthB,OAAOqB,OAAOZ,KACvB,EAEAkyE,EAAS1yE,UAAUkI,SAAW,SAASkM,GACrC,OAAO5T,KAAK4T,QAAQg+D,OAAOrQ,MAAMvhE,KAAMA,KAAK4T,QAAQg+D,OAAOC,cAAcj+D,GAC3E,EAEOs+D,CAER,CAvB2B,CAuBzBD,EAEJ,GAAE/wE,KAAKlB,8BClCR,WACE,IAAsBmyE,EAEpB/G,EAAU,CAAC,EAAE3rE,eAEf0yE,EAAU,EAAQ,OAElBpvE,EAAOC,QAA6B,SAAU05D,GAG5C,SAASuV,EAAiB1wD,GACxB0wD,EAAiBlE,UAAUlqE,YAAY3C,KAAKlB,KAAMuhB,GAClDvhB,KAAKqF,MAAQ,EACf,CA4DA,OAvES,SAASknB,EAAOhL,GAAU,IAAK,IAAI3U,KAAO2U,EAAc6pD,EAAQlqE,KAAKqgB,EAAQ3U,KAAM2f,EAAM3f,GAAO2U,EAAO3U,IAAQ,SAASkhE,IAAS9tE,KAAK6D,YAAc0oB,CAAO,CAAEuhD,EAAKtuE,UAAY+hB,EAAO/hB,UAAW+sB,EAAM/sB,UAAY,IAAIsuE,EAAQvhD,EAAMwhD,UAAYxsD,EAAO/hB,SAAyB,CAMzRggB,CAAOyyD,EAAkBvV,GAOzBn9D,OAAO0Z,eAAeg5D,EAAiBzyE,UAAW,OAAQ,CACxDuG,IAAK,WACH,OAAO/F,KAAKqF,KACd,EACAwN,IAAK,SAASxN,GACZ,OAAOrF,KAAKqF,MAAQA,GAAS,EAC/B,IAGF9F,OAAO0Z,eAAeg5D,EAAiBzyE,UAAW,SAAU,CAC1DuG,IAAK,WACH,OAAO/F,KAAKqF,MAAM3D,MACpB,IAGFnC,OAAO0Z,eAAeg5D,EAAiBzyE,UAAW,cAAe,CAC/DuG,IAAK,WACH,OAAO/F,KAAKqF,KACd,EACAwN,IAAK,SAASxN,GACZ,OAAOrF,KAAKqF,MAAQA,GAAS,EAC/B,IAGF4sE,EAAiBzyE,UAAUqhB,MAAQ,WACjC,OAAOthB,OAAOqB,OAAOZ,KACvB,EAEAiyE,EAAiBzyE,UAAU4yE,cAAgB,SAAShrD,EAAQirD,GAC1D,MAAM,IAAIxmE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAS,EAAiBzyE,UAAU8yE,WAAa,SAASnV,GAC/C,MAAM,IAAItxD,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAS,EAAiBzyE,UAAU+yE,WAAa,SAASnrD,EAAQ+1C,GACvD,MAAM,IAAItxD,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAS,EAAiBzyE,UAAUgzE,WAAa,SAASprD,EAAQirD,GACvD,MAAM,IAAIxmE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAS,EAAiBzyE,UAAUizE,YAAc,SAASrrD,EAAQirD,EAAOlV,GAC/D,MAAM,IAAItxD,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAS,EAAiBzyE,UAAUsyE,YAAc,SAASzoE,GAChD,QAAK4oE,EAAiBlE,UAAU+D,YAAYrvE,MAAMzC,KAAMsC,WAAWwvE,YAAYzoE,IAG3EA,EAAKvE,OAAS9E,KAAK8E,IAIzB,EAEOmtE,CAER,CApEmC,CAoEjCE,EAEJ,GAAEjxE,KAAKlB,8BC7ER,WACE,IAAIsxE,EAAUW,EAEZ7G,EAAU,CAAC,EAAE3rE,eAEf6xE,EAAW,EAAQ,OAEnBW,EAAmB,EAAQ,OAE3BlvE,EAAOC,QAAuB,SAAU05D,GAGtC,SAASgW,EAAWnxD,EAAQnR,GAE1B,GADAsiE,EAAW3E,UAAUlqE,YAAY3C,KAAKlB,KAAMuhB,GAChC,MAARnR,EACF,MAAM,IAAIvE,MAAM,yBAA2B7L,KAAKwxE,aAElDxxE,KAAKgB,KAAO,WACZhB,KAAK6K,KAAOymE,EAASjB,QACrBrwE,KAAKqF,MAAQrF,KAAKuF,UAAUk8D,QAAQrxD,EACtC,CAUA,OA5BS,SAASmc,EAAOhL,GAAU,IAAK,IAAI3U,KAAO2U,EAAc6pD,EAAQlqE,KAAKqgB,EAAQ3U,KAAM2f,EAAM3f,GAAO2U,EAAO3U,IAAQ,SAASkhE,IAAS9tE,KAAK6D,YAAc0oB,CAAO,CAAEuhD,EAAKtuE,UAAY+hB,EAAO/hB,UAAW+sB,EAAM/sB,UAAY,IAAIsuE,EAAQvhD,EAAMwhD,UAAYxsD,EAAO/hB,SAAyB,CAQzRggB,CAAOkzD,EAAYhW,GAYnBgW,EAAWlzE,UAAUqhB,MAAQ,WAC3B,OAAOthB,OAAOqB,OAAOZ,KACvB,EAEA0yE,EAAWlzE,UAAUkI,SAAW,SAASkM,GACvC,OAAO5T,KAAK4T,QAAQg+D,OAAOnQ,QAAQzhE,KAAMA,KAAK4T,QAAQg+D,OAAOC,cAAcj+D,GAC7E,EAEO8+D,CAER,CAvB6B,CAuB3BT,EAEJ,GAAE/wE,KAAKlB,8BClCR,WACE,IAAyB2yE,EAAoBC,EAE7CD,EAAqB,EAAQ,OAE7BC,EAAmB,EAAQ,OAE3B7vE,EAAOC,QAAgC,WACrC,SAAS6vE,IAEP7yE,KAAK8yE,cAAgB,CACnB,kBAAkB,EAClB,kBAAkB,EAClB,UAAY,EACZ,0BAA0B,EAC1B,8BAA8B,EAC9B,UAAY,EACZ,gBAAiB,IAAIH,EACrB,SAAW,EACX,sBAAsB,EACtB,YAAc,EACd,0BAA0B,EAC1B,wBAAwB,EACxB,kBAAmB,GACnB,cAAe,GACf,wBAAwB,EACxB,UAAY,EACZ,eAAe,GAEjB3yE,KAAKghB,OAAsBzhB,OAAOqB,OAAOZ,KAAK8yE,cAChD,CA4BA,OA1BAvzE,OAAO0Z,eAAe45D,EAAoBrzE,UAAW,iBAAkB,CACrEuG,IAAK,WACH,OAAO,IAAI6sE,EAAiBrzE,OAAO6G,KAAKpG,KAAK8yE,eAC/C,IAGFD,EAAoBrzE,UAAUuzE,aAAe,SAAS/xE,GACpD,OAAIhB,KAAKghB,OAAOvhB,eAAeuB,GACtBhB,KAAKghB,OAAOhgB,GAEZ,IAEX,EAEA6xE,EAAoBrzE,UAAUwzE,gBAAkB,SAAShyE,EAAMqE,GAC7D,OAAO,CACT,EAEAwtE,EAAoBrzE,UAAUyzE,aAAe,SAASjyE,EAAMqE,GAC1D,OAAa,MAATA,EACKrF,KAAKghB,OAAOhgB,GAAQqE,SAEbrF,KAAKghB,OAAOhgB,EAE9B,EAEO6xE,CAER,CArDsC,EAuDxC,GAAE3xE,KAAKlB,0BC9DR,WAGE+C,EAAOC,QAA+B,WACpC,SAAS2vE,IAAsB,CAM/B,OAJAA,EAAmBnzE,UAAU0zE,YAAc,SAASlqE,GAClD,MAAM,IAAI6C,MAAM7C,EAClB,EAEO2pE,CAER,CATqC,EAWvC,GAAEzxE,KAAKlB,0BCdR,WAGE+C,EAAOC,QAAiC,WACtC,SAASmwE,IAAwB,CAsBjC,OApBAA,EAAqB3zE,UAAU4zE,WAAa,SAASC,EAASp4C,GAC5D,OAAO,CACT,EAEAk4C,EAAqB3zE,UAAU8zE,mBAAqB,SAASC,EAAeC,EAAUC,GACpF,MAAM,IAAI5nE,MAAM,sCAClB,EAEAsnE,EAAqB3zE,UAAUk0E,eAAiB,SAAS3B,EAAcwB,EAAe5R,GACpF,MAAM,IAAI91D,MAAM,sCAClB,EAEAsnE,EAAqB3zE,UAAUm0E,mBAAqB,SAASxoE,GAC3D,MAAM,IAAIU,MAAM,sCAClB,EAEAsnE,EAAqB3zE,UAAUo0E,WAAa,SAASP,EAASp4C,GAC5D,MAAM,IAAIpvB,MAAM,sCAClB,EAEOsnE,CAER,CAzBuC,EA2BzC,GAAEjyE,KAAKlB,0BC9BR,WAGE+C,EAAOC,QAA6B,WAClC,SAAS4vE,EAAiBjtD,GACxB3lB,KAAK2lB,IAAMA,GAAO,EACpB,CAgBA,OAdApmB,OAAO0Z,eAAe25D,EAAiBpzE,UAAW,SAAU,CAC1DuG,IAAK,WACH,OAAO/F,KAAK2lB,IAAIjkB,MAClB,IAGFkxE,EAAiBpzE,UAAU8E,KAAO,SAASma,GACzC,OAAOze,KAAK2lB,IAAIlH,IAAU,IAC5B,EAEAm0D,EAAiBpzE,UAAUigD,SAAW,SAAS5/B,GAC7C,OAAkC,IAA3B7f,KAAK2lB,IAAI9P,QAAQgK,EAC1B,EAEO+yD,CAER,CArBmC,EAuBrC,GAAE1xE,KAAKlB,8BC1BR,WACE,IAAIsxE,EAAyBa,EAE3B/G,EAAU,CAAC,EAAE3rE,eAEf0yE,EAAU,EAAQ,OAElBb,EAAW,EAAQ,OAEnBvuE,EAAOC,QAA0B,SAAU05D,GAGzC,SAASmX,EAActyD,EAAQuyD,EAAaC,EAAeC,EAAeC,EAAkB1vE,GAE1F,GADAsvE,EAAc9F,UAAUlqE,YAAY3C,KAAKlB,KAAMuhB,GAC5B,MAAfuyD,EACF,MAAM,IAAIjoE,MAAM,6BAA+B7L,KAAKwxE,aAEtD,GAAqB,MAAjBuC,EACF,MAAM,IAAIloE,MAAM,+BAAiC7L,KAAKwxE,UAAUsC,IAElE,IAAKE,EACH,MAAM,IAAInoE,MAAM,+BAAiC7L,KAAKwxE,UAAUsC,IAElE,IAAKG,EACH,MAAM,IAAIpoE,MAAM,kCAAoC7L,KAAKwxE,UAAUsC,IAKrE,GAHsC,IAAlCG,EAAiBp+D,QAAQ,OAC3Bo+D,EAAmB,IAAMA,IAEtBA,EAAiBh5D,MAAM,0CAC1B,MAAM,IAAIpP,MAAM,kFAAoF7L,KAAKwxE,UAAUsC,IAErH,GAAIvvE,IAAiB0vE,EAAiBh5D,MAAM,uBAC1C,MAAM,IAAIpP,MAAM,qDAAuD7L,KAAKwxE,UAAUsC,IAExF9zE,KAAK8zE,YAAc9zE,KAAKuF,UAAUvE,KAAK8yE,GACvC9zE,KAAK6K,KAAOymE,EAASV,qBACrB5wE,KAAK+zE,cAAgB/zE,KAAKuF,UAAUvE,KAAK+yE,GACzC/zE,KAAKg0E,cAAgBh0E,KAAKuF,UAAU2uE,WAAWF,GAC3CzvE,IACFvE,KAAKuE,aAAevE,KAAKuF,UAAU4uE,cAAc5vE,IAEnDvE,KAAKi0E,iBAAmBA,CAC1B,CAMA,OA/CS,SAAS1nD,EAAOhL,GAAU,IAAK,IAAI3U,KAAO2U,EAAc6pD,EAAQlqE,KAAKqgB,EAAQ3U,KAAM2f,EAAM3f,GAAO2U,EAAO3U,IAAQ,SAASkhE,IAAS9tE,KAAK6D,YAAc0oB,CAAO,CAAEuhD,EAAKtuE,UAAY+hB,EAAO/hB,UAAW+sB,EAAM/sB,UAAY,IAAIsuE,EAAQvhD,EAAMwhD,UAAYxsD,EAAO/hB,SAAyB,CAQzRggB,CAAOq0D,EAAenX,GAmCtBmX,EAAcr0E,UAAUkI,SAAW,SAASkM,GAC1C,OAAO5T,KAAK4T,QAAQg+D,OAAOwC,WAAWp0E,KAAMA,KAAK4T,QAAQg+D,OAAOC,cAAcj+D,GAChF,EAEOigE,CAER,CA1CgC,CA0C9B1B,EAEJ,GAAEjxE,KAAKlB,8BCrDR,WACE,IAAIsxE,EAAyBa,EAE3B/G,EAAU,CAAC,EAAE3rE,eAEf0yE,EAAU,EAAQ,OAElBb,EAAW,EAAQ,OAEnBvuE,EAAOC,QAA0B,SAAU05D,GAGzC,SAAS2X,EAAc9yD,EAAQvgB,EAAMqE,GAEnC,GADAgvE,EAActG,UAAUlqE,YAAY3C,KAAKlB,KAAMuhB,GACnC,MAARvgB,EACF,MAAM,IAAI6K,MAAM,6BAA+B7L,KAAKwxE,aAEjDnsE,IACHA,EAAQ,aAENzD,MAAM4L,QAAQnI,KAChBA,EAAQ,IAAMA,EAAMsV,KAAK,KAAO,KAElC3a,KAAKgB,KAAOhB,KAAKuF,UAAUvE,KAAKA,GAChChB,KAAK6K,KAAOymE,EAAST,mBACrB7wE,KAAKqF,MAAQrF,KAAKuF,UAAU+uE,gBAAgBjvE,EAC9C,CAMA,OA9BS,SAASknB,EAAOhL,GAAU,IAAK,IAAI3U,KAAO2U,EAAc6pD,EAAQlqE,KAAKqgB,EAAQ3U,KAAM2f,EAAM3f,GAAO2U,EAAO3U,IAAQ,SAASkhE,IAAS9tE,KAAK6D,YAAc0oB,CAAO,CAAEuhD,EAAKtuE,UAAY+hB,EAAO/hB,UAAW+sB,EAAM/sB,UAAY,IAAIsuE,EAAQvhD,EAAMwhD,UAAYxsD,EAAO/hB,SAAyB,CAQzRggB,CAAO60D,EAAe3X,GAkBtB2X,EAAc70E,UAAUkI,SAAW,SAASkM,GAC1C,OAAO5T,KAAK4T,QAAQg+D,OAAO2C,WAAWv0E,KAAMA,KAAK4T,QAAQg+D,OAAOC,cAAcj+D,GAChF,EAEOygE,CAER,CAzBgC,CAyB9BlC,EAEJ,GAAEjxE,KAAKlB,6BCpCR,WACE,IAAIsxE,EAAwBa,EAAShhD,EAEnCi6C,EAAU,CAAC,EAAE3rE,eAEf0xB,EAAW,kBAEXghD,EAAU,EAAQ,OAElBb,EAAW,EAAQ,OAEnBvuE,EAAOC,QAAyB,SAAU05D,GAGxC,SAAS8X,EAAajzD,EAAQkzD,EAAIzzE,EAAMqE,GAEtC,GADAmvE,EAAazG,UAAUlqE,YAAY3C,KAAKlB,KAAMuhB,GAClC,MAARvgB,EACF,MAAM,IAAI6K,MAAM,4BAA8B7L,KAAKwxE,UAAUxwE,IAE/D,GAAa,MAATqE,EACF,MAAM,IAAIwG,MAAM,6BAA+B7L,KAAKwxE,UAAUxwE,IAKhE,GAHAhB,KAAKy0E,KAAOA,EACZz0E,KAAKgB,KAAOhB,KAAKuF,UAAUvE,KAAKA,GAChChB,KAAK6K,KAAOymE,EAASnB,kBAChBh/C,EAAS9rB,GAGP,CACL,IAAKA,EAAMqvE,QAAUrvE,EAAMsvE,MACzB,MAAM,IAAI9oE,MAAM,yEAA2E7L,KAAKwxE,UAAUxwE,IAE5G,GAAIqE,EAAMqvE,QAAUrvE,EAAMsvE,MACxB,MAAM,IAAI9oE,MAAM,+DAAiE7L,KAAKwxE,UAAUxwE,IAYlG,GAVAhB,KAAK40E,UAAW,EACG,MAAfvvE,EAAMqvE,QACR10E,KAAK00E,MAAQ10E,KAAKuF,UAAUsvE,SAASxvE,EAAMqvE,QAE1B,MAAfrvE,EAAMsvE,QACR30E,KAAK20E,MAAQ30E,KAAKuF,UAAUuvE,SAASzvE,EAAMsvE,QAE1B,MAAftvE,EAAM0vE,QACR/0E,KAAK+0E,MAAQ/0E,KAAKuF,UAAUyvE,SAAS3vE,EAAM0vE,QAEzC/0E,KAAKy0E,IAAMz0E,KAAK+0E,MAClB,MAAM,IAAIlpE,MAAM,8DAAgE7L,KAAKwxE,UAAUxwE,GAEnG,MAtBEhB,KAAKqF,MAAQrF,KAAKuF,UAAU0vE,eAAe5vE,GAC3CrF,KAAK40E,UAAW,CAsBpB,CA0CA,OAzFS,SAASroD,EAAOhL,GAAU,IAAK,IAAI3U,KAAO2U,EAAc6pD,EAAQlqE,KAAKqgB,EAAQ3U,KAAM2f,EAAM3f,GAAO2U,EAAO3U,IAAQ,SAASkhE,IAAS9tE,KAAK6D,YAAc0oB,CAAO,CAAEuhD,EAAKtuE,UAAY+hB,EAAO/hB,UAAW+sB,EAAM/sB,UAAY,IAAIsuE,EAAQvhD,EAAMwhD,UAAYxsD,EAAO/hB,SAAyB,CAUzRggB,CAAOg1D,EAAc9X,GAuCrBn9D,OAAO0Z,eAAeu7D,EAAah1E,UAAW,WAAY,CACxDuG,IAAK,WACH,OAAO/F,KAAK00E,KACd,IAGFn1E,OAAO0Z,eAAeu7D,EAAah1E,UAAW,WAAY,CACxDuG,IAAK,WACH,OAAO/F,KAAK20E,KACd,IAGFp1E,OAAO0Z,eAAeu7D,EAAah1E,UAAW,eAAgB,CAC5DuG,IAAK,WACH,OAAO/F,KAAK+0E,OAAS,IACvB,IAGFx1E,OAAO0Z,eAAeu7D,EAAah1E,UAAW,gBAAiB,CAC7DuG,IAAK,WACH,OAAO,IACT,IAGFxG,OAAO0Z,eAAeu7D,EAAah1E,UAAW,cAAe,CAC3DuG,IAAK,WACH,OAAO,IACT,IAGFxG,OAAO0Z,eAAeu7D,EAAah1E,UAAW,aAAc,CAC1DuG,IAAK,WACH,OAAO,IACT,IAGFyuE,EAAah1E,UAAUkI,SAAW,SAASkM,GACzC,OAAO5T,KAAK4T,QAAQg+D,OAAOsD,UAAUl1E,KAAMA,KAAK4T,QAAQg+D,OAAOC,cAAcj+D,GAC/E,EAEO4gE,CAER,CAlF+B,CAkF7BrC,EAEJ,GAAEjxE,KAAKlB,8BC/FR,WACE,IAAIsxE,EAA0Ba,EAE5B/G,EAAU,CAAC,EAAE3rE,eAEf0yE,EAAU,EAAQ,OAElBb,EAAW,EAAQ,OAEnBvuE,EAAOC,QAA2B,SAAU05D,GAG1C,SAASyY,EAAe5zD,EAAQvgB,EAAMqE,GAEpC,GADA8vE,EAAepH,UAAUlqE,YAAY3C,KAAKlB,KAAMuhB,GACpC,MAARvgB,EACF,MAAM,IAAI6K,MAAM,8BAAgC7L,KAAKwxE,UAAUxwE,IAEjE,IAAKqE,EAAMqvE,QAAUrvE,EAAMsvE,MACzB,MAAM,IAAI9oE,MAAM,qEAAuE7L,KAAKwxE,UAAUxwE,IAExGhB,KAAKgB,KAAOhB,KAAKuF,UAAUvE,KAAKA,GAChChB,KAAK6K,KAAOymE,EAASb,oBACF,MAAfprE,EAAMqvE,QACR10E,KAAK00E,MAAQ10E,KAAKuF,UAAUsvE,SAASxvE,EAAMqvE,QAE1B,MAAfrvE,EAAMsvE,QACR30E,KAAK20E,MAAQ30E,KAAKuF,UAAUuvE,SAASzvE,EAAMsvE,OAE/C,CAkBA,OA5CS,SAASpoD,EAAOhL,GAAU,IAAK,IAAI3U,KAAO2U,EAAc6pD,EAAQlqE,KAAKqgB,EAAQ3U,KAAM2f,EAAM3f,GAAO2U,EAAO3U,IAAQ,SAASkhE,IAAS9tE,KAAK6D,YAAc0oB,CAAO,CAAEuhD,EAAKtuE,UAAY+hB,EAAO/hB,UAAW+sB,EAAM/sB,UAAY,IAAIsuE,EAAQvhD,EAAMwhD,UAAYxsD,EAAO/hB,SAAyB,CAQzRggB,CAAO21D,EAAgBzY,GAoBvBn9D,OAAO0Z,eAAek8D,EAAe31E,UAAW,WAAY,CAC1DuG,IAAK,WACH,OAAO/F,KAAK00E,KACd,IAGFn1E,OAAO0Z,eAAek8D,EAAe31E,UAAW,WAAY,CAC1DuG,IAAK,WACH,OAAO/F,KAAK20E,KACd,IAGFQ,EAAe31E,UAAUkI,SAAW,SAASkM,GAC3C,OAAO5T,KAAK4T,QAAQg+D,OAAOwD,YAAYp1E,KAAMA,KAAK4T,QAAQg+D,OAAOC,cAAcj+D,GACjF,EAEOuhE,CAER,CAvCiC,CAuC/BhD,EAEJ,GAAEjxE,KAAKlB,8BClDR,WACE,IAAIsxE,EAA0Ba,EAAShhD,EAErCi6C,EAAU,CAAC,EAAE3rE,eAEf0xB,EAAW,kBAEXghD,EAAU,EAAQ,OAElBb,EAAW,EAAQ,OAEnBvuE,EAAOC,QAA2B,SAAU05D,GAG1C,SAAS2Y,EAAe9zD,EAAQ0Z,EAASq6C,EAAUC,GACjD,IAAI/zD,EACJ6zD,EAAetH,UAAUlqE,YAAY3C,KAAKlB,KAAMuhB,GAC5C4P,EAAS8J,KACIA,GAAfzZ,EAAMyZ,GAAuBA,QAASq6C,EAAW9zD,EAAI8zD,SAAUC,EAAa/zD,EAAI+zD,YAE7Et6C,IACHA,EAAU,OAEZj7B,KAAK6K,KAAOymE,EAASZ,YACrB1wE,KAAKi7B,QAAUj7B,KAAKuF,UAAUiwE,WAAWv6C,GACzB,MAAZq6C,IACFt1E,KAAKs1E,SAAWt1E,KAAKuF,UAAUkwE,YAAYH,IAE3B,MAAdC,IACFv1E,KAAKu1E,WAAav1E,KAAKuF,UAAUmwE,cAAcH,GAEnD,CAMA,OAnCS,SAAShpD,EAAOhL,GAAU,IAAK,IAAI3U,KAAO2U,EAAc6pD,EAAQlqE,KAAKqgB,EAAQ3U,KAAM2f,EAAM3f,GAAO2U,EAAO3U,IAAQ,SAASkhE,IAAS9tE,KAAK6D,YAAc0oB,CAAO,CAAEuhD,EAAKtuE,UAAY+hB,EAAO/hB,UAAW+sB,EAAM/sB,UAAY,IAAIsuE,EAAQvhD,EAAMwhD,UAAYxsD,EAAO/hB,SAAyB,CAUzRggB,CAAO61D,EAAgB3Y,GAqBvB2Y,EAAe71E,UAAUkI,SAAW,SAASkM,GAC3C,OAAO5T,KAAK4T,QAAQg+D,OAAO+D,YAAY31E,KAAMA,KAAK4T,QAAQg+D,OAAOC,cAAcj+D,GACjF,EAEOyhE,CAER,CA5BiC,CA4B/BlD,EAEJ,GAAEjxE,KAAKlB,8BCzCR,WACE,IAAIsxE,EAAUuC,EAAeQ,EAAeG,EAAcW,EAA4BS,EAAiBzD,EAAShhD,EAE9Gi6C,EAAU,CAAC,EAAE3rE,eAEf0xB,EAAW,kBAEXghD,EAAU,EAAQ,OAElBb,EAAW,EAAQ,OAEnBuC,EAAgB,EAAQ,OAExBW,EAAe,EAAQ,MAEvBH,EAAgB,EAAQ,OAExBc,EAAiB,EAAQ,OAEzBS,EAAkB,EAAQ,OAE1B7yE,EAAOC,QAAuB,SAAU05D,GAGtC,SAASmZ,EAAWt0D,EAAQmzD,EAAOC,GACjC,IAAIpoD,EAAO/qB,EAAGa,EAAKmf,EAAKs0D,EAAMC,EAG9B,GAFAF,EAAW9H,UAAUlqE,YAAY3C,KAAKlB,KAAMuhB,GAC5CvhB,KAAK6K,KAAOymE,EAASf,QACjBhvD,EAAOwB,SAET,IAAKvhB,EAAI,EAAGa,GADZmf,EAAMD,EAAOwB,UACSrhB,OAAQF,EAAIa,EAAKb,IAErC,IADA+qB,EAAQ/K,EAAIhgB,IACFqJ,OAASymE,EAASxB,QAAS,CACnC9vE,KAAKgB,KAAOurB,EAAMvrB,KAClB,KACF,CAGJhB,KAAKg2E,eAAiBz0D,EAClB4P,EAASujD,KACGA,GAAdoB,EAAOpB,GAAoBA,MAAOC,EAAQmB,EAAKnB,OAEpC,MAATA,IACqBA,GAAvBoB,EAAO,CAACrB,EAAOC,IAAqB,GAAID,EAAQqB,EAAK,IAE1C,MAATrB,IACF10E,KAAK00E,MAAQ10E,KAAKuF,UAAUsvE,SAASH,IAE1B,MAATC,IACF30E,KAAK20E,MAAQ30E,KAAKuF,UAAUuvE,SAASH,GAEzC,CAiIA,OAlLS,SAASpoD,EAAOhL,GAAU,IAAK,IAAI3U,KAAO2U,EAAc6pD,EAAQlqE,KAAKqgB,EAAQ3U,KAAM2f,EAAM3f,GAAO2U,EAAO3U,IAAQ,SAASkhE,IAAS9tE,KAAK6D,YAAc0oB,CAAO,CAAEuhD,EAAKtuE,UAAY+hB,EAAO/hB,UAAW+sB,EAAM/sB,UAAY,IAAIsuE,EAAQvhD,EAAMwhD,UAAYxsD,EAAO/hB,SAAyB,CAoBzRggB,CAAOq2D,EAAYnZ,GA+BnBn9D,OAAO0Z,eAAe48D,EAAWr2E,UAAW,WAAY,CACtDuG,IAAK,WACH,IAAIwmB,EAAO/qB,EAAGa,EAAKmpC,EAAOhqB,EAG1B,IAFAgqB,EAAQ,CAAC,EAEJhqC,EAAI,EAAGa,GADZmf,EAAMxhB,KAAK+iB,UACWrhB,OAAQF,EAAIa,EAAKb,KACrC+qB,EAAQ/K,EAAIhgB,IACDqJ,OAASymE,EAASnB,mBAAuB5jD,EAAMkoD,KACxDjpC,EAAMjf,EAAMvrB,MAAQurB,GAGxB,OAAO,IAAIqpD,EAAgBpqC,EAC7B,IAGFjsC,OAAO0Z,eAAe48D,EAAWr2E,UAAW,YAAa,CACvDuG,IAAK,WACH,IAAIwmB,EAAO/qB,EAAGa,EAAKmpC,EAAOhqB,EAG1B,IAFAgqB,EAAQ,CAAC,EAEJhqC,EAAI,EAAGa,GADZmf,EAAMxhB,KAAK+iB,UACWrhB,OAAQF,EAAIa,EAAKb,KACrC+qB,EAAQ/K,EAAIhgB,IACFqJ,OAASymE,EAASb,sBAC1BjlC,EAAMjf,EAAMvrB,MAAQurB,GAGxB,OAAO,IAAIqpD,EAAgBpqC,EAC7B,IAGFjsC,OAAO0Z,eAAe48D,EAAWr2E,UAAW,WAAY,CACtDuG,IAAK,WACH,OAAO/F,KAAK00E,KACd,IAGFn1E,OAAO0Z,eAAe48D,EAAWr2E,UAAW,WAAY,CACtDuG,IAAK,WACH,OAAO/F,KAAK20E,KACd,IAGFp1E,OAAO0Z,eAAe48D,EAAWr2E,UAAW,iBAAkB,CAC5DuG,IAAK,WACH,MAAM,IAAI8F,MAAM,sCAAwC7L,KAAKwxE,YAC/D,IAGFqE,EAAWr2E,UAAUqqC,QAAU,SAAS7oC,EAAMqE,GAC5C,IAAIknB,EAGJ,OAFAA,EAAQ,IAAI8nD,EAAcr0E,KAAMgB,EAAMqE,GACtCrF,KAAK+iB,SAASviB,KAAK+rB,GACZvsB,IACT,EAEA61E,EAAWr2E,UAAUy2E,QAAU,SAASnC,EAAaC,EAAeC,EAAeC,EAAkB1vE,GACnG,IAAIgoB,EAGJ,OAFAA,EAAQ,IAAIsnD,EAAc7zE,KAAM8zE,EAAaC,EAAeC,EAAeC,EAAkB1vE,GAC7FvE,KAAK+iB,SAASviB,KAAK+rB,GACZvsB,IACT,EAEA61E,EAAWr2E,UAAUykE,OAAS,SAASjjE,EAAMqE,GAC3C,IAAIknB,EAGJ,OAFAA,EAAQ,IAAIioD,EAAax0E,MAAM,EAAOgB,EAAMqE,GAC5CrF,KAAK+iB,SAASviB,KAAK+rB,GACZvsB,IACT,EAEA61E,EAAWr2E,UAAU02E,QAAU,SAASl1E,EAAMqE,GAC5C,IAAIknB,EAGJ,OAFAA,EAAQ,IAAIioD,EAAax0E,MAAM,EAAMgB,EAAMqE,GAC3CrF,KAAK+iB,SAASviB,KAAK+rB,GACZvsB,IACT,EAEA61E,EAAWr2E,UAAU22E,SAAW,SAASn1E,EAAMqE,GAC7C,IAAIknB,EAGJ,OAFAA,EAAQ,IAAI4oD,EAAen1E,KAAMgB,EAAMqE,GACvCrF,KAAK+iB,SAASviB,KAAK+rB,GACZvsB,IACT,EAEA61E,EAAWr2E,UAAUkI,SAAW,SAASkM,GACvC,OAAO5T,KAAK4T,QAAQg+D,OAAOwE,QAAQp2E,KAAMA,KAAK4T,QAAQg+D,OAAOC,cAAcj+D,GAC7E,EAEAiiE,EAAWr2E,UAAUssE,IAAM,SAAS9qE,EAAMqE,GACxC,OAAOrF,KAAK6pC,QAAQ7oC,EAAMqE,EAC5B,EAEAwwE,EAAWr2E,UAAUwsE,IAAM,SAAS8H,EAAaC,EAAeC,EAAeC,EAAkB1vE,GAC/F,OAAOvE,KAAKi2E,QAAQnC,EAAaC,EAAeC,EAAeC,EAAkB1vE,EACnF,EAEAsxE,EAAWr2E,UAAU62E,IAAM,SAASr1E,EAAMqE,GACxC,OAAOrF,KAAKikE,OAAOjjE,EAAMqE,EAC3B,EAEAwwE,EAAWr2E,UAAU82E,KAAO,SAASt1E,EAAMqE,GACzC,OAAOrF,KAAKk2E,QAAQl1E,EAAMqE,EAC5B,EAEAwwE,EAAWr2E,UAAU+2E,IAAM,SAASv1E,EAAMqE,GACxC,OAAOrF,KAAKm2E,SAASn1E,EAAMqE,EAC7B,EAEAwwE,EAAWr2E,UAAUusE,GAAK,WACxB,OAAO/rE,KAAK0rC,QAAU1rC,KAAKg2E,cAC7B,EAEAH,EAAWr2E,UAAUsyE,YAAc,SAASzoE,GAC1C,QAAKwsE,EAAW9H,UAAU+D,YAAYrvE,MAAMzC,KAAMsC,WAAWwvE,YAAYzoE,IAGrEA,EAAKrI,OAAShB,KAAKgB,MAGnBqI,EAAKmqE,WAAaxzE,KAAKwzE,UAGvBnqE,EAAKoqE,WAAazzE,KAAKyzE,QAI7B,EAEOoC,CAER,CAjK6B,CAiK3B1D,EAEJ,GAAEjxE,KAAKlB,8BCxLR,WACE,IAAIsxE,EAAUuB,EAAqBM,EAAmChB,EAASqE,EAAiBC,EAAgBjvE,EAE9G4jE,EAAU,CAAC,EAAE3rE,eAEf+H,EAAgB,uBAEhB2rE,EAAuB,EAAQ,OAE/BN,EAAsB,EAAQ,OAE9BV,EAAU,EAAQ,OAElBb,EAAW,EAAQ,OAEnBmF,EAAiB,EAAQ,OAEzBD,EAAkB,EAAQ,OAE1BzzE,EAAOC,QAAwB,SAAU05D,GAGvC,SAASga,EAAY9iE,GACnB8iE,EAAY3I,UAAUlqE,YAAY3C,KAAKlB,KAAM,MAC7CA,KAAKgB,KAAO,YACZhB,KAAK6K,KAAOymE,EAAShB,SACrBtwE,KAAK22E,YAAc,KACnB32E,KAAK42E,UAAY,IAAI/D,EACrBj/D,IAAYA,EAAU,CAAC,GAClBA,EAAQg+D,SACXh+D,EAAQg+D,OAAS,IAAI4E,GAEvBx2E,KAAK4T,QAAUA,EACf5T,KAAKuF,UAAY,IAAIkxE,EAAe7iE,EACtC,CA0MA,OA1OS,SAAS2Y,EAAOhL,GAAU,IAAK,IAAI3U,KAAO2U,EAAc6pD,EAAQlqE,KAAKqgB,EAAQ3U,KAAM2f,EAAM3f,GAAO2U,EAAO3U,IAAQ,SAASkhE,IAAS9tE,KAAK6D,YAAc0oB,CAAO,CAAEuhD,EAAKtuE,UAAY+hB,EAAO/hB,UAAW+sB,EAAM/sB,UAAY,IAAIsuE,EAAQvhD,EAAMwhD,UAAYxsD,EAAO/hB,SAAyB,CAkBzRggB,CAAOk3D,EAAaha,GAgBpBn9D,OAAO0Z,eAAey9D,EAAYl3E,UAAW,iBAAkB,CAC7D6F,MAAO,IAAI8tE,IAGb5zE,OAAO0Z,eAAey9D,EAAYl3E,UAAW,UAAW,CACtDuG,IAAK,WACH,IAAIwmB,EAAO/qB,EAAGa,EAAKmf,EAEnB,IAAKhgB,EAAI,EAAGa,GADZmf,EAAMxhB,KAAK+iB,UACWrhB,OAAQF,EAAIa,EAAKb,IAErC,IADA+qB,EAAQ/K,EAAIhgB,IACFqJ,OAASymE,EAASf,QAC1B,OAAOhkD,EAGX,OAAO,IACT,IAGFhtB,OAAO0Z,eAAey9D,EAAYl3E,UAAW,kBAAmB,CAC9DuG,IAAK,WACH,OAAO/F,KAAK62E,YAAc,IAC5B,IAGFt3E,OAAO0Z,eAAey9D,EAAYl3E,UAAW,gBAAiB,CAC5DuG,IAAK,WACH,OAAO,IACT,IAGFxG,OAAO0Z,eAAey9D,EAAYl3E,UAAW,sBAAuB,CAClEuG,IAAK,WACH,OAAO,CACT,IAGFxG,OAAO0Z,eAAey9D,EAAYl3E,UAAW,cAAe,CAC1DuG,IAAK,WACH,OAA6B,IAAzB/F,KAAK+iB,SAASrhB,QAAgB1B,KAAK+iB,SAAS,GAAGlY,OAASymE,EAASZ,YAC5D1wE,KAAK+iB,SAAS,GAAGuyD,SAEjB,IAEX,IAGF/1E,OAAO0Z,eAAey9D,EAAYl3E,UAAW,gBAAiB,CAC5DuG,IAAK,WACH,OAA6B,IAAzB/F,KAAK+iB,SAASrhB,QAAgB1B,KAAK+iB,SAAS,GAAGlY,OAASymE,EAASZ,aAC5B,QAAhC1wE,KAAK+iB,SAAS,GAAGwyD,UAI5B,IAGFh2E,OAAO0Z,eAAey9D,EAAYl3E,UAAW,aAAc,CACzDuG,IAAK,WACH,OAA6B,IAAzB/F,KAAK+iB,SAASrhB,QAAgB1B,KAAK+iB,SAAS,GAAGlY,OAASymE,EAASZ,YAC5D1wE,KAAK+iB,SAAS,GAAGkY,QAEjB,KAEX,IAGF17B,OAAO0Z,eAAey9D,EAAYl3E,UAAW,MAAO,CAClDuG,IAAK,WACH,OAAO/F,KAAK22E,WACd,IAGFp3E,OAAO0Z,eAAey9D,EAAYl3E,UAAW,SAAU,CACrDuG,IAAK,WACH,OAAO,IACT,IAGFxG,OAAO0Z,eAAey9D,EAAYl3E,UAAW,aAAc,CACzDuG,IAAK,WACH,OAAO,IACT,IAGFxG,OAAO0Z,eAAey9D,EAAYl3E,UAAW,eAAgB,CAC3DuG,IAAK,WACH,OAAO,IACT,IAGFxG,OAAO0Z,eAAey9D,EAAYl3E,UAAW,cAAe,CAC1DuG,IAAK,WACH,OAAO,IACT,IAGF2wE,EAAYl3E,UAAU0oB,IAAM,SAAS0pD,GACnC,IAAIkF,EAQJ,OAPAA,EAAgB,CAAC,EACZlF,EAEMpqE,EAAcoqE,KACvBkF,EAAgBlF,EAChBA,EAAS5xE,KAAK4T,QAAQg+D,QAHtBA,EAAS5xE,KAAK4T,QAAQg+D,OAKjBA,EAAOpoE,SAASxJ,KAAM4xE,EAAOC,cAAciF,GACpD,EAEAJ,EAAYl3E,UAAUkI,SAAW,SAASkM,GACxC,OAAO5T,KAAK4T,QAAQg+D,OAAOpoE,SAASxJ,KAAMA,KAAK4T,QAAQg+D,OAAOC,cAAcj+D,GAC9E,EAEA8iE,EAAYl3E,UAAU0K,cAAgB,SAAS82D,GAC7C,MAAM,IAAIn1D,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAkF,EAAYl3E,UAAUu3E,uBAAyB,WAC7C,MAAM,IAAIlrE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAkF,EAAYl3E,UAAUw3E,eAAiB,SAASlyE,GAC9C,MAAM,IAAI+G,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAkF,EAAYl3E,UAAUy3E,cAAgB,SAASnyE,GAC7C,MAAM,IAAI+G,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAkF,EAAYl3E,UAAU03E,mBAAqB,SAASpyE,GAClD,MAAM,IAAI+G,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAkF,EAAYl3E,UAAU23E,4BAA8B,SAASnzE,EAAQc,GACnE,MAAM,IAAI+G,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAkF,EAAYl3E,UAAU43E,gBAAkB,SAASp2E,GAC/C,MAAM,IAAI6K,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAkF,EAAYl3E,UAAU63E,sBAAwB,SAASr2E,GACrD,MAAM,IAAI6K,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAkF,EAAYl3E,UAAU83E,qBAAuB,SAASC,GACpD,MAAM,IAAI1rE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAkF,EAAYl3E,UAAUg4E,WAAa,SAASC,EAAc5iE,GACxD,MAAM,IAAIhJ,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAkF,EAAYl3E,UAAUk4E,gBAAkB,SAAS3F,EAAcwB,GAC7D,MAAM,IAAI1nE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAkF,EAAYl3E,UAAUm4E,kBAAoB,SAAS5F,EAAcwB,GAC/D,MAAM,IAAI1nE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAkF,EAAYl3E,UAAUo4E,uBAAyB,SAAS7F,EAAcC,GACpE,MAAM,IAAInmE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAkF,EAAYl3E,UAAU8xB,eAAiB,SAASumD,GAC9C,MAAM,IAAIhsE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAkF,EAAYl3E,UAAUs4E,UAAY,SAAS/xD,GACzC,MAAM,IAAIla,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAkF,EAAYl3E,UAAUu4E,kBAAoB,WACxC,MAAM,IAAIlsE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAkF,EAAYl3E,UAAUw4E,WAAa,SAAS3uE,EAAM0oE,EAAcwB,GAC9D,MAAM,IAAI1nE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAkF,EAAYl3E,UAAUy4E,uBAAyB,SAASC,GACtD,MAAM,IAAIrsE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAkF,EAAYl3E,UAAUiK,YAAc,SAAS0uE,GAC3C,MAAM,IAAItsE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAkF,EAAYl3E,UAAU44E,YAAc,WAClC,MAAM,IAAIvsE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAkF,EAAYl3E,UAAU64E,mBAAqB,SAAS3sC,EAAM4sC,EAAYxmE,GACpE,MAAM,IAAIjG,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAkF,EAAYl3E,UAAU+4E,iBAAmB,SAAS7sC,EAAM4sC,EAAYxmE,GAClE,MAAM,IAAIjG,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEOkF,CAER,CA3N8B,CA2N5BvE,EAEJ,GAAEjxE,KAAKlB,8BChPR,WACE,IAAIsxE,EAAUkH,EAAajH,EAAcW,EAAUQ,EAAYmB,EAAeQ,EAAeG,EAAcW,EAAgBE,EAAgBQ,EAAYa,EAA4B+B,EAAYC,EAA0BC,EAAQnC,EAAiBC,EAAgBmC,EAAS7H,EAAU9oC,EAAY9W,EAAU3pB,EAAega,EACxT4pD,EAAU,CAAC,EAAE3rE,eAEf+hB,EAAM,EAAQ,OAAc2P,EAAW3P,EAAI2P,SAAU8W,EAAazmB,EAAIymB,WAAYzgC,EAAgBga,EAAIha,cAAeupE,EAAWvvD,EAAIuvD,SAEpIO,EAAW,EAAQ,OAEnBoF,EAAc,EAAQ,OAEtB+B,EAAa,EAAQ,OAErBvG,EAAW,EAAQ,OAEnBQ,EAAa,EAAQ,OAErBiG,EAAS,EAAQ,MAEjBC,EAAU,EAAQ,OAElBF,EAA2B,EAAQ,OAEnCrD,EAAiB,EAAQ,OAEzBQ,EAAa,EAAQ,OAErBhC,EAAgB,EAAQ,OAExBW,EAAe,EAAQ,MAEvBH,EAAgB,EAAQ,OAExBc,EAAiB,EAAQ,OAEzB5D,EAAe,EAAQ,OAEvBkF,EAAiB,EAAQ,OAEzBD,EAAkB,EAAQ,OAE1BgC,EAAc,EAAQ,OAEtBz1E,EAAOC,QAA0B,WAC/B,SAAS61E,EAAcjlE,EAASklE,EAAQC,GACtC,IAAIjC,EACJ92E,KAAKgB,KAAO,OACZhB,KAAK6K,KAAOymE,EAAShB,SACrB18D,IAAYA,EAAU,CAAC,GACvBkjE,EAAgB,CAAC,EACZljE,EAAQg+D,OAEFpqE,EAAcoM,EAAQg+D,UAC/BkF,EAAgBljE,EAAQg+D,OACxBh+D,EAAQg+D,OAAS,IAAI4E,GAHrB5iE,EAAQg+D,OAAS,IAAI4E,EAKvBx2E,KAAK4T,QAAUA,EACf5T,KAAK4xE,OAASh+D,EAAQg+D,OACtB5xE,KAAK82E,cAAgB92E,KAAK4xE,OAAOC,cAAciF,GAC/C92E,KAAKuF,UAAY,IAAIkxE,EAAe7iE,GACpC5T,KAAKg5E,eAAiBF,GAAU,WAAY,EAC5C94E,KAAKi5E,cAAgBF,GAAS,WAAY,EAC1C/4E,KAAKk5E,YAAc,KACnBl5E,KAAKm5E,cAAgB,EACrBn5E,KAAKo5E,SAAW,CAAC,EACjBp5E,KAAKq5E,iBAAkB,EACvBr5E,KAAKs5E,mBAAoB,EACzBt5E,KAAK0rC,KAAO,IACd,CAucA,OArcAmtC,EAAcr5E,UAAU+5E,gBAAkB,SAASlwE,GACjD,IAAI2iE,EAAKwN,EAASnoC,EAAY9kB,EAAO/qB,EAAGa,EAAKyzE,EAAMC,EACnD,OAAQ1sE,EAAKwB,MACX,KAAKymE,EAASrB,MACZjwE,KAAKuhE,MAAMl4D,EAAKhE,OAChB,MACF,KAAKisE,EAASjB,QACZrwE,KAAKyhE,QAAQp4D,EAAKhE,OAClB,MACF,KAAKisE,EAASxB,QAGZ,IAAK0J,KAFLnoC,EAAa,CAAC,EACdykC,EAAOzsE,EAAKowE,QAELrO,EAAQlqE,KAAK40E,EAAM0D,KACxBxN,EAAM8J,EAAK0D,GACXnoC,EAAWmoC,GAAWxN,EAAI3mE,OAE5BrF,KAAKqJ,KAAKA,EAAKrI,KAAMqwC,GACrB,MACF,KAAKigC,EAASR,MACZ9wE,KAAK05E,QACL,MACF,KAAKpI,EAASX,IACZ3wE,KAAK2E,IAAI0E,EAAKhE,OACd,MACF,KAAKisE,EAAStB,KACZhwE,KAAKoQ,KAAK/G,EAAKhE,OACf,MACF,KAAKisE,EAASlB,sBACZpwE,KAAK25E,YAAYtwE,EAAKrF,OAAQqF,EAAKhE,OACnC,MACF,QACE,MAAM,IAAIwG,MAAM,uDAAyDxC,EAAKxF,YAAY7C,MAG9F,IAAKQ,EAAI,EAAGa,GADZ0zE,EAAO1sE,EAAK0Z,UACWrhB,OAAQF,EAAIa,EAAKb,IACtC+qB,EAAQwpD,EAAKv0E,GACbxB,KAAKu5E,gBAAgBhtD,GACjBA,EAAM1hB,OAASymE,EAASxB,SAC1B9vE,KAAK+rE,KAGT,OAAO/rE,IACT,EAEA64E,EAAcr5E,UAAUk6E,MAAQ,WAC9B,OAAO15E,IACT,EAEA64E,EAAcr5E,UAAU6J,KAAO,SAASrI,EAAMqwC,EAAYjhC,GACxD,IAAI0lE,EACJ,GAAY,MAAR90E,EACF,MAAM,IAAI6K,MAAM,sBAElB,GAAI7L,KAAK0rC,OAA+B,IAAvB1rC,KAAKm5E,aACpB,MAAM,IAAIttE,MAAM,yCAA2C7L,KAAKwxE,UAAUxwE,IAkB5E,OAhBAhB,KAAK45E,cACL54E,EAAO+vE,EAAS/vE,GACE,MAAdqwC,IACFA,EAAa,CAAC,GAEhBA,EAAa0/B,EAAS1/B,GACjBlgB,EAASkgB,KACejhC,GAA3B0lE,EAAO,CAACzkC,EAAYjhC,IAAmB,GAAIihC,EAAaykC,EAAK,IAE/D91E,KAAKk5E,YAAc,IAAIT,EAAWz4E,KAAMgB,EAAMqwC,GAC9CrxC,KAAKk5E,YAAYn2D,UAAW,EAC5B/iB,KAAKm5E,eACLn5E,KAAKo5E,SAASp5E,KAAKm5E,cAAgBn5E,KAAKk5E,YAC5B,MAAR9oE,GACFpQ,KAAKoQ,KAAKA,GAELpQ,IACT,EAEA64E,EAAcr5E,UAAUqqC,QAAU,SAAS7oC,EAAMqwC,EAAYjhC,GAC3D,IAAImc,EAAO/qB,EAAGa,EAAKw3E,EAAmB/D,EAAMpqC,EAC5C,GAAI1rC,KAAKk5E,aAAel5E,KAAKk5E,YAAYruE,OAASymE,EAASf,QACzDvwE,KAAKu0E,WAAW9xE,MAAMzC,KAAMsC,gBAE5B,GAAIV,MAAM4L,QAAQxM,IAASmwB,EAASnwB,IAASinC,EAAWjnC,GAOtD,IANA64E,EAAoB75E,KAAK4T,QAAQkmE,aACjC95E,KAAK4T,QAAQkmE,cAAe,GAC5BpuC,EAAO,IAAIgrC,EAAY12E,KAAK4T,SAASi2B,QAAQ,cACxCA,QAAQ7oC,GACbhB,KAAK4T,QAAQkmE,aAAeD,EAEvBr4E,EAAI,EAAGa,GADZyzE,EAAOpqC,EAAK3oB,UACWrhB,OAAQF,EAAIa,EAAKb,IACtC+qB,EAAQupD,EAAKt0E,GACbxB,KAAKu5E,gBAAgBhtD,GACjBA,EAAM1hB,OAASymE,EAASxB,SAC1B9vE,KAAK+rE,UAIT/rE,KAAKqJ,KAAKrI,EAAMqwC,EAAYjhC,GAGhC,OAAOpQ,IACT,EAEA64E,EAAcr5E,UAAU8xC,UAAY,SAAStwC,EAAMqE,GACjD,IAAIm0E,EAAS/H,EACb,IAAKzxE,KAAKk5E,aAAel5E,KAAKk5E,YAAYn2D,SACxC,MAAM,IAAIlX,MAAM,4EAA8E7L,KAAKwxE,UAAUxwE,IAK/G,GAHY,MAARA,IACFA,EAAO+vE,EAAS/vE,IAEdmwB,EAASnwB,GACX,IAAKw4E,KAAWx4E,EACToqE,EAAQlqE,KAAKF,EAAMw4E,KACxB/H,EAAWzwE,EAAKw4E,GAChBx5E,KAAKsxC,UAAUkoC,EAAS/H,SAGtBxpC,EAAW5iC,KACbA,EAAQA,EAAM5C,SAEZzC,KAAK4T,QAAQmmE,oBAAgC,MAAT10E,EACtCrF,KAAKk5E,YAAYO,QAAQz4E,GAAQ,IAAIuwE,EAAavxE,KAAMgB,EAAM,IAC5C,MAATqE,IACTrF,KAAKk5E,YAAYO,QAAQz4E,GAAQ,IAAIuwE,EAAavxE,KAAMgB,EAAMqE,IAGlE,OAAOrF,IACT,EAEA64E,EAAcr5E,UAAU4Q,KAAO,SAAS/K,GACtC,IAAIgE,EAIJ,OAHArJ,KAAK45E,cACLvwE,EAAO,IAAIuvE,EAAQ54E,KAAMqF,GACzBrF,KAAK84E,OAAO94E,KAAK4xE,OAAOxhE,KAAK/G,EAAMrJ,KAAK82E,cAAe92E,KAAKm5E,aAAe,GAAIn5E,KAAKm5E,aAAe,GAC5Fn5E,IACT,EAEA64E,EAAcr5E,UAAU+hE,MAAQ,SAASl8D,GACvC,IAAIgE,EAIJ,OAHArJ,KAAK45E,cACLvwE,EAAO,IAAI6oE,EAASlyE,KAAMqF,GAC1BrF,KAAK84E,OAAO94E,KAAK4xE,OAAOrQ,MAAMl4D,EAAMrJ,KAAK82E,cAAe92E,KAAKm5E,aAAe,GAAIn5E,KAAKm5E,aAAe,GAC7Fn5E,IACT,EAEA64E,EAAcr5E,UAAUiiE,QAAU,SAASp8D,GACzC,IAAIgE,EAIJ,OAHArJ,KAAK45E,cACLvwE,EAAO,IAAIqpE,EAAW1yE,KAAMqF,GAC5BrF,KAAK84E,OAAO94E,KAAK4xE,OAAOnQ,QAAQp4D,EAAMrJ,KAAK82E,cAAe92E,KAAKm5E,aAAe,GAAIn5E,KAAKm5E,aAAe,GAC/Fn5E,IACT,EAEA64E,EAAcr5E,UAAUmF,IAAM,SAASU,GACrC,IAAIgE,EAIJ,OAHArJ,KAAK45E,cACLvwE,EAAO,IAAIsvE,EAAO34E,KAAMqF,GACxBrF,KAAK84E,OAAO94E,KAAK4xE,OAAOjtE,IAAI0E,EAAMrJ,KAAK82E,cAAe92E,KAAKm5E,aAAe,GAAIn5E,KAAKm5E,aAAe,GAC3Fn5E,IACT,EAEA64E,EAAcr5E,UAAUm6E,YAAc,SAAS31E,EAAQqB,GACrD,IAAI7D,EAAGw4E,EAAWC,EAAU53E,EAAKgH,EAQjC,GAPArJ,KAAK45E,cACS,MAAV51E,IACFA,EAAS+sE,EAAS/sE,IAEP,MAATqB,IACFA,EAAQ0rE,EAAS1rE,IAEfzD,MAAM4L,QAAQxJ,GAChB,IAAKxC,EAAI,EAAGa,EAAM2B,EAAOtC,OAAQF,EAAIa,EAAKb,IACxCw4E,EAAYh2E,EAAOxC,GACnBxB,KAAK25E,YAAYK,QAEd,GAAI7oD,EAASntB,GAClB,IAAKg2E,KAAah2E,EACXonE,EAAQlqE,KAAK8C,EAAQg2E,KAC1BC,EAAWj2E,EAAOg2E,GAClBh6E,KAAK25E,YAAYK,EAAWC,SAG1BhyC,EAAW5iC,KACbA,EAAQA,EAAM5C,SAEhB4G,EAAO,IAAIqvE,EAAyB14E,KAAMgE,EAAQqB,GAClDrF,KAAK84E,OAAO94E,KAAK4xE,OAAOsI,sBAAsB7wE,EAAMrJ,KAAK82E,cAAe92E,KAAKm5E,aAAe,GAAIn5E,KAAKm5E,aAAe,GAEtH,OAAOn5E,IACT,EAEA64E,EAAcr5E,UAAUm2E,YAAc,SAAS16C,EAASq6C,EAAUC,GAChE,IAAIlsE,EAEJ,GADArJ,KAAK45E,cACD55E,KAAKq5E,gBACP,MAAM,IAAIxtE,MAAM,yCAIlB,OAFAxC,EAAO,IAAIgsE,EAAer1E,KAAMi7B,EAASq6C,EAAUC,GACnDv1E,KAAK84E,OAAO94E,KAAK4xE,OAAO+D,YAAYtsE,EAAMrJ,KAAK82E,cAAe92E,KAAKm5E,aAAe,GAAIn5E,KAAKm5E,aAAe,GACnGn5E,IACT,EAEA64E,EAAcr5E,UAAUmiE,QAAU,SAASj2B,EAAMgpC,EAAOC,GAEtD,GADA30E,KAAK45E,cACO,MAARluC,EACF,MAAM,IAAI7/B,MAAM,2BAElB,GAAI7L,KAAK0rC,KACP,MAAM,IAAI7/B,MAAM,yCAOlB,OALA7L,KAAKk5E,YAAc,IAAIrD,EAAW71E,KAAM00E,EAAOC,GAC/C30E,KAAKk5E,YAAYiB,aAAezuC,EAChC1rC,KAAKk5E,YAAYn2D,UAAW,EAC5B/iB,KAAKm5E,eACLn5E,KAAKo5E,SAASp5E,KAAKm5E,cAAgBn5E,KAAKk5E,YACjCl5E,IACT,EAEA64E,EAAcr5E,UAAU+0E,WAAa,SAASvzE,EAAMqE,GAClD,IAAIgE,EAIJ,OAHArJ,KAAK45E,cACLvwE,EAAO,IAAIgrE,EAAcr0E,KAAMgB,EAAMqE,GACrCrF,KAAK84E,OAAO94E,KAAK4xE,OAAO2C,WAAWlrE,EAAMrJ,KAAK82E,cAAe92E,KAAKm5E,aAAe,GAAIn5E,KAAKm5E,aAAe,GAClGn5E,IACT,EAEA64E,EAAcr5E,UAAUy2E,QAAU,SAASnC,EAAaC,EAAeC,EAAeC,EAAkB1vE,GACtG,IAAI8E,EAIJ,OAHArJ,KAAK45E,cACLvwE,EAAO,IAAIwqE,EAAc7zE,KAAM8zE,EAAaC,EAAeC,EAAeC,EAAkB1vE,GAC5FvE,KAAK84E,OAAO94E,KAAK4xE,OAAOwC,WAAW/qE,EAAMrJ,KAAK82E,cAAe92E,KAAKm5E,aAAe,GAAIn5E,KAAKm5E,aAAe,GAClGn5E,IACT,EAEA64E,EAAcr5E,UAAUykE,OAAS,SAASjjE,EAAMqE,GAC9C,IAAIgE,EAIJ,OAHArJ,KAAK45E,cACLvwE,EAAO,IAAImrE,EAAax0E,MAAM,EAAOgB,EAAMqE,GAC3CrF,KAAK84E,OAAO94E,KAAK4xE,OAAOsD,UAAU7rE,EAAMrJ,KAAK82E,cAAe92E,KAAKm5E,aAAe,GAAIn5E,KAAKm5E,aAAe,GACjGn5E,IACT,EAEA64E,EAAcr5E,UAAU02E,QAAU,SAASl1E,EAAMqE,GAC/C,IAAIgE,EAIJ,OAHArJ,KAAK45E,cACLvwE,EAAO,IAAImrE,EAAax0E,MAAM,EAAMgB,EAAMqE,GAC1CrF,KAAK84E,OAAO94E,KAAK4xE,OAAOsD,UAAU7rE,EAAMrJ,KAAK82E,cAAe92E,KAAKm5E,aAAe,GAAIn5E,KAAKm5E,aAAe,GACjGn5E,IACT,EAEA64E,EAAcr5E,UAAU22E,SAAW,SAASn1E,EAAMqE,GAChD,IAAIgE,EAIJ,OAHArJ,KAAK45E,cACLvwE,EAAO,IAAI8rE,EAAen1E,KAAMgB,EAAMqE,GACtCrF,KAAK84E,OAAO94E,KAAK4xE,OAAOwD,YAAY/rE,EAAMrJ,KAAK82E,cAAe92E,KAAKm5E,aAAe,GAAIn5E,KAAKm5E,aAAe,GACnGn5E,IACT,EAEA64E,EAAcr5E,UAAUusE,GAAK,WAC3B,GAAI/rE,KAAKm5E,aAAe,EACtB,MAAM,IAAIttE,MAAM,oCAclB,OAZI7L,KAAKk5E,aACHl5E,KAAKk5E,YAAYn2D,SACnB/iB,KAAKo6E,UAAUp6E,KAAKk5E,aAEpBl5E,KAAKq6E,SAASr6E,KAAKk5E,aAErBl5E,KAAKk5E,YAAc,MAEnBl5E,KAAKo6E,UAAUp6E,KAAKo5E,SAASp5E,KAAKm5E,sBAE7Bn5E,KAAKo5E,SAASp5E,KAAKm5E,cAC1Bn5E,KAAKm5E,eACEn5E,IACT,EAEA64E,EAAcr5E,UAAU0oB,IAAM,WAC5B,KAAOloB,KAAKm5E,cAAgB,GAC1Bn5E,KAAK+rE,KAEP,OAAO/rE,KAAK+4E,OACd,EAEAF,EAAcr5E,UAAUo6E,YAAc,WACpC,GAAI55E,KAAKk5E,YAEP,OADAl5E,KAAKk5E,YAAYn2D,UAAW,EACrB/iB,KAAKq6E,SAASr6E,KAAKk5E,YAE9B,EAEAL,EAAcr5E,UAAU66E,SAAW,SAAShxE,GAC1C,IAAI2iE,EAAKzkC,EAAOvmC,EAAM80E,EACtB,IAAKzsE,EAAKixE,OAAQ,CAKhB,GAJKt6E,KAAK0rC,MAA8B,IAAtB1rC,KAAKm5E,cAAsB9vE,EAAKwB,OAASymE,EAASxB,UAClE9vE,KAAK0rC,KAAOriC,GAEdk+B,EAAQ,GACJl+B,EAAKwB,OAASymE,EAASxB,QAAS,CAIlC,IAAK9uE,KAHLhB,KAAK82E,cAAcnqE,MAAQ6rE,EAAYrH,QACvC5pC,EAAQvnC,KAAK4xE,OAAO2I,OAAOlxE,EAAMrJ,KAAK82E,cAAe92E,KAAKm5E,cAAgB,IAAM9vE,EAAKrI,KACrF80E,EAAOzsE,EAAKowE,QAELrO,EAAQlqE,KAAK40E,EAAM90E,KACxBgrE,EAAM8J,EAAK90E,GACXumC,GAASvnC,KAAK4xE,OAAOtgC,UAAU06B,EAAKhsE,KAAK82E,cAAe92E,KAAKm5E,eAE/D5xC,IAAUl+B,EAAK0Z,SAAW,IAAM,MAAQ/iB,KAAK4xE,OAAO4I,QAAQnxE,EAAMrJ,KAAK82E,cAAe92E,KAAKm5E,cAC3Fn5E,KAAK82E,cAAcnqE,MAAQ6rE,EAAYpH,SACzC,MACEpxE,KAAK82E,cAAcnqE,MAAQ6rE,EAAYrH,QACvC5pC,EAAQvnC,KAAK4xE,OAAO2I,OAAOlxE,EAAMrJ,KAAK82E,cAAe92E,KAAKm5E,cAAgB,aAAe9vE,EAAK8wE,aAC1F9wE,EAAKqrE,OAASrrE,EAAKsrE,MACrBptC,GAAS,YAAcl+B,EAAKqrE,MAAQ,MAAQrrE,EAAKsrE,MAAQ,IAChDtrE,EAAKsrE,QACdptC,GAAS,YAAcl+B,EAAKsrE,MAAQ,KAElCtrE,EAAK0Z,UACPwkB,GAAS,KACTvnC,KAAK82E,cAAcnqE,MAAQ6rE,EAAYpH,YAEvCpxE,KAAK82E,cAAcnqE,MAAQ6rE,EAAYnH,SACvC9pC,GAAS,KAEXA,GAASvnC,KAAK4xE,OAAO4I,QAAQnxE,EAAMrJ,KAAK82E,cAAe92E,KAAKm5E,cAG9D,OADAn5E,KAAK84E,OAAOvxC,EAAOvnC,KAAKm5E,cACjB9vE,EAAKixE,QAAS,CACvB,CACF,EAEAzB,EAAcr5E,UAAU46E,UAAY,SAAS/wE,GAC3C,IAAIk+B,EACJ,IAAKl+B,EAAKoxE,SAUR,MATQ,GACRz6E,KAAK82E,cAAcnqE,MAAQ6rE,EAAYnH,SAErC9pC,EADEl+B,EAAKwB,OAASymE,EAASxB,QACjB9vE,KAAK4xE,OAAO2I,OAAOlxE,EAAMrJ,KAAK82E,cAAe92E,KAAKm5E,cAAgB,KAAO9vE,EAAKrI,KAAO,IAAMhB,KAAK4xE,OAAO4I,QAAQnxE,EAAMrJ,KAAK82E,cAAe92E,KAAKm5E,cAE9In5E,KAAK4xE,OAAO2I,OAAOlxE,EAAMrJ,KAAK82E,cAAe92E,KAAKm5E,cAAgB,KAAOn5E,KAAK4xE,OAAO4I,QAAQnxE,EAAMrJ,KAAK82E,cAAe92E,KAAKm5E,cAEtIn5E,KAAK82E,cAAcnqE,MAAQ6rE,EAAYtH,KACvClxE,KAAK84E,OAAOvxC,EAAOvnC,KAAKm5E,cACjB9vE,EAAKoxE,UAAW,CAE3B,EAEA5B,EAAcr5E,UAAUs5E,OAAS,SAASvxC,EAAOmzC,GAE/C,OADA16E,KAAKq5E,iBAAkB,EAChBr5E,KAAKg5E,eAAezxC,EAAOmzC,EAAQ,EAC5C,EAEA7B,EAAcr5E,UAAUu5E,MAAQ,WAE9B,OADA/4E,KAAKs5E,mBAAoB,EAClBt5E,KAAKi5E,eACd,EAEAJ,EAAcr5E,UAAUgyE,UAAY,SAASxwE,GAC3C,OAAY,MAARA,EACK,GAEA,UAAYA,EAAO,GAE9B,EAEA63E,EAAcr5E,UAAUssE,IAAM,WAC5B,OAAO9rE,KAAK6pC,QAAQpnC,MAAMzC,KAAMsC,UAClC,EAEAu2E,EAAcr5E,UAAUm7E,IAAM,SAAS35E,EAAMqwC,EAAYjhC,GACvD,OAAOpQ,KAAKqJ,KAAKrI,EAAMqwC,EAAYjhC,EACrC,EAEAyoE,EAAcr5E,UAAUqsE,IAAM,SAASxmE,GACrC,OAAOrF,KAAKoQ,KAAK/K,EACnB,EAEAwzE,EAAcr5E,UAAUo7E,IAAM,SAASv1E,GACrC,OAAOrF,KAAKuhE,MAAMl8D,EACpB,EAEAwzE,EAAcr5E,UAAUq7E,IAAM,SAASx1E,GACrC,OAAOrF,KAAKyhE,QAAQp8D,EACtB,EAEAwzE,EAAcr5E,UAAUs7E,IAAM,SAAS92E,EAAQqB,GAC7C,OAAOrF,KAAK25E,YAAY31E,EAAQqB,EAClC,EAEAwzE,EAAcr5E,UAAUu7E,IAAM,SAAS9/C,EAASq6C,EAAUC,GACxD,OAAOv1E,KAAK21E,YAAY16C,EAASq6C,EAAUC,EAC7C,EAEAsD,EAAcr5E,UAAUw7E,IAAM,SAAStvC,EAAMgpC,EAAOC,GAClD,OAAO30E,KAAK2hE,QAAQj2B,EAAMgpC,EAAOC,EACnC,EAEAkE,EAAcr5E,UAAUyF,EAAI,SAASjE,EAAMqwC,EAAYjhC,GACrD,OAAOpQ,KAAK6pC,QAAQ7oC,EAAMqwC,EAAYjhC,EACxC,EAEAyoE,EAAcr5E,UAAUg4B,EAAI,SAASx2B,EAAMqwC,EAAYjhC,GACrD,OAAOpQ,KAAKqJ,KAAKrI,EAAMqwC,EAAYjhC,EACrC,EAEAyoE,EAAcr5E,UAAUkgC,EAAI,SAASr6B,GACnC,OAAOrF,KAAKoQ,KAAK/K,EACnB,EAEAwzE,EAAcr5E,UAAUspE,EAAI,SAASzjE,GACnC,OAAOrF,KAAKuhE,MAAMl8D,EACpB,EAEAwzE,EAAcr5E,UAAUmgB,EAAI,SAASta,GACnC,OAAOrF,KAAKyhE,QAAQp8D,EACtB,EAEAwzE,EAAcr5E,UAAUy7E,EAAI,SAAS51E,GACnC,OAAOrF,KAAK2E,IAAIU,EAClB,EAEAwzE,EAAcr5E,UAAUgC,EAAI,SAASwC,EAAQqB,GAC3C,OAAOrF,KAAK25E,YAAY31E,EAAQqB,EAClC,EAEAwzE,EAAcr5E,UAAUwsE,IAAM,WAC5B,OAAIhsE,KAAKk5E,aAAel5E,KAAKk5E,YAAYruE,OAASymE,EAASf,QAClDvwE,KAAKi2E,QAAQxzE,MAAMzC,KAAMsC,WAEzBtC,KAAKsxC,UAAU7uC,MAAMzC,KAAMsC,UAEtC,EAEAu2E,EAAcr5E,UAAUyK,EAAI,WAC1B,OAAIjK,KAAKk5E,aAAel5E,KAAKk5E,YAAYruE,OAASymE,EAASf,QAClDvwE,KAAKi2E,QAAQxzE,MAAMzC,KAAMsC,WAEzBtC,KAAKsxC,UAAU7uC,MAAMzC,KAAMsC,UAEtC,EAEAu2E,EAAcr5E,UAAU62E,IAAM,SAASr1E,EAAMqE,GAC3C,OAAOrF,KAAKikE,OAAOjjE,EAAMqE,EAC3B,EAEAwzE,EAAcr5E,UAAU82E,KAAO,SAASt1E,EAAMqE,GAC5C,OAAOrF,KAAKk2E,QAAQl1E,EAAMqE,EAC5B,EAEAwzE,EAAcr5E,UAAU+2E,IAAM,SAASv1E,EAAMqE,GAC3C,OAAOrF,KAAKm2E,SAASn1E,EAAMqE,EAC7B,EAEOwzE,CAER,CAlegC,EAoelC,GAAE33E,KAAKlB,8BC9gBR,WACE,IAAIsxE,EAAoBa,EAEtB/G,EAAU,CAAC,EAAE3rE,eAEf0yE,EAAU,EAAQ,OAElBb,EAAW,EAAQ,OAEnBvuE,EAAOC,QAAqB,SAAU05D,GAGpC,SAASwe,EAAS35D,GAChB25D,EAASnN,UAAUlqE,YAAY3C,KAAKlB,KAAMuhB,GAC1CvhB,KAAK6K,KAAOymE,EAASR,KACvB,CAUA,OAvBS,SAASvkD,EAAOhL,GAAU,IAAK,IAAI3U,KAAO2U,EAAc6pD,EAAQlqE,KAAKqgB,EAAQ3U,KAAM2f,EAAM3f,GAAO2U,EAAO3U,IAAQ,SAASkhE,IAAS9tE,KAAK6D,YAAc0oB,CAAO,CAAEuhD,EAAKtuE,UAAY+hB,EAAO/hB,UAAW+sB,EAAM/sB,UAAY,IAAIsuE,EAAQvhD,EAAMwhD,UAAYxsD,EAAO/hB,SAAyB,CAQzRggB,CAAO07D,EAAUxe,GAOjBwe,EAAS17E,UAAUqhB,MAAQ,WACzB,OAAOthB,OAAOqB,OAAOZ,KACvB,EAEAk7E,EAAS17E,UAAUkI,SAAW,SAASkM,GACrC,MAAO,EACT,EAEOsnE,CAER,CAlB2B,CAkBzB/I,EAEJ,GAAEjxE,KAAKlB,8BC7BR,WACE,IAAIsxE,EAAUC,EAA0BqE,EAAiBzD,EAASpB,EAAU9oC,EAAY9W,EAAU3P,EAEhG4pD,EAAU,CAAC,EAAE3rE,eAEf+hB,EAAM,EAAQ,OAAc2P,EAAW3P,EAAI2P,SAAU8W,EAAazmB,EAAIymB,WAAY8oC,EAAWvvD,EAAIuvD,SAEjGoB,EAAU,EAAQ,OAElBb,EAAW,EAAQ,OAEnBC,EAAe,EAAQ,OAEvBqE,EAAkB,EAAQ,OAE1B7yE,EAAOC,QAAuB,SAAU05D,GAGtC,SAAS+b,EAAWl3D,EAAQvgB,EAAMqwC,GAChC,IAAI9kB,EAAO7pB,EAAGL,EAAKyzE,EAEnB,GADA2C,EAAW1K,UAAUlqE,YAAY3C,KAAKlB,KAAMuhB,GAChC,MAARvgB,EACF,MAAM,IAAI6K,MAAM,yBAA2B7L,KAAKwxE,aASlD,GAPAxxE,KAAKgB,KAAOhB,KAAKuF,UAAUvE,KAAKA,GAChChB,KAAK6K,KAAOymE,EAASxB,QACrB9vE,KAAKy5E,QAAU,CAAC,EAChBz5E,KAAK2xE,eAAiB,KACJ,MAAdtgC,GACFrxC,KAAKsxC,UAAUD,GAEb9vB,EAAO1W,OAASymE,EAAShB,WAC3BtwE,KAAKm7E,QAAS,EACdn7E,KAAKg2E,eAAiBz0D,EACtBA,EAAOs1D,WAAa72E,KAChBuhB,EAAOwB,UAET,IAAKrgB,EAAI,EAAGL,GADZyzE,EAAOv0D,EAAOwB,UACSrhB,OAAQgB,EAAIL,EAAKK,IAEtC,IADA6pB,EAAQupD,EAAKpzE,IACHmI,OAASymE,EAASf,QAAS,CACnChkD,EAAMvrB,KAAOhB,KAAKgB,KAClB,KACF,CAIR,CAsPA,OAlSS,SAASurB,EAAOhL,GAAU,IAAK,IAAI3U,KAAO2U,EAAc6pD,EAAQlqE,KAAKqgB,EAAQ3U,KAAM2f,EAAM3f,GAAO2U,EAAO3U,IAAQ,SAASkhE,IAAS9tE,KAAK6D,YAAc0oB,CAAO,CAAEuhD,EAAKtuE,UAAY+hB,EAAO/hB,UAAW+sB,EAAM/sB,UAAY,IAAIsuE,EAAQvhD,EAAMwhD,UAAYxsD,EAAO/hB,SAAyB,CAczRggB,CAAOi5D,EAAY/b,GAgCnBn9D,OAAO0Z,eAAew/D,EAAWj5E,UAAW,UAAW,CACrDuG,IAAK,WACH,OAAO/F,KAAKgB,IACd,IAGFzB,OAAO0Z,eAAew/D,EAAWj5E,UAAW,eAAgB,CAC1DuG,IAAK,WACH,MAAO,EACT,IAGFxG,OAAO0Z,eAAew/D,EAAWj5E,UAAW,SAAU,CACpDuG,IAAK,WACH,MAAO,EACT,IAGFxG,OAAO0Z,eAAew/D,EAAWj5E,UAAW,YAAa,CACvDuG,IAAK,WACH,OAAO/F,KAAKgB,IACd,IAGFzB,OAAO0Z,eAAew/D,EAAWj5E,UAAW,KAAM,CAChDuG,IAAK,WACH,MAAM,IAAI8F,MAAM,sCAAwC7L,KAAKwxE,YAC/D,IAGFjyE,OAAO0Z,eAAew/D,EAAWj5E,UAAW,YAAa,CACvDuG,IAAK,WACH,MAAM,IAAI8F,MAAM,sCAAwC7L,KAAKwxE,YAC/D,IAGFjyE,OAAO0Z,eAAew/D,EAAWj5E,UAAW,YAAa,CACvDuG,IAAK,WACH,MAAM,IAAI8F,MAAM,sCAAwC7L,KAAKwxE,YAC/D,IAGFjyE,OAAO0Z,eAAew/D,EAAWj5E,UAAW,aAAc,CACxDuG,IAAK,WAIH,OAHK/F,KAAKo7E,cAAiBp7E,KAAKo7E,aAAa5vC,QAC3CxrC,KAAKo7E,aAAe,IAAIxF,EAAgB51E,KAAKy5E,UAExCz5E,KAAKo7E,YACd,IAGF3C,EAAWj5E,UAAUqhB,MAAQ,WAC3B,IAAImrD,EAAKwN,EAAS6B,EAAYvF,EAO9B,IAAK0D,KANL6B,EAAa97E,OAAOqB,OAAOZ,OACZm7E,SACbE,EAAWrF,eAAiB,MAE9BqF,EAAW5B,QAAU,CAAC,EACtB3D,EAAO91E,KAAKy5E,QAELrO,EAAQlqE,KAAK40E,EAAM0D,KACxBxN,EAAM8J,EAAK0D,GACX6B,EAAW5B,QAAQD,GAAWxN,EAAInrD,SASpC,OAPAw6D,EAAWt4D,SAAW,GACtB/iB,KAAK+iB,SAAS7R,SAAQ,SAASqb,GAC7B,IAAI+uD,EAGJ,OAFAA,EAAc/uD,EAAM1L,SACRU,OAAS85D,EACdA,EAAWt4D,SAASviB,KAAK86E,EAClC,IACOD,CACT,EAEA5C,EAAWj5E,UAAU8xC,UAAY,SAAStwC,EAAMqE,GAC9C,IAAIm0E,EAAS/H,EAIb,GAHY,MAARzwE,IACFA,EAAO+vE,EAAS/vE,IAEdmwB,EAASnwB,GACX,IAAKw4E,KAAWx4E,EACToqE,EAAQlqE,KAAKF,EAAMw4E,KACxB/H,EAAWzwE,EAAKw4E,GAChBx5E,KAAKsxC,UAAUkoC,EAAS/H,SAGtBxpC,EAAW5iC,KACbA,EAAQA,EAAM5C,SAEZzC,KAAK4T,QAAQmmE,oBAAgC,MAAT10E,EACtCrF,KAAKy5E,QAAQz4E,GAAQ,IAAIuwE,EAAavxE,KAAMgB,EAAM,IAChC,MAATqE,IACTrF,KAAKy5E,QAAQz4E,GAAQ,IAAIuwE,EAAavxE,KAAMgB,EAAMqE,IAGtD,OAAOrF,IACT,EAEAy4E,EAAWj5E,UAAU+7E,gBAAkB,SAASv6E,GAC9C,IAAIw4E,EAAS92E,EAAGL,EAChB,GAAY,MAARrB,EACF,MAAM,IAAI6K,MAAM,2BAA6B7L,KAAKwxE,aAGpD,GADAxwE,EAAO+vE,EAAS/vE,GACZY,MAAM4L,QAAQxM,GAChB,IAAK0B,EAAI,EAAGL,EAAMrB,EAAKU,OAAQgB,EAAIL,EAAKK,IACtC82E,EAAUx4E,EAAK0B,UACR1C,KAAKy5E,QAAQD,eAGfx5E,KAAKy5E,QAAQz4E,GAEtB,OAAOhB,IACT,EAEAy4E,EAAWj5E,UAAUkI,SAAW,SAASkM,GACvC,OAAO5T,KAAK4T,QAAQg+D,OAAO/nC,QAAQ7pC,KAAMA,KAAK4T,QAAQg+D,OAAOC,cAAcj+D,GAC7E,EAEA6kE,EAAWj5E,UAAUwsE,IAAM,SAAShrE,EAAMqE,GACxC,OAAOrF,KAAKsxC,UAAUtwC,EAAMqE,EAC9B,EAEAozE,EAAWj5E,UAAUyK,EAAI,SAASjJ,EAAMqE,GACtC,OAAOrF,KAAKsxC,UAAUtwC,EAAMqE,EAC9B,EAEAozE,EAAWj5E,UAAU6sB,aAAe,SAASrrB,GAC3C,OAAIhB,KAAKy5E,QAAQh6E,eAAeuB,GACvBhB,KAAKy5E,QAAQz4E,GAAMqE,MAEnB,IAEX,EAEAozE,EAAWj5E,UAAUinD,aAAe,SAASzlD,EAAMqE,GACjD,MAAM,IAAIwG,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAiH,EAAWj5E,UAAUg8E,iBAAmB,SAASx6E,GAC/C,OAAIhB,KAAKy5E,QAAQh6E,eAAeuB,GACvBhB,KAAKy5E,QAAQz4E,GAEb,IAEX,EAEAy3E,EAAWj5E,UAAUi8E,iBAAmB,SAASC,GAC/C,MAAM,IAAI7vE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAiH,EAAWj5E,UAAUm8E,oBAAsB,SAASC,GAClD,MAAM,IAAI/vE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAiH,EAAWj5E,UAAU83E,qBAAuB,SAASt2E,GACnD,MAAM,IAAI6K,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAiH,EAAWj5E,UAAUq8E,eAAiB,SAAS9J,EAAcC,GAC3D,MAAM,IAAInmE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAiH,EAAWj5E,UAAUs8E,eAAiB,SAAS/J,EAAcwB,EAAeluE,GAC1E,MAAM,IAAIwG,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAiH,EAAWj5E,UAAUu8E,kBAAoB,SAAShK,EAAcC,GAC9D,MAAM,IAAInmE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAiH,EAAWj5E,UAAUw8E,mBAAqB,SAASjK,EAAcC,GAC/D,MAAM,IAAInmE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAiH,EAAWj5E,UAAUy8E,mBAAqB,SAASP,GACjD,MAAM,IAAI7vE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAiH,EAAWj5E,UAAUo4E,uBAAyB,SAAS7F,EAAcC,GACnE,MAAM,IAAInmE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAiH,EAAWj5E,UAAU08E,aAAe,SAASl7E,GAC3C,OAAOhB,KAAKy5E,QAAQh6E,eAAeuB,EACrC,EAEAy3E,EAAWj5E,UAAU28E,eAAiB,SAASpK,EAAcC,GAC3D,MAAM,IAAInmE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAiH,EAAWj5E,UAAU48E,eAAiB,SAASp7E,EAAM0wE,GACnD,OAAI1xE,KAAKy5E,QAAQh6E,eAAeuB,GACvBhB,KAAKy5E,QAAQz4E,GAAM0wE,KAEnBA,CAEX,EAEA+G,EAAWj5E,UAAU68E,iBAAmB,SAAStK,EAAcC,EAAWN,GACxE,MAAM,IAAI7lE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAiH,EAAWj5E,UAAU88E,mBAAqB,SAASC,EAAQ7K,GACzD,MAAM,IAAI7lE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAiH,EAAWj5E,UAAU83E,qBAAuB,SAASC,GACnD,MAAM,IAAI1rE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAiH,EAAWj5E,UAAUo4E,uBAAyB,SAAS7F,EAAcC,GACnE,MAAM,IAAInmE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAiH,EAAWj5E,UAAUy4E,uBAAyB,SAASC,GACrD,MAAM,IAAIrsE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAiH,EAAWj5E,UAAUsyE,YAAc,SAASzoE,GAC1C,IAAI7H,EAAGkB,EAAGozE,EACV,IAAK2C,EAAW1K,UAAU+D,YAAYrvE,MAAMzC,KAAMsC,WAAWwvE,YAAYzoE,GACvE,OAAO,EAET,GAAIA,EAAK0oE,eAAiB/xE,KAAK+xE,aAC7B,OAAO,EAET,GAAI1oE,EAAK3J,SAAWM,KAAKN,OACvB,OAAO,EAET,GAAI2J,EAAK2oE,YAAchyE,KAAKgyE,UAC1B,OAAO,EAET,GAAI3oE,EAAKowE,QAAQ/3E,SAAW1B,KAAKy5E,QAAQ/3E,OACvC,OAAO,EAET,IAAKF,EAAIkB,EAAI,EAAGozE,EAAO91E,KAAKy5E,QAAQ/3E,OAAS,EAAG,GAAKo0E,EAAOpzE,GAAKozE,EAAOpzE,GAAKozE,EAAMt0E,EAAI,GAAKs0E,IAASpzE,IAAMA,EACzG,IAAK1C,KAAKy5E,QAAQj4E,GAAGswE,YAAYzoE,EAAKowE,QAAQj4E,IAC5C,OAAO,EAGX,OAAO,CACT,EAEOi3E,CAER,CAvR6B,CAuR3BtG,EAEJ,GAAEjxE,KAAKlB,0BCxSR,WAGE+C,EAAOC,QAA4B,WACjC,SAAS4yE,EAAgBpqC,GACvBxrC,KAAKwrC,MAAQA,CACf,CA8CA,OA5CAjsC,OAAO0Z,eAAe28D,EAAgBp2E,UAAW,SAAU,CACzDuG,IAAK,WACH,OAAOxG,OAAO6G,KAAKpG,KAAKwrC,OAAO9pC,QAAU,CAC3C,IAGFk0E,EAAgBp2E,UAAUqhB,MAAQ,WAChC,OAAO7gB,KAAKwrC,MAAQ,IACtB,EAEAoqC,EAAgBp2E,UAAUg9E,aAAe,SAASx7E,GAChD,OAAOhB,KAAKwrC,MAAMxqC,EACpB,EAEA40E,EAAgBp2E,UAAUi9E,aAAe,SAASpzE,GAChD,IAAIqzE,EAGJ,OAFAA,EAAU18E,KAAKwrC,MAAMniC,EAAKulE,UAC1B5uE,KAAKwrC,MAAMniC,EAAKulE,UAAYvlE,EACrBqzE,GAAW,IACpB,EAEA9G,EAAgBp2E,UAAUm9E,gBAAkB,SAAS37E,GACnD,IAAI07E,EAGJ,OAFAA,EAAU18E,KAAKwrC,MAAMxqC,UACdhB,KAAKwrC,MAAMxqC,GACX07E,GAAW,IACpB,EAEA9G,EAAgBp2E,UAAU8E,KAAO,SAASma,GACxC,OAAOze,KAAKwrC,MAAMjsC,OAAO6G,KAAKpG,KAAKwrC,OAAO/sB,KAAW,IACvD,EAEAm3D,EAAgBp2E,UAAUo9E,eAAiB,SAAS7K,EAAcC,GAChE,MAAM,IAAInmE,MAAM,sCAClB,EAEA+pE,EAAgBp2E,UAAUq9E,eAAiB,SAASxzE,GAClD,MAAM,IAAIwC,MAAM,sCAClB,EAEA+pE,EAAgBp2E,UAAUs9E,kBAAoB,SAAS/K,EAAcC,GACnE,MAAM,IAAInmE,MAAM,sCAClB,EAEO+pE,CAER,CAnDkC,EAqDpC,GAAE10E,KAAKlB,8BCxDR,WACE,IAAI+8E,EAAkBzL,EAAUY,EAAUQ,EAAY2C,EAAgBQ,EAAYqF,EAAUzC,EAAsCuE,EAAatE,EAA0BC,EAAQC,EAAS7H,EAAUzD,EAASrlC,EAAY9W,EAAU2kD,EACjO1K,EAAU,CAAC,EAAE3rE,eAEfq2E,EAAO,EAAQ,OAAc3kD,EAAW2kD,EAAK3kD,SAAU8W,EAAa6tC,EAAK7tC,WAAYqlC,EAAUwI,EAAKxI,QAASyD,EAAW+E,EAAK/E,SAE7H0H,EAAa,KAEbvG,EAAW,KAEXQ,EAAa,KAEb2C,EAAiB,KAEjBQ,EAAa,KAEb8C,EAAS,KAETC,EAAU,KAEVF,EAA2B,KAE3BwC,EAAW,KAEX5J,EAAW,KAEX0L,EAAc,KAIdD,EAAmB,KAEnBh6E,EAAOC,QAAoB,WACzB,SAASmvE,EAAQ8K,GACfj9E,KAAKuhB,OAAS07D,EACVj9E,KAAKuhB,SACPvhB,KAAK4T,QAAU5T,KAAKuhB,OAAO3N,QAC3B5T,KAAKuF,UAAYvF,KAAKuhB,OAAOhc,WAE/BvF,KAAKqF,MAAQ,KACbrF,KAAK+iB,SAAW,GAChB/iB,KAAKk9E,QAAU,KACVzE,IACHA,EAAa,EAAQ,OACrBvG,EAAW,EAAQ,OACnBQ,EAAa,EAAQ,OACrB2C,EAAiB,EAAQ,OACzBQ,EAAa,EAAQ,OACrB8C,EAAS,EAAQ,MACjBC,EAAU,EAAQ,OAClBF,EAA2B,EAAQ,OACnCwC,EAAW,EAAQ,OACnB5J,EAAW,EAAQ,OACnB0L,EAAc,EAAQ,OACJ,EAAQ,OAC1BD,EAAmB,EAAQ,OAE/B,CAktBA,OAhtBAx9E,OAAO0Z,eAAek5D,EAAQ3yE,UAAW,WAAY,CACnDuG,IAAK,WACH,OAAO/F,KAAKgB,IACd,IAGFzB,OAAO0Z,eAAek5D,EAAQ3yE,UAAW,WAAY,CACnDuG,IAAK,WACH,OAAO/F,KAAK6K,IACd,IAGFtL,OAAO0Z,eAAek5D,EAAQ3yE,UAAW,YAAa,CACpDuG,IAAK,WACH,OAAO/F,KAAKqF,KACd,IAGF9F,OAAO0Z,eAAek5D,EAAQ3yE,UAAW,aAAc,CACrDuG,IAAK,WACH,OAAO/F,KAAKuhB,MACd,IAGFhiB,OAAO0Z,eAAek5D,EAAQ3yE,UAAW,aAAc,CACrDuG,IAAK,WAIH,OAHK/F,KAAKm9E,eAAkBn9E,KAAKm9E,cAAc3xC,QAC7CxrC,KAAKm9E,cAAgB,IAAIH,EAAYh9E,KAAK+iB,WAErC/iB,KAAKm9E,aACd,IAGF59E,OAAO0Z,eAAek5D,EAAQ3yE,UAAW,aAAc,CACrDuG,IAAK,WACH,OAAO/F,KAAK+iB,SAAS,IAAM,IAC7B,IAGFxjB,OAAO0Z,eAAek5D,EAAQ3yE,UAAW,YAAa,CACpDuG,IAAK,WACH,OAAO/F,KAAK+iB,SAAS/iB,KAAK+iB,SAASrhB,OAAS,IAAM,IACpD,IAGFnC,OAAO0Z,eAAek5D,EAAQ3yE,UAAW,kBAAmB,CAC1DuG,IAAK,WACH,IAAIvE,EAEJ,OADAA,EAAIxB,KAAKuhB,OAAOwB,SAASlN,QAAQ7V,MAC1BA,KAAKuhB,OAAOwB,SAASvhB,EAAI,IAAM,IACxC,IAGFjC,OAAO0Z,eAAek5D,EAAQ3yE,UAAW,cAAe,CACtDuG,IAAK,WACH,IAAIvE,EAEJ,OADAA,EAAIxB,KAAKuhB,OAAOwB,SAASlN,QAAQ7V,MAC1BA,KAAKuhB,OAAOwB,SAASvhB,EAAI,IAAM,IACxC,IAGFjC,OAAO0Z,eAAek5D,EAAQ3yE,UAAW,gBAAiB,CACxDuG,IAAK,WACH,OAAO/F,KAAKwJ,YAAc,IAC5B,IAGFjK,OAAO0Z,eAAek5D,EAAQ3yE,UAAW,cAAe,CACtDuG,IAAK,WACH,IAAIwmB,EAAO7pB,EAAGL,EAAK0zE,EAAMl2D,EACzB,GAAI7f,KAAK4lE,WAAa0L,EAASxB,SAAW9vE,KAAK4lE,WAAa0L,EAASd,iBAAkB,CAGrF,IAFA3wD,EAAM,GAEDnd,EAAI,EAAGL,GADZ0zE,EAAO/1E,KAAK+iB,UACWrhB,OAAQgB,EAAIL,EAAKK,KACtC6pB,EAAQwpD,EAAKrzE,IACH06E,cACRv9D,GAAO0M,EAAM6wD,aAGjB,OAAOv9D,CACT,CACE,OAAO,IAEX,EACAhN,IAAK,SAASxN,GACZ,MAAM,IAAIwG,MAAM,sCAAwC7L,KAAKwxE,YAC/D,IAGFW,EAAQ3yE,UAAU69E,UAAY,SAAS97D,GACrC,IAAIgL,EAAO7pB,EAAGL,EAAK0zE,EAAMvmC,EAQzB,IAPAxvC,KAAKuhB,OAASA,EACVA,IACFvhB,KAAK4T,QAAU2N,EAAO3N,QACtB5T,KAAKuF,UAAYgc,EAAOhc,WAG1BiqC,EAAU,GACL9sC,EAAI,EAAGL,GAFZ0zE,EAAO/1E,KAAK+iB,UAEWrhB,OAAQgB,EAAIL,EAAKK,IACtC6pB,EAAQwpD,EAAKrzE,GACb8sC,EAAQhvC,KAAK+rB,EAAM8wD,UAAUr9E,OAE/B,OAAOwvC,CACT,EAEA2iC,EAAQ3yE,UAAUqqC,QAAU,SAAS7oC,EAAMqwC,EAAYjhC,GACrD,IAAIktE,EAAWh5E,EAAM5B,EAAG66E,EAAG3wE,EAAK4wE,EAAWn7E,EAAKo7E,EAAM1H,EAAM2H,EAAMr9D,EAelE,GAdAm9D,EAAY,KACO,OAAfnsC,GAAgC,MAARjhC,IACPihC,GAAnB0kC,EAAO,CAAC,CAAC,EAAG,OAAyB,GAAI3lE,EAAO2lE,EAAK,IAErC,MAAd1kC,IACFA,EAAa,CAAC,GAEhBA,EAAa0/B,EAAS1/B,GACjBlgB,EAASkgB,KACejhC,GAA3BstE,EAAO,CAACrsC,EAAYjhC,IAAmB,GAAIihC,EAAaqsC,EAAK,IAEnD,MAAR18E,IACFA,EAAO+vE,EAAS/vE,IAEdY,MAAM4L,QAAQxM,GAChB,IAAK0B,EAAI,EAAGL,EAAMrB,EAAKU,OAAQgB,EAAIL,EAAKK,IACtC4B,EAAOtD,EAAK0B,GACZ86E,EAAYx9E,KAAK6pC,QAAQvlC,QAEtB,GAAI2jC,EAAWjnC,GACpBw8E,EAAYx9E,KAAK6pC,QAAQ7oC,EAAKyB,cACzB,GAAI0uB,EAASnwB,IAClB,IAAK4L,KAAO5L,EACV,GAAKoqE,EAAQlqE,KAAKF,EAAM4L,GAKxB,GAJAyT,EAAMrf,EAAK4L,GACPq7B,EAAW5nB,KACbA,EAAMA,EAAI5d,UAEPzC,KAAK4T,QAAQ+pE,kBAAoB39E,KAAKuF,UAAUq4E,eAA+D,IAA9ChxE,EAAIiJ,QAAQ7V,KAAKuF,UAAUq4E,eAC/FJ,EAAYx9E,KAAKsxC,UAAU1kC,EAAI+a,OAAO3nB,KAAKuF,UAAUq4E,cAAcl8E,QAAS2e,QACvE,IAAKrgB,KAAK4T,QAAQiqE,oBAAsBj8E,MAAM4L,QAAQ6S,IAAQitD,EAAQjtD,GAC3Em9D,EAAYx9E,KAAK05E,aACZ,GAAIvoD,EAAS9Q,IAAQitD,EAAQjtD,GAClCm9D,EAAYx9E,KAAK6pC,QAAQj9B,QACpB,GAAK5M,KAAK4T,QAAQkqE,eAAyB,MAAPz9D,EAEpC,IAAKrgB,KAAK4T,QAAQiqE,oBAAsBj8E,MAAM4L,QAAQ6S,GAC3D,IAAKk9D,EAAI,EAAGE,EAAOp9D,EAAI3e,OAAQ67E,EAAIE,EAAMF,IACvCj5E,EAAO+b,EAAIk9D,IACXD,EAAY,CAAC,GACH1wE,GAAOtI,EACjBk5E,EAAYx9E,KAAK6pC,QAAQyzC,QAElBnsD,EAAS9Q,IACbrgB,KAAK4T,QAAQ+pE,kBAAoB39E,KAAKuF,UAAUw4E,gBAAiE,IAA/CnxE,EAAIiJ,QAAQ7V,KAAKuF,UAAUw4E,gBAChGP,EAAYx9E,KAAK6pC,QAAQxpB,IAEzBm9D,EAAYx9E,KAAK6pC,QAAQj9B,IACfi9B,QAAQxpB,GAGpBm9D,EAAYx9E,KAAK6pC,QAAQj9B,EAAKyT,QAhB9Bm9D,EAAYx9E,KAAK05E,aAuBnB8D,EAJQx9E,KAAK4T,QAAQkqE,eAA0B,OAAT1tE,GAGnCpQ,KAAK4T,QAAQ+pE,kBAAoB39E,KAAKuF,UAAUw4E,gBAAkE,IAAhD/8E,EAAK6U,QAAQ7V,KAAKuF,UAAUw4E,gBACrF/9E,KAAKoQ,KAAKA,IACZpQ,KAAK4T,QAAQ+pE,kBAAoB39E,KAAKuF,UAAUy4E,iBAAoE,IAAjDh9E,EAAK6U,QAAQ7V,KAAKuF,UAAUy4E,iBAC7Fh+E,KAAKuhE,MAAMnxD,IACbpQ,KAAK4T,QAAQ+pE,kBAAoB39E,KAAKuF,UAAU04E,mBAAwE,IAAnDj9E,EAAK6U,QAAQ7V,KAAKuF,UAAU04E,mBAC/Fj+E,KAAKyhE,QAAQrxD,IACfpQ,KAAK4T,QAAQ+pE,kBAAoB39E,KAAKuF,UAAU24E,eAAgE,IAA/Cl9E,EAAK6U,QAAQ7V,KAAKuF,UAAU24E,eAC3Fl+E,KAAK2E,IAAIyL,IACXpQ,KAAK4T,QAAQ+pE,kBAAoB39E,KAAKuF,UAAU44E,cAA8D,IAA9Cn9E,EAAK6U,QAAQ7V,KAAKuF,UAAU44E,cAC1Fn+E,KAAK25E,YAAY34E,EAAK2mB,OAAO3nB,KAAKuF,UAAU44E,aAAaz8E,QAAS0O,GAElEpQ,KAAKqJ,KAAKrI,EAAMqwC,EAAYjhC,GAb9BpQ,KAAK05E,QAgBnB,GAAiB,MAAb8D,EACF,MAAM,IAAI3xE,MAAM,uCAAyC7K,EAAO,KAAOhB,KAAKwxE,aAE9E,OAAOgM,CACT,EAEArL,EAAQ3yE,UAAU4+E,aAAe,SAASp9E,EAAMqwC,EAAYjhC,GAC1D,IAAImc,EAAO/qB,EAAG68E,EAAUC,EAAUC,EAClC,GAAY,MAARv9E,EAAeA,EAAK6J,UAAO,EAY7B,OAVAyzE,EAAWjtC,GADXgtC,EAAWr9E,GAEFq8E,UAAUr9E,MACfs+E,GACF98E,EAAIuhB,SAASlN,QAAQyoE,GACrBC,EAAUx7D,SAASjN,OAAOtU,GAC1BuhB,SAASviB,KAAK69E,GACdz8E,MAAMpC,UAAUgB,KAAKiC,MAAMsgB,SAAUw7D,IAErCx7D,SAASviB,KAAK69E,GAETA,EAEP,GAAIr+E,KAAKm7E,OACP,MAAM,IAAItvE,MAAM,yCAA2C7L,KAAKwxE,UAAUxwE,IAM5E,OAJAQ,EAAIxB,KAAKuhB,OAAOwB,SAASlN,QAAQ7V,MACjCu+E,EAAUv+E,KAAKuhB,OAAOwB,SAASjN,OAAOtU,GACtC+qB,EAAQvsB,KAAKuhB,OAAOsoB,QAAQ7oC,EAAMqwC,EAAYjhC,GAC9CxO,MAAMpC,UAAUgB,KAAKiC,MAAMzC,KAAKuhB,OAAOwB,SAAUw7D,GAC1ChyD,CAEX,EAEA4lD,EAAQ3yE,UAAUg/E,YAAc,SAASx9E,EAAMqwC,EAAYjhC,GACzD,IAAImc,EAAO/qB,EAAG+8E,EACd,GAAIv+E,KAAKm7E,OACP,MAAM,IAAItvE,MAAM,yCAA2C7L,KAAKwxE,UAAUxwE,IAM5E,OAJAQ,EAAIxB,KAAKuhB,OAAOwB,SAASlN,QAAQ7V,MACjCu+E,EAAUv+E,KAAKuhB,OAAOwB,SAASjN,OAAOtU,EAAI,GAC1C+qB,EAAQvsB,KAAKuhB,OAAOsoB,QAAQ7oC,EAAMqwC,EAAYjhC,GAC9CxO,MAAMpC,UAAUgB,KAAKiC,MAAMzC,KAAKuhB,OAAOwB,SAAUw7D,GAC1ChyD,CACT,EAEA4lD,EAAQ3yE,UAAUi/E,OAAS,WACzB,IAAIj9E,EACJ,GAAIxB,KAAKm7E,OACP,MAAM,IAAItvE,MAAM,mCAAqC7L,KAAKwxE,aAI5D,OAFAhwE,EAAIxB,KAAKuhB,OAAOwB,SAASlN,QAAQ7V,MACjC,GAAG8V,OAAOrT,MAAMzC,KAAKuhB,OAAOwB,SAAU,CAACvhB,EAAGA,EAAIA,EAAI,GAAGH,OAAc,KAC5DrB,KAAKuhB,MACd,EAEA4wD,EAAQ3yE,UAAU6J,KAAO,SAASrI,EAAMqwC,EAAYjhC,GAClD,IAAImc,EAAOwpD,EAcX,OAbY,MAAR/0E,IACFA,EAAO+vE,EAAS/vE,IAElBqwC,IAAeA,EAAa,CAAC,GAC7BA,EAAa0/B,EAAS1/B,GACjBlgB,EAASkgB,KACejhC,GAA3B2lE,EAAO,CAAC1kC,EAAYjhC,IAAmB,GAAIihC,EAAa0kC,EAAK,IAE/DxpD,EAAQ,IAAIksD,EAAWz4E,KAAMgB,EAAMqwC,GACvB,MAARjhC,GACFmc,EAAMnc,KAAKA,GAEbpQ,KAAK+iB,SAASviB,KAAK+rB,GACZA,CACT,EAEA4lD,EAAQ3yE,UAAU4Q,KAAO,SAAS/K,GAChC,IAAIknB,EAMJ,OALI4E,EAAS9rB,IACXrF,KAAK6pC,QAAQxkC,GAEfknB,EAAQ,IAAIqsD,EAAQ54E,KAAMqF,GAC1BrF,KAAK+iB,SAASviB,KAAK+rB,GACZvsB,IACT,EAEAmyE,EAAQ3yE,UAAU+hE,MAAQ,SAASl8D,GACjC,IAAIknB,EAGJ,OAFAA,EAAQ,IAAI2lD,EAASlyE,KAAMqF,GAC3BrF,KAAK+iB,SAASviB,KAAK+rB,GACZvsB,IACT,EAEAmyE,EAAQ3yE,UAAUiiE,QAAU,SAASp8D,GACnC,IAAIknB,EAGJ,OAFAA,EAAQ,IAAImmD,EAAW1yE,KAAMqF,GAC7BrF,KAAK+iB,SAASviB,KAAK+rB,GACZvsB,IACT,EAEAmyE,EAAQ3yE,UAAUk/E,cAAgB,SAASr5E,GACzC,IAAW7D,EAAG+8E,EAKd,OAJA/8E,EAAIxB,KAAKuhB,OAAOwB,SAASlN,QAAQ7V,MACjCu+E,EAAUv+E,KAAKuhB,OAAOwB,SAASjN,OAAOtU,GAC9BxB,KAAKuhB,OAAOkgD,QAAQp8D,GAC5BzD,MAAMpC,UAAUgB,KAAKiC,MAAMzC,KAAKuhB,OAAOwB,SAAUw7D,GAC1Cv+E,IACT,EAEAmyE,EAAQ3yE,UAAUm/E,aAAe,SAASt5E,GACxC,IAAW7D,EAAG+8E,EAKd,OAJA/8E,EAAIxB,KAAKuhB,OAAOwB,SAASlN,QAAQ7V,MACjCu+E,EAAUv+E,KAAKuhB,OAAOwB,SAASjN,OAAOtU,EAAI,GAClCxB,KAAKuhB,OAAOkgD,QAAQp8D,GAC5BzD,MAAMpC,UAAUgB,KAAKiC,MAAMzC,KAAKuhB,OAAOwB,SAAUw7D,GAC1Cv+E,IACT,EAEAmyE,EAAQ3yE,UAAUmF,IAAM,SAASU,GAC/B,IAAIknB,EAGJ,OAFAA,EAAQ,IAAIosD,EAAO34E,KAAMqF,GACzBrF,KAAK+iB,SAASviB,KAAK+rB,GACZvsB,IACT,EAEAmyE,EAAQ3yE,UAAUk6E,MAAQ,WAGxB,OADQ,IAAIwB,EAASl7E,KAEvB,EAEAmyE,EAAQ3yE,UAAUm6E,YAAc,SAAS31E,EAAQqB,GAC/C,IAAI20E,EAAWC,EAAUN,EAAaj3E,EAAGL,EAOzC,GANc,MAAV2B,IACFA,EAAS+sE,EAAS/sE,IAEP,MAATqB,IACFA,EAAQ0rE,EAAS1rE,IAEfzD,MAAM4L,QAAQxJ,GAChB,IAAKtB,EAAI,EAAGL,EAAM2B,EAAOtC,OAAQgB,EAAIL,EAAKK,IACxCs3E,EAAYh2E,EAAOtB,GACnB1C,KAAK25E,YAAYK,QAEd,GAAI7oD,EAASntB,GAClB,IAAKg2E,KAAah2E,EACXonE,EAAQlqE,KAAK8C,EAAQg2E,KAC1BC,EAAWj2E,EAAOg2E,GAClBh6E,KAAK25E,YAAYK,EAAWC,SAG1BhyC,EAAW5iC,KACbA,EAAQA,EAAM5C,SAEhBk3E,EAAc,IAAIjB,EAAyB14E,KAAMgE,EAAQqB,GACzDrF,KAAK+iB,SAASviB,KAAKm5E,GAErB,OAAO35E,IACT,EAEAmyE,EAAQ3yE,UAAUo/E,kBAAoB,SAAS56E,EAAQqB,GACrD,IAAW7D,EAAG+8E,EAKd,OAJA/8E,EAAIxB,KAAKuhB,OAAOwB,SAASlN,QAAQ7V,MACjCu+E,EAAUv+E,KAAKuhB,OAAOwB,SAASjN,OAAOtU,GAC9BxB,KAAKuhB,OAAOo4D,YAAY31E,EAAQqB,GACxCzD,MAAMpC,UAAUgB,KAAKiC,MAAMzC,KAAKuhB,OAAOwB,SAAUw7D,GAC1Cv+E,IACT,EAEAmyE,EAAQ3yE,UAAUq/E,iBAAmB,SAAS76E,EAAQqB,GACpD,IAAW7D,EAAG+8E,EAKd,OAJA/8E,EAAIxB,KAAKuhB,OAAOwB,SAASlN,QAAQ7V,MACjCu+E,EAAUv+E,KAAKuhB,OAAOwB,SAASjN,OAAOtU,EAAI,GAClCxB,KAAKuhB,OAAOo4D,YAAY31E,EAAQqB,GACxCzD,MAAMpC,UAAUgB,KAAKiC,MAAMzC,KAAKuhB,OAAOwB,SAAUw7D,GAC1Cv+E,IACT,EAEAmyE,EAAQ3yE,UAAUm2E,YAAc,SAAS16C,EAASq6C,EAAUC,GAC1D,IAAI9N,EAAKwE,EAUT,OATAxE,EAAMznE,KAAKwJ,WACXyiE,EAAS,IAAIoJ,EAAe5N,EAAKxsC,EAASq6C,EAAUC,GACxB,IAAxB9N,EAAI1kD,SAASrhB,OACf+lE,EAAI1kD,SAASnQ,QAAQq5D,GACZxE,EAAI1kD,SAAS,GAAGlY,OAASymE,EAASZ,YAC3CjJ,EAAI1kD,SAAS,GAAKkpD,EAElBxE,EAAI1kD,SAASnQ,QAAQq5D,GAEhBxE,EAAI/7B,QAAU+7B,CACvB,EAEA0K,EAAQ3yE,UAAUw7E,IAAM,SAAStG,EAAOC,GACtC,IAAWlN,EAAK9F,EAASngE,EAAGkB,EAAG66E,EAAGl7E,EAAKo7E,EAAM1H,EAAM2H,EAInD,IAHAjW,EAAMznE,KAAKwJ,WACXm4D,EAAU,IAAIkU,EAAWpO,EAAKiN,EAAOC,GAEhCnzE,EAAIkB,EAAI,EAAGL,GADhB0zE,EAAOtO,EAAI1kD,UACgBrhB,OAAQgB,EAAIL,EAAKb,IAAMkB,EAEhD,GADQqzE,EAAKv0E,GACHqJ,OAASymE,EAASf,QAE1B,OADA9I,EAAI1kD,SAASvhB,GAAKmgE,EACXA,EAIX,IAAKngE,EAAI+7E,EAAI,EAAGE,GADhBC,EAAOjW,EAAI1kD,UACiBrhB,OAAQ67E,EAAIE,EAAMj8E,IAAM+7E,EAElD,GADQG,EAAKl8E,GACH25E,OAER,OADA1T,EAAI1kD,SAASjN,OAAOtU,EAAG,EAAGmgE,GACnBA,EAIX,OADA8F,EAAI1kD,SAASviB,KAAKmhE,GACXA,CACT,EAEAwQ,EAAQ3yE,UAAUusE,GAAK,WACrB,GAAI/rE,KAAKm7E,OACP,MAAM,IAAItvE,MAAM,kFAElB,OAAO7L,KAAKuhB,MACd,EAEA4wD,EAAQ3yE,UAAUksC,KAAO,WACvB,IAAIriC,EAEJ,IADAA,EAAOrJ,KACAqJ,GAAM,CACX,GAAIA,EAAKwB,OAASymE,EAAShB,SACzB,OAAOjnE,EAAKwtE,WACP,GAAIxtE,EAAK8xE,OACd,OAAO9xE,EAEPA,EAAOA,EAAKkY,MAEhB,CACF,EAEA4wD,EAAQ3yE,UAAUgK,SAAW,WAC3B,IAAIH,EAEJ,IADAA,EAAOrJ,KACAqJ,GAAM,CACX,GAAIA,EAAKwB,OAASymE,EAAShB,SACzB,OAAOjnE,EAEPA,EAAOA,EAAKkY,MAEhB,CACF,EAEA4wD,EAAQ3yE,UAAU0oB,IAAM,SAAStU,GAC/B,OAAO5T,KAAKwJ,WAAW0e,IAAItU,EAC7B,EAEAu+D,EAAQ3yE,UAAUs1B,KAAO,WACvB,IAAItzB,EAEJ,IADAA,EAAIxB,KAAKuhB,OAAOwB,SAASlN,QAAQ7V,OACzB,EACN,MAAM,IAAI6L,MAAM,8BAAgC7L,KAAKwxE,aAEvD,OAAOxxE,KAAKuhB,OAAOwB,SAASvhB,EAAI,EAClC,EAEA2wE,EAAQ3yE,UAAU6nB,KAAO,WACvB,IAAI7lB,EAEJ,IAAW,KADXA,EAAIxB,KAAKuhB,OAAOwB,SAASlN,QAAQ7V,QACjBwB,IAAMxB,KAAKuhB,OAAOwB,SAASrhB,OAAS,EAClD,MAAM,IAAImK,MAAM,6BAA+B7L,KAAKwxE,aAEtD,OAAOxxE,KAAKuhB,OAAOwB,SAASvhB,EAAI,EAClC,EAEA2wE,EAAQ3yE,UAAUs/E,eAAiB,SAASrX,GAC1C,IAAIsX,EAKJ,OAJAA,EAAatX,EAAI/7B,OAAO7qB,SACbU,OAASvhB,KACpB++E,EAAW5D,QAAS,EACpBn7E,KAAK+iB,SAASviB,KAAKu+E,GACZ/+E,IACT,EAEAmyE,EAAQ3yE,UAAUgyE,UAAY,SAASxwE,GACrC,IAAI+0E,EAAM2H,EAEV,OAAa,OADb18E,EAAOA,GAAQhB,KAAKgB,QAC4B,OAAvB+0E,EAAO/1E,KAAKuhB,QAAkBw0D,EAAK/0E,UAAO,GAEhD,MAARA,EACF,YAAchB,KAAKuhB,OAAOvgB,KAAO,KACL,OAAvB08E,EAAO19E,KAAKuhB,QAAkBm8D,EAAK18E,UAAO,GAG/C,UAAYA,EAAO,eAAiBhB,KAAKuhB,OAAOvgB,KAAO,IAFvD,UAAYA,EAAO,IAJnB,EAQX,EAEAmxE,EAAQ3yE,UAAUssE,IAAM,SAAS9qE,EAAMqwC,EAAYjhC,GACjD,OAAOpQ,KAAK6pC,QAAQ7oC,EAAMqwC,EAAYjhC,EACxC,EAEA+hE,EAAQ3yE,UAAUm7E,IAAM,SAAS35E,EAAMqwC,EAAYjhC,GACjD,OAAOpQ,KAAKqJ,KAAKrI,EAAMqwC,EAAYjhC,EACrC,EAEA+hE,EAAQ3yE,UAAUqsE,IAAM,SAASxmE,GAC/B,OAAOrF,KAAKoQ,KAAK/K,EACnB,EAEA8sE,EAAQ3yE,UAAUo7E,IAAM,SAASv1E,GAC/B,OAAOrF,KAAKuhE,MAAMl8D,EACpB,EAEA8sE,EAAQ3yE,UAAUq7E,IAAM,SAASx1E,GAC/B,OAAOrF,KAAKyhE,QAAQp8D,EACtB,EAEA8sE,EAAQ3yE,UAAUs7E,IAAM,SAAS92E,EAAQqB,GACvC,OAAOrF,KAAK25E,YAAY31E,EAAQqB,EAClC,EAEA8sE,EAAQ3yE,UAAUioE,IAAM,WACtB,OAAOznE,KAAKwJ,UACd,EAEA2oE,EAAQ3yE,UAAUu7E,IAAM,SAAS9/C,EAASq6C,EAAUC,GAClD,OAAOv1E,KAAK21E,YAAY16C,EAASq6C,EAAUC,EAC7C,EAEApD,EAAQ3yE,UAAUyF,EAAI,SAASjE,EAAMqwC,EAAYjhC,GAC/C,OAAOpQ,KAAK6pC,QAAQ7oC,EAAMqwC,EAAYjhC,EACxC,EAEA+hE,EAAQ3yE,UAAUg4B,EAAI,SAASx2B,EAAMqwC,EAAYjhC,GAC/C,OAAOpQ,KAAKqJ,KAAKrI,EAAMqwC,EAAYjhC,EACrC,EAEA+hE,EAAQ3yE,UAAUkgC,EAAI,SAASr6B,GAC7B,OAAOrF,KAAKoQ,KAAK/K,EACnB,EAEA8sE,EAAQ3yE,UAAUspE,EAAI,SAASzjE,GAC7B,OAAOrF,KAAKuhE,MAAMl8D,EACpB,EAEA8sE,EAAQ3yE,UAAUmgB,EAAI,SAASta,GAC7B,OAAOrF,KAAKyhE,QAAQp8D,EACtB,EAEA8sE,EAAQ3yE,UAAUy7E,EAAI,SAAS51E,GAC7B,OAAOrF,KAAK2E,IAAIU,EAClB,EAEA8sE,EAAQ3yE,UAAUgC,EAAI,SAASwC,EAAQqB,GACrC,OAAOrF,KAAK25E,YAAY31E,EAAQqB,EAClC,EAEA8sE,EAAQ3yE,UAAUw/E,EAAI,WACpB,OAAOh/E,KAAK+rE,IACd,EAEAoG,EAAQ3yE,UAAUy/E,iBAAmB,SAASxX,GAC5C,OAAOznE,KAAK8+E,eAAerX,EAC7B,EAEA0K,EAAQ3yE,UAAU0/E,aAAe,SAASb,EAAUc,GAClD,MAAM,IAAItzE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAW,EAAQ3yE,UAAUkpE,YAAc,SAASyW,GACvC,MAAM,IAAItzE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAW,EAAQ3yE,UAAUmiC,YAAc,SAAS08C,GACvC,MAAM,IAAIxyE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAW,EAAQ3yE,UAAU4/E,cAAgB,WAChC,OAAgC,IAAzBp/E,KAAK+iB,SAASrhB,MACvB,EAEAywE,EAAQ3yE,UAAUq9C,UAAY,SAAShoC,GACrC,MAAM,IAAIhJ,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAW,EAAQ3yE,UAAUqmE,UAAY,WAC5B,MAAM,IAAIh6D,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAW,EAAQ3yE,UAAU6/E,YAAc,SAAShM,EAASp4C,GAChD,OAAO,CACT,EAEAk3C,EAAQ3yE,UAAU8/E,cAAgB,WAChC,OAA+B,IAAxBt/E,KAAKy5E,QAAQ/3E,MACtB,EAEAywE,EAAQ3yE,UAAU+/E,wBAA0B,SAASC,GACnD,IAAIh+D,EAAKvB,EAET,OADAuB,EAAMxhB,QACMw/E,EACH,EACEx/E,KAAKwJ,aAAeg2E,EAAMh2E,YACnCyW,EAAM88D,EAAiBvN,aAAeuN,EAAiBlN,uBACnDt6C,KAAKu4B,SAAW,GAClB7tC,GAAO88D,EAAiBtN,UAExBxvD,GAAO88D,EAAiBrN,UAEnBzvD,GACEuB,EAAIi+D,WAAWD,GACjBzC,EAAiBpN,SAAWoN,EAAiBtN,UAC3CjuD,EAAIk+D,aAAaF,GACnBzC,EAAiBpN,SAAWoN,EAAiBrN,UAC3CluD,EAAIm+D,YAAYH,GAClBzC,EAAiBtN,UAEjBsN,EAAiBrN,SAE5B,EAEAyC,EAAQ3yE,UAAUogF,WAAa,SAASJ,GACtC,MAAM,IAAI3zE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAW,EAAQ3yE,UAAUqgF,aAAe,SAAS9N,GACxC,MAAM,IAAIlmE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAW,EAAQ3yE,UAAUsgF,mBAAqB,SAAS/N,GAC9C,MAAM,IAAIlmE,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAW,EAAQ3yE,UAAUugF,mBAAqB,SAASrgF,GAC9C,MAAM,IAAImM,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAW,EAAQ3yE,UAAUsyE,YAAc,SAASzoE,GACvC,IAAI7H,EAAGkB,EAAGqzE,EACV,GAAI1sE,EAAKu8D,WAAa5lE,KAAK4lE,SACzB,OAAO,EAET,GAAIv8D,EAAK0Z,SAASrhB,SAAW1B,KAAK+iB,SAASrhB,OACzC,OAAO,EAET,IAAKF,EAAIkB,EAAI,EAAGqzE,EAAO/1E,KAAK+iB,SAASrhB,OAAS,EAAG,GAAKq0E,EAAOrzE,GAAKqzE,EAAOrzE,GAAKqzE,EAAMv0E,EAAI,GAAKu0E,IAASrzE,IAAMA,EAC1G,IAAK1C,KAAK+iB,SAASvhB,GAAGswE,YAAYzoE,EAAK0Z,SAASvhB,IAC9C,OAAO,EAGX,OAAO,CACT,EAEA2wE,EAAQ3yE,UAAUo0E,WAAa,SAASP,EAASp4C,GAC/C,MAAM,IAAIpvB,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAW,EAAQ3yE,UAAUwgF,YAAc,SAASpzE,EAAK9H,EAAMgmB,GAClD,MAAM,IAAIjf,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAW,EAAQ3yE,UAAUygF,YAAc,SAASrzE,GACvC,MAAM,IAAIf,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAW,EAAQ3yE,UAAUigD,SAAW,SAAS+/B,GACpC,QAAKA,IAGEA,IAAUx/E,MAAQA,KAAK0/E,aAAaF,GAC7C,EAEArN,EAAQ3yE,UAAUkgF,aAAe,SAASr2E,GACxC,IAAIkjB,EAA0B7pB,EAAGL,EAAK0zE,EAEtC,IAAKrzE,EAAI,EAAGL,GADZ0zE,EAAO/1E,KAAK+iB,UACWrhB,OAAQgB,EAAIL,EAAKK,IAAK,CAE3C,GAAI2G,KADJkjB,EAAQwpD,EAAKrzE,IAEX,OAAO,EAGT,GADoB6pB,EAAMmzD,aAAar2E,GAErC,OAAO,CAEX,CACA,OAAO,CACT,EAEA8oE,EAAQ3yE,UAAUigF,WAAa,SAASp2E,GACtC,OAAOA,EAAKq2E,aAAa1/E,KAC3B,EAEAmyE,EAAQ3yE,UAAUmgF,YAAc,SAASt2E,GACvC,IAAI62E,EAASC,EAGb,OAFAD,EAAUlgF,KAAKogF,aAAa/2E,GAC5B82E,EAAUngF,KAAKogF,aAAapgF,OACX,IAAbkgF,IAA+B,IAAbC,GAGbD,EAAUC,CAErB,EAEAhO,EAAQ3yE,UAAU6gF,YAAc,SAASh3E,GACvC,IAAI62E,EAASC,EAGb,OAFAD,EAAUlgF,KAAKogF,aAAa/2E,GAC5B82E,EAAUngF,KAAKogF,aAAapgF,OACX,IAAbkgF,IAA+B,IAAbC,GAGbD,EAAUC,CAErB,EAEAhO,EAAQ3yE,UAAU4gF,aAAe,SAAS/2E,GACxC,IAAIi3E,EAAOC,EASX,OARAA,EAAM,EACND,GAAQ,EACRtgF,KAAKwgF,gBAAgBxgF,KAAKwJ,YAAY,SAAS8zE,GAE7C,GADAiD,KACKD,GAAShD,IAAcj0E,EAC1B,OAAOi3E,GAAQ,CAEnB,IACIA,EACKC,GAEC,CAEZ,EAEApO,EAAQ3yE,UAAUghF,gBAAkB,SAASn3E,EAAMo3E,GACjD,IAAIl0D,EAAO7pB,EAAGL,EAAK0zE,EAAM91D,EAGzB,IAFA5W,IAASA,EAAOrJ,KAAKwJ,YAEhB9G,EAAI,EAAGL,GADZ0zE,EAAO1sE,EAAK0Z,UACWrhB,OAAQgB,EAAIL,EAAKK,IAAK,CAE3C,GAAIud,EAAMwgE,EADVl0D,EAAQwpD,EAAKrzE,IAEX,OAAOud,EAGP,GADAA,EAAMjgB,KAAKwgF,gBAAgBj0D,EAAOk0D,GAEhC,OAAOxgE,CAGb,CACF,EAEOkyD,CAER,CA7uB0B,EA+uB5B,GAAEjxE,KAAKlB,0BC/wBR,WAGE+C,EAAOC,QAAwB,WAC7B,SAASg6E,EAAYxxC,GACnBxrC,KAAKwrC,MAAQA,CACf,CAgBA,OAdAjsC,OAAO0Z,eAAe+jE,EAAYx9E,UAAW,SAAU,CACrDuG,IAAK,WACH,OAAO/F,KAAKwrC,MAAM9pC,QAAU,CAC9B,IAGFs7E,EAAYx9E,UAAUqhB,MAAQ,WAC5B,OAAO7gB,KAAKwrC,MAAQ,IACtB,EAEAwxC,EAAYx9E,UAAU8E,KAAO,SAASma,GACpC,OAAOze,KAAKwrC,MAAM/sB,IAAU,IAC9B,EAEOu+D,CAER,CArB8B,EAuBhC,GAAE97E,KAAKlB,8BC1BR,WACE,IAAIsxE,EAAUW,EAEZ7G,EAAU,CAAC,EAAE3rE,eAEf6xE,EAAW,EAAQ,OAEnBW,EAAmB,EAAQ,OAE3BlvE,EAAOC,QAAqC,SAAU05D,GAGpD,SAASgc,EAAyBn3D,EAAQvd,EAAQqB,GAEhD,GADAqzE,EAAyB3K,UAAUlqE,YAAY3C,KAAKlB,KAAMuhB,GAC5C,MAAVvd,EACF,MAAM,IAAI6H,MAAM,+BAAiC7L,KAAKwxE,aAExDxxE,KAAK6K,KAAOymE,EAASlB,sBACrBpwE,KAAKgE,OAAShE,KAAKuF,UAAUy0E,UAAUh2E,GACvChE,KAAKgB,KAAOhB,KAAKgE,OACbqB,IACFrF,KAAKqF,MAAQrF,KAAKuF,UAAU00E,SAAS50E,GAEzC,CAoBA,OAzCS,SAASknB,EAAOhL,GAAU,IAAK,IAAI3U,KAAO2U,EAAc6pD,EAAQlqE,KAAKqgB,EAAQ3U,KAAM2f,EAAM3f,GAAO2U,EAAO3U,IAAQ,SAASkhE,IAAS9tE,KAAK6D,YAAc0oB,CAAO,CAAEuhD,EAAKtuE,UAAY+hB,EAAO/hB,UAAW+sB,EAAM/sB,UAAY,IAAIsuE,EAAQvhD,EAAMwhD,UAAYxsD,EAAO/hB,SAAyB,CAQzRggB,CAAOk5D,EAA0Bhc,GAejCgc,EAAyBl5E,UAAUqhB,MAAQ,WACzC,OAAOthB,OAAOqB,OAAOZ,KACvB,EAEA04E,EAAyBl5E,UAAUkI,SAAW,SAASkM,GACrD,OAAO5T,KAAK4T,QAAQg+D,OAAOsI,sBAAsBl6E,KAAMA,KAAK4T,QAAQg+D,OAAOC,cAAcj+D,GAC3F,EAEA8kE,EAAyBl5E,UAAUsyE,YAAc,SAASzoE,GACxD,QAAKqvE,EAAyB3K,UAAU+D,YAAYrvE,MAAMzC,KAAMsC,WAAWwvE,YAAYzoE,IAGnFA,EAAKrF,SAAWhE,KAAKgE,MAI3B,EAEO00E,CAER,CApC2C,CAoCzCzG,EAEJ,GAAE/wE,KAAKlB,6BC/CR,WACE,IAAIsxE,EAAUa,EAEZ/G,EAAU,CAAC,EAAE3rE,eAEf6xE,EAAW,EAAQ,OAEnBa,EAAU,EAAQ,OAElBpvE,EAAOC,QAAmB,SAAU05D,GAGlC,SAASic,EAAOp3D,EAAQnR,GAEtB,GADAuoE,EAAO5K,UAAUlqE,YAAY3C,KAAKlB,KAAMuhB,GAC5B,MAARnR,EACF,MAAM,IAAIvE,MAAM,qBAAuB7L,KAAKwxE,aAE9CxxE,KAAK6K,KAAOymE,EAASX,IACrB3wE,KAAKqF,MAAQrF,KAAKuF,UAAUZ,IAAIyL,EAClC,CAUA,OA3BS,SAASmc,EAAOhL,GAAU,IAAK,IAAI3U,KAAO2U,EAAc6pD,EAAQlqE,KAAKqgB,EAAQ3U,KAAM2f,EAAM3f,GAAO2U,EAAO3U,IAAQ,SAASkhE,IAAS9tE,KAAK6D,YAAc0oB,CAAO,CAAEuhD,EAAKtuE,UAAY+hB,EAAO/hB,UAAW+sB,EAAM/sB,UAAY,IAAIsuE,EAAQvhD,EAAMwhD,UAAYxsD,EAAO/hB,SAAyB,CAQzRggB,CAAOm5D,EAAQjc,GAWfic,EAAOn5E,UAAUqhB,MAAQ,WACvB,OAAOthB,OAAOqB,OAAOZ,KACvB,EAEA24E,EAAOn5E,UAAUkI,SAAW,SAASkM,GACnC,OAAO5T,KAAK4T,QAAQg+D,OAAOjtE,IAAI3E,KAAMA,KAAK4T,QAAQg+D,OAAOC,cAAcj+D,GACzE,EAEO+kE,CAER,CAtByB,CAsBvBxG,EAEJ,GAAEjxE,KAAKlB,8BCjCR,WACE,IAAIsxE,EAAUkH,EAA8BkI,EAE1CtV,EAAU,CAAC,EAAE3rE,eAEf6xE,EAAW,EAAQ,OAEnBoP,EAAgB,EAAQ,MAExBlI,EAAc,EAAQ,OAEtBz1E,EAAOC,QAA4B,SAAU05D,GAG3C,SAASikB,EAAgBC,EAAQhtE,GAC/B5T,KAAK4gF,OAASA,EACdD,EAAgB5S,UAAUlqE,YAAY3C,KAAKlB,KAAM4T,EACnD,CAyJA,OAxKS,SAAS2Y,EAAOhL,GAAU,IAAK,IAAI3U,KAAO2U,EAAc6pD,EAAQlqE,KAAKqgB,EAAQ3U,KAAM2f,EAAM3f,GAAO2U,EAAO3U,IAAQ,SAASkhE,IAAS9tE,KAAK6D,YAAc0oB,CAAO,CAAEuhD,EAAKtuE,UAAY+hB,EAAO/hB,UAAW+sB,EAAM/sB,UAAY,IAAIsuE,EAAQvhD,EAAMwhD,UAAYxsD,EAAO/hB,SAAyB,CAUzRggB,CAAOmhE,EAAiBjkB,GAOxBikB,EAAgBnhF,UAAUg7E,QAAU,SAASnxE,EAAMuK,EAAS8mE,GAC1D,OAAIrxE,EAAKw3E,gBAAkBjtE,EAAQjH,QAAU6rE,EAAYnH,SAChD,GAEAsP,EAAgB5S,UAAUyM,QAAQt5E,KAAKlB,KAAMqJ,EAAMuK,EAAS8mE,EAEvE,EAEAiG,EAAgBnhF,UAAUgK,SAAW,SAASi+D,EAAK7zD,GACjD,IAAI2Y,EAAO/qB,EAAGkB,EAAG66E,EAAGl7E,EAAKo7E,EAAMj8D,EAAKs0D,EAAMtmC,EAE1C,IAAKhuC,EAAIkB,EAAI,EAAGL,GADhBmf,EAAMimD,EAAI1kD,UACgBrhB,OAAQgB,EAAIL,EAAKb,IAAMkB,GAC/C6pB,EAAQ/K,EAAIhgB,IACNq/E,eAAiBr/E,IAAMimE,EAAI1kD,SAASrhB,OAAS,EAKrD,IAHAkS,EAAU5T,KAAK6xE,cAAcj+D,GAE7B47B,EAAU,GACL+tC,EAAI,EAAGE,GAFZ3H,EAAOrO,EAAI1kD,UAEarhB,OAAQ67E,EAAIE,EAAMF,IACxChxD,EAAQupD,EAAKyH,GACb/tC,EAAQhvC,KAAKR,KAAK8gF,eAAev0D,EAAO3Y,EAAS,IAEnD,OAAO47B,CACT,EAEAmxC,EAAgBnhF,UAAU8xC,UAAY,SAAS06B,EAAKp4D,EAAS8mE,GAC3D,OAAO16E,KAAK4gF,OAAOjhB,MAAMghB,EAAgB5S,UAAUz8B,UAAUpwC,KAAKlB,KAAMgsE,EAAKp4D,EAAS8mE,GACxF,EAEAiG,EAAgBnhF,UAAU+hE,MAAQ,SAASl4D,EAAMuK,EAAS8mE,GACxD,OAAO16E,KAAK4gF,OAAOjhB,MAAMghB,EAAgB5S,UAAUxM,MAAMrgE,KAAKlB,KAAMqJ,EAAMuK,EAAS8mE,GACrF,EAEAiG,EAAgBnhF,UAAUiiE,QAAU,SAASp4D,EAAMuK,EAAS8mE,GAC1D,OAAO16E,KAAK4gF,OAAOjhB,MAAMghB,EAAgB5S,UAAUtM,QAAQvgE,KAAKlB,KAAMqJ,EAAMuK,EAAS8mE,GACvF,EAEAiG,EAAgBnhF,UAAUm2E,YAAc,SAAStsE,EAAMuK,EAAS8mE,GAC9D,OAAO16E,KAAK4gF,OAAOjhB,MAAMghB,EAAgB5S,UAAU4H,YAAYz0E,KAAKlB,KAAMqJ,EAAMuK,EAAS8mE,GAC3F,EAEAiG,EAAgBnhF,UAAU42E,QAAU,SAAS/sE,EAAMuK,EAAS8mE,GAC1D,IAAInuD,EAAO7pB,EAAGL,EAAKmf,EAWnB,GAVAk5D,IAAUA,EAAQ,GAClB16E,KAAKq6E,SAAShxE,EAAMuK,EAAS8mE,GAC7B9mE,EAAQjH,MAAQ6rE,EAAYrH,QAC5BnxE,KAAK4gF,OAAOjhB,MAAM3/D,KAAKu6E,OAAOlxE,EAAMuK,EAAS8mE,IAC7C16E,KAAK4gF,OAAOjhB,MAAM,aAAet2D,EAAKqiC,OAAO1qC,MACzCqI,EAAKqrE,OAASrrE,EAAKsrE,MACrB30E,KAAK4gF,OAAOjhB,MAAM,YAAct2D,EAAKqrE,MAAQ,MAAQrrE,EAAKsrE,MAAQ,KACzDtrE,EAAKsrE,OACd30E,KAAK4gF,OAAOjhB,MAAM,YAAct2D,EAAKsrE,MAAQ,KAE3CtrE,EAAK0Z,SAASrhB,OAAS,EAAG,CAK5B,IAJA1B,KAAK4gF,OAAOjhB,MAAM,MAClB3/D,KAAK4gF,OAAOjhB,MAAM3/D,KAAKw6E,QAAQnxE,EAAMuK,EAAS8mE,IAC9C9mE,EAAQjH,MAAQ6rE,EAAYpH,UAEvB1uE,EAAI,EAAGL,GADZmf,EAAMnY,EAAK0Z,UACWrhB,OAAQgB,EAAIL,EAAKK,IACrC6pB,EAAQ/K,EAAI9e,GACZ1C,KAAK8gF,eAAev0D,EAAO3Y,EAAS8mE,EAAQ,GAE9C9mE,EAAQjH,MAAQ6rE,EAAYnH,SAC5BrxE,KAAK4gF,OAAOjhB,MAAM,IACpB,CAKA,OAJA/rD,EAAQjH,MAAQ6rE,EAAYnH,SAC5BrxE,KAAK4gF,OAAOjhB,MAAM/rD,EAAQmtE,iBAAmB,KAC7C/gF,KAAK4gF,OAAOjhB,MAAM3/D,KAAKw6E,QAAQnxE,EAAMuK,EAAS8mE,IAC9C9mE,EAAQjH,MAAQ6rE,EAAYtH,KACrBlxE,KAAKo6E,UAAU/wE,EAAMuK,EAAS8mE,EACvC,EAEAiG,EAAgBnhF,UAAUqqC,QAAU,SAASxgC,EAAMuK,EAAS8mE,GAC1D,IAAI1O,EAAKz/C,EAAOy0D,EAAgBC,EAAgBv+E,EAAGL,EAAKrB,EAAwBwgB,EAAKs0D,EAMrF,IAAK90E,KALL05E,IAAUA,EAAQ,GAClB16E,KAAKq6E,SAAShxE,EAAMuK,EAAS8mE,GAC7B9mE,EAAQjH,MAAQ6rE,EAAYrH,QAC5BnxE,KAAK4gF,OAAOjhB,MAAM3/D,KAAKu6E,OAAOlxE,EAAMuK,EAAS8mE,GAAS,IAAMrxE,EAAKrI,MACjEwgB,EAAMnY,EAAKowE,QAEJrO,EAAQlqE,KAAKsgB,EAAKxgB,KACvBgrE,EAAMxqD,EAAIxgB,GACVhB,KAAKsxC,UAAU06B,EAAKp4D,EAAS8mE,IAI/B,GADAuG,EAAoC,KADpCD,EAAiB33E,EAAK0Z,SAASrhB,QACS,KAAO2H,EAAK0Z,SAAS,GACtC,IAAnBi+D,GAAwB33E,EAAK0Z,SAAShB,OAAM,SAAS9c,GACvD,OAAQA,EAAE4F,OAASymE,EAAStB,MAAQ/qE,EAAE4F,OAASymE,EAASX,MAAoB,KAAZ1rE,EAAEI,KACpE,IACMuO,EAAQstE,YACVlhF,KAAK4gF,OAAOjhB,MAAM,KAClB/rD,EAAQjH,MAAQ6rE,EAAYnH,SAC5BrxE,KAAK4gF,OAAOjhB,MAAM,KAAOt2D,EAAKrI,KAAO,OAErC4S,EAAQjH,MAAQ6rE,EAAYnH,SAC5BrxE,KAAK4gF,OAAOjhB,MAAM/rD,EAAQmtE,iBAAmB,YAE1C,IAAIntE,EAAQmU,QAA6B,IAAnBi5D,GAAyBC,EAAep2E,OAASymE,EAAStB,MAAQiR,EAAep2E,OAASymE,EAASX,KAAiC,MAAxBsQ,EAAe57E,MAUjJ,CAIL,IAHArF,KAAK4gF,OAAOjhB,MAAM,IAAM3/D,KAAKw6E,QAAQnxE,EAAMuK,EAAS8mE,IACpD9mE,EAAQjH,MAAQ6rE,EAAYpH,UAEvB1uE,EAAI,EAAGL,GADZyzE,EAAOzsE,EAAK0Z,UACWrhB,OAAQgB,EAAIL,EAAKK,IACtC6pB,EAAQupD,EAAKpzE,GACb1C,KAAK8gF,eAAev0D,EAAO3Y,EAAS8mE,EAAQ,GAE9C9mE,EAAQjH,MAAQ6rE,EAAYnH,SAC5BrxE,KAAK4gF,OAAOjhB,MAAM3/D,KAAKu6E,OAAOlxE,EAAMuK,EAAS8mE,GAAS,KAAOrxE,EAAKrI,KAAO,IAC3E,MAnBEhB,KAAK4gF,OAAOjhB,MAAM,KAClB/rD,EAAQjH,MAAQ6rE,EAAYpH,UAC5Bx9D,EAAQutE,sBAERnhF,KAAK8gF,eAAeG,EAAgBrtE,EAAS8mE,EAAQ,GACrD9mE,EAAQutE,sBAERvtE,EAAQjH,MAAQ6rE,EAAYnH,SAC5BrxE,KAAK4gF,OAAOjhB,MAAM,KAAOt2D,EAAKrI,KAAO,KAcvC,OAFAhB,KAAK4gF,OAAOjhB,MAAM3/D,KAAKw6E,QAAQnxE,EAAMuK,EAAS8mE,IAC9C9mE,EAAQjH,MAAQ6rE,EAAYtH,KACrBlxE,KAAKo6E,UAAU/wE,EAAMuK,EAAS8mE,EACvC,EAEAiG,EAAgBnhF,UAAU06E,sBAAwB,SAAS7wE,EAAMuK,EAAS8mE,GACxE,OAAO16E,KAAK4gF,OAAOjhB,MAAMghB,EAAgB5S,UAAUmM,sBAAsBh5E,KAAKlB,KAAMqJ,EAAMuK,EAAS8mE,GACrG,EAEAiG,EAAgBnhF,UAAUmF,IAAM,SAAS0E,EAAMuK,EAAS8mE,GACtD,OAAO16E,KAAK4gF,OAAOjhB,MAAMghB,EAAgB5S,UAAUppE,IAAIzD,KAAKlB,KAAMqJ,EAAMuK,EAAS8mE,GACnF,EAEAiG,EAAgBnhF,UAAU4Q,KAAO,SAAS/G,EAAMuK,EAAS8mE,GACvD,OAAO16E,KAAK4gF,OAAOjhB,MAAMghB,EAAgB5S,UAAU39D,KAAKlP,KAAKlB,KAAMqJ,EAAMuK,EAAS8mE,GACpF,EAEAiG,EAAgBnhF,UAAU40E,WAAa,SAAS/qE,EAAMuK,EAAS8mE,GAC7D,OAAO16E,KAAK4gF,OAAOjhB,MAAMghB,EAAgB5S,UAAUqG,WAAWlzE,KAAKlB,KAAMqJ,EAAMuK,EAAS8mE,GAC1F,EAEAiG,EAAgBnhF,UAAU+0E,WAAa,SAASlrE,EAAMuK,EAAS8mE,GAC7D,OAAO16E,KAAK4gF,OAAOjhB,MAAMghB,EAAgB5S,UAAUwG,WAAWrzE,KAAKlB,KAAMqJ,EAAMuK,EAAS8mE,GAC1F,EAEAiG,EAAgBnhF,UAAU01E,UAAY,SAAS7rE,EAAMuK,EAAS8mE,GAC5D,OAAO16E,KAAK4gF,OAAOjhB,MAAMghB,EAAgB5S,UAAUmH,UAAUh0E,KAAKlB,KAAMqJ,EAAMuK,EAAS8mE,GACzF,EAEAiG,EAAgBnhF,UAAU41E,YAAc,SAAS/rE,EAAMuK,EAAS8mE,GAC9D,OAAO16E,KAAK4gF,OAAOjhB,MAAMghB,EAAgB5S,UAAUqH,YAAYl0E,KAAKlB,KAAMqJ,EAAMuK,EAAS8mE,GAC3F,EAEOiG,CAER,CAjKkC,CAiKhCD,EAEJ,GAAEx/E,KAAKlB,8BC9KR,WACE,IAAqB0gF,EAEnBtV,EAAU,CAAC,EAAE3rE,eAEfihF,EAAgB,EAAQ,MAExB39E,EAAOC,QAA4B,SAAU05D,GAG3C,SAAS8Z,EAAgB5iE,GACvB4iE,EAAgBzI,UAAUlqE,YAAY3C,KAAKlB,KAAM4T,EACnD,CAiBA,OA3BS,SAAS2Y,EAAOhL,GAAU,IAAK,IAAI3U,KAAO2U,EAAc6pD,EAAQlqE,KAAKqgB,EAAQ3U,KAAM2f,EAAM3f,GAAO2U,EAAO3U,IAAQ,SAASkhE,IAAS9tE,KAAK6D,YAAc0oB,CAAO,CAAEuhD,EAAKtuE,UAAY+hB,EAAO/hB,UAAW+sB,EAAM/sB,UAAY,IAAIsuE,EAAQvhD,EAAMwhD,UAAYxsD,EAAO/hB,SAAyB,CAMzRggB,CAAOg3D,EAAiB9Z,GAMxB8Z,EAAgBh3E,UAAUgK,SAAW,SAASi+D,EAAK7zD,GACjD,IAAI2Y,EAAO/qB,EAAGa,EAAK44E,EAAGz5D,EAItB,IAHA5N,EAAU5T,KAAK6xE,cAAcj+D,GAC7BqnE,EAAI,GAECz5E,EAAI,EAAGa,GADZmf,EAAMimD,EAAI1kD,UACYrhB,OAAQF,EAAIa,EAAKb,IACrC+qB,EAAQ/K,EAAIhgB,GACZy5E,GAAKj7E,KAAK8gF,eAAev0D,EAAO3Y,EAAS,GAK3C,OAHIA,EAAQmU,QAAUkzD,EAAE95E,OAAOyS,EAAQwtE,QAAQ1/E,UAAYkS,EAAQwtE,UACjEnG,EAAIA,EAAE95E,MAAM,GAAIyS,EAAQwtE,QAAQ1/E,SAE3Bu5E,CACT,EAEOzE,CAER,CAxBkC,CAwBhCkK,EAEJ,GAAEx/E,KAAKlB,0BCjCR,WACE,IACEkU,EAAO,SAASrU,EAAIilE,GAAK,OAAO,WAAY,OAAOjlE,EAAG4C,MAAMqiE,EAAIxiE,UAAY,CAAG,EAC/E8oE,EAAU,CAAC,EAAE3rE,eAEfsD,EAAOC,QAA2B,WAChC,SAASyzE,EAAe7iE,GAGtB,IAAIhH,EAAK4U,EAAKnc,EAOd,IAAKuH,KATL5M,KAAKqhF,gBAAkBntE,EAAKlU,KAAKqhF,gBAAiBrhF,MAClDA,KAAKshF,gBAAkBptE,EAAKlU,KAAKshF,gBAAiBthF,MAElD4T,IAAYA,EAAU,CAAC,GACvB5T,KAAK4T,QAAUA,EACV5T,KAAK4T,QAAQqnB,UAChBj7B,KAAK4T,QAAQqnB,QAAU,OAEzBzZ,EAAM5N,EAAQrO,WAAa,CAAC,EAErB6lE,EAAQlqE,KAAKsgB,EAAK5U,KACvBvH,EAAQmc,EAAI5U,GACZ5M,KAAK4M,GAAOvH,EAEhB,CAqNA,OAnNAoxE,EAAej3E,UAAUwB,KAAO,SAASqf,GACvC,OAAIrgB,KAAK4T,QAAQkmE,aACRz5D,EAEFrgB,KAAKqhF,gBAAgB,GAAKhhE,GAAO,GAC1C,EAEAo2D,EAAej3E,UAAU4Q,KAAO,SAASiQ,GACvC,OAAIrgB,KAAK4T,QAAQkmE,aACRz5D,EAEFrgB,KAAKshF,gBAAgBthF,KAAKuhF,WAAW,GAAKlhE,GAAO,IAC1D,EAEAo2D,EAAej3E,UAAU+hE,MAAQ,SAASlhD,GACxC,OAAIrgB,KAAK4T,QAAQkmE,aACRz5D,GAGTA,GADAA,EAAM,GAAKA,GAAO,IACRvU,QAAQ,MAAO,mBAClB9L,KAAKshF,gBAAgBjhE,GAC9B,EAEAo2D,EAAej3E,UAAUiiE,QAAU,SAASphD,GAC1C,GAAIrgB,KAAK4T,QAAQkmE,aACf,OAAOz5D,EAGT,IADAA,EAAM,GAAKA,GAAO,IACVpF,MAAM,MACZ,MAAM,IAAIpP,MAAM,6CAA+CwU,GAEjE,OAAOrgB,KAAKshF,gBAAgBjhE,EAC9B,EAEAo2D,EAAej3E,UAAUmF,IAAM,SAAS0b,GACtC,OAAIrgB,KAAK4T,QAAQkmE,aACRz5D,EAEF,GAAKA,GAAO,EACrB,EAEAo2D,EAAej3E,UAAUiyE,SAAW,SAASpxD,GAC3C,OAAIrgB,KAAK4T,QAAQkmE,aACRz5D,EAEFrgB,KAAKshF,gBAAgBthF,KAAKwhF,UAAUnhE,EAAM,GAAKA,GAAO,IAC/D,EAEAo2D,EAAej3E,UAAUw6E,UAAY,SAAS35D,GAC5C,OAAIrgB,KAAK4T,QAAQkmE,aACRz5D,EAEFrgB,KAAKshF,gBAAgB,GAAKjhE,GAAO,GAC1C,EAEAo2D,EAAej3E,UAAUy6E,SAAW,SAAS55D,GAC3C,GAAIrgB,KAAK4T,QAAQkmE,aACf,OAAOz5D,EAGT,IADAA,EAAM,GAAKA,GAAO,IACVpF,MAAM,OACZ,MAAM,IAAIpP,MAAM,yCAA2CwU,GAE7D,OAAOrgB,KAAKshF,gBAAgBjhE,EAC9B,EAEAo2D,EAAej3E,UAAUg2E,WAAa,SAASn1D,GAC7C,GAAIrgB,KAAK4T,QAAQkmE,aACf,OAAOz5D,EAGT,KADAA,EAAM,GAAKA,GAAO,IACTpF,MAAM,aACb,MAAM,IAAIpP,MAAM,2BAA6BwU,GAE/C,OAAOA,CACT,EAEAo2D,EAAej3E,UAAUi2E,YAAc,SAASp1D,GAC9C,GAAIrgB,KAAK4T,QAAQkmE,aACf,OAAOz5D,EAGT,KADAA,EAAM,GAAKA,GAAO,IACTpF,MAAM,iCACb,MAAM,IAAIpP,MAAM,qBAAuBwU,GAEzC,OAAOrgB,KAAKshF,gBAAgBjhE,EAC9B,EAEAo2D,EAAej3E,UAAUk2E,cAAgB,SAASr1D,GAChD,OAAIrgB,KAAK4T,QAAQkmE,aACRz5D,EAELA,EACK,MAEA,IAEX,EAEAo2D,EAAej3E,UAAUq1E,SAAW,SAASx0D,GAC3C,OAAIrgB,KAAK4T,QAAQkmE,aACRz5D,EAEFrgB,KAAKshF,gBAAgB,GAAKjhE,GAAO,GAC1C,EAEAo2D,EAAej3E,UAAUs1E,SAAW,SAASz0D,GAC3C,OAAIrgB,KAAK4T,QAAQkmE,aACRz5D,EAEFrgB,KAAKshF,gBAAgB,GAAKjhE,GAAO,GAC1C,EAEAo2D,EAAej3E,UAAU80E,gBAAkB,SAASj0D,GAClD,OAAIrgB,KAAK4T,QAAQkmE,aACRz5D,EAEFrgB,KAAKshF,gBAAgB,GAAKjhE,GAAO,GAC1C,EAEAo2D,EAAej3E,UAAU00E,WAAa,SAAS7zD,GAC7C,OAAIrgB,KAAK4T,QAAQkmE,aACRz5D,EAEFrgB,KAAKshF,gBAAgB,GAAKjhE,GAAO,GAC1C,EAEAo2D,EAAej3E,UAAU20E,cAAgB,SAAS9zD,GAChD,OAAIrgB,KAAK4T,QAAQkmE,aACRz5D,EAEFrgB,KAAKshF,gBAAgB,GAAKjhE,GAAO,GAC1C,EAEAo2D,EAAej3E,UAAUy1E,eAAiB,SAAS50D,GACjD,OAAIrgB,KAAK4T,QAAQkmE,aACRz5D,EAEFrgB,KAAKshF,gBAAgB,GAAKjhE,GAAO,GAC1C,EAEAo2D,EAAej3E,UAAUw1E,SAAW,SAAS30D,GAC3C,OAAIrgB,KAAK4T,QAAQkmE,aACRz5D,EAEFrgB,KAAKshF,gBAAgB,GAAKjhE,GAAO,GAC1C,EAEAo2D,EAAej3E,UAAUo+E,cAAgB,IAEzCnH,EAAej3E,UAAU2+E,aAAe,IAExC1H,EAAej3E,UAAUu+E,eAAiB,QAE1CtH,EAAej3E,UAAUw+E,gBAAkB,SAE3CvH,EAAej3E,UAAUy+E,kBAAoB,WAE7CxH,EAAej3E,UAAU0+E,cAAgB,OAEzCzH,EAAej3E,UAAU8hF,gBAAkB,SAASzhE,GAClD,IAAI2N,EAAOvN,EACX,GAAIjgB,KAAK4T,QAAQkmE,aACf,OAAOj6D,EAGT,GADA2N,EAAQ,GACqB,QAAzBxtB,KAAK4T,QAAQqnB,SAEf,GADAzN,EAAQ,gHACJvN,EAAMJ,EAAI5E,MAAMuS,GAClB,MAAM,IAAI3hB,MAAM,gCAAkCgU,EAAM,aAAeI,EAAIxB,YAExE,GAA6B,QAAzBze,KAAK4T,QAAQqnB,UACtBzN,EAAQ,4FACJvN,EAAMJ,EAAI5E,MAAMuS,IAClB,MAAM,IAAI3hB,MAAM,gCAAkCgU,EAAM,aAAeI,EAAIxB,OAG/E,OAAOoB,CACT,EAEA42D,EAAej3E,UAAU6hF,gBAAkB,SAASxhE,GAClD,IAAI2N,EACJ,GAAIxtB,KAAK4T,QAAQkmE,aACf,OAAOj6D,EAIT,GAFA7f,KAAKshF,gBAAgBzhE,GACrB2N,EAAQ,gXACH3N,EAAI5E,MAAMuS,GACb,MAAM,IAAI3hB,MAAM,6BAElB,OAAOgU,CACT,EAEA42D,EAAej3E,UAAU+hF,WAAa,SAAS1hE,GAC7C,IAAI4hE,EACJ,OAAIzhF,KAAK4T,QAAQkmE,aACRj6D,GAET4hE,EAAWzhF,KAAK4T,QAAQ8tE,iBAAmB,cAAgB,KACpD7hE,EAAI/T,QAAQ21E,EAAU,SAAS31E,QAAQ,KAAM,QAAQA,QAAQ,KAAM,QAAQA,QAAQ,MAAO,SACnG,EAEA2qE,EAAej3E,UAAUgiF,UAAY,SAAS3hE,GAC5C,IAAI4hE,EACJ,OAAIzhF,KAAK4T,QAAQkmE,aACRj6D,GAET4hE,EAAWzhF,KAAK4T,QAAQ8tE,iBAAmB,cAAgB,KACpD7hE,EAAI/T,QAAQ21E,EAAU,SAAS31E,QAAQ,KAAM,QAAQA,QAAQ,KAAM,UAAUA,QAAQ,MAAO,SAASA,QAAQ,MAAO,SAASA,QAAQ,MAAO,SACrJ,EAEO2qE,CAER,CAvOiC,EAyOnC,GAAEv1E,KAAKlB,8BC9OR,WACE,IAAIsxE,EAAUW,EAEZ7G,EAAU,CAAC,EAAE3rE,eAEf6xE,EAAW,EAAQ,OAEnBW,EAAmB,EAAQ,OAE3BlvE,EAAOC,QAAoB,SAAU05D,GAGnC,SAASkc,EAAQr3D,EAAQnR,GAEvB,GADAwoE,EAAQ7K,UAAUlqE,YAAY3C,KAAKlB,KAAMuhB,GAC7B,MAARnR,EACF,MAAM,IAAIvE,MAAM,yBAA2B7L,KAAKwxE,aAElDxxE,KAAKgB,KAAO,QACZhB,KAAK6K,KAAOymE,EAAStB,KACrBhwE,KAAKqF,MAAQrF,KAAKuF,UAAU6K,KAAKA,EACnC,CA2CA,OA7DS,SAASmc,EAAOhL,GAAU,IAAK,IAAI3U,KAAO2U,EAAc6pD,EAAQlqE,KAAKqgB,EAAQ3U,KAAM2f,EAAM3f,GAAO2U,EAAO3U,IAAQ,SAASkhE,IAAS9tE,KAAK6D,YAAc0oB,CAAO,CAAEuhD,EAAKtuE,UAAY+hB,EAAO/hB,UAAW+sB,EAAM/sB,UAAY,IAAIsuE,EAAQvhD,EAAMwhD,UAAYxsD,EAAO/hB,SAAyB,CAQzRggB,CAAOo5D,EAASlc,GAYhBn9D,OAAO0Z,eAAe2/D,EAAQp5E,UAAW,6BAA8B,CACrEuG,IAAK,WACH,MAAM,IAAI8F,MAAM,sCAAwC7L,KAAKwxE,YAC/D,IAGFjyE,OAAO0Z,eAAe2/D,EAAQp5E,UAAW,YAAa,CACpDuG,IAAK,WACH,IAAIshB,EAAMyN,EAAMjV,EAGhB,IAFAA,EAAM,GACNiV,EAAO90B,KAAK2hF,gBACL7sD,GACLjV,EAAMiV,EAAKhwB,KAAO+a,EAClBiV,EAAOA,EAAK6sD,gBAId,IAFA9hE,GAAO7f,KAAK8E,KACZuiB,EAAOrnB,KAAK4hF,YACLv6D,GACLxH,GAAYwH,EAAKviB,KACjBuiB,EAAOA,EAAKu6D,YAEd,OAAO/hE,CACT,IAGF+4D,EAAQp5E,UAAUqhB,MAAQ,WACxB,OAAOthB,OAAOqB,OAAOZ,KACvB,EAEA44E,EAAQp5E,UAAUkI,SAAW,SAASkM,GACpC,OAAO5T,KAAK4T,QAAQg+D,OAAOxhE,KAAKpQ,KAAMA,KAAK4T,QAAQg+D,OAAOC,cAAcj+D,GAC1E,EAEAglE,EAAQp5E,UAAUqiF,UAAY,SAASz6D,GACrC,MAAM,IAAIvb,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEAoH,EAAQp5E,UAAUsiF,iBAAmB,SAASC,GAC5C,MAAM,IAAIl2E,MAAM,sCAAwC7L,KAAKwxE,YAC/D,EAEOoH,CAER,CAxD0B,CAwDxB3G,EAEJ,GAAE/wE,KAAKlB,6BCnER,WACE,IAAIsxE,EAAUkH,EAA2M9zE,EACvN0mE,EAAU,CAAC,EAAE3rE,eAEfiF,EAAS,gBAET4sE,EAAW,EAAQ,OAEF,EAAQ,OAEZ,EAAQ,OAEV,EAAQ,OAEN,EAAQ,OAER,EAAQ,OAEZ,EAAQ,MAEP,EAAQ,OAES,EAAQ,OAExB,EAAQ,OAEH,EAAQ,OAER,EAAQ,OAET,EAAQ,MAEN,EAAQ,OAEzBkH,EAAc,EAAQ,OAEtBz1E,EAAOC,QAA0B,WAC/B,SAAS09E,EAAc9sE,GACrB,IAAIhH,EAAK4U,EAAKnc,EAId,IAAKuH,KAHLgH,IAAYA,EAAU,CAAC,GACvB5T,KAAK4T,QAAUA,EACf4N,EAAM5N,EAAQg+D,QAAU,CAAC,EAElBxG,EAAQlqE,KAAKsgB,EAAK5U,KACvBvH,EAAQmc,EAAI5U,GACZ5M,KAAK,IAAM4M,GAAO5M,KAAK4M,GACvB5M,KAAK4M,GAAOvH,EAEhB,CAsXA,OApXAq7E,EAAclhF,UAAUqyE,cAAgB,SAASj+D,GAC/C,IAAIouE,EAAiBxgE,EAAKs0D,EAAMC,EAAM2H,EAAMuE,EAAMC,EAAMC,EAmBxD,OAlBAvuE,IAAYA,EAAU,CAAC,GACvBA,EAAUlP,EAAO,CAAC,EAAG1E,KAAK4T,QAASA,IACnCouE,EAAkB,CAChBpQ,OAAQ5xE,OAEM+nB,OAASnU,EAAQmU,SAAU,EAC3Ci6D,EAAgBd,WAAattE,EAAQstE,aAAc,EACnDc,EAAgBzH,OAAmC,OAAzB/4D,EAAM5N,EAAQ2mE,QAAkB/4D,EAAM,KAChEwgE,EAAgBZ,QAAsC,OAA3BtL,EAAOliE,EAAQwtE,SAAmBtL,EAAO,KACpEkM,EAAgB56D,OAAoC,OAA1B2uD,EAAOniE,EAAQwT,QAAkB2uD,EAAO,EAClEiM,EAAgBI,oBAAoH,OAA7F1E,EAA+C,OAAvCuE,EAAOruE,EAAQwuE,qBAA+BH,EAAOruE,EAAQyuE,qBAA+B3E,EAAO,EAClJsE,EAAgBjB,iBAA2G,OAAvFmB,EAA4C,OAApCC,EAAOvuE,EAAQmtE,kBAA4BoB,EAAOvuE,EAAQ0uE,kBAA4BJ,EAAO,IAChG,IAArCF,EAAgBjB,mBAClBiB,EAAgBjB,iBAAmB,KAErCiB,EAAgBb,oBAAsB,EACtCa,EAAgBO,KAAO,CAAC,EACxBP,EAAgBr1E,MAAQ6rE,EAAYtH,KAC7B8Q,CACT,EAEAtB,EAAclhF,UAAU+6E,OAAS,SAASlxE,EAAMuK,EAAS8mE,GACvD,IAAI8H,EACJ,OAAK5uE,EAAQmU,QAAUnU,EAAQutE,oBACtB,GACEvtE,EAAQmU,SACjBy6D,GAAe9H,GAAS,GAAK9mE,EAAQwT,OAAS,GAC5B,EACT,IAAIxlB,MAAM4gF,GAAa7nE,KAAK/G,EAAQ2mE,QAGxC,EACT,EAEAmG,EAAclhF,UAAUg7E,QAAU,SAASnxE,EAAMuK,EAAS8mE,GACxD,OAAK9mE,EAAQmU,QAAUnU,EAAQutE,oBACtB,GAEAvtE,EAAQwtE,OAEnB,EAEAV,EAAclhF,UAAU8xC,UAAY,SAAS06B,EAAKp4D,EAAS8mE,GACzD,IAAIO,EAIJ,OAHAj7E,KAAKyiF,cAAczW,EAAKp4D,EAAS8mE,GACjCO,EAAI,IAAMjP,EAAIhrE,KAAO,KAAOgrE,EAAI3mE,MAAQ,IACxCrF,KAAK0iF,eAAe1W,EAAKp4D,EAAS8mE,GAC3BO,CACT,EAEAyF,EAAclhF,UAAU+hE,MAAQ,SAASl4D,EAAMuK,EAAS8mE,GACtD,IAAIO,EAUJ,OATAj7E,KAAKq6E,SAAShxE,EAAMuK,EAAS8mE,GAC7B9mE,EAAQjH,MAAQ6rE,EAAYrH,QAC5B8J,EAAIj7E,KAAKu6E,OAAOlxE,EAAMuK,EAAS8mE,GAAS,YACxC9mE,EAAQjH,MAAQ6rE,EAAYpH,UAC5B6J,GAAK5xE,EAAKhE,MACVuO,EAAQjH,MAAQ6rE,EAAYnH,SAC5B4J,GAAK,MAAQj7E,KAAKw6E,QAAQnxE,EAAMuK,EAAS8mE,GACzC9mE,EAAQjH,MAAQ6rE,EAAYtH,KAC5BlxE,KAAKo6E,UAAU/wE,EAAMuK,EAAS8mE,GACvBO,CACT,EAEAyF,EAAclhF,UAAUiiE,QAAU,SAASp4D,EAAMuK,EAAS8mE,GACxD,IAAIO,EAUJ,OATAj7E,KAAKq6E,SAAShxE,EAAMuK,EAAS8mE,GAC7B9mE,EAAQjH,MAAQ6rE,EAAYrH,QAC5B8J,EAAIj7E,KAAKu6E,OAAOlxE,EAAMuK,EAAS8mE,GAAS,WACxC9mE,EAAQjH,MAAQ6rE,EAAYpH,UAC5B6J,GAAK5xE,EAAKhE,MACVuO,EAAQjH,MAAQ6rE,EAAYnH,SAC5B4J,GAAK,UAASj7E,KAAKw6E,QAAQnxE,EAAMuK,EAAS8mE,GAC1C9mE,EAAQjH,MAAQ6rE,EAAYtH,KAC5BlxE,KAAKo6E,UAAU/wE,EAAMuK,EAAS8mE,GACvBO,CACT,EAEAyF,EAAclhF,UAAUm2E,YAAc,SAAStsE,EAAMuK,EAAS8mE,GAC5D,IAAIO,EAiBJ,OAhBAj7E,KAAKq6E,SAAShxE,EAAMuK,EAAS8mE,GAC7B9mE,EAAQjH,MAAQ6rE,EAAYrH,QAC5B8J,EAAIj7E,KAAKu6E,OAAOlxE,EAAMuK,EAAS8mE,GAAS,QACxC9mE,EAAQjH,MAAQ6rE,EAAYpH,UAC5B6J,GAAK,aAAe5xE,EAAK4xB,QAAU,IACd,MAAjB5xB,EAAKisE,WACP2F,GAAK,cAAgB5xE,EAAKisE,SAAW,KAEhB,MAAnBjsE,EAAKksE,aACP0F,GAAK,gBAAkB5xE,EAAKksE,WAAa,KAE3C3hE,EAAQjH,MAAQ6rE,EAAYnH,SAC5B4J,GAAKrnE,EAAQmtE,iBAAmB,KAChC9F,GAAKj7E,KAAKw6E,QAAQnxE,EAAMuK,EAAS8mE,GACjC9mE,EAAQjH,MAAQ6rE,EAAYtH,KAC5BlxE,KAAKo6E,UAAU/wE,EAAMuK,EAAS8mE,GACvBO,CACT,EAEAyF,EAAclhF,UAAU42E,QAAU,SAAS/sE,EAAMuK,EAAS8mE,GACxD,IAAInuD,EAAO/qB,EAAGa,EAAK44E,EAAGz5D,EAWtB,GAVAk5D,IAAUA,EAAQ,GAClB16E,KAAKq6E,SAAShxE,EAAMuK,EAAS8mE,GAC7B9mE,EAAQjH,MAAQ6rE,EAAYrH,QAC5B8J,EAAIj7E,KAAKu6E,OAAOlxE,EAAMuK,EAAS8mE,GAC/BO,GAAK,aAAe5xE,EAAKqiC,OAAO1qC,KAC5BqI,EAAKqrE,OAASrrE,EAAKsrE,MACrBsG,GAAK,YAAc5xE,EAAKqrE,MAAQ,MAAQrrE,EAAKsrE,MAAQ,IAC5CtrE,EAAKsrE,QACdsG,GAAK,YAAc5xE,EAAKsrE,MAAQ,KAE9BtrE,EAAK0Z,SAASrhB,OAAS,EAAG,CAK5B,IAJAu5E,GAAK,KACLA,GAAKj7E,KAAKw6E,QAAQnxE,EAAMuK,EAAS8mE,GACjC9mE,EAAQjH,MAAQ6rE,EAAYpH,UAEvB5vE,EAAI,EAAGa,GADZmf,EAAMnY,EAAK0Z,UACWrhB,OAAQF,EAAIa,EAAKb,IACrC+qB,EAAQ/K,EAAIhgB,GACZy5E,GAAKj7E,KAAK8gF,eAAev0D,EAAO3Y,EAAS8mE,EAAQ,GAEnD9mE,EAAQjH,MAAQ6rE,EAAYnH,SAC5B4J,GAAK,GACP,CAMA,OALArnE,EAAQjH,MAAQ6rE,EAAYnH,SAC5B4J,GAAKrnE,EAAQmtE,iBAAmB,IAChC9F,GAAKj7E,KAAKw6E,QAAQnxE,EAAMuK,EAAS8mE,GACjC9mE,EAAQjH,MAAQ6rE,EAAYtH,KAC5BlxE,KAAKo6E,UAAU/wE,EAAMuK,EAAS8mE,GACvBO,CACT,EAEAyF,EAAclhF,UAAUqqC,QAAU,SAASxgC,EAAMuK,EAAS8mE,GACxD,IAAI1O,EAAKz/C,EAAOy0D,EAAgBC,EAAgBz/E,EAAGkB,EAAGL,EAAKo7E,EAAMz8E,EAAM2hF,EAAkB1H,EAAGz5D,EAAKs0D,EAAMC,EAQvG,IAAK/0E,KAPL05E,IAAUA,EAAQ,GAClBiI,GAAmB,EACnB1H,EAAI,GACJj7E,KAAKq6E,SAAShxE,EAAMuK,EAAS8mE,GAC7B9mE,EAAQjH,MAAQ6rE,EAAYrH,QAC5B8J,GAAKj7E,KAAKu6E,OAAOlxE,EAAMuK,EAAS8mE,GAAS,IAAMrxE,EAAKrI,KACpDwgB,EAAMnY,EAAKowE,QAEJrO,EAAQlqE,KAAKsgB,EAAKxgB,KACvBgrE,EAAMxqD,EAAIxgB,GACVi6E,GAAKj7E,KAAKsxC,UAAU06B,EAAKp4D,EAAS8mE,IAIpC,GADAuG,EAAoC,KADpCD,EAAiB33E,EAAK0Z,SAASrhB,QACS,KAAO2H,EAAK0Z,SAAS,GACtC,IAAnBi+D,GAAwB33E,EAAK0Z,SAAShB,OAAM,SAAS9c,GACvD,OAAQA,EAAE4F,OAASymE,EAAStB,MAAQ/qE,EAAE4F,OAASymE,EAASX,MAAoB,KAAZ1rE,EAAEI,KACpE,IACMuO,EAAQstE,YACVjG,GAAK,IACLrnE,EAAQjH,MAAQ6rE,EAAYnH,SAC5B4J,GAAK,KAAO5xE,EAAKrI,KAAO,IAAMhB,KAAKw6E,QAAQnxE,EAAMuK,EAAS8mE,KAE1D9mE,EAAQjH,MAAQ6rE,EAAYnH,SAC5B4J,GAAKrnE,EAAQmtE,iBAAmB,KAAO/gF,KAAKw6E,QAAQnxE,EAAMuK,EAAS8mE,SAEhE,IAAI9mE,EAAQmU,QAA6B,IAAnBi5D,GAAyBC,EAAep2E,OAASymE,EAAStB,MAAQiR,EAAep2E,OAASymE,EAASX,KAAiC,MAAxBsQ,EAAe57E,MAUjJ,CACL,GAAIuO,EAAQwuE,oBAEV,IAAK5gF,EAAI,EAAGa,GADZyzE,EAAOzsE,EAAK0Z,UACWrhB,OAAQF,EAAIa,EAAKb,IAEtC,KADA+qB,EAAQupD,EAAKt0E,IACFqJ,OAASymE,EAAStB,MAAQzjD,EAAM1hB,OAASymE,EAASX,MAAwB,MAAfpkD,EAAMlnB,MAAgB,CAC1FuO,EAAQutE,sBACRwB,GAAmB,EACnB,KACF,CAMJ,IAHA1H,GAAK,IAAMj7E,KAAKw6E,QAAQnxE,EAAMuK,EAAS8mE,GACvC9mE,EAAQjH,MAAQ6rE,EAAYpH,UAEvB1uE,EAAI,EAAG+6E,GADZ1H,EAAO1sE,EAAK0Z,UACYrhB,OAAQgB,EAAI+6E,EAAM/6E,IACxC6pB,EAAQwpD,EAAKrzE,GACbu4E,GAAKj7E,KAAK8gF,eAAev0D,EAAO3Y,EAAS8mE,EAAQ,GAEnD9mE,EAAQjH,MAAQ6rE,EAAYnH,SAC5B4J,GAAKj7E,KAAKu6E,OAAOlxE,EAAMuK,EAAS8mE,GAAS,KAAOrxE,EAAKrI,KAAO,IACxD2hF,GACF/uE,EAAQutE,sBAEVlG,GAAKj7E,KAAKw6E,QAAQnxE,EAAMuK,EAAS8mE,GACjC9mE,EAAQjH,MAAQ6rE,EAAYtH,IAC9B,MAnCE+J,GAAK,IACLrnE,EAAQjH,MAAQ6rE,EAAYpH,UAC5Bx9D,EAAQutE,sBACRwB,GAAmB,EACnB1H,GAAKj7E,KAAK8gF,eAAeG,EAAgBrtE,EAAS8mE,EAAQ,GAC1D9mE,EAAQutE,sBACRwB,GAAmB,EACnB/uE,EAAQjH,MAAQ6rE,EAAYnH,SAC5B4J,GAAK,KAAO5xE,EAAKrI,KAAO,IAAMhB,KAAKw6E,QAAQnxE,EAAMuK,EAAS8mE,GA6B5D,OADA16E,KAAKo6E,UAAU/wE,EAAMuK,EAAS8mE,GACvBO,CACT,EAEAyF,EAAclhF,UAAUshF,eAAiB,SAASz3E,EAAMuK,EAAS8mE,GAC/D,OAAQrxE,EAAKwB,MACX,KAAKymE,EAASrB,MACZ,OAAOjwE,KAAKuhE,MAAMl4D,EAAMuK,EAAS8mE,GACnC,KAAKpJ,EAASjB,QACZ,OAAOrwE,KAAKyhE,QAAQp4D,EAAMuK,EAAS8mE,GACrC,KAAKpJ,EAASxB,QACZ,OAAO9vE,KAAK6pC,QAAQxgC,EAAMuK,EAAS8mE,GACrC,KAAKpJ,EAASX,IACZ,OAAO3wE,KAAK2E,IAAI0E,EAAMuK,EAAS8mE,GACjC,KAAKpJ,EAAStB,KACZ,OAAOhwE,KAAKoQ,KAAK/G,EAAMuK,EAAS8mE,GAClC,KAAKpJ,EAASlB,sBACZ,OAAOpwE,KAAKk6E,sBAAsB7wE,EAAMuK,EAAS8mE,GACnD,KAAKpJ,EAASR,MACZ,MAAO,GACT,KAAKQ,EAASZ,YACZ,OAAO1wE,KAAK21E,YAAYtsE,EAAMuK,EAAS8mE,GACzC,KAAKpJ,EAASf,QACZ,OAAOvwE,KAAKo2E,QAAQ/sE,EAAMuK,EAAS8mE,GACrC,KAAKpJ,EAASV,qBACZ,OAAO5wE,KAAKo0E,WAAW/qE,EAAMuK,EAAS8mE,GACxC,KAAKpJ,EAAST,mBACZ,OAAO7wE,KAAKu0E,WAAWlrE,EAAMuK,EAAS8mE,GACxC,KAAKpJ,EAASnB,kBACZ,OAAOnwE,KAAKk1E,UAAU7rE,EAAMuK,EAAS8mE,GACvC,KAAKpJ,EAASb,oBACZ,OAAOzwE,KAAKo1E,YAAY/rE,EAAMuK,EAAS8mE,GACzC,QACE,MAAM,IAAI7uE,MAAM,0BAA4BxC,EAAKxF,YAAY7C,MAEnE,EAEA0/E,EAAclhF,UAAU06E,sBAAwB,SAAS7wE,EAAMuK,EAAS8mE,GACtE,IAAIO,EAcJ,OAbAj7E,KAAKq6E,SAAShxE,EAAMuK,EAAS8mE,GAC7B9mE,EAAQjH,MAAQ6rE,EAAYrH,QAC5B8J,EAAIj7E,KAAKu6E,OAAOlxE,EAAMuK,EAAS8mE,GAAS,KACxC9mE,EAAQjH,MAAQ6rE,EAAYpH,UAC5B6J,GAAK5xE,EAAKrF,OACNqF,EAAKhE,QACP41E,GAAK,IAAM5xE,EAAKhE,OAElBuO,EAAQjH,MAAQ6rE,EAAYnH,SAC5B4J,GAAKrnE,EAAQmtE,iBAAmB,KAChC9F,GAAKj7E,KAAKw6E,QAAQnxE,EAAMuK,EAAS8mE,GACjC9mE,EAAQjH,MAAQ6rE,EAAYtH,KAC5BlxE,KAAKo6E,UAAU/wE,EAAMuK,EAAS8mE,GACvBO,CACT,EAEAyF,EAAclhF,UAAUmF,IAAM,SAAS0E,EAAMuK,EAAS8mE,GACpD,IAAIO,EAUJ,OATAj7E,KAAKq6E,SAAShxE,EAAMuK,EAAS8mE,GAC7B9mE,EAAQjH,MAAQ6rE,EAAYrH,QAC5B8J,EAAIj7E,KAAKu6E,OAAOlxE,EAAMuK,EAAS8mE,GAC/B9mE,EAAQjH,MAAQ6rE,EAAYpH,UAC5B6J,GAAK5xE,EAAKhE,MACVuO,EAAQjH,MAAQ6rE,EAAYnH,SAC5B4J,GAAKj7E,KAAKw6E,QAAQnxE,EAAMuK,EAAS8mE,GACjC9mE,EAAQjH,MAAQ6rE,EAAYtH,KAC5BlxE,KAAKo6E,UAAU/wE,EAAMuK,EAAS8mE,GACvBO,CACT,EAEAyF,EAAclhF,UAAU4Q,KAAO,SAAS/G,EAAMuK,EAAS8mE,GACrD,IAAIO,EAUJ,OATAj7E,KAAKq6E,SAAShxE,EAAMuK,EAAS8mE,GAC7B9mE,EAAQjH,MAAQ6rE,EAAYrH,QAC5B8J,EAAIj7E,KAAKu6E,OAAOlxE,EAAMuK,EAAS8mE,GAC/B9mE,EAAQjH,MAAQ6rE,EAAYpH,UAC5B6J,GAAK5xE,EAAKhE,MACVuO,EAAQjH,MAAQ6rE,EAAYnH,SAC5B4J,GAAKj7E,KAAKw6E,QAAQnxE,EAAMuK,EAAS8mE,GACjC9mE,EAAQjH,MAAQ6rE,EAAYtH,KAC5BlxE,KAAKo6E,UAAU/wE,EAAMuK,EAAS8mE,GACvBO,CACT,EAEAyF,EAAclhF,UAAU40E,WAAa,SAAS/qE,EAAMuK,EAAS8mE,GAC3D,IAAIO,EAgBJ,OAfAj7E,KAAKq6E,SAAShxE,EAAMuK,EAAS8mE,GAC7B9mE,EAAQjH,MAAQ6rE,EAAYrH,QAC5B8J,EAAIj7E,KAAKu6E,OAAOlxE,EAAMuK,EAAS8mE,GAAS,YACxC9mE,EAAQjH,MAAQ6rE,EAAYpH,UAC5B6J,GAAK,IAAM5xE,EAAKyqE,YAAc,IAAMzqE,EAAK0qE,cAAgB,IAAM1qE,EAAK2qE,cACtC,aAA1B3qE,EAAK4qE,mBACPgH,GAAK,IAAM5xE,EAAK4qE,kBAEd5qE,EAAK9E,eACP02E,GAAK,KAAO5xE,EAAK9E,aAAe,KAElCqP,EAAQjH,MAAQ6rE,EAAYnH,SAC5B4J,GAAKrnE,EAAQmtE,iBAAmB,IAAM/gF,KAAKw6E,QAAQnxE,EAAMuK,EAAS8mE,GAClE9mE,EAAQjH,MAAQ6rE,EAAYtH,KAC5BlxE,KAAKo6E,UAAU/wE,EAAMuK,EAAS8mE,GACvBO,CACT,EAEAyF,EAAclhF,UAAU+0E,WAAa,SAASlrE,EAAMuK,EAAS8mE,GAC3D,IAAIO,EAUJ,OATAj7E,KAAKq6E,SAAShxE,EAAMuK,EAAS8mE,GAC7B9mE,EAAQjH,MAAQ6rE,EAAYrH,QAC5B8J,EAAIj7E,KAAKu6E,OAAOlxE,EAAMuK,EAAS8mE,GAAS,YACxC9mE,EAAQjH,MAAQ6rE,EAAYpH,UAC5B6J,GAAK,IAAM5xE,EAAKrI,KAAO,IAAMqI,EAAKhE,MAClCuO,EAAQjH,MAAQ6rE,EAAYnH,SAC5B4J,GAAKrnE,EAAQmtE,iBAAmB,IAAM/gF,KAAKw6E,QAAQnxE,EAAMuK,EAAS8mE,GAClE9mE,EAAQjH,MAAQ6rE,EAAYtH,KAC5BlxE,KAAKo6E,UAAU/wE,EAAMuK,EAAS8mE,GACvBO,CACT,EAEAyF,EAAclhF,UAAU01E,UAAY,SAAS7rE,EAAMuK,EAAS8mE,GAC1D,IAAIO,EAyBJ,OAxBAj7E,KAAKq6E,SAAShxE,EAAMuK,EAAS8mE,GAC7B9mE,EAAQjH,MAAQ6rE,EAAYrH,QAC5B8J,EAAIj7E,KAAKu6E,OAAOlxE,EAAMuK,EAAS8mE,GAAS,WACxC9mE,EAAQjH,MAAQ6rE,EAAYpH,UACxB/nE,EAAKorE,KACPwG,GAAK,MAEPA,GAAK,IAAM5xE,EAAKrI,KACZqI,EAAKhE,MACP41E,GAAK,KAAO5xE,EAAKhE,MAAQ,KAErBgE,EAAKqrE,OAASrrE,EAAKsrE,MACrBsG,GAAK,YAAc5xE,EAAKqrE,MAAQ,MAAQrrE,EAAKsrE,MAAQ,IAC5CtrE,EAAKsrE,QACdsG,GAAK,YAAc5xE,EAAKsrE,MAAQ,KAE9BtrE,EAAK0rE,QACPkG,GAAK,UAAY5xE,EAAK0rE,QAG1BnhE,EAAQjH,MAAQ6rE,EAAYnH,SAC5B4J,GAAKrnE,EAAQmtE,iBAAmB,IAAM/gF,KAAKw6E,QAAQnxE,EAAMuK,EAAS8mE,GAClE9mE,EAAQjH,MAAQ6rE,EAAYtH,KAC5BlxE,KAAKo6E,UAAU/wE,EAAMuK,EAAS8mE,GACvBO,CACT,EAEAyF,EAAclhF,UAAU41E,YAAc,SAAS/rE,EAAMuK,EAAS8mE,GAC5D,IAAIO,EAiBJ,OAhBAj7E,KAAKq6E,SAAShxE,EAAMuK,EAAS8mE,GAC7B9mE,EAAQjH,MAAQ6rE,EAAYrH,QAC5B8J,EAAIj7E,KAAKu6E,OAAOlxE,EAAMuK,EAAS8mE,GAAS,aACxC9mE,EAAQjH,MAAQ6rE,EAAYpH,UAC5B6J,GAAK,IAAM5xE,EAAKrI,KACZqI,EAAKqrE,OAASrrE,EAAKsrE,MACrBsG,GAAK,YAAc5xE,EAAKqrE,MAAQ,MAAQrrE,EAAKsrE,MAAQ,IAC5CtrE,EAAKqrE,MACduG,GAAK,YAAc5xE,EAAKqrE,MAAQ,IACvBrrE,EAAKsrE,QACdsG,GAAK,YAAc5xE,EAAKsrE,MAAQ,KAElC/gE,EAAQjH,MAAQ6rE,EAAYnH,SAC5B4J,GAAKrnE,EAAQmtE,iBAAmB,IAAM/gF,KAAKw6E,QAAQnxE,EAAMuK,EAAS8mE,GAClE9mE,EAAQjH,MAAQ6rE,EAAYtH,KAC5BlxE,KAAKo6E,UAAU/wE,EAAMuK,EAAS8mE,GACvBO,CACT,EAEAyF,EAAclhF,UAAU66E,SAAW,SAAShxE,EAAMuK,EAAS8mE,GAAQ,EAEnEgG,EAAclhF,UAAU46E,UAAY,SAAS/wE,EAAMuK,EAAS8mE,GAAQ,EAEpEgG,EAAclhF,UAAUijF,cAAgB,SAASzW,EAAKp4D,EAAS8mE,GAAQ,EAEvEgG,EAAclhF,UAAUkjF,eAAiB,SAAS1W,EAAKp4D,EAAS8mE,GAAQ,EAEjEgG,CAER,CApYgC,EAsYlC,GAAEx/E,KAAKlB,8BC1aR,WACE,IAAIsxE,EAAUkH,EAAarF,EAAsBuD,EAAamC,EAAe8H,EAAiBnK,EAAiB9xE,EAAQujC,EAAYzmB,EAEnIA,EAAM,EAAQ,OAAc9c,EAAS8c,EAAI9c,OAAQujC,EAAazmB,EAAIymB,WAElEkrC,EAAuB,EAAQ,OAE/BuD,EAAc,EAAQ,OAEtBmC,EAAgB,EAAQ,OAExBrC,EAAkB,EAAQ,OAE1BmK,EAAkB,EAAQ,OAE1BrP,EAAW,EAAQ,OAEnBkH,EAAc,EAAQ,OAEtBz1E,EAAOC,QAAQpC,OAAS,SAASI,EAAMirE,EAAQtK,EAAS/tD,GACtD,IAAI6zD,EAAK/7B,EACT,GAAY,MAAR1qC,EACF,MAAM,IAAI6K,MAAM,8BAWlB,OATA+H,EAAUlP,EAAO,CAAC,EAAGunE,EAAQtK,EAAS/tD,GAEtC83B,GADA+7B,EAAM,IAAIiP,EAAY9iE,IACXi2B,QAAQ7oC,GACd4S,EAAQs4D,WACXzE,EAAIkO,YAAY/hE,GACM,MAAjBA,EAAQ8gE,OAAoC,MAAjB9gE,EAAQ+gE,OACtClN,EAAIuT,IAAIpnE,IAGL83B,CACT,EAEA3oC,EAAOC,QAAQ4/E,MAAQ,SAAShvE,EAASklE,EAAQC,GAC/C,IAAIjD,EAKJ,OAJI7tC,EAAWr0B,KACaklE,GAA1BhD,EAAO,CAACliE,EAASklE,IAAuB,GAAIC,EAAQjD,EAAK,GACzDliE,EAAU,CAAC,GAETklE,EACK,IAAID,EAAcjlE,EAASklE,EAAQC,GAEnC,IAAIrC,EAAY9iE,EAE3B,EAEA7Q,EAAOC,QAAQ6/E,aAAe,SAASjvE,GACrC,OAAO,IAAI4iE,EAAgB5iE,EAC7B,EAEA7Q,EAAOC,QAAQ8/E,aAAe,SAASlC,EAAQhtE,GAC7C,OAAO,IAAI+sE,EAAgBC,EAAQhtE,EACrC,EAEA7Q,EAAOC,QAAQ+/E,eAAiB,IAAI5P,EAEpCpwE,EAAOC,QAAQ4iE,SAAW0L,EAE1BvuE,EAAOC,QAAQggF,YAAcxK,CAE9B,GAAEt3E,KAAKlB,ugCCpCR,MAAwGknB,EAAhF,QAAZjiB,GAAmG,YAAhF,UAAIm4B,OAAO,SAASE,SAAU,UAAIF,OAAO,SAAS6lD,OAAOh+E,EAAEk+B,KAAK7F,QAApF,IAACr4B,EAsBZ,MAAMi+E,EACJC,SAAW,GACX,aAAAC,CAAc1jD,GACZ1/B,KAAKqjF,cAAc3jD,GAAI1/B,KAAKmjF,SAAS3iF,KAAKk/B,EAC5C,CACA,eAAA4jD,CAAgB5jD,GACd,MAAMu7C,EAAgB,iBAALv7C,EAAgB1/B,KAAKujF,cAAc7jD,GAAK1/B,KAAKujF,cAAc7jD,EAAEr7B,KACnE,IAAP42E,EAIJj7E,KAAKmjF,SAASrtE,OAAOmlE,EAAG,GAHtB/zD,EAAE5jB,KAAK,mCAAoC,CAAEyrC,MAAOrP,EAAGljB,QAASxc,KAAKsvC,cAIzE,CAMA,UAAAA,CAAW5P,GACT,OAAOA,EAAI1/B,KAAKmjF,SAASrxE,QAAQmpE,GAA0B,mBAAbA,EAAE1vC,SAAwB0vC,EAAE1vC,QAAQ7L,KAAW1/B,KAAKmjF,QACpG,CACA,aAAAI,CAAc7jD,GACZ,OAAO1/B,KAAKmjF,SAASxhC,WAAWs5B,GAAMA,EAAE52E,KAAOq7B,GACjD,CACA,aAAA2jD,CAAc3jD,GACZ,IAAKA,EAAEr7B,KAAOq7B,EAAE0L,cAAiB1L,EAAE2L,gBAAiB3L,EAAE0G,YAAe1G,EAAE5U,QACrE,MAAM,IAAIjf,MAAM,iBAClB,GAAmB,iBAAR6zB,EAAEr7B,IAA0C,iBAAjBq7B,EAAE0L,YACtC,MAAM,IAAIv/B,MAAM,sCAClB,GAAI6zB,EAAE0G,WAAmC,iBAAf1G,EAAE0G,WAAyB1G,EAAE2L,eAA2C,iBAAnB3L,EAAE2L,cAC/E,MAAM,IAAIx/B,MAAM,yBAClB,QAAkB,IAAd6zB,EAAE6L,SAA0C,mBAAb7L,EAAE6L,QACnC,MAAM,IAAI1/B,MAAM,4BAClB,GAAwB,mBAAb6zB,EAAE5U,QACX,MAAM,IAAIjf,MAAM,4BAClB,GAAI,UAAW6zB,GAAuB,iBAAXA,EAAEsF,MAC3B,MAAM,IAAIn5B,MAAM,0BAClB,IAAkC,IAA9B7L,KAAKujF,cAAc7jD,EAAEr7B,IACvB,MAAM,IAAIwH,MAAM,kBACpB,EAEF,MAyBM23E,EAAI,CAAC,IAAK,KAAM,KAAM,KAAM,KAAM,MAAOC,EAAI,CAAC,IAAK,MAAO,MAAO,MAAO,MAAO,OACrF,SAASC,EAAGz+E,EAAGy6B,GAAI,EAAIu7C,GAAI,EAAIxhB,GAAI,GACjCwhB,EAAIA,IAAMxhB,EAAe,iBAALx0D,IAAkBA,EAAI4X,OAAO5X,IACjD,IAAIuyB,EAAIvyB,EAAI,EAAIswB,KAAKg4B,MAAMh4B,KAAKnpB,IAAInH,GAAKswB,KAAKnpB,IAAIqtD,EAAI,IAAM,OAAS,EACrEjiC,EAAIjC,KAAKiM,KAAKy5C,EAAIwI,EAAE/hF,OAAS8hF,EAAE9hF,QAAU,EAAG81B,GAC5C,MAAMh2B,EAAIy5E,EAAIwI,EAAEjsD,GAAKgsD,EAAEhsD,GACvB,IAAIsxC,GAAK7jE,EAAIswB,KAAKo0B,IAAI8P,EAAI,IAAM,KAAMjiC,IAAIxI,QAAQ,GAClD,OAAa,IAAN0Q,GAAkB,IAANlI,GAAiB,QAANsxC,EAAc,OAAS,OAASmS,EAAIwI,EAAE,GAAKD,EAAE,KAAe1a,EAARtxC,EAAI,EAAQ83C,WAAWxG,GAAG95C,QAAQ,GAASsgD,WAAWxG,GAAG6a,gBAAe,WAAO7a,EAAI,IAAMtnE,EAC7K,CA0CA,IAAIoiF,EAAoB,CAAE3+E,IAAOA,EAAE4+E,QAAU,UAAW5+E,EAAEy8C,OAAS,SAAUz8C,GAArD,CAAyD2+E,GAAK,CAAC,GACvF,MAAME,EACJC,QACA,WAAAlgF,CAAY67B,GACV1/B,KAAKgkF,eAAetkD,GAAI1/B,KAAK+jF,QAAUrkD,CACzC,CACA,MAAIr7B,GACF,OAAOrE,KAAK+jF,QAAQ1/E,EACtB,CACA,eAAI+mC,GACF,OAAOprC,KAAK+jF,QAAQ34C,WACtB,CACA,SAAIjgC,GACF,OAAOnL,KAAK+jF,QAAQ54E,KACtB,CACA,iBAAIkgC,GACF,OAAOrrC,KAAK+jF,QAAQ14C,aACtB,CACA,WAAIE,GACF,OAAOvrC,KAAK+jF,QAAQx4C,OACtB,CACA,QAAIhvB,GACF,OAAOvc,KAAK+jF,QAAQxnE,IACtB,CACA,aAAIq6B,GACF,OAAO52C,KAAK+jF,QAAQntC,SACtB,CACA,SAAI5R,GACF,OAAOhlC,KAAK+jF,QAAQ/+C,KACtB,CACA,UAAIzjB,GACF,OAAOvhB,KAAK+jF,QAAQxiE,MACtB,CACA,WAAI,GACF,OAAOvhB,KAAK+jF,QAAQnhE,OACtB,CACA,UAAIw+B,GACF,OAAOphD,KAAK+jF,QAAQ3iC,MACtB,CACA,gBAAIE,GACF,OAAOthD,KAAK+jF,QAAQziC,YACtB,CACA,cAAA0iC,CAAetkD,GACb,IAAKA,EAAEr7B,IAAqB,iBAARq7B,EAAEr7B,GACpB,MAAM,IAAIwH,MAAM,cAClB,IAAK6zB,EAAE0L,aAAuC,mBAAjB1L,EAAE0L,YAC7B,MAAM,IAAIv/B,MAAM,gCAClB,GAAI,UAAW6zB,GAAuB,mBAAXA,EAAEv0B,MAC3B,MAAM,IAAIU,MAAM,0BAClB,IAAK6zB,EAAE2L,eAA2C,mBAAnB3L,EAAE2L,cAC/B,MAAM,IAAIx/B,MAAM,kCAClB,IAAK6zB,EAAEnjB,MAAyB,mBAAVmjB,EAAEnjB,KACtB,MAAM,IAAI1Q,MAAM,yBAClB,GAAI,YAAa6zB,GAAyB,mBAAbA,EAAE6L,QAC7B,MAAM,IAAI1/B,MAAM,4BAClB,GAAI,cAAe6zB,GAA2B,mBAAfA,EAAEkX,UAC/B,MAAM,IAAI/qC,MAAM,8BAClB,GAAI,UAAW6zB,GAAuB,iBAAXA,EAAEsF,MAC3B,MAAM,IAAIn5B,MAAM,iBAClB,GAAI,WAAY6zB,GAAwB,iBAAZA,EAAEne,OAC5B,MAAM,IAAI1V,MAAM,kBAClB,GAAI6zB,EAAE9c,UAAYrjB,OAAO0R,OAAO2yE,GAAGv9E,SAASq5B,EAAE9c,SAC5C,MAAM,IAAI/W,MAAM,mBAClB,GAAI,WAAY6zB,GAAwB,mBAAZA,EAAE0hB,OAC5B,MAAM,IAAIv1C,MAAM,2BAClB,GAAI,iBAAkB6zB,GAA8B,mBAAlBA,EAAE4hB,aAClC,MAAM,IAAIz1C,MAAM,gCACpB,EAEF,MAMGm5D,EAAK,WACN,cAAc7hE,OAAO8gF,gBAAkB,MAAQ9gF,OAAO8gF,gBAAkB,GAAI/8D,EAAEme,MAAM,4BAA6BliC,OAAO8gF,eAC1H,EA6DGC,EAAK,WACN,cAAc/gF,OAAOghF,mBAAqB,MAAQhhF,OAAOghF,mBAAqB,GAAIj9D,EAAEme,MAAM,gCAAiCliC,OAAOghF,kBACpI,EAsBA,IAAIC,EAAoB,CAAEn/E,IAAOA,EAAEA,EAAE4mC,KAAO,GAAK,OAAQ5mC,EAAEA,EAAE+wC,OAAS,GAAK,SAAU/wC,EAAEA,EAAEm/C,KAAO,GAAK,OAAQn/C,EAAEA,EAAEgsC,OAAS,GAAK,SAAUhsC,EAAEA,EAAEo/E,OAAS,GAAK,SAAUp/E,EAAEA,EAAE6vD,MAAQ,IAAM,QAAS7vD,EAAEA,EAAE+rC,IAAM,IAAM,MAAO/rC,GAA/L,CAAmMm/E,GAAK,CAAC,GAuBjO,MAAME,EAAI,CACR,qBACA,mBACA,YACA,oBACA,0BACA,iBACA,iBACA,kBACA,gBACA,qBACA,cACA,YACA,wBACA,cACA,iBACA,WACC5hF,EAAI,CACLomE,EAAG,OACHyb,GAAI,0BACJC,GAAI,yBACJC,IAAK,6CAUJC,EAAI,WACL,cAAcvhF,OAAOwhF,mBAAqB,MAAQxhF,OAAOwhF,mBAAqB,IAAIL,IAAKnhF,OAAOwhF,mBAAmB5yE,KAAK9M,GAAM,IAAIA,SAAQ0V,KAAK,IAC/I,EAAGiqE,EAAI,WACL,cAAczhF,OAAO0hF,mBAAqB,MAAQ1hF,OAAO0hF,mBAAqB,IAAKniF,IAAMnD,OAAO6G,KAAKjD,OAAO0hF,oBAAoB9yE,KAAK9M,GAAM,SAASA,MAAM9B,OAAO0hF,qBAAqB5/E,QAAO0V,KAAK,IACpM,EAAGmqE,EAAK,WACN,MAAO,0CACOF,iCAEVF,yCAGN,EAUGK,EAAK,SAAS9/E,GACf,MAAO,4DACU2/E,8HAKbF,iGAKe,WAAKvhD,0nBA0BRl+B,yXAkBlB,EAuBM+/E,EAAK,SAAS//E,EAAI,IACtB,IAAIy6B,EAAI0kD,EAAEv4C,KACV,OAAO5mC,KAAOA,EAAEoB,SAAS,MAAQpB,EAAEoB,SAAS,QAAUq5B,GAAK0kD,EAAEpuC,QAAS/wC,EAAEoB,SAAS,OAASq5B,GAAK0kD,EAAEhgC,OAAQn/C,EAAEoB,SAAS,MAAQpB,EAAEoB,SAAS,MAAQpB,EAAEoB,SAAS,QAAUq5B,GAAK0kD,EAAEnzC,QAAShsC,EAAEoB,SAAS,OAASq5B,GAAK0kD,EAAEC,QAASp/E,EAAEoB,SAAS,OAASq5B,GAAK0kD,EAAEtvB,QAASp1B,CAC9P,EAsBA,IAAIq/B,EAAoB,CAAE95D,IAAOA,EAAEwoC,OAAS,SAAUxoC,EAAEspC,KAAO,OAAQtpC,GAA/C,CAAmD85D,GAAK,CAAC,GAsBjF,MAAMkmB,EAAI,SAAShgF,EAAGy6B,GACpB,OAAsB,OAAfz6B,EAAEgW,MAAMykB,EACjB,EAAG2+B,EAAI,CAACp5D,EAAGy6B,KACT,GAAIz6B,EAAEZ,IAAqB,iBAARY,EAAEZ,GACnB,MAAM,IAAIwH,MAAM,4BAClB,IAAK5G,EAAE8gB,OACL,MAAM,IAAIla,MAAM,4BAClB,IACE,IAAItB,IAAItF,EAAE8gB,OACZ,CAAE,MACA,MAAM,IAAIla,MAAM,oDAClB,CACA,IAAK5G,EAAE8gB,OAAOhT,WAAW,QACvB,MAAM,IAAIlH,MAAM,oDAClB,GAAI5G,EAAE2tC,SAAW3tC,EAAE2tC,iBAAiBhtC,MAClC,MAAM,IAAIiG,MAAM,sBAClB,GAAI5G,EAAEigF,UAAYjgF,EAAEigF,kBAAkBt/E,MACpC,MAAM,IAAIiG,MAAM,uBAClB,IAAK5G,EAAE6tC,MAAyB,iBAAV7tC,EAAE6tC,OAAqB7tC,EAAE6tC,KAAK73B,MAAM,yBACxD,MAAM,IAAIpP,MAAM,qCAClB,GAAI,SAAU5G,GAAsB,iBAAVA,EAAEsN,WAA+B,IAAXtN,EAAEsN,KAChD,MAAM,IAAI1G,MAAM,qBAClB,GAAI,gBAAiB5G,QAAuB,IAAlBA,EAAE0mC,eAAoD,iBAAjB1mC,EAAE0mC,aAA2B1mC,EAAE0mC,aAAey4C,EAAEv4C,MAAQ5mC,EAAE0mC,aAAey4C,EAAEpzC,KACxI,MAAM,IAAInlC,MAAM,uBAClB,GAAI5G,EAAEwtC,OAAqB,OAAZxtC,EAAEwtC,OAAoC,iBAAXxtC,EAAEwtC,MAC1C,MAAM,IAAI5mC,MAAM,sBAClB,GAAI5G,EAAEosC,YAAqC,iBAAhBpsC,EAAEosC,WAC3B,MAAM,IAAIxlC,MAAM,2BAClB,GAAI5G,EAAEymC,MAAyB,iBAAVzmC,EAAEymC,KACrB,MAAM,IAAI7/B,MAAM,qBAClB,GAAI5G,EAAEymC,OAASzmC,EAAEymC,KAAK34B,WAAW,KAC/B,MAAM,IAAIlH,MAAM,wCAClB,GAAI5G,EAAEymC,OAASzmC,EAAE8gB,OAAO1f,SAASpB,EAAEymC,MACjC,MAAM,IAAI7/B,MAAM,mCAClB,GAAI5G,EAAEymC,MAAQu5C,EAAEhgF,EAAE8gB,OAAQ2Z,GAAI,CAC5B,MAAMu7C,EAAIh2E,EAAE8gB,OAAO9K,MAAMykB,GAAG,GAC5B,IAAKz6B,EAAE8gB,OAAO1f,UAAS,UAAG40E,EAAGh2E,EAAEymC,OAC7B,MAAM,IAAI7/B,MAAM,4DACpB,CACA,GAAI5G,EAAEkE,SAAW5J,OAAO0R,OAAOk0E,GAAG9+E,SAASpB,EAAEkE,QAC3C,MAAM,IAAI0C,MAAM,oCAAoC,EAuBxD,IAAIs5E,EAAoB,CAAElgF,IAAOA,EAAEmgF,IAAM,MAAOngF,EAAE+sD,OAAS,SAAU/sD,EAAEqvC,QAAU,UAAWrvC,EAAEogF,OAAS,SAAUpgF,GAAzF,CAA6FkgF,GAAK,CAAC,GAC3H,MAAMG,EACJC,MACAvjC,YACAwjC,iBAAmB,mCACnB,WAAA3hF,CAAY67B,EAAGu7C,GACb5c,EAAE3+B,EAAGu7C,GAAKj7E,KAAKwlF,kBAAmBxlF,KAAKulF,MAAQ7lD,EAC/C,MAAM+5B,EAAI,CAER5mD,IAAK,CAAC2kB,EAAGh2B,EAAGsnE,KAAO9oE,KAAKylF,cAAehyE,QAAQZ,IAAI2kB,EAAGh2B,EAAGsnE,IACzD4c,eAAgB,CAACluD,EAAGh2B,KAAOxB,KAAKylF,cAAehyE,QAAQiyE,eAAeluD,EAAGh2B,KAG3ExB,KAAKgiD,YAAc,IAAIx+C,MAAMk8B,EAAE2R,YAAc,CAAC,EAAGooB,UAAWz5D,KAAKulF,MAAMl0C,WAAY4pC,IAAMj7E,KAAKwlF,iBAAmBvK,EACnH,CAIA,UAAIl1D,GACF,OAAO/lB,KAAKulF,MAAMx/D,OAAOja,QAAQ,OAAQ,GAC3C,CAIA,iBAAIi6C,GACF,MAAQ17C,OAAQq1B,GAAM,IAAIn1B,IAAIvK,KAAK+lB,QACnC,OAAO2Z,GAAI,QAAG1/B,KAAK+lB,OAAO5kB,MAAMu+B,EAAEh+B,QACpC,CAIA,YAAI4uC,GACF,OAAO,cAAGtwC,KAAK+lB,OACjB,CAIA,aAAI+3B,GACF,OAAO,aAAG99C,KAAK+lB,OACjB,CAKA,WAAI2nB,GACF,GAAI1tC,KAAK0rC,KAAM,CACb,IAAIuvC,EAAIj7E,KAAK+lB,OACb/lB,KAAK2lF,iBAAmB1K,EAAIA,EAAExgE,MAAMza,KAAKwlF,kBAAkBlgE,OAC3D,MAAMm0C,EAAIwhB,EAAEplE,QAAQ7V,KAAK0rC,MAAOlU,EAAIx3B,KAAK0rC,KAAK5/B,QAAQ,MAAO,IAC7D,OAAO,aAAEmvE,EAAE95E,MAAMs4D,EAAIjiC,EAAE91B,SAAW,IACpC,CACA,MAAMg+B,EAAI,IAAIn1B,IAAIvK,KAAK+lB,QACvB,OAAO,aAAE2Z,EAAE/H,SACb,CAIA,QAAImb,GACF,OAAO9yC,KAAKulF,MAAMzyC,IACpB,CAIA,SAAIF,GACF,OAAO5yC,KAAKulF,MAAM3yC,KACpB,CAIA,UAAIsyC,GACF,OAAOllF,KAAKulF,MAAML,MACpB,CAIA,QAAI3yE,GACF,OAAOvS,KAAKulF,MAAMhzE,IACpB,CAIA,cAAI8+B,GACF,OAAOrxC,KAAKgiD,WACd,CAIA,eAAIrW,GACF,OAAsB,OAAf3rC,KAAKyyC,OAAmBzyC,KAAK2lF,oBAAqD,IAA3B3lF,KAAKulF,MAAM55C,YAAyB3rC,KAAKulF,MAAM55C,YAAcy4C,EAAEv4C,KAAxEu4C,EAAEhgC,IACzD,CAIA,SAAI3R,GACF,OAAOzyC,KAAK2lF,eAAiB3lF,KAAKulF,MAAM9yC,MAAQ,IAClD,CAIA,kBAAIkzC,GACF,OAAOV,EAAEjlF,KAAK+lB,OAAQ/lB,KAAKwlF,iBAC7B,CAIA,QAAI95C,GACF,OAAO1rC,KAAKulF,MAAM75C,KAAO1rC,KAAKulF,MAAM75C,KAAK5/B,QAAQ,WAAY,MAAQ9L,KAAK2lF,iBAAkB,aAAE3lF,KAAK+lB,QAAQtL,MAAMza,KAAKwlF,kBAAkBlgE,OAAS,IACnJ,CAIA,QAAI3S,GACF,GAAI3S,KAAK0rC,KAAM,CACb,IAAIhM,EAAI1/B,KAAK+lB,OACb/lB,KAAK2lF,iBAAmBjmD,EAAIA,EAAEjlB,MAAMza,KAAKwlF,kBAAkBlgE,OAC3D,MAAM21D,EAAIv7C,EAAE7pB,QAAQ7V,KAAK0rC,MAAO+tB,EAAIz5D,KAAK0rC,KAAK5/B,QAAQ,MAAO,IAC7D,OAAO4zB,EAAEv+B,MAAM85E,EAAIxhB,EAAE/3D,SAAW,GAClC,CACA,OAAQ1B,KAAK0tC,QAAU,IAAM1tC,KAAKswC,UAAUxkC,QAAQ,QAAS,IAC/D,CAKA,UAAIkgC,GACF,OAAOhsC,KAAKulF,OAAOlhF,IAAMrE,KAAKqxC,YAAYrF,MAC5C,CAIA,UAAI7iC,GACF,OAAOnJ,KAAKulF,OAAOp8E,MACrB,CAIA,UAAIA,CAAOu2B,GACT1/B,KAAKulF,MAAMp8E,OAASu2B,CACtB,CAOA,IAAAkmD,CAAKlmD,GACH2+B,EAAE,IAAKr+D,KAAKulF,MAAOx/D,OAAQ2Z,GAAK1/B,KAAKwlF,kBAAmBxlF,KAAKulF,MAAMx/D,OAAS2Z,EAAG1/B,KAAKylF,aACtF,CAOA,MAAAz/B,CAAOtmB,GACL,GAAIA,EAAEr5B,SAAS,KACb,MAAM,IAAIwF,MAAM,oBAClB7L,KAAK4lF,MAAK,aAAE5lF,KAAK+lB,QAAU,IAAM2Z,EACnC,CAIA,WAAA+lD,GACEzlF,KAAKulF,MAAM3yC,QAAU5yC,KAAKulF,MAAM3yC,MAAwB,IAAIhtC,KAC9D,EAuBF,MAAMigF,UAAWP,EACf,QAAIz6E,GACF,OAAOk0D,EAAExwB,IACX,EAuBF,MAAM11B,UAAWysE,EACf,WAAAzhF,CAAY67B,GACV+O,MAAM,IACD/O,EACHoT,KAAM,wBAEV,CACA,QAAIjoC,GACF,OAAOk0D,EAAEtxB,MACX,CACA,aAAIqQ,GACF,OAAO,IACT,CACA,QAAIhL,GACF,MAAO,sBACT,EAwBF,MAAMgzC,EAAI,WAAU,WAAK3iD,MAAOxhC,GAAK,QAAG,OAAQokF,EAAK,SAAS9gF,EAAItD,EAAI+9B,EAAI,CAAC,GACzE,MAAMu7C,GAAI,QAAGh2E,EAAG,CAAE6sC,QAASpS,IAC3B,SAAS+5B,EAAEj4D,GACTy5E,EAAE+K,WAAW,IACRtmD,EAEH,mBAAoB,iBAEpBqS,aAAcvwC,GAAK,IAEvB,CACA,OAAO,QAAGi4D,GAAIA,GAAE,YAAO,UAAKvnB,MAAM,SAAS,CAAC1wC,EAAGsnE,KAC7C,MAAMkW,EAAIlW,EAAEh3B,QACZ,OAAOktC,GAAG94E,SAAW4iE,EAAE5iE,OAAS84E,EAAE94E,cAAe84E,EAAE94E,QAAS+/E,MAAMzkF,EAAGsnE,EAAE,IACrEmS,CACN,EAAGiL,EAAK72E,MAAOpK,EAAGy6B,EAAI,IAAKu7C,EAAI6K,WAAa7gF,EAAEuuC,qBAAqB,GAAGynC,IAAIv7C,IAAK,CAC7EsQ,SAAS,EACTlrC,KAndO,+CACY8/E,iCAEfF,wIAidJ5yC,QAAS,CAEP5rC,OAAQ,UAEVutC,aAAa,KACX3uC,KAAKgN,QAAQ0lB,GAAMA,EAAEkb,WAAahT,IAAG3tB,KAAKylB,GAAM2uD,EAAG3uD,EAAGyjD,KAAKkL,EAAK,SAASlhF,EAAGy6B,EAAIomD,EAAG7K,EAAIt5E,GACzF,MAAM83D,GAAI,WAAKt2B,IACf,IAAKs2B,EACH,MAAM,IAAI5tD,MAAM,oBAClB,MAAM2rB,EAAIvyB,EAAE0d,MAAOnhB,EAAIwjF,EAAGxtD,GAAGmU,aAAcm9B,GAAKtxC,IAAI,aAAeiiC,GAAG/xD,WAAYs3E,EAAI,CACpF36E,GAAImzB,GAAGwU,QAAU,EACjBjmB,OAAQ,GAAGk1D,IAAIh2E,EAAEytC,WACjBE,MAAO,IAAIhtC,KAAKA,KAAKZ,MAAMC,EAAE4tC,UAC7BC,KAAM7tC,EAAE6tC,MAAQ,2BAChBvgC,KAAMilB,GAAGjlB,MAAQsK,OAAO0/B,SAAS/kB,EAAE4uD,kBAAoB,KACvDz6C,YAAanqC,EACbixC,MAAOq2B,EACPp9B,KAAMhM,EACN2R,WAAY,IACPpsC,KACAuyB,EACHub,WAAYvb,IAAI,iBAGpB,cAAcwnD,EAAE3tC,YAAY1uB,MAAkB,SAAX1d,EAAE4F,KAAkB,IAAIg7E,EAAG7G,GAAK,IAAInmE,EAAGmmE,EAC5E,EAsBA,MAAMqH,EACJC,OAAS,GACTC,aAAe,KACf,QAAA7uB,CAASh4B,GACP,GAAI1/B,KAAKsmF,OAAOzhD,MAAMo2C,GAAMA,EAAE52E,KAAOq7B,EAAEr7B,KACrC,MAAM,IAAIwH,MAAM,WAAW6zB,EAAEr7B,4BAC/BrE,KAAKsmF,OAAO9lF,KAAKk/B,EACnB,CACA,MAAA++C,CAAO/+C,GACL,MAAMu7C,EAAIj7E,KAAKsmF,OAAO3kC,WAAW8X,GAAMA,EAAEp1D,KAAOq7B,KACzC,IAAPu7C,GAAYj7E,KAAKsmF,OAAOxwE,OAAOmlE,EAAG,EACpC,CACA,SAAIr2C,GACF,OAAO5kC,KAAKsmF,MACd,CACA,SAAAlhD,CAAU1F,GACR1/B,KAAKumF,aAAe7mD,CACtB,CACA,UAAI6N,GACF,OAAOvtC,KAAKumF,YACd,EAEF,MAAMC,EAAK,WACT,cAAcrjF,OAAOsjF,eAAiB,MAAQtjF,OAAOsjF,eAAiB,IAAIJ,EAAMn/D,EAAEme,MAAM,mCAAoCliC,OAAOsjF,cACrI,EAsBA,MAAMC,EACJC,QACA,WAAA9iF,CAAY67B,GACVknD,EAAGlnD,GAAI1/B,KAAK2mF,QAAUjnD,CACxB,CACA,MAAIr7B,GACF,OAAOrE,KAAK2mF,QAAQtiF,EACtB,CACA,SAAI8G,GACF,OAAOnL,KAAK2mF,QAAQx7E,KACtB,CACA,UAAI0X,GACF,OAAO7iB,KAAK2mF,QAAQ9jE,MACtB,CACA,QAAIlG,GACF,OAAO3c,KAAK2mF,QAAQhqE,IACtB,CACA,WAAIy/B,GACF,OAAOp8C,KAAK2mF,QAAQvqC,OACtB,EAEF,MAAMwqC,EAAK,SAAS3hF,GAClB,IAAKA,EAAEZ,IAAqB,iBAARY,EAAEZ,GACpB,MAAM,IAAIwH,MAAM,2BAClB,IAAK5G,EAAEkG,OAA2B,iBAAXlG,EAAEkG,MACvB,MAAM,IAAIU,MAAM,8BAClB,IAAK5G,EAAE4d,QAA6B,mBAAZ5d,EAAE4d,OACxB,MAAM,IAAIhX,MAAM,iCAClB,GAAI5G,EAAE0X,MAAyB,mBAAV1X,EAAE0X,KACrB,MAAM,IAAI9Q,MAAM,0CAClB,GAAI5G,EAAEm3C,SAA+B,mBAAbn3C,EAAEm3C,QACxB,MAAM,IAAIvwC,MAAM,qCAClB,OAAO,CACT,EACA,IAAIg7E,EAAI,CAAC,EAAGC,EAAI,CAAC,GACjB,SAAU7hF,GACR,MAAMy6B,EAAI,gLAAyO+5B,EAAI,IAAM/5B,EAAI,KAAlEA,EAAwD,iDAA2BlI,EAAI,IAAInd,OAAO,IAAMo/C,EAAI,KAgB3Sx0D,EAAE8hF,QAAU,SAAS/H,GACnB,cAAcA,EAAI,GACpB,EAAG/5E,EAAE+hF,cAAgB,SAAShI,GAC5B,OAAiC,IAA1Bz/E,OAAO6G,KAAK44E,GAAGt9E,MACxB,EAAGuD,EAAEgiF,MAAQ,SAASjI,EAAGv3E,EAAGwC,GAC1B,GAAIxC,EAAG,CACL,MAAMhG,EAAIlC,OAAO6G,KAAKqB,GAAIkyD,EAAIl4D,EAAEC,OAChC,IAAK,IAAIie,EAAI,EAAGA,EAAIg6C,EAAGh6C,IACJq/D,EAAEv9E,EAAEke,IAAf,WAAN1V,EAA2B,CAACxC,EAAEhG,EAAEke,KAAiBlY,EAAEhG,EAAEke,GACzD,CACF,EAAG1a,EAAE8rE,SAAW,SAASiO,GACvB,OAAO/5E,EAAE8hF,QAAQ/H,GAAKA,EAAI,EAC5B,EAAG/5E,EAAEiiF,OAhBE,SAASlI,GACd,MAAMv3E,EAAI+vB,EAAEjb,KAAKyiE,GACjB,QAAe,OAANv3E,UAAqBA,EAAI,IACpC,EAaiBxC,EAAEkiF,cA5BkS,SAASnI,EAAGv3E,GAC/T,MAAMwC,EAAI,GACV,IAAIxI,EAAIgG,EAAE8U,KAAKyiE,GACf,KAAOv9E,GAAK,CACV,MAAMk4D,EAAI,GACVA,EAAEnM,WAAa/lD,EAAEwmD,UAAYxsD,EAAE,GAAGC,OAClC,MAAMie,EAAIle,EAAEC,OACZ,IAAK,IAAImnE,EAAI,EAAGA,EAAIlpD,EAAGkpD,IACrBlP,EAAEn5D,KAAKiB,EAAEonE,IACX5+D,EAAEzJ,KAAKm5D,GAAIl4D,EAAIgG,EAAE8U,KAAKyiE,EACxB,CACA,OAAO/0E,CACT,EAgBsChF,EAAEmiF,WAAa3tB,CACtD,CA9BD,CA8BGqtB,GACH,MAAMO,EAAIP,EAAGQ,EAAK,CAChBC,wBAAwB,EAExBC,aAAc,IAkGhB,SAASC,EAAExiF,GACT,MAAa,MAANA,GAAmB,OAANA,GAAmB,OAANA,GACxB,OAANA,CACL,CACA,SAASyiF,EAAEziF,EAAGy6B,GACZ,MAAMu7C,EAAIv7C,EACV,KAAOA,EAAIz6B,EAAEvD,OAAQg+B,IACnB,GAAY,KAARz6B,EAAEy6B,IAAqB,KAARz6B,EAAEy6B,GAAW,CAC9B,MAAM+5B,EAAIx0D,EAAE0iB,OAAOszD,EAAGv7C,EAAIu7C,GAC1B,GAAIv7C,EAAI,GAAW,QAAN+5B,EACX,OAAOngD,GAAE,aAAc,6DAA8DquE,GAAE1iF,EAAGy6B,IAC5F,GAAY,KAARz6B,EAAEy6B,IAAyB,KAAZz6B,EAAEy6B,EAAI,GAAW,CAClCA,IACA,KACF,CACE,QACJ,CACF,OAAOA,CACT,CACA,SAASkoD,EAAE3iF,EAAGy6B,GACZ,GAAIz6B,EAAEvD,OAASg+B,EAAI,GAAkB,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAChD,IAAKA,GAAK,EAAGA,EAAIz6B,EAAEvD,OAAQg+B,IACzB,GAAa,MAATz6B,EAAEy6B,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,GAAY,CACxDA,GAAK,EACL,KACF,OACG,GAAIz6B,EAAEvD,OAASg+B,EAAI,GAAkB,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,GAAY,CACvK,IAAIu7C,EAAI,EACR,IAAKv7C,GAAK,EAAGA,EAAIz6B,EAAEvD,OAAQg+B,IACzB,GAAa,MAATz6B,EAAEy6B,GACJu7C,SACG,GAAa,MAATh2E,EAAEy6B,KAAeu7C,IAAW,IAANA,GAC7B,KACN,MAAO,GAAIh2E,EAAEvD,OAASg+B,EAAI,GAAkB,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,GAC3J,IAAKA,GAAK,EAAGA,EAAIz6B,EAAEvD,OAAQg+B,IACzB,GAAa,MAATz6B,EAAEy6B,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,GAAY,CACxDA,GAAK,EACL,KACF,CAEJ,OAAOA,CACT,CAzIAmnD,EAAEgB,SAAW,SAAS5iF,EAAGy6B,GACvBA,EAAIngC,OAAOmF,OAAO,CAAC,EAAG4iF,EAAI5nD,GAC1B,MAAMu7C,EAAI,GACV,IAAIxhB,GAAI,EAAIjiC,GAAI,EACP,WAATvyB,EAAE,KAAoBA,EAAIA,EAAE0iB,OAAO,IACnC,IAAK,IAAInmB,EAAI,EAAGA,EAAIyD,EAAEvD,OAAQF,IAC5B,GAAa,MAATyD,EAAEzD,IAA2B,MAAbyD,EAAEzD,EAAI,IACxB,GAAIA,GAAK,EAAGA,EAAIkmF,EAAEziF,EAAGzD,GAAIA,EAAEse,IACzB,OAAOte,MACJ,IAAa,MAATyD,EAAEzD,GAyEN,CACL,GAAIimF,EAAExiF,EAAEzD,IACN,SACF,OAAO8X,GAAE,cAAe,SAAWrU,EAAEzD,GAAK,qBAAsBmmF,GAAE1iF,EAAGzD,GACvE,CA7EyB,CACvB,IAAIsnE,EAAItnE,EACR,GAAIA,IAAc,MAATyD,EAAEzD,GAAY,CACrBA,EAAIomF,EAAE3iF,EAAGzD,GACT,QACF,CAAO,CACL,IAAIw9E,GAAI,EACC,MAAT/5E,EAAEzD,KAAew9E,GAAI,EAAIx9E,KACzB,IAAIiG,EAAI,GACR,KAAOjG,EAAIyD,EAAEvD,QAAmB,MAATuD,EAAEzD,IAAuB,MAATyD,EAAEzD,IAAuB,OAATyD,EAAEzD,IAAuB,OAATyD,EAAEzD,IACnE,OAATyD,EAAEzD,GAAaA,IACViG,GAAKxC,EAAEzD,GACT,GAAIiG,EAAIA,EAAE0V,OAA4B,MAApB1V,EAAEA,EAAE/F,OAAS,KAAe+F,EAAIA,EAAEw4D,UAAU,EAAGx4D,EAAE/F,OAAS,GAAIF,MAAOsmF,GAAGrgF,GAAI,CAC5F,IAAIkyD,EACJ,OAA+BA,EAAJ,IAApBlyD,EAAE0V,OAAOzb,OAAmB,2BAAiC,QAAU+F,EAAI,wBAAyB6R,GAAE,aAAcqgD,EAAGguB,GAAE1iF,EAAGzD,GACrI,CACA,MAAMyI,EAAI89E,EAAG9iF,EAAGzD,GAChB,IAAU,IAANyI,EACF,OAAOqP,GAAE,cAAe,mBAAqB7R,EAAI,qBAAsBkgF,GAAE1iF,EAAGzD,IAC9E,IAAIC,EAAIwI,EAAE5E,MACV,GAAI7D,EAAIyI,EAAEwU,MAA2B,MAApBhd,EAAEA,EAAEC,OAAS,GAAY,CACxC,MAAMi4D,EAAIn4D,EAAIC,EAAEC,OAChBD,EAAIA,EAAEw+D,UAAU,EAAGx+D,EAAEC,OAAS,GAC9B,MAAMie,EAAIqoE,GAAEvmF,EAAGi+B,GACf,IAAU,IAAN/f,EAGF,OAAOrG,GAAEqG,EAAEG,IAAImoE,KAAMtoE,EAAEG,IAAIuW,IAAKsxD,GAAE1iF,EAAG00D,EAAIh6C,EAAEG,IAAI2/C,OAF/ChG,GAAI,CAGR,MAAO,GAAIulB,EACT,KAAI/0E,EAAEi+E,UAgBJ,OAAO5uE,GAAE,aAAc,gBAAkB7R,EAAI,iCAAkCkgF,GAAE1iF,EAAGzD,IAfpF,GAAIC,EAAE0b,OAAOzb,OAAS,EACpB,OAAO4X,GAAE,aAAc,gBAAkB7R,EAAI,+CAAgDkgF,GAAE1iF,EAAG6jE,IACpG,CACE,MAAMnP,EAAIshB,EAAE31D,MACZ,GAAI7d,IAAMkyD,EAAEqH,QAAS,CACnB,IAAIrhD,EAAIgoE,GAAE1iF,EAAG00D,EAAEwuB,aACf,OAAO7uE,GACL,aACA,yBAA2BqgD,EAAEqH,QAAU,qBAAuBrhD,EAAE8/C,KAAO,SAAW9/C,EAAEyoE,IAAM,6BAA+B3gF,EAAI,KAC7HkgF,GAAE1iF,EAAG6jE,GAET,CACY,GAAZmS,EAAEv5E,SAAgB81B,GAAI,EACxB,CAEuF,KACtF,CACH,MAAMmiC,EAAIquB,GAAEvmF,EAAGi+B,GACf,IAAU,IAANi6B,EACF,OAAOrgD,GAAEqgD,EAAE75C,IAAImoE,KAAMtuB,EAAE75C,IAAIuW,IAAKsxD,GAAE1iF,EAAGzD,EAAIC,EAAEC,OAASi4D,EAAE75C,IAAI2/C,OAC5D,IAAU,IAANjoC,EACF,OAAOle,GAAE,aAAc,sCAAuCquE,GAAE1iF,EAAGzD,KACtC,IAA/Bk+B,EAAE8nD,aAAa3xE,QAAQpO,IAAawzE,EAAEz6E,KAAK,CAAEwgE,QAASv5D,EAAG0gF,YAAarf,IAAMrP,GAAI,CAClF,CACA,IAAKj4D,IAAKA,EAAIyD,EAAEvD,OAAQF,IACtB,GAAa,MAATyD,EAAEzD,GACJ,IAAiB,MAAbyD,EAAEzD,EAAI,GAAY,CACpBA,IAAKA,EAAIomF,EAAE3iF,EAAGzD,GACd,QACF,CAAO,GAAiB,MAAbyD,EAAEzD,EAAI,GAIf,MAHA,GAAIA,EAAIkmF,EAAEziF,IAAKzD,GAAIA,EAAEse,IACnB,OAAOte,CAEJ,MACJ,GAAa,MAATyD,EAAEzD,GAAY,CACrB,MAAMm4D,EAAI0uB,GAAGpjF,EAAGzD,GAChB,IAAU,GAANm4D,EACF,OAAOrgD,GAAE,cAAe,4BAA6BquE,GAAE1iF,EAAGzD,IAC5DA,EAAIm4D,CACN,MAAO,IAAU,IAANniC,IAAaiwD,EAAExiF,EAAEzD,IAC1B,OAAO8X,GAAE,aAAc,wBAAyBquE,GAAE1iF,EAAGzD,IAChD,MAATyD,EAAEzD,IAAcA,GAClB,CACF,CAIA,CACF,OAAIi4D,EACc,GAAZwhB,EAAEv5E,OACG4X,GAAE,aAAc,iBAAmB2hE,EAAE,GAAGja,QAAU,KAAM2mB,GAAE1iF,EAAGg2E,EAAE,GAAGkN,gBACvElN,EAAEv5E,OAAS,IACN4X,GAAE,aAAc,YAAcvU,KAAKQ,UAAU01E,EAAElpE,KAAKvQ,GAAMA,EAAEw/D,UAAU,KAAM,GAAGl1D,QAAQ,SAAU,IAAM,WAAY,CAAE2zD,KAAM,EAAG2oB,IAAK,IAErI9uE,GAAE,aAAc,sBAAuB,EAElD,EA2CA,MAAMgvE,EAAK,IAAKC,EAAK,IACrB,SAASR,EAAG9iF,EAAGy6B,GACb,IAAIu7C,EAAI,GAAIxhB,EAAI,GAAIjiC,GAAI,EACxB,KAAOkI,EAAIz6B,EAAEvD,OAAQg+B,IAAK,CACxB,GAAIz6B,EAAEy6B,KAAO4oD,GAAMrjF,EAAEy6B,KAAO6oD,EACpB,KAAN9uB,EAAWA,EAAIx0D,EAAEy6B,GAAK+5B,IAAMx0D,EAAEy6B,KAAO+5B,EAAI,SACtC,GAAa,MAATx0D,EAAEy6B,IAAoB,KAAN+5B,EAAU,CACjCjiC,GAAI,EACJ,KACF,CACAyjD,GAAKh2E,EAAEy6B,EACT,CACA,MAAa,KAAN+5B,GAAgB,CACrBp0D,MAAO41E,EACPx8D,MAAOihB,EACPwoD,UAAW1wD,EAEf,CACA,MAAMgxD,GAAK,IAAInuE,OAAO,0DAA0D,KAChF,SAAS2tE,GAAE/iF,EAAGy6B,GACZ,MAAMu7C,EAAIoM,EAAEF,cAAcliF,EAAGujF,IAAK/uB,EAAI,CAAC,EACvC,IAAK,IAAIjiC,EAAI,EAAGA,EAAIyjD,EAAEv5E,OAAQ81B,IAAK,CACjC,GAAuB,IAAnByjD,EAAEzjD,GAAG,GAAG91B,OACV,OAAO4X,GAAE,cAAe,cAAgB2hE,EAAEzjD,GAAG,GAAK,8BAA+BvG,GAAEgqD,EAAEzjD,KACvF,QAAgB,IAAZyjD,EAAEzjD,GAAG,SAA6B,IAAZyjD,EAAEzjD,GAAG,GAC7B,OAAOle,GAAE,cAAe,cAAgB2hE,EAAEzjD,GAAG,GAAK,sBAAuBvG,GAAEgqD,EAAEzjD,KAC/E,QAAgB,IAAZyjD,EAAEzjD,GAAG,KAAkBkI,EAAE6nD,uBAC3B,OAAOjuE,GAAE,cAAe,sBAAwB2hE,EAAEzjD,GAAG,GAAK,oBAAqBvG,GAAEgqD,EAAEzjD,KACrF,MAAMh2B,EAAIy5E,EAAEzjD,GAAG,GACf,IAAKixD,GAAGjnF,GACN,OAAO8X,GAAE,cAAe,cAAgB9X,EAAI,wBAAyByvB,GAAEgqD,EAAEzjD,KAC3E,GAAKiiC,EAAEh6D,eAAe+B,GAGpB,OAAO8X,GAAE,cAAe,cAAgB9X,EAAI,iBAAkByvB,GAAEgqD,EAAEzjD,KAFlEiiC,EAAEj4D,GAAK,CAGX,CACA,OAAO,CACT,CAWA,SAAS6mF,GAAGpjF,EAAGy6B,GACb,GAAkB,MAATz6B,IAALy6B,GACF,OAAQ,EACV,GAAa,MAATz6B,EAAEy6B,GACJ,OAdJ,SAAYz6B,EAAGy6B,GACb,IAAIu7C,EAAI,KACR,IAAc,MAATh2E,EAAEy6B,KAAeA,IAAKu7C,EAAI,cAAev7C,EAAIz6B,EAAEvD,OAAQg+B,IAAK,CAC/D,GAAa,MAATz6B,EAAEy6B,GACJ,OAAOA,EACT,IAAKz6B,EAAEy6B,GAAGzkB,MAAMggE,GACd,KACJ,CACA,OAAQ,CACV,CAKgByN,CAAGzjF,IAARy6B,GACT,IAAIu7C,EAAI,EACR,KAAOv7C,EAAIz6B,EAAEvD,OAAQg+B,IAAKu7C,IACxB,KAAMh2E,EAAEy6B,GAAGzkB,MAAM,OAASggE,EAAI,IAAK,CACjC,GAAa,MAATh2E,EAAEy6B,GACJ,MACF,OAAQ,CACV,CACF,OAAOA,CACT,CACA,SAASpmB,GAAErU,EAAGy6B,EAAGu7C,GACf,MAAO,CACLn7D,IAAK,CACHmoE,KAAMhjF,EACNoxB,IAAKqJ,EACL+/B,KAAMwb,EAAExb,MAAQwb,EAChBmN,IAAKnN,EAAEmN,KAGb,CACA,SAASK,GAAGxjF,GACV,OAAOoiF,EAAEH,OAAOjiF,EAClB,CACA,SAAS6iF,GAAG7iF,GACV,OAAOoiF,EAAEH,OAAOjiF,EAClB,CACA,SAAS0iF,GAAE1iF,EAAGy6B,GACZ,MAAMu7C,EAAIh2E,EAAEg7D,UAAU,EAAGvgC,GAAGjlB,MAAM,SAClC,MAAO,CACLglD,KAAMwb,EAAEv5E,OAER0mF,IAAKnN,EAAEA,EAAEv5E,OAAS,GAAGA,OAAS,EAElC,CACA,SAASuvB,GAAEhsB,GACT,OAAOA,EAAEuoD,WAAavoD,EAAE,GAAGvD,MAC7B,CACA,IAAI67E,GAAI,CAAC,EACT,MAAMoL,GAAK,CACTC,eAAe,EACfC,oBAAqB,KACrBC,qBAAqB,EACrBC,aAAc,QACdC,kBAAkB,EAClBC,gBAAgB,EAEhB1B,wBAAwB,EAGxB2B,eAAe,EACfC,qBAAqB,EACrBC,YAAY,EAEZC,eAAe,EACfC,mBAAoB,CAClBC,KAAK,EACLC,cAAc,EACdC,WAAW,GAEbC,kBAAmB,SAASzkF,EAAGy6B,GAC7B,OAAOA,CACT,EACAiqD,wBAAyB,SAAS1kF,EAAGy6B,GACnC,OAAOA,CACT,EACAkqD,UAAW,GAEXC,sBAAsB,EACtBr8E,QAAS,KAAM,EACfs8E,iBAAiB,EACjBtC,aAAc,GACduC,iBAAiB,EACjBC,cAAc,EACdC,mBAAmB,EACnBC,cAAc,EACdC,kBAAkB,EAClBC,wBAAwB,EACxBC,UAAW,SAASplF,EAAGy6B,EAAGu7C,GACxB,OAAOh2E,CACT,GAKFs4E,GAAE+M,aAHM,SAASrlF,GACf,OAAO1F,OAAOmF,OAAO,CAAC,EAAGikF,GAAI1jF,EAC/B,EAEAs4E,GAAEgN,eAAiB5B,GAanB,MAAM6B,GAAK1D,EAmCX,SAAS2D,GAAGxlF,EAAGy6B,GACb,IAAIu7C,EAAI,GACR,KAAOv7C,EAAIz6B,EAAEvD,QAAmB,MAATuD,EAAEy6B,IAAuB,MAATz6B,EAAEy6B,GAAYA,IACnDu7C,GAAKh2E,EAAEy6B,GACT,GAAIu7C,EAAIA,EAAE99D,QAA4B,IAApB89D,EAAEplE,QAAQ,KAC1B,MAAM,IAAIhK,MAAM,sCAClB,MAAM4tD,EAAIx0D,EAAEy6B,KACZ,IAAIlI,EAAI,GACR,KAAOkI,EAAIz6B,EAAEvD,QAAUuD,EAAEy6B,KAAO+5B,EAAG/5B,IACjClI,GAAKvyB,EAAEy6B,GACT,MAAO,CAACu7C,EAAGzjD,EAAGkI,EAChB,CACA,SAASgrD,GAAGzlF,EAAGy6B,GACb,MAAoB,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,EACvD,CACA,SAASirD,GAAG1lF,EAAGy6B,GACb,MAAoB,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,EACvI,CACA,SAASkrD,GAAG3lF,EAAGy6B,GACb,MAAoB,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,EAC3J,CACA,SAASmrD,GAAG5lF,EAAGy6B,GACb,MAAoB,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,EAC3J,CACA,SAASorD,GAAG7lF,EAAGy6B,GACb,MAAoB,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,EAC/K,CACA,SAASqrD,GAAG9lF,GACV,GAAIulF,GAAGtD,OAAOjiF,GACZ,OAAOA,EACT,MAAM,IAAI4G,MAAM,uBAAuB5G,IACzC,CAEA,MAAM+lF,GAAK,wBAAyBC,GAAK,+EACxCpuE,OAAO0/B,UAAYp5C,OAAOo5C,WAAa1/B,OAAO0/B,SAAWp5C,OAAOo5C,WAChE1/B,OAAOyyD,YAAcnsE,OAAOmsE,aAAezyD,OAAOyyD,WAAansE,OAAOmsE,YACvE,MAAM4b,GAAK,CACT3B,KAAK,EACLC,cAAc,EACd2B,aAAc,IACd1B,WAAW,GAiCb,MAAMzhE,GAAK8+D,EAAGsE,GAxHd,MACE,WAAAvnF,CAAY67B,GACV1/B,KAAKu3E,QAAU73C,EAAG1/B,KAAKusB,MAAQ,GAAIvsB,KAAK,MAAQ,CAAC,CACnD,CACA,GAAAqW,CAAIqpB,EAAGu7C,GACC,cAANv7C,IAAsBA,EAAI,cAAe1/B,KAAKusB,MAAM/rB,KAAK,CAAE,CAACk/B,GAAIu7C,GAClE,CACA,QAAAoQ,CAAS3rD,GACO,cAAdA,EAAE63C,UAA4B73C,EAAE63C,QAAU,cAAe73C,EAAE,OAASngC,OAAO6G,KAAKs5B,EAAE,OAAOh+B,OAAS,EAAI1B,KAAKusB,MAAM/rB,KAAK,CAAE,CAACk/B,EAAE63C,SAAU73C,EAAEnT,MAAO,KAAMmT,EAAE,QAAW1/B,KAAKusB,MAAM/rB,KAAK,CAAE,CAACk/B,EAAE63C,SAAU73C,EAAEnT,OACpM,GA+GoB++D,GA3GtB,SAAYrmF,EAAGy6B,GACb,MAAMu7C,EAAI,CAAC,EACX,GAAiB,MAAbh2E,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,GA6B5G,MAAM,IAAI7zB,MAAM,kCA7BwG,CACxH6zB,GAAQ,EACR,IAAI+5B,EAAI,EAAGjiC,GAAI,EAAIh2B,GAAI,EAAIsnE,EAAI,GAC/B,KAAOppC,EAAIz6B,EAAEvD,OAAQg+B,IACnB,GAAa,MAATz6B,EAAEy6B,IAAel+B,EAiBd,GAAa,MAATyD,EAAEy6B,IACX,GAAIl+B,EAAiB,MAAbyD,EAAEy6B,EAAI,IAA2B,MAAbz6B,EAAEy6B,EAAI,KAAel+B,GAAI,EAAIi4D,KAAOA,IAAW,IAANA,EACnE,UAEO,MAATx0D,EAAEy6B,GAAalI,GAAI,EAAKsxC,GAAK7jE,EAAEy6B,OArBT,CACtB,GAAIlI,GAAKmzD,GAAG1lF,EAAGy6B,GACbA,GAAK,GAAI6rD,WAAYlrE,IAAKqf,GAAK+qD,GAAGxlF,EAAGy6B,EAAI,IAA0B,IAAtBrf,IAAIxK,QAAQ,OAAgBolE,EAAE8P,GAAGQ,aAAe,CAC3FC,KAAMnxE,OAAO,IAAIkxE,cAAe,KAChClrE,WAEC,GAAImX,GAAKozD,GAAG3lF,EAAGy6B,GAClBA,GAAK,OACF,GAAIlI,GAAKqzD,GAAG5lF,EAAGy6B,GAClBA,GAAK,OACF,GAAIlI,GAAKszD,GAAG7lF,EAAGy6B,GAClBA,GAAK,MACF,KAAIgrD,GAGP,MAAM,IAAI7+E,MAAM,mBAFhBrK,GAAI,CAE8B,CACpCi4D,IAAKqP,EAAI,EACX,CAKF,GAAU,IAANrP,EACF,MAAM,IAAI5tD,MAAM,mBACpB,CAEA,MAAO,CAAE4/E,SAAUxQ,EAAGz5E,EAAGk+B,EAC3B,EA0E+BgsD,GA9B/B,SAAYzmF,EAAGy6B,EAAI,CAAC,GAClB,GAAIA,EAAIngC,OAAOmF,OAAO,CAAC,EAAGwmF,GAAIxrD,IAAKz6B,GAAiB,iBAALA,EAC7C,OAAOA,EACT,IAAIg2E,EAAIh2E,EAAEkY,OACV,QAAmB,IAAfuiB,EAAEisD,UAAuBjsD,EAAEisD,SAAS7hF,KAAKmxE,GAC3C,OAAOh2E,EACT,GAAIy6B,EAAE6pD,KAAOyB,GAAGlhF,KAAKmxE,GACnB,OAAOp+D,OAAO0/B,SAAS0+B,EAAG,IAC5B,CACE,MAAMxhB,EAAIwxB,GAAG1uE,KAAK0+D,GAClB,GAAIxhB,EAAG,CACL,MAAMjiC,EAAIiiC,EAAE,GAAIj4D,EAAIi4D,EAAE,GACtB,IAAIqP,EAcV,SAAY7jE,GACV,OAAOA,IAAyB,IAApBA,EAAE4Q,QAAQ,OAAgD,OAAhC5Q,EAAIA,EAAE6G,QAAQ,MAAO,KAAiB7G,EAAI,IAAe,MAATA,EAAE,GAAaA,EAAI,IAAMA,EAAwB,MAApBA,EAAEA,EAAEvD,OAAS,KAAeuD,EAAIA,EAAE0iB,OAAO,EAAG1iB,EAAEvD,OAAS,KAAMuD,CAClL,CAhBc2mF,CAAGnyB,EAAE,IACb,MAAMulB,EAAIvlB,EAAE,IAAMA,EAAE,GACpB,IAAK/5B,EAAE8pD,cAAgBhoF,EAAEE,OAAS,GAAK81B,GAAc,MAATyjD,EAAE,GAC5C,OAAOh2E,EACT,IAAKy6B,EAAE8pD,cAAgBhoF,EAAEE,OAAS,IAAM81B,GAAc,MAATyjD,EAAE,GAC7C,OAAOh2E,EACT,CACE,MAAMwC,EAAIoV,OAAOo+D,GAAIhxE,EAAI,GAAKxC,EAC9B,OAA6B,IAAtBwC,EAAE6tB,OAAO,SAAkBknD,EAAIt/C,EAAE+pD,UAAYhiF,EAAIxC,GAAwB,IAApBg2E,EAAEplE,QAAQ,KAAoB,MAAN5L,GAAmB,KAAN6+D,GAAY7+D,IAAM6+D,GAAKtxC,GAAKvtB,IAAM,IAAM6+D,EAAIrhE,EAAIxC,EAAIzD,EAAIsnE,IAAM7+D,GAAKutB,EAAIsxC,IAAM7+D,EAAIxC,EAAIxC,EAAIg2E,IAAMhxE,GAAKgxE,IAAMzjD,EAAIvtB,EAAIxC,EAAIxC,CACzN,CACF,CACE,OAAOA,CACX,CACF,EA8BA,SAASm0D,GAAGn0D,GACV,MAAMy6B,EAAIngC,OAAO6G,KAAKnB,GACtB,IAAK,IAAIg2E,EAAI,EAAGA,EAAIv7C,EAAEh+B,OAAQu5E,IAAK,CACjC,MAAMxhB,EAAI/5B,EAAEu7C,GACZj7E,KAAK6rF,aAAapyB,GAAK,CACrBjsC,MAAO,IAAInT,OAAO,IAAMo/C,EAAI,IAAK,KACjCp5C,IAAKpb,EAAEw0D,GAEX,CACF,CACA,SAASqyB,GAAG7mF,EAAGy6B,EAAGu7C,EAAGxhB,EAAGjiC,EAAGh2B,EAAGsnE,GAC5B,QAAU,IAAN7jE,IAAiBjF,KAAK4T,QAAQw1E,aAAe3vB,IAAMx0D,EAAIA,EAAEkY,QAASlY,EAAEvD,OAAS,GAAI,CACnFonE,IAAM7jE,EAAIjF,KAAK+rF,qBAAqB9mF,IACpC,MAAM+5E,EAAIh/E,KAAK4T,QAAQ81E,kBAAkBhqD,EAAGz6B,EAAGg2E,EAAGzjD,EAAGh2B,GACrD,OAAY,MAALw9E,EAAY/5E,SAAW+5E,UAAY/5E,GAAK+5E,IAAM/5E,EAAI+5E,EAAIh/E,KAAK4T,QAAQw1E,YAAiFnkF,EAAEkY,SAAWlY,EAAjF+mF,GAAE/mF,EAAGjF,KAAK4T,QAAQs1E,cAAelpF,KAAK4T,QAAQ01E,oBAA2GrkF,CAClP,CACF,CACA,SAASgnF,GAAGhnF,GACV,GAAIjF,KAAK4T,QAAQq1E,eAAgB,CAC/B,MAAMvpD,EAAIz6B,EAAEwV,MAAM,KAAMwgE,EAAoB,MAAhBh2E,EAAEmgB,OAAO,GAAa,IAAM,GACxD,GAAa,UAATsa,EAAE,GACJ,MAAO,GACI,IAAbA,EAAEh+B,SAAiBuD,EAAIg2E,EAAIv7C,EAAE,GAC/B,CACA,OAAOz6B,CACT,CACA,MAAMinF,GAAK,IAAI7xE,OAAO,+CAA+C,MACrE,SAASkvD,GAAGtkE,EAAGy6B,EAAGu7C,GAChB,IAAKj7E,KAAK4T,QAAQo1E,kBAAgC,iBAAL/jF,EAAe,CAC1D,MAAMw0D,EAAIzxC,GAAGm/D,cAAcliF,EAAGinF,IAAK10D,EAAIiiC,EAAE/3D,OAAQF,EAAI,CAAC,EACtD,IAAK,IAAIsnE,EAAI,EAAGA,EAAItxC,EAAGsxC,IAAK,CAC1B,MAAMkW,EAAIh/E,KAAKmsF,iBAAiB1yB,EAAEqP,GAAG,IACrC,IAAIrhE,EAAIgyD,EAAEqP,GAAG,GAAI7+D,EAAIjK,KAAK4T,QAAQi1E,oBAAsB7J,EACxD,GAAIA,EAAEt9E,OACJ,GAAI1B,KAAK4T,QAAQw2E,yBAA2BngF,EAAIjK,KAAK4T,QAAQw2E,uBAAuBngF,IAAW,cAANA,IAAsBA,EAAI,mBAAqB,IAANxC,EAAc,CAC9IzH,KAAK4T,QAAQw1E,aAAe3hF,EAAIA,EAAE0V,QAAS1V,EAAIzH,KAAK+rF,qBAAqBtkF,GACzE,MAAMhG,EAAIzB,KAAK4T,QAAQ+1E,wBAAwB3K,EAAGv3E,EAAGi4B,GACzCl+B,EAAEyI,GAAT,MAALxI,EAAmBgG,SAAWhG,UAAYgG,GAAKhG,IAAMgG,EAAWhG,EAAWuqF,GACzEvkF,EACAzH,KAAK4T,QAAQu1E,oBACbnpF,KAAK4T,QAAQ01E,mBAEjB,MACEtpF,KAAK4T,QAAQ2zE,yBAA2B/lF,EAAEyI,IAAK,EACrD,CACA,IAAK1K,OAAO6G,KAAK5E,GAAGE,OAClB,OACF,GAAI1B,KAAK4T,QAAQk1E,oBAAqB,CACpC,MAAMhgB,EAAI,CAAC,EACX,OAAOA,EAAE9oE,KAAK4T,QAAQk1E,qBAAuBtnF,EAAGsnE,CAClD,CACA,OAAOtnE,CACT,CACF,CACA,MAAM4qF,GAAK,SAASnnF,GAClBA,EAAIA,EAAE6G,QAAQ,SAAU,MAExB,MAAM4zB,EAAI,IAAI0rD,GAAE,QAChB,IAAInQ,EAAIv7C,EAAG+5B,EAAI,GAAIjiC,EAAI,GACvB,IAAK,IAAIh2B,EAAI,EAAGA,EAAIyD,EAAEvD,OAAQF,IAC5B,GAAa,MAATyD,EAAEzD,GACJ,GAAiB,MAAbyD,EAAEzD,EAAI,GAAY,CACpB,MAAMw9E,EAAIpuD,GAAE3rB,EAAG,IAAKzD,EAAG,8BACvB,IAAIiG,EAAIxC,EAAEg7D,UAAUz+D,EAAI,EAAGw9E,GAAG7hE,OAC9B,GAAInd,KAAK4T,QAAQq1E,eAAgB,CAC/B,MAAMtvB,EAAIlyD,EAAEoO,QAAQ,MACb,IAAP8jD,IAAalyD,EAAIA,EAAEkgB,OAAOgyC,EAAI,GAChC,CACA35D,KAAK4T,QAAQu2E,mBAAqB1iF,EAAIzH,KAAK4T,QAAQu2E,iBAAiB1iF,IAAKwzE,IAAMxhB,EAAIz5D,KAAKqsF,oBAAoB5yB,EAAGwhB,EAAGzjD,IAClH,MAAMvtB,EAAIutB,EAAEyoC,UAAUzoC,EAAE80D,YAAY,KAAO,GAC3C,GAAI7kF,IAA+C,IAA1CzH,KAAK4T,QAAQ4zE,aAAa3xE,QAAQpO,GACzC,MAAM,IAAIoE,MAAM,kDAAkDpE,MACpE,IAAIhG,EAAI,EACRwI,IAA+C,IAA1CjK,KAAK4T,QAAQ4zE,aAAa3xE,QAAQ5L,IAAaxI,EAAI+1B,EAAE80D,YAAY,IAAK90D,EAAE80D,YAAY,KAAO,GAAItsF,KAAKusF,cAAcjnE,OAAS7jB,EAAI+1B,EAAE80D,YAAY,KAAM90D,EAAIA,EAAEyoC,UAAU,EAAGx+D,GAAIw5E,EAAIj7E,KAAKusF,cAAcjnE,MAAOm0C,EAAI,GAAIj4D,EAAIw9E,CAC3N,MAAO,GAAiB,MAAb/5E,EAAEzD,EAAI,GAAY,CAC3B,IAAIw9E,EAAIljE,GAAE7W,EAAGzD,GAAG,EAAI,MACpB,IAAKw9E,EACH,MAAM,IAAInzE,MAAM,yBAClB,GAAI4tD,EAAIz5D,KAAKqsF,oBAAoB5yB,EAAGwhB,EAAGzjD,KAAMx3B,KAAK4T,QAAQq2E,mBAAmC,SAAdjL,EAAEhe,SAAsBhhE,KAAK4T,QAAQs2E,cAAe,CACjI,MAAMziF,EAAI,IAAI2jF,GAAEpM,EAAEhe,SAClBv5D,EAAE4O,IAAIrW,KAAK4T,QAAQm1E,aAAc,IAAK/J,EAAEhe,UAAYge,EAAEwN,QAAUxN,EAAEyN,iBAAmBhlF,EAAE,MAAQzH,KAAK0sF,mBAAmB1N,EAAEwN,OAAQh1D,EAAGwnD,EAAEhe,UAAWhhE,KAAKqrF,SAASpQ,EAAGxzE,EAAG+vB,EACvK,CACAh2B,EAAIw9E,EAAE2N,WAAa,CACrB,MAAO,GAA2B,QAAvB1nF,EAAE0iB,OAAOnmB,EAAI,EAAG,GAAc,CACvC,MAAMw9E,EAAIpuD,GAAE3rB,EAAG,SAAOzD,EAAI,EAAG,0BAC7B,GAAIxB,KAAK4T,QAAQk2E,gBAAiB,CAChC,MAAMriF,EAAIxC,EAAEg7D,UAAUz+D,EAAI,EAAGw9E,EAAI,GACjCvlB,EAAIz5D,KAAKqsF,oBAAoB5yB,EAAGwhB,EAAGzjD,GAAIyjD,EAAE5kE,IAAIrW,KAAK4T,QAAQk2E,gBAAiB,CAAC,CAAE,CAAC9pF,KAAK4T,QAAQm1E,cAAethF,IAC7G,CACAjG,EAAIw9E,CACN,MAAO,GAA2B,OAAvB/5E,EAAE0iB,OAAOnmB,EAAI,EAAG,GAAa,CACtC,MAAMw9E,EAAIsM,GAAGrmF,EAAGzD,GAChBxB,KAAK4sF,gBAAkB5N,EAAEyM,SAAUjqF,EAAIw9E,EAAEx9E,CAC3C,MAAO,GAA2B,OAAvByD,EAAE0iB,OAAOnmB,EAAI,EAAG,GAAa,CACtC,MAAMw9E,EAAIpuD,GAAE3rB,EAAG,MAAOzD,EAAG,wBAA0B,EAAGiG,EAAIxC,EAAEg7D,UAAUz+D,EAAI,EAAGw9E,GAC7EvlB,EAAIz5D,KAAKqsF,oBAAoB5yB,EAAGwhB,EAAGzjD,GACnC,IAAIvtB,EAAIjK,KAAK6sF,cAAcplF,EAAGwzE,EAAE1D,QAAS//C,GAAG,GAAI,GAAI,GAAI,GACnD,MAALvtB,IAAcA,EAAI,IAAKjK,KAAK4T,QAAQy1E,cAAgBpO,EAAE5kE,IAAIrW,KAAK4T,QAAQy1E,cAAe,CAAC,CAAE,CAACrpF,KAAK4T,QAAQm1E,cAAethF,KAAQwzE,EAAE5kE,IAAIrW,KAAK4T,QAAQm1E,aAAc9+E,GAAIzI,EAAIw9E,EAAI,CAC7K,KAAO,CACL,IAAIA,EAAIljE,GAAE7W,EAAGzD,EAAGxB,KAAK4T,QAAQq1E,gBAAiBxhF,EAAIu3E,EAAEhe,QACpD,MAAM/2D,EAAI+0E,EAAE8N,WACZ,IAAIrrF,EAAIu9E,EAAEwN,OAAQ7yB,EAAIqlB,EAAEyN,eAAgB9sE,EAAIq/D,EAAE2N,WAC9C3sF,KAAK4T,QAAQu2E,mBAAqB1iF,EAAIzH,KAAK4T,QAAQu2E,iBAAiB1iF,IAAKwzE,GAAKxhB,GAAmB,SAAdwhB,EAAE1D,UAAuB9d,EAAIz5D,KAAKqsF,oBAAoB5yB,EAAGwhB,EAAGzjD,GAAG,IAClJ,MAAMqxC,EAAIoS,EACV,GAAIpS,IAAuD,IAAlD7oE,KAAK4T,QAAQ4zE,aAAa3xE,QAAQgzD,EAAE0O,WAAoB0D,EAAIj7E,KAAKusF,cAAcjnE,MAAOkS,EAAIA,EAAEyoC,UAAU,EAAGzoC,EAAE80D,YAAY,OAAQ7kF,IAAMi4B,EAAE63C,UAAY//C,GAAKA,EAAI,IAAM/vB,EAAIA,GAAIzH,KAAK+sF,aAAa/sF,KAAK4T,QAAQg2E,UAAWpyD,EAAG/vB,GAAI,CAClO,IAAIwb,EAAI,GACR,GAAIxhB,EAAEC,OAAS,GAAKD,EAAE6qF,YAAY,OAAS7qF,EAAEC,OAAS,EACpDF,EAAIw9E,EAAE2N,gBACH,IAA8C,IAA1C3sF,KAAK4T,QAAQ4zE,aAAa3xE,QAAQpO,GACzCjG,EAAIw9E,EAAE2N,eACH,CACH,MAAMK,EAAIhtF,KAAKitF,iBAAiBhoF,EAAGgF,EAAG0V,EAAI,GAC1C,IAAKqtE,EACH,MAAM,IAAInhF,MAAM,qBAAqB5B,KACvCzI,EAAIwrF,EAAExrF,EAAGyhB,EAAI+pE,EAAEE,UACjB,CACA,MAAMpqE,EAAI,IAAIsoE,GAAE3jF,GAChBA,IAAMhG,GAAKk4D,IAAM72C,EAAE,MAAQ9iB,KAAK0sF,mBAAmBjrF,EAAG+1B,EAAG/vB,IAAKwb,IAAMA,EAAIjjB,KAAK6sF,cAAc5pE,EAAGxb,EAAG+vB,GAAG,EAAImiC,GAAG,GAAI,IAAMniC,EAAIA,EAAE7P,OAAO,EAAG6P,EAAE80D,YAAY,MAAOxpE,EAAEzM,IAAIrW,KAAK4T,QAAQm1E,aAAc9lE,GAAIjjB,KAAKqrF,SAASpQ,EAAGn4D,EAAG0U,EACrN,KAAO,CACL,GAAI/1B,EAAEC,OAAS,GAAKD,EAAE6qF,YAAY,OAAS7qF,EAAEC,OAAS,EAAG,CACnC,MAApB+F,EAAEA,EAAE/F,OAAS,IAAc+F,EAAIA,EAAEkgB,OAAO,EAAGlgB,EAAE/F,OAAS,GAAI81B,EAAIA,EAAE7P,OAAO,EAAG6P,EAAE91B,OAAS,GAAID,EAAIgG,GAAKhG,EAAIA,EAAEkmB,OAAO,EAAGlmB,EAAEC,OAAS,GAAI1B,KAAK4T,QAAQu2E,mBAAqB1iF,EAAIzH,KAAK4T,QAAQu2E,iBAAiB1iF,IACrM,MAAMwb,EAAI,IAAImoE,GAAE3jF,GAChBA,IAAMhG,GAAKk4D,IAAM12C,EAAE,MAAQjjB,KAAK0sF,mBAAmBjrF,EAAG+1B,EAAG/vB,IAAKzH,KAAKqrF,SAASpQ,EAAGh4D,EAAGuU,GAAIA,EAAIA,EAAE7P,OAAO,EAAG6P,EAAE80D,YAAY,KACtH,KAAO,CACL,MAAMrpE,EAAI,IAAImoE,GAAE3jF,GAChBzH,KAAKusF,cAAc/rF,KAAKy6E,GAAIxzE,IAAMhG,GAAKk4D,IAAM12C,EAAE,MAAQjjB,KAAK0sF,mBAAmBjrF,EAAG+1B,EAAG/vB,IAAKzH,KAAKqrF,SAASpQ,EAAGh4D,EAAGuU,GAAIyjD,EAAIh4D,CACxH,CACAw2C,EAAI,GAAIj4D,EAAIme,CACd,CACF,MAEA85C,GAAKx0D,EAAEzD,GACX,OAAOk+B,EAAEnT,KACX,EACA,SAAS4gE,GAAGloF,EAAGy6B,EAAGu7C,GAChB,MAAMxhB,EAAIz5D,KAAK4T,QAAQy2E,UAAU3qD,EAAE63C,QAAS0D,EAAGv7C,EAAE,QAC3C,IAAN+5B,IAAyB,iBAALA,IAAkB/5B,EAAE63C,QAAU9d,GAAIx0D,EAAEomF,SAAS3rD,GACnE,CACA,MAAM0tD,GAAK,SAASnoF,GAClB,GAAIjF,KAAK4T,QAAQm2E,gBAAiB,CAChC,IAAK,IAAIrqD,KAAK1/B,KAAK4sF,gBAAiB,CAClC,MAAM3R,EAAIj7E,KAAK4sF,gBAAgBltD,GAC/Bz6B,EAAIA,EAAE6G,QAAQmvE,EAAEuQ,KAAMvQ,EAAE56D,IAC1B,CACA,IAAK,IAAIqf,KAAK1/B,KAAK6rF,aAAc,CAC/B,MAAM5Q,EAAIj7E,KAAK6rF,aAAansD,GAC5Bz6B,EAAIA,EAAE6G,QAAQmvE,EAAEztD,MAAOytD,EAAE56D,IAC3B,CACA,GAAIrgB,KAAK4T,QAAQo2E,aACf,IAAK,IAAItqD,KAAK1/B,KAAKgqF,aAAc,CAC/B,MAAM/O,EAAIj7E,KAAKgqF,aAAatqD,GAC5Bz6B,EAAIA,EAAE6G,QAAQmvE,EAAEztD,MAAOytD,EAAE56D,IAC3B,CACFpb,EAAIA,EAAE6G,QAAQ9L,KAAKqtF,UAAU7/D,MAAOxtB,KAAKqtF,UAAUhtE,IACrD,CACA,OAAOpb,CACT,EACA,SAASqoF,GAAGroF,EAAGy6B,EAAGu7C,EAAGxhB,GACnB,OAAOx0D,SAAY,IAANw0D,IAAiBA,EAAoC,IAAhCl6D,OAAO6G,KAAKs5B,EAAEnT,OAAO7qB,aAO9C,KAP6DuD,EAAIjF,KAAK6sF,cAC7E5nF,EACAy6B,EAAE63C,QACF0D,GACA,IACAv7C,EAAE,OAAwC,IAAhCngC,OAAO6G,KAAKs5B,EAAE,OAAOh+B,OAC/B+3D,KACuB,KAANx0D,GAAYy6B,EAAErpB,IAAIrW,KAAK4T,QAAQm1E,aAAc9jF,GAAIA,EAAI,IAAKA,CAC/E,CACA,SAASsoF,GAAGtoF,EAAGy6B,EAAGu7C,GAChB,MAAMxhB,EAAI,KAAOwhB,EACjB,IAAK,MAAMzjD,KAAKvyB,EAAG,CACjB,MAAMzD,EAAIyD,EAAEuyB,GACZ,GAAIiiC,IAAMj4D,GAAKk+B,IAAMl+B,EACnB,OAAO,CACX,CACA,OAAO,CACT,CA0BA,SAASovB,GAAE3rB,EAAGy6B,EAAGu7C,EAAGxhB,GAClB,MAAMjiC,EAAIvyB,EAAE4Q,QAAQ6pB,EAAGu7C,GACvB,IAAW,IAAPzjD,EACF,MAAM,IAAI3rB,MAAM4tD,GAClB,OAAOjiC,EAAIkI,EAAEh+B,OAAS,CACxB,CACA,SAASoa,GAAE7W,EAAGy6B,EAAGu7C,EAAGxhB,EAAI,KACtB,MAAMjiC,EAhCR,SAAYvyB,EAAGy6B,EAAGu7C,EAAI,KACpB,IAAIxhB,EAAGjiC,EAAI,GACX,IAAK,IAAIh2B,EAAIk+B,EAAGl+B,EAAIyD,EAAEvD,OAAQF,IAAK,CACjC,IAAIsnE,EAAI7jE,EAAEzD,GACV,GAAIi4D,EACFqP,IAAMrP,IAAMA,EAAI,SACb,GAAU,MAANqP,GAAmB,MAANA,EACpBrP,EAAIqP,OACD,GAAIA,IAAMmS,EAAE,GACf,KAAIA,EAAE,GAOJ,MAAO,CACLn2E,KAAM0yB,EACN/Y,MAAOjd,GART,GAAIyD,EAAEzD,EAAI,KAAOy5E,EAAE,GACjB,MAAO,CACLn2E,KAAM0yB,EACN/Y,MAAOjd,EAMV,KAEG,OAANsnE,IAAcA,EAAI,KACpBtxC,GAAKsxC,CACP,CACF,CAQY0kB,CAAGvoF,EAAGy6B,EAAI,EAAG+5B,GACvB,IAAKjiC,EACH,OACF,IAAIh2B,EAAIg2B,EAAE1yB,KACV,MAAMgkE,EAAItxC,EAAE/Y,MAAOugE,EAAIx9E,EAAEs2B,OAAO,MAChC,IAAIrwB,EAAIjG,EAAGyI,GAAI,GACR,IAAP+0E,IAAav3E,EAAIjG,EAAEy+D,UAAU,EAAG+e,GAAIx9E,EAAIA,EAAEy+D,UAAU+e,EAAI,GAAGyO,aAC3D,MAAMhsF,EAAIgG,EACV,GAAIwzE,EAAG,CACL,MAAMthB,EAAIlyD,EAAEoO,QAAQ,MACb,IAAP8jD,IAAalyD,EAAIA,EAAEkgB,OAAOgyC,EAAI,GAAI1vD,EAAIxC,IAAM+vB,EAAE1yB,KAAK6iB,OAAOgyC,EAAI,GAChE,CACA,MAAO,CACLqH,QAASv5D,EACT+kF,OAAQhrF,EACRmrF,WAAY7jB,EACZ2jB,eAAgBxiF,EAChB6iF,WAAYrrF,EAEhB,CACA,SAASisF,GAAGzoF,EAAGy6B,EAAGu7C,GAChB,MAAMxhB,EAAIwhB,EACV,IAAIzjD,EAAI,EACR,KAAOyjD,EAAIh2E,EAAEvD,OAAQu5E,IACnB,GAAa,MAATh2E,EAAEg2E,GACJ,GAAiB,MAAbh2E,EAAEg2E,EAAI,GAAY,CACpB,MAAMz5E,EAAIovB,GAAE3rB,EAAG,IAAKg2E,EAAG,GAAGv7C,mBAC1B,GAAIz6B,EAAEg7D,UAAUgb,EAAI,EAAGz5E,GAAG2b,SAAWuiB,IAAMlI,IAAW,IAANA,GAC9C,MAAO,CACL01D,WAAYjoF,EAAEg7D,UAAUxG,EAAGwhB,GAC3Bz5E,KAEJy5E,EAAIz5E,CACN,MAAO,GAAiB,MAAbyD,EAAEg2E,EAAI,GACfA,EAAIrqD,GAAE3rB,EAAG,KAAMg2E,EAAI,EAAG,gCACnB,GAA2B,QAAvBh2E,EAAE0iB,OAAOszD,EAAI,EAAG,GACvBA,EAAIrqD,GAAE3rB,EAAG,SAAOg2E,EAAI,EAAG,gCACpB,GAA2B,OAAvBh2E,EAAE0iB,OAAOszD,EAAI,EAAG,GACvBA,EAAIrqD,GAAE3rB,EAAG,MAAOg2E,EAAG,2BAA6B,MAC7C,CACH,MAAMz5E,EAAIsa,GAAE7W,EAAGg2E,EAAG,KAClBz5E,KAAOA,GAAKA,EAAEw/D,WAAathC,GAAuC,MAAlCl+B,EAAEgrF,OAAOhrF,EAAEgrF,OAAO9qF,OAAS,IAAc81B,IAAKyjD,EAAIz5E,EAAEmrF,WACtF,CACN,CACA,SAASX,GAAE/mF,EAAGy6B,EAAGu7C,GACf,GAAIv7C,GAAiB,iBAALz6B,EAAe,CAC7B,MAAMw0D,EAAIx0D,EAAEkY,OACZ,MAAa,SAANs8C,GAA0B,UAANA,GAAqBiyB,GAAGzmF,EAAGg2E,EACxD,CACE,OAAOjzD,GAAG++D,QAAQ9hF,GAAKA,EAAI,EAC/B,CACA,IAAa0oF,GAAK,CAAC,EAInB,SAASC,GAAG3oF,EAAGy6B,EAAGu7C,GAChB,IAAIxhB,EACJ,MAAMjiC,EAAI,CAAC,EACX,IAAK,IAAIh2B,EAAI,EAAGA,EAAIyD,EAAEvD,OAAQF,IAAK,CACjC,MAAMsnE,EAAI7jE,EAAEzD,GAAIw9E,EAAI6O,GAAG/kB,GACvB,IAAIrhE,EAAI,GACR,GAAmBA,OAAT,IAANwzE,EAAmB+D,EAAQ/D,EAAI,IAAM+D,EAAGA,IAAMt/C,EAAEqpD,kBAC5C,IAANtvB,EAAeA,EAAIqP,EAAEkW,GAAKvlB,GAAK,GAAKqP,EAAEkW,OACnC,CACH,QAAU,IAANA,EACF,SACF,GAAIlW,EAAEkW,GAAI,CACR,IAAI/0E,EAAI2jF,GAAG9kB,EAAEkW,GAAIt/C,EAAGj4B,GACpB,MAAMhG,EAAIqsF,GAAG7jF,EAAGy1B,GAChBopC,EAAE,MAAQilB,GAAG9jF,EAAG6+D,EAAE,MAAOrhE,EAAGi4B,GAA+B,IAA1BngC,OAAO6G,KAAK6D,GAAGvI,aAAsC,IAAtBuI,EAAEy1B,EAAEqpD,eAA6BrpD,EAAEmqD,qBAAyE,IAA1BtqF,OAAO6G,KAAK6D,GAAGvI,SAAiBg+B,EAAEmqD,qBAAuB5/E,EAAEy1B,EAAEqpD,cAAgB,GAAK9+E,EAAI,IAA9GA,EAAIA,EAAEy1B,EAAEqpD,mBAAoH,IAATvxD,EAAEwnD,IAAiBxnD,EAAE/3B,eAAeu/E,IAAMp9E,MAAM4L,QAAQgqB,EAAEwnD,MAAQxnD,EAAEwnD,GAAK,CAACxnD,EAAEwnD,KAAMxnD,EAAEwnD,GAAGx+E,KAAKyJ,IAAMy1B,EAAElyB,QAAQwxE,EAAGv3E,EAAGhG,GAAK+1B,EAAEwnD,GAAK,CAAC/0E,GAAKutB,EAAEwnD,GAAK/0E,CAC1X,CACF,CACF,CACA,MAAmB,iBAALwvD,EAAgBA,EAAE/3D,OAAS,IAAM81B,EAAEkI,EAAEqpD,cAAgBtvB,QAAW,IAANA,IAAiBjiC,EAAEkI,EAAEqpD,cAAgBtvB,GAAIjiC,CACnH,CACA,SAASq2D,GAAG5oF,GACV,MAAMy6B,EAAIngC,OAAO6G,KAAKnB,GACtB,IAAK,IAAIg2E,EAAI,EAAGA,EAAIv7C,EAAEh+B,OAAQu5E,IAAK,CACjC,MAAMxhB,EAAI/5B,EAAEu7C,GACZ,GAAU,OAANxhB,EACF,OAAOA,CACX,CACF,CACA,SAASs0B,GAAG9oF,EAAGy6B,EAAGu7C,EAAGxhB,GACnB,GAAI/5B,EAAG,CACL,MAAMlI,EAAIj4B,OAAO6G,KAAKs5B,GAAIl+B,EAAIg2B,EAAE91B,OAChC,IAAK,IAAIonE,EAAI,EAAGA,EAAItnE,EAAGsnE,IAAK,CAC1B,MAAMkW,EAAIxnD,EAAEsxC,GACZrP,EAAEjsD,QAAQwxE,EAAG/D,EAAI,IAAM+D,GAAG,GAAI,GAAM/5E,EAAE+5E,GAAK,CAACt/C,EAAEs/C,IAAM/5E,EAAE+5E,GAAKt/C,EAAEs/C,EAC/D,CACF,CACF,CACA,SAAS8O,GAAG7oF,EAAGy6B,GACb,MAAQqpD,aAAc9N,GAAMv7C,EAAG+5B,EAAIl6D,OAAO6G,KAAKnB,GAAGvD,OAClD,QAAgB,IAAN+3D,IAAiB,IAANA,IAAYx0D,EAAEg2E,IAAqB,kBAARh2E,EAAEg2E,IAA4B,IAATh2E,EAAEg2E,IACzE,CACA0S,GAAGK,SA5CH,SAAY/oF,EAAGy6B,GACb,OAAOkuD,GAAG3oF,EAAGy6B,EACf,EA2CA,MAAQ4qD,aAAc2D,IAAO1Q,GAAG9hC,GAzUvB,MACP,WAAA53C,CAAY67B,GACV1/B,KAAK4T,QAAU8rB,EAAG1/B,KAAKk5E,YAAc,KAAMl5E,KAAKusF,cAAgB,GAAIvsF,KAAK4sF,gBAAkB,CAAC,EAAG5sF,KAAK6rF,aAAe,CACjHqC,KAAM,CAAE1gE,MAAO,qBAAsBnN,IAAK,KAC1CqtE,GAAI,CAAElgE,MAAO,mBAAoBnN,IAAK,KACtC8sE,GAAI,CAAE3/D,MAAO,mBAAoBnN,IAAK,KACtC8tE,KAAM,CAAE3gE,MAAO,qBAAsBnN,IAAK,MACzCrgB,KAAKqtF,UAAY,CAAE7/D,MAAO,oBAAqBnN,IAAK,KAAOrgB,KAAKgqF,aAAe,CAChFoE,MAAO,CAAE5gE,MAAO,iBAAkBnN,IAAK,KAMvCguE,KAAM,CAAE7gE,MAAO,iBAAkBnN,IAAK,KACtCiuE,MAAO,CAAE9gE,MAAO,kBAAmBnN,IAAK,KACxCkuE,IAAK,CAAE/gE,MAAO,gBAAiBnN,IAAK,KACpCmuE,KAAM,CAAEhhE,MAAO,kBAAmBnN,IAAK,KACvCouE,UAAW,CAAEjhE,MAAO,iBAAkBnN,IAAK,KAC3CquE,IAAK,CAAElhE,MAAO,gBAAiBnN,IAAK,KACpCsuE,IAAK,CAAEnhE,MAAO,iBAAkBnN,IAAK,MACpCrgB,KAAK4uF,oBAAsBx1B,GAAIp5D,KAAK6uF,SAAWzC,GAAIpsF,KAAK6sF,cAAgBf,GAAI9rF,KAAKmsF,iBAAmBF,GAAIjsF,KAAK0sF,mBAAqBnjB,GAAIvpE,KAAK+sF,aAAeQ,GAAIvtF,KAAK+rF,qBAAuBqB,GAAIptF,KAAKitF,iBAAmBS,GAAI1tF,KAAKqsF,oBAAsBiB,GAAIttF,KAAKqrF,SAAW8B,EAC9Q,IAmTyCa,SAAUc,IAAOnB,GAAIoB,GAAKlI,EAiDrE,SAASmI,GAAG/pF,EAAGy6B,EAAGu7C,EAAGxhB,GACnB,IAAIjiC,EAAI,GAAIh2B,GAAI,EAChB,IAAK,IAAIsnE,EAAI,EAAGA,EAAI7jE,EAAEvD,OAAQonE,IAAK,CACjC,MAAMkW,EAAI/5E,EAAE6jE,GAAIrhE,EAAIwnF,GAAGjQ,GACvB,QAAU,IAANv3E,EACF,SACF,IAAIwC,EAAI,GACR,GAAqBA,EAAJ,IAAbgxE,EAAEv5E,OAAmB+F,EAAQ,GAAGwzE,KAAKxzE,IAAKA,IAAMi4B,EAAEqpD,aAAc,CAClE,IAAI9lE,EAAI+7D,EAAEv3E,GACVynF,GAAGjlF,EAAGy1B,KAAOzc,EAAIyc,EAAEgqD,kBAAkBjiF,EAAGwb,GAAIA,EAAIksE,GAAGlsE,EAAGyc,IAAKl+B,IAAMg2B,GAAKiiC,GAAIjiC,GAAKvU,EAAGzhB,GAAI,EACtF,QACF,CAAO,GAAIiG,IAAMi4B,EAAE2pD,cAAe,CAChC7nF,IAAMg2B,GAAKiiC,GAAIjiC,GAAK,YAAYwnD,EAAEv3E,GAAG,GAAGi4B,EAAEqpD,mBAAoBvnF,GAAI,EAClE,QACF,CAAO,GAAIiG,IAAMi4B,EAAEoqD,gBAAiB,CAClCtyD,GAAKiiC,EAAI,UAAOulB,EAAEv3E,GAAG,GAAGi4B,EAAEqpD,sBAAoBvnF,GAAI,EAClD,QACF,CAAO,GAAa,MAATiG,EAAE,GAAY,CACvB,MAAMwb,EAAImsE,GAAEpQ,EAAE,MAAOt/C,GAAI5c,EAAU,SAANrb,EAAe,GAAKgyD,EACjD,IAAIuzB,EAAIhO,EAAEv3E,GAAG,GAAGi4B,EAAEqpD,cAClBiE,EAAiB,IAAbA,EAAEtrF,OAAe,IAAMsrF,EAAI,GAAIx1D,GAAK1U,EAAI,IAAIrb,IAAIulF,IAAI/pE,MAAOzhB,GAAI,EACnE,QACF,CACA,IAAIC,EAAIg4D,EACF,KAANh4D,IAAaA,GAAKi+B,EAAE2vD,UACpB,MAAyB1vE,EAAI85C,EAAI,IAAIhyD,IAA3B2nF,GAAEpQ,EAAE,MAAOt/C,KAAyBmpC,EAAImmB,GAAGhQ,EAAEv3E,GAAIi4B,EAAGz1B,EAAGxI,IAClC,IAA/Bi+B,EAAE8nD,aAAa3xE,QAAQpO,GAAYi4B,EAAE4vD,qBAAuB93D,GAAK7X,EAAI,IAAM6X,GAAK7X,EAAI,KAASkpD,GAAkB,IAAbA,EAAEnnE,SAAiBg+B,EAAE6vD,kBAAoC1mB,GAAKA,EAAE2mB,SAAS,KAAOh4D,GAAK7X,EAAI,IAAIkpD,IAAIpP,MAAMhyD,MAAQ+vB,GAAK7X,EAAI,IAAKkpD,GAAW,KAANpP,IAAaoP,EAAExiE,SAAS,OAASwiE,EAAExiE,SAAS,OAASmxB,GAAKiiC,EAAI/5B,EAAE2vD,SAAWxmB,EAAIpP,EAAIjiC,GAAKqxC,EAAGrxC,GAAK,KAAK/vB,MAA9L+vB,GAAK7X,EAAI,KAA4Lne,GAAI,CACtV,CACA,OAAOg2B,CACT,CACA,SAASy3D,GAAGhqF,GACV,MAAMy6B,EAAIngC,OAAO6G,KAAKnB,GACtB,IAAK,IAAIg2E,EAAI,EAAGA,EAAIv7C,EAAEh+B,OAAQu5E,IAAK,CACjC,MAAMxhB,EAAI/5B,EAAEu7C,GACZ,GAAIh2E,EAAExF,eAAeg6D,IAAY,OAANA,EACzB,OAAOA,CACX,CACF,CACA,SAAS21B,GAAEnqF,EAAGy6B,GACZ,IAAIu7C,EAAI,GACR,GAAIh2E,IAAMy6B,EAAEspD,iBACV,IAAK,IAAIvvB,KAAKx0D,EAAG,CACf,IAAKA,EAAExF,eAAeg6D,GACpB,SACF,IAAIjiC,EAAIkI,EAAEiqD,wBAAwBlwB,EAAGx0D,EAAEw0D,IACvCjiC,EAAI23D,GAAG33D,EAAGkI,IAAU,IAANlI,GAAYkI,EAAE+vD,0BAA4BxU,GAAK,IAAIxhB,EAAE9xC,OAAO+X,EAAEmpD,oBAAoBnnF,UAAYu5E,GAAK,IAAIxhB,EAAE9xC,OAAO+X,EAAEmpD,oBAAoBnnF,YAAY81B,IAClK,CACF,OAAOyjD,CACT,CACA,SAASiU,GAAGjqF,EAAGy6B,GAEb,IAAIu7C,GADJh2E,EAAIA,EAAE0iB,OAAO,EAAG1iB,EAAEvD,OAASg+B,EAAEqpD,aAAarnF,OAAS,IACzCimB,OAAO1iB,EAAEqnF,YAAY,KAAO,GACtC,IAAK,IAAI7yB,KAAK/5B,EAAEkqD,UACd,GAAIlqD,EAAEkqD,UAAUnwB,KAAOx0D,GAAKy6B,EAAEkqD,UAAUnwB,KAAO,KAAOwhB,EACpD,OAAO,EACX,OAAO,CACT,CACA,SAASkU,GAAGlqF,EAAGy6B,GACb,GAAIz6B,GAAKA,EAAEvD,OAAS,GAAKg+B,EAAEqqD,gBACzB,IAAK,IAAI9O,EAAI,EAAGA,EAAIv7C,EAAE+rD,SAAS/pF,OAAQu5E,IAAK,CAC1C,MAAMxhB,EAAI/5B,EAAE+rD,SAASxQ,GACrBh2E,EAAIA,EAAE6G,QAAQ2tD,EAAEjsC,MAAOisC,EAAEp5C,IAC3B,CACF,OAAOpb,CACT,CAEA,MAAMyqF,GAtEN,SAAYzqF,EAAGy6B,GACb,IAAIu7C,EAAI,GACR,OAAOv7C,EAAEwqB,QAAUxqB,EAAE2vD,SAAS3tF,OAAS,IAAMu5E,EAJpC,MAI6C+T,GAAG/pF,EAAGy6B,EAAG,GAAIu7C,EACrE,EAmEe0U,GAAK,CAClB9G,oBAAqB,KACrBC,qBAAqB,EACrBC,aAAc,QACdC,kBAAkB,EAClBK,eAAe,EACfn/B,QAAQ,EACRmlC,SAAU,KACVE,mBAAmB,EACnBD,sBAAsB,EACtBG,2BAA2B,EAC3B/F,kBAAmB,SAASzkF,EAAGy6B,GAC7B,OAAOA,CACT,EACAiqD,wBAAyB,SAAS1kF,EAAGy6B,GACnC,OAAOA,CACT,EACAkpD,eAAe,EACfkB,iBAAiB,EACjBtC,aAAc,GACdiE,SAAU,CACR,CAAEj+D,MAAO,IAAInT,OAAO,IAAK,KAAMgG,IAAK,SAEpC,CAAEmN,MAAO,IAAInT,OAAO,IAAK,KAAMgG,IAAK,QACpC,CAAEmN,MAAO,IAAInT,OAAO,IAAK,KAAMgG,IAAK,QACpC,CAAEmN,MAAO,IAAInT,OAAO,IAAK,KAAMgG,IAAK,UACpC,CAAEmN,MAAO,IAAInT,OAAO,IAAK,KAAMgG,IAAK,WAEtC0pE,iBAAiB,EACjBH,UAAW,GAGXgG,cAAc,GAEhB,SAAShzE,GAAE3X,GACTjF,KAAK4T,QAAUrU,OAAOmF,OAAO,CAAC,EAAGirF,GAAI1qF,GAAIjF,KAAK4T,QAAQo1E,kBAAoBhpF,KAAK4T,QAAQk1E,oBAAsB9oF,KAAK6vF,YAAc,WAC9H,OAAO,CACT,GAAK7vF,KAAK8vF,cAAgB9vF,KAAK4T,QAAQi1E,oBAAoBnnF,OAAQ1B,KAAK6vF,YAAcE,IAAK/vF,KAAKgwF,qBAAuBC,GAAIjwF,KAAK4T,QAAQs2C,QAAUlqD,KAAKkwF,UAAYC,GAAInwF,KAAKowF,WAAa,MACxLpwF,KAAKqwF,QAAU,OACZrwF,KAAKkwF,UAAY,WACnB,MAAO,EACT,EAAGlwF,KAAKowF,WAAa,IAAKpwF,KAAKqwF,QAAU,GAC3C,CA4CA,SAASJ,GAAGhrF,EAAGy6B,EAAGu7C,GAChB,MAAMxhB,EAAIz5D,KAAKswF,IAAIrrF,EAAGg2E,EAAI,GAC1B,YAAwC,IAAjCh2E,EAAEjF,KAAK4T,QAAQm1E,eAAsD,IAA1BxpF,OAAO6G,KAAKnB,GAAGvD,OAAe1B,KAAKuwF,iBAAiBtrF,EAAEjF,KAAK4T,QAAQm1E,cAAerpD,EAAG+5B,EAAE+2B,QAASvV,GAAKj7E,KAAKywF,gBAAgBh3B,EAAEp5C,IAAKqf,EAAG+5B,EAAE+2B,QAASvV,EACnM,CAiCA,SAASkV,GAAGlrF,GACV,OAAOjF,KAAK4T,QAAQy7E,SAASnpE,OAAOjhB,EACtC,CACA,SAAS8qF,GAAG9qF,GACV,SAAOA,EAAE8N,WAAW/S,KAAK4T,QAAQi1E,sBAAwB5jF,IAAMjF,KAAK4T,QAAQm1E,eAAe9jF,EAAE0iB,OAAO3nB,KAAK8vF,cAC3G,CApFAlzE,GAAEpd,UAAU89B,MAAQ,SAASr4B,GAC3B,OAAOjF,KAAK4T,QAAQg1E,cAAgB8G,GAAGzqF,EAAGjF,KAAK4T,UAAYhS,MAAM4L,QAAQvI,IAAMjF,KAAK4T,QAAQ88E,eAAiB1wF,KAAK4T,QAAQ88E,cAAchvF,OAAS,IAAMuD,EAAI,CACzJ,CAACjF,KAAK4T,QAAQ88E,eAAgBzrF,IAC5BjF,KAAKswF,IAAIrrF,EAAG,GAAGob,IACrB,EACAzD,GAAEpd,UAAU8wF,IAAM,SAASrrF,EAAGy6B,GAC5B,IAAIu7C,EAAI,GAAIxhB,EAAI,GAChB,IAAK,IAAIjiC,KAAKvyB,EACZ,GAAI1F,OAAOC,UAAUC,eAAeyB,KAAK+D,EAAGuyB,GAC1C,UAAWvyB,EAAEuyB,GAAK,IAChBx3B,KAAK6vF,YAAYr4D,KAAOiiC,GAAK,SAC1B,GAAa,OAATx0D,EAAEuyB,GACTx3B,KAAK6vF,YAAYr4D,GAAKiiC,GAAK,GAAc,MAATjiC,EAAE,GAAaiiC,GAAKz5D,KAAKkwF,UAAUxwD,GAAK,IAAMlI,EAAI,IAAMx3B,KAAKowF,WAAa32B,GAAKz5D,KAAKkwF,UAAUxwD,GAAK,IAAMlI,EAAI,IAAMx3B,KAAKowF,gBACrJ,GAAInrF,EAAEuyB,aAAc5xB,KACvB6zD,GAAKz5D,KAAKuwF,iBAAiBtrF,EAAEuyB,GAAIA,EAAG,GAAIkI,QACrC,GAAmB,iBAARz6B,EAAEuyB,GAAgB,CAChC,MAAMh2B,EAAIxB,KAAK6vF,YAAYr4D,GAC3B,GAAIh2B,EACFy5E,GAAKj7E,KAAK2wF,iBAAiBnvF,EAAG,GAAKyD,EAAEuyB,SAClC,GAAIA,IAAMx3B,KAAK4T,QAAQm1E,aAAc,CACxC,IAAIjgB,EAAI9oE,KAAK4T,QAAQ81E,kBAAkBlyD,EAAG,GAAKvyB,EAAEuyB,IACjDiiC,GAAKz5D,KAAK+rF,qBAAqBjjB,EACjC,MACErP,GAAKz5D,KAAKuwF,iBAAiBtrF,EAAEuyB,GAAIA,EAAG,GAAIkI,EAC5C,MAAO,GAAI99B,MAAM4L,QAAQvI,EAAEuyB,IAAK,CAC9B,MAAMh2B,EAAIyD,EAAEuyB,GAAG91B,OACf,IAAIonE,EAAI,GACR,IAAK,IAAIkW,EAAI,EAAGA,EAAIx9E,EAAGw9E,IAAK,CAC1B,MAAMv3E,EAAIxC,EAAEuyB,GAAGwnD,UACRv3E,EAAI,MAAc,OAANA,EAAsB,MAAT+vB,EAAE,GAAaiiC,GAAKz5D,KAAKkwF,UAAUxwD,GAAK,IAAMlI,EAAI,IAAMx3B,KAAKowF,WAAa32B,GAAKz5D,KAAKkwF,UAAUxwD,GAAK,IAAMlI,EAAI,IAAMx3B,KAAKowF,WAAyB,iBAAL3oF,EAAgBzH,KAAK4T,QAAQg8E,aAAe9mB,GAAK9oE,KAAKswF,IAAI7oF,EAAGi4B,EAAI,GAAGrf,IAAMyoD,GAAK9oE,KAAKgwF,qBAAqBvoF,EAAG+vB,EAAGkI,GAAKopC,GAAK9oE,KAAKuwF,iBAAiB9oF,EAAG+vB,EAAG,GAAIkI,GACvU,CACA1/B,KAAK4T,QAAQg8E,eAAiB9mB,EAAI9oE,KAAKywF,gBAAgB3nB,EAAGtxC,EAAG,GAAIkI,IAAK+5B,GAAKqP,CAC7E,MAAO,GAAI9oE,KAAK4T,QAAQk1E,qBAAuBtxD,IAAMx3B,KAAK4T,QAAQk1E,oBAAqB,CACrF,MAAMtnF,EAAIjC,OAAO6G,KAAKnB,EAAEuyB,IAAKsxC,EAAItnE,EAAEE,OACnC,IAAK,IAAIs9E,EAAI,EAAGA,EAAIlW,EAAGkW,IACrB/D,GAAKj7E,KAAK2wF,iBAAiBnvF,EAAEw9E,GAAI,GAAK/5E,EAAEuyB,GAAGh2B,EAAEw9E,IACjD,MACEvlB,GAAKz5D,KAAKgwF,qBAAqB/qF,EAAEuyB,GAAIA,EAAGkI,GAC9C,MAAO,CAAE8wD,QAASvV,EAAG56D,IAAKo5C,EAC5B,EACA78C,GAAEpd,UAAUmxF,iBAAmB,SAAS1rF,EAAGy6B,GACzC,OAAOA,EAAI1/B,KAAK4T,QAAQ+1E,wBAAwB1kF,EAAG,GAAKy6B,GAAIA,EAAI1/B,KAAK+rF,qBAAqBrsD,GAAI1/B,KAAK4T,QAAQ67E,2BAAmC,SAAN/vD,EAAe,IAAMz6B,EAAI,IAAMA,EAAI,KAAOy6B,EAAI,GACxL,EAKA9iB,GAAEpd,UAAUixF,gBAAkB,SAASxrF,EAAGy6B,EAAGu7C,EAAGxhB,GAC9C,GAAU,KAANx0D,EACF,MAAgB,MAATy6B,EAAE,GAAa1/B,KAAKkwF,UAAUz2B,GAAK,IAAM/5B,EAAIu7C,EAAI,IAAMj7E,KAAKowF,WAAapwF,KAAKkwF,UAAUz2B,GAAK,IAAM/5B,EAAIu7C,EAAIj7E,KAAK6iE,SAASnjC,GAAK1/B,KAAKowF,WAC5I,CACE,IAAI54D,EAAI,KAAOkI,EAAI1/B,KAAKowF,WAAY5uF,EAAI,GACxC,MAAgB,MAATk+B,EAAE,KAAel+B,EAAI,IAAKg2B,EAAI,KAAMyjD,GAAW,KAANA,IAAiC,IAApBh2E,EAAE4Q,QAAQ,MAAmG,IAAjC7V,KAAK4T,QAAQk2E,iBAA0BpqD,IAAM1/B,KAAK4T,QAAQk2E,iBAAgC,IAAbtoF,EAAEE,OAAe1B,KAAKkwF,UAAUz2B,GAAK,UAAOx0D,UAASjF,KAAKqwF,QAAUrwF,KAAKkwF,UAAUz2B,GAAK,IAAM/5B,EAAIu7C,EAAIz5E,EAAIxB,KAAKowF,WAAanrF,EAAIjF,KAAKkwF,UAAUz2B,GAAKjiC,EAArRx3B,KAAKkwF,UAAUz2B,GAAK,IAAM/5B,EAAIu7C,EAAIz5E,EAAI,IAAMyD,EAAIuyB,CACvI,CACF,EACA5a,GAAEpd,UAAUqjE,SAAW,SAAS59D,GAC9B,IAAIy6B,EAAI,GACR,OAAiD,IAA1C1/B,KAAK4T,QAAQ4zE,aAAa3xE,QAAQ5Q,GAAYjF,KAAK4T,QAAQ07E,uBAAyB5vD,EAAI,KAAwCA,EAAjC1/B,KAAK4T,QAAQ27E,kBAAwB,IAAU,MAAMtqF,IAAKy6B,CAClK,EACA9iB,GAAEpd,UAAU+wF,iBAAmB,SAAStrF,EAAGy6B,EAAGu7C,EAAGxhB,GAC/C,IAAmC,IAA/Bz5D,KAAK4T,QAAQy1E,eAAwB3pD,IAAM1/B,KAAK4T,QAAQy1E,cAC1D,OAAOrpF,KAAKkwF,UAAUz2B,GAAK,YAAYx0D,OAASjF,KAAKqwF,QACvD,IAAqC,IAAjCrwF,KAAK4T,QAAQk2E,iBAA0BpqD,IAAM1/B,KAAK4T,QAAQk2E,gBAC5D,OAAO9pF,KAAKkwF,UAAUz2B,GAAK,UAAOx0D,UAASjF,KAAKqwF,QAClD,GAAa,MAAT3wD,EAAE,GACJ,OAAO1/B,KAAKkwF,UAAUz2B,GAAK,IAAM/5B,EAAIu7C,EAAI,IAAMj7E,KAAKowF,WACtD,CACE,IAAI54D,EAAIx3B,KAAK4T,QAAQ81E,kBAAkBhqD,EAAGz6B,GAC1C,OAAOuyB,EAAIx3B,KAAK+rF,qBAAqBv0D,GAAU,KAANA,EAAWx3B,KAAKkwF,UAAUz2B,GAAK,IAAM/5B,EAAIu7C,EAAIj7E,KAAK6iE,SAASnjC,GAAK1/B,KAAKowF,WAAapwF,KAAKkwF,UAAUz2B,GAAK,IAAM/5B,EAAIu7C,EAAI,IAAMzjD,EAAI,KAAOkI,EAAI1/B,KAAKowF,UACzL,CACF,EACAxzE,GAAEpd,UAAUusF,qBAAuB,SAAS9mF,GAC1C,GAAIA,GAAKA,EAAEvD,OAAS,GAAK1B,KAAK4T,QAAQm2E,gBACpC,IAAK,IAAIrqD,EAAI,EAAGA,EAAI1/B,KAAK4T,QAAQ63E,SAAS/pF,OAAQg+B,IAAK,CACrD,MAAMu7C,EAAIj7E,KAAK4T,QAAQ63E,SAAS/rD,GAChCz6B,EAAIA,EAAE6G,QAAQmvE,EAAEztD,MAAOytD,EAAE56D,IAC3B,CACF,OAAOpb,CACT,EASA,IAAI2rF,GAAI,CACNC,UArPO,MACP,WAAAhtF,CAAY67B,GACV1/B,KAAK8wF,iBAAmB,CAAC,EAAG9wF,KAAK4T,QAAUq6E,GAAGvuD,EAChD,CAMA,KAAA16B,CAAM06B,EAAGu7C,GACP,GAAgB,iBAALv7C,EACT,KAAIA,EAAEh4B,SAGJ,MAAM,IAAImE,MAAM,mDAFhB6zB,EAAIA,EAAEh4B,UAE4D,CACtE,GAAIuzE,EAAG,EACC,IAANA,IAAaA,EAAI,CAAC,GAClB,MAAMz5E,EAAIutF,GAAGlH,SAASnoD,EAAGu7C,GACzB,IAAU,IAANz5E,EACF,MAAMqK,MAAM,GAAGrK,EAAEse,IAAIuW,OAAO70B,EAAEse,IAAI2/C,QAAQj+D,EAAEse,IAAIsoE,MACpD,CACA,MAAM3uB,EAAI,IAAIhe,GAAGz7C,KAAK4T,SACtB6lD,EAAEm1B,oBAAoB5uF,KAAK8wF,kBAC3B,MAAMt5D,EAAIiiC,EAAEo1B,SAASnvD,GACrB,OAAO1/B,KAAK4T,QAAQg1E,oBAAuB,IAANpxD,EAAeA,EAAIs3D,GAAGt3D,EAAGx3B,KAAK4T,QACrE,CAMA,SAAAm9E,CAAUrxD,EAAGu7C,GACX,IAAwB,IAApBA,EAAEplE,QAAQ,KACZ,MAAM,IAAIhK,MAAM,+BAClB,IAAwB,IAApB6zB,EAAE7pB,QAAQ,OAAmC,IAApB6pB,EAAE7pB,QAAQ,KACrC,MAAM,IAAIhK,MAAM,wEAClB,GAAU,MAANovE,EACF,MAAM,IAAIpvE,MAAM,6CAClB7L,KAAK8wF,iBAAiBpxD,GAAKu7C,CAC7B,GA+MA+V,aAHSnK,EAIToK,WALOr0E,IA0CT,MAAMs0E,GACJC,MACA,WAAAttF,CAAY67B,GACV0xD,GAAG1xD,GAAI1/B,KAAKmxF,MAAQzxD,CACtB,CACA,MAAIr7B,GACF,OAAOrE,KAAKmxF,MAAM9sF,EACpB,CACA,QAAIrD,GACF,OAAOhB,KAAKmxF,MAAMnwF,IACpB,CACA,WAAI2rD,GACF,OAAO3sD,KAAKmxF,MAAMxkC,OACpB,CACA,cAAI6J,GACF,OAAOx2D,KAAKmxF,MAAM36B,UACpB,CACA,gBAAIC,GACF,OAAOz2D,KAAKmxF,MAAM16B,YACpB,CACA,eAAIxjB,GACF,OAAOjzC,KAAKmxF,MAAMl+C,WACpB,CACA,QAAIhkC,GACF,OAAOjP,KAAKmxF,MAAMliF,IACpB,CACA,QAAIA,CAAKywB,GACP1/B,KAAKmxF,MAAMliF,KAAOywB,CACpB,CACA,SAAIsF,GACF,OAAOhlC,KAAKmxF,MAAMnsD,KACpB,CACA,SAAIA,CAAMtF,GACR1/B,KAAKmxF,MAAMnsD,MAAQtF,CACrB,CACA,UAAI1e,GACF,OAAOhhB,KAAKmxF,MAAMnwE,MACpB,CACA,UAAIA,CAAO0e,GACT1/B,KAAKmxF,MAAMnwE,OAAS0e,CACtB,CACA,WAAI6pB,GACF,OAAOvpD,KAAKmxF,MAAM5nC,OACpB,CACA,aAAI8nC,GACF,OAAOrxF,KAAKmxF,MAAME,SACpB,CACA,UAAI9vE,GACF,OAAOvhB,KAAKmxF,MAAM5vE,MACpB,CACA,UAAI8kB,GACF,OAAOrmC,KAAKmxF,MAAM9qD,MACpB,CACA,YAAIP,GACF,OAAO9lC,KAAKmxF,MAAMrrD,QACpB,CACA,YAAIA,CAASpG,GACX1/B,KAAKmxF,MAAMrrD,SAAWpG,CACxB,CACA,kBAAI0rB,GACF,OAAOprD,KAAKmxF,MAAM/lC,cACpB,EAEF,MAAMgmC,GAAK,SAASnsF,GAClB,IAAKA,EAAEZ,IAAqB,iBAARY,EAAEZ,GACpB,MAAM,IAAIwH,MAAM,4CAClB,IAAK5G,EAAEjE,MAAyB,iBAAViE,EAAEjE,KACtB,MAAM,IAAI6K,MAAM,8CAClB,GAAI5G,EAAEskD,SAAWtkD,EAAEskD,QAAQ7nD,OAAS,KAAOuD,EAAE0nD,SAA+B,iBAAb1nD,EAAE0nD,SAC/D,MAAM,IAAI9gD,MAAM,qEAClB,IAAK5G,EAAEguC,aAAuC,mBAAjBhuC,EAAEguC,YAC7B,MAAM,IAAIpnC,MAAM,uDAClB,IAAK5G,EAAEgK,MAAyB,iBAAVhK,EAAEgK,OA3G1B,SAAYhK,GACV,GAAgB,iBAALA,EACT,MAAM,IAAI7E,UAAU,uCAAuC6E,OAC7D,GAA+B,KAA3BA,EAAIA,EAAEkY,QAAUzb,SAA+C,IAA/BkvF,GAAEI,aAAanJ,SAAS5iF,GAC1D,OAAO,EACT,IAAIy6B,EACJ,MAAMu7C,EAAI,IAAI2V,GAAEC,UAChB,IACEnxD,EAAIu7C,EAAEj2E,MAAMC,EACd,CAAE,MACA,OAAO,CACT,CACA,SAAUy6B,KAAO,QAASA,GAC5B,CA8F+C4xD,CAAGrsF,EAAEgK,MAChD,MAAM,IAAIpD,MAAM,wDAClB,KAAM,UAAW5G,IAAwB,iBAAXA,EAAE+/B,MAC9B,MAAM,IAAIn5B,MAAM,+CAClB,GAAI5G,EAAEskD,SAAWtkD,EAAEskD,QAAQr4C,SAASwuB,IAClC,KAAMA,aAAagnD,GACjB,MAAM,IAAI76E,MAAM,gEAAgE,IAChF5G,EAAEosF,WAAmC,mBAAfpsF,EAAEosF,UAC1B,MAAM,IAAIxlF,MAAM,qCAClB,GAAI5G,EAAEsc,QAA6B,iBAAZtc,EAAEsc,OACvB,MAAM,IAAI1V,MAAM,gCAClB,GAAI,WAAY5G,GAAwB,kBAAZA,EAAEohC,OAC5B,MAAM,IAAIx6B,MAAM,iCAClB,GAAI,aAAc5G,GAA0B,kBAAdA,EAAE6gC,SAC9B,MAAM,IAAIj6B,MAAM,mCAClB,GAAI5G,EAAEmmD,gBAA6C,iBAApBnmD,EAAEmmD,eAC/B,MAAM,IAAIv/C,MAAM,wCAClB,OAAO,CACT,EA2BG0lF,GAAK,SAAStsF,GACf,cA/gEc9B,OAAOquF,gBAAkB,MAAQruF,OAAOquF,gBAAkB,IAAItO,EAAMh8D,EAAEme,MAAM,4BAA6BliC,OAAOquF,iBA+gEnHliD,WAAWrqC,GAAG0X,MAAK,CAACs+D,EAAGxhB,SAAkB,IAAZwhB,EAAEj2C,YAAgC,IAAZy0B,EAAEz0B,OAAoBi2C,EAAEj2C,QAAUy0B,EAAEz0B,MAAQi2C,EAAEj2C,MAAQy0B,EAAEz0B,MAAQi2C,EAAE7vC,YAAYxE,cAAc6yB,EAAEruB,iBAAa,EAAQ,CAAEqmD,SAAS,EAAIC,YAAa,UAC/M,+PCjmEI99E,EAAU,CAAC,EAEfA,EAAQotB,kBAAoB,IAC5BptB,EAAQqtB,cAAgB,IAElBrtB,EAAQstB,OAAS,SAAc,KAAM,QAE3CttB,EAAQutB,OAAS,IACjBvtB,EAAQwtB,mBAAqB,IAEhB,IAAI,IAASxtB,GAKJ,KAAW,IAAQytB,QAAS,IAAQA,6EC1BnD,MAAMswD,UAAoB9lF,MAChC,WAAAhI,CAAYuyB,GACXqY,MAAMrY,GAAU,wBAChBp2B,KAAKgB,KAAO,aACb,CAEA,cAAI06D,GACH,OAAO,CACR,EAGD,MAAMk2B,EAAeryF,OAAO8hB,OAAO,CAClCsS,QAASpsB,OAAO,WAChBsqF,SAAUtqF,OAAO,YACjB4uB,SAAU5uB,OAAO,YACjBuqF,SAAUvqF,OAAO,cAGH,MAAMwqF,EACpB,SAAOlyF,CAAGmyF,GACT,MAAO,IAAI3zD,IAAe,IAAI0zD,GAAY,CAACzrF,EAAS0J,EAAQsjC,KAC3DjV,EAAW79B,KAAK8yC,GAChB0+C,KAAgB3zD,GAAYxmB,KAAKvR,EAAS0J,EAAO,GAEnD,CAEA,GAAkB,GAClB,IAAkB,EAClB,GAAS4hF,EAAaj+D,QACtB,GACA,GAEA,WAAA9vB,CAAY03D,GACXv7D,MAAK,EAAW,IAAIuG,SAAQ,CAACD,EAAS0J,KACrChQ,MAAK,EAAUgQ,EAEf,MAcMsjC,EAAWxoB,IAChB,GAAI9qB,MAAK,IAAW4xF,EAAaj+D,QAChC,MAAM,IAAI9nB,MAAM,2DAA2D7L,MAAK,EAAOiyF,gBAGxFjyF,MAAK,EAAgBQ,KAAKsqB,EAAQ,EAGnCvrB,OAAOo6B,iBAAiB2Z,EAAU,CACjC4+C,aAAc,CACbnsF,IAAK,IAAM/F,MAAK,EAChB6S,IAAKs/E,IACJnyF,MAAK,EAAkBmyF,CAAO,KAKjC52B,GA/BkBl2D,IACbrF,MAAK,IAAW4xF,EAAaC,UAAav+C,EAAS4+C,eACtD5rF,EAAQjB,GACRrF,MAAK,EAAU4xF,EAAaz7D,UAC7B,IAGgBntB,IACZhJ,MAAK,IAAW4xF,EAAaC,UAAav+C,EAAS4+C,eACtDliF,EAAOhH,GACPhJ,MAAK,EAAU4xF,EAAaE,UAC7B,GAoB6Bx+C,EAAS,GAEzC,CAGA,IAAAz7B,CAAKu6E,EAAaC,GACjB,OAAOryF,MAAK,EAAS6X,KAAKu6E,EAAaC,EACxC,CAEA,MAAMA,GACL,OAAOryF,MAAK,EAASmY,MAAMk6E,EAC5B,CAEA,QAAQC,GACP,OAAOtyF,MAAK,EAASo8D,QAAQk2B,EAC9B,CAEA,MAAA9zD,CAAOpI,GACN,GAAIp2B,MAAK,IAAW4xF,EAAaj+D,QAAjC,CAMA,GAFA3zB,MAAK,EAAU4xF,EAAaC,UAExB7xF,MAAK,EAAgB0B,OAAS,EACjC,IACC,IAAK,MAAMopB,KAAW9qB,MAAK,EAC1B8qB,GAEF,CAAE,MAAO9hB,GAER,YADAhJ,MAAK,EAAQgJ,EAEd,CAGGhJ,MAAK,GACRA,MAAK,EAAQ,IAAI2xF,EAAYv7D,GAhB9B,CAkBD,CAEA,cAAIslC,GACH,OAAO17D,MAAK,IAAW4xF,EAAaC,QACrC,CAEA,GAAUllF,GACL3M,MAAK,IAAW4xF,EAAaj+D,UAChC3zB,MAAK,EAAS2M,EAEhB,EAGDpN,OAAO64D,eAAe25B,EAAYvyF,UAAW+G,QAAQ/G,yBCtH9C,MAAM+yF,UAAqB1mF,MACjC,WAAAhI,CAAYoI,GACXwiC,MAAMxiC,GACNjM,KAAKgB,KAAO,cACb,EAOM,MAAMwxF,UAAmB3mF,MAC/B,WAAAhI,CAAYoI,GACXwiC,QACAzuC,KAAKgB,KAAO,aACZhB,KAAKiM,QAAUA,CAChB,EAMD,MAAMwmF,EAAkBC,QAA4ClwF,IAA5BY,WAAWuvF,aAChD,IAAIH,EAAWE,GACf,IAAIC,aAAaD,GAKdE,EAAmBl/C,IACxB,MAAMtd,OAA2B5zB,IAAlBkxC,EAAOtd,OACnBq8D,EAAgB,+BAChB/+C,EAAOtd,OAEV,OAAOA,aAAkBvqB,MAAQuqB,EAASq8D,EAAgBr8D,EAAO,ECjCnD,MAAMy8D,EACjB,GAAS,GACT,OAAAC,CAAQv6E,EAAK3E,GAKT,MAAMi2B,EAAU,CACZkpD,UALJn/E,EAAU,CACNm/E,SAAU,KACPn/E,IAGem/E,SAClBx6E,OAEJ,GAAIvY,KAAKuS,MAAQvS,MAAK,EAAOA,KAAKuS,KAAO,GAAGwgF,UAAYn/E,EAAQm/E,SAE5D,YADA/yF,MAAK,EAAOQ,KAAKqpC,GAGrB,MAAMprB,ECdC,SAAoBu0E,EAAO3tF,EAAO4tF,GAC7C,IAAIC,EAAQ,EACR7gB,EAAQ2gB,EAAMtxF,OAClB,KAAO2wE,EAAQ,GAAG,CACd,MAAMn/C,EAAOqC,KAAK49D,MAAM9gB,EAAQ,GAChC,IAAIjZ,EAAK85B,EAAQhgE,EDS+BjpB,ECRjC+oF,EAAM55B,GAAK/zD,EDQiC0tF,SAAW9oF,EAAE8oF,UCRpC,GAChCG,IAAU95B,EACViZ,GAASn/C,EAAO,GAGhBm/C,EAAQn/C,CAEhB,CDCmD,IAACjpB,ECApD,OAAOipF,CACX,CDDsBE,CAAWpzF,MAAK,EAAQ6pC,GACtC7pC,MAAK,EAAO8V,OAAO2I,EAAO,EAAGorB,EACjC,CACA,OAAAwpD,GACI,MAAM/uF,EAAOtE,MAAK,EAAOogB,QACzB,OAAO9b,GAAMiU,GACjB,CACA,MAAAzG,CAAO8B,GACH,OAAO5T,MAAK,EAAO8R,QAAQ+3B,GAAYA,EAAQkpD,WAAan/E,EAAQm/E,WAAUhhF,KAAK83B,GAAYA,EAAQtxB,KAC3G,CACA,QAAIhG,GACA,OAAOvS,MAAK,EAAO0B,MACvB,EEtBW,MAAMkvC,UAAe,EAChC,GACA,GACA,GAAiB,EACjB,GACA,GACA,GAAe,EACf,GACA,GACA,GACA,GACA,GAAW,EAEX,GACA,GACA,GAMAy5B,QAEA,WAAAxmE,CAAY+P,GAYR,GAXA66B,UAWqC,iBATrC76B,EAAU,CACN0/E,2BAA2B,EAC3BC,YAAa12E,OAAO22E,kBACpBC,SAAU,EACV5iD,YAAah0B,OAAO22E,kBACpBE,WAAW,EACXC,WAAYd,KACTj/E,IAEc2/E,aAA4B3/E,EAAQ2/E,aAAe,GACpE,MAAM,IAAInzF,UAAU,gEAAgEwT,EAAQ2/E,aAAa7rF,YAAc,gBAAgBkM,EAAQ2/E,gBAEnJ,QAAyB/wF,IAArBoR,EAAQ6/E,YAA4B52E,OAAOiqD,SAASlzD,EAAQ6/E,WAAa7/E,EAAQ6/E,UAAY,GAC7F,MAAM,IAAIrzF,UAAU,2DAA2DwT,EAAQ6/E,UAAU/rF,YAAc,gBAAgBkM,EAAQ6/E,aAE3IzzF,MAAK,EAA6B4T,EAAQ0/E,0BAC1CtzF,MAAK,EAAqB4T,EAAQ2/E,cAAgB12E,OAAO22E,mBAA0C,IAArB5/E,EAAQ6/E,SACtFzzF,MAAK,EAAe4T,EAAQ2/E,YAC5BvzF,MAAK,EAAY4T,EAAQ6/E,SACzBzzF,MAAK,EAAS,IAAI4T,EAAQ+/E,WAC1B3zF,MAAK,EAAc4T,EAAQ+/E,WAC3B3zF,KAAK6wC,YAAcj9B,EAAQi9B,YAC3B7wC,KAAKqqE,QAAUz2D,EAAQy2D,QACvBrqE,MAAK,GAA6C,IAA3B4T,EAAQggF,eAC/B5zF,MAAK,GAAkC,IAAtB4T,EAAQ8/E,SAC7B,CACA,KAAI,GACA,OAAO1zF,MAAK,GAAsBA,MAAK,EAAiBA,MAAK,CACjE,CACA,KAAI,GACA,OAAOA,MAAK,EAAWA,MAAK,CAChC,CACA,KACIA,MAAK,IACLA,MAAK,IACLA,KAAK8B,KAAK,OACd,CACA,KACI9B,MAAK,IACLA,MAAK,IACLA,MAAK,OAAawC,CACtB,CACA,KAAI,GACA,MAAMgD,EAAMI,KAAKJ,MACjB,QAAyBhD,IAArBxC,MAAK,EAA2B,CAChC,MAAMw9B,EAAQx9B,MAAK,EAAewF,EAClC,KAAIg4B,EAAQ,GAYR,YALwBh7B,IAApBxC,MAAK,IACLA,MAAK,EAAayK,YAAW,KACzBzK,MAAK,GAAmB,GACzBw9B,KAEA,EATPx9B,MAAK,EAAkBA,MAA+B,EAAIA,MAAK,EAAW,CAWlF,CACA,OAAO,CACX,CACA,KACI,GAAyB,IAArBA,MAAK,EAAOuS,KAWZ,OARIvS,MAAK,GACLoqE,cAAcpqE,MAAK,GAEvBA,MAAK,OAAcwC,EACnBxC,KAAK8B,KAAK,SACY,IAAlB9B,MAAK,GACLA,KAAK8B,KAAK,SAEP,EAEX,IAAK9B,MAAK,EAAW,CACjB,MAAM6zF,GAAyB7zF,MAAK,EACpC,GAAIA,MAAK,GAA6BA,MAAK,EAA6B,CACpE,MAAM8zF,EAAM9zF,MAAK,EAAOqzF,UACxB,QAAKS,IAGL9zF,KAAK8B,KAAK,UACVgyF,IACID,GACA7zF,MAAK,KAEF,EACX,CACJ,CACA,OAAO,CACX,CACA,KACQA,MAAK,QAA2CwC,IAArBxC,MAAK,IAGpCA,MAAK,EAAc6/B,aAAY,KAC3B7/B,MAAK,GAAa,GACnBA,MAAK,GACRA,MAAK,EAAe4F,KAAKJ,MAAQxF,MAAK,EAC1C,CACA,KACgC,IAAxBA,MAAK,GAA0C,IAAlBA,MAAK,GAAkBA,MAAK,IACzDoqE,cAAcpqE,MAAK,GACnBA,MAAK,OAAcwC,GAEvBxC,MAAK,EAAiBA,MAAK,EAA6BA,MAAK,EAAW,EACxEA,MAAK,GACT,CAIA,KAEI,KAAOA,MAAK,MAChB,CACA,eAAI6wC,GACA,OAAO7wC,MAAK,CAChB,CACA,eAAI6wC,CAAYkjD,GACZ,KAAgC,iBAAnBA,GAA+BA,GAAkB,GAC1D,MAAM,IAAI3zF,UAAU,gEAAgE2zF,eAA4BA,MAEpH/zF,MAAK,EAAe+zF,EACpB/zF,MAAK,GACT,CACA,OAAM,CAAc0zC,GAChB,OAAO,IAAIntC,SAAQ,CAACytF,EAAUhkF,KAC1B0jC,EAAO5jB,iBAAiB,SAAS,KAC7B9f,EAAO0jC,EAAOtd,OAAO,GACtB,CAAEr2B,MAAM,GAAO,GAE1B,CACA,SAAMsW,CAAI49E,EAAWrgF,EAAU,CAAC,GAM5B,OALAA,EAAU,CACNy2D,QAASrqE,KAAKqqE,QACdupB,eAAgB5zF,MAAK,KAClB4T,GAEA,IAAIrN,SAAQ,CAACD,EAAS0J,KACzBhQ,MAAK,EAAO8yF,SAAQzjF,UAChBrP,MAAK,IACLA,MAAK,IACL,IACI4T,EAAQ8/B,QAAQwgD,iBAChB,IAAIrmF,EAAYomF,EAAU,CAAEvgD,OAAQ9/B,EAAQ8/B,SACxC9/B,EAAQy2D,UACRx8D,EHhJT,SAAkBslD,EAASv/C,GACzC,MAAM,aACLugF,EAAY,SACZn8D,EAAQ,QACR/rB,EAAO,aACPmoF,EAAe,CAAC3pF,WAAYyzB,eACzBtqB,EAEJ,IAAIygF,EAEJ,MA0DMC,EA1DiB,IAAI/tF,SAAQ,CAACD,EAAS0J,KAC5C,GAA4B,iBAAjBmkF,GAAyD,IAA5B5+D,KAAKg/D,KAAKJ,GACjD,MAAM,IAAI/zF,UAAU,4DAA4D+zF,OAGjF,GAAIvgF,EAAQ8/B,OAAQ,CACnB,MAAM,OAACA,GAAU9/B,EACb8/B,EAAOrhB,SACVriB,EAAO4iF,EAAiBl/C,IAGzBA,EAAO5jB,iBAAiB,SAAS,KAChC9f,EAAO4iF,EAAiBl/C,GAAQ,GAElC,CAEA,GAAIygD,IAAiBt3E,OAAO22E,kBAE3B,YADArgC,EAAQt7C,KAAKvR,EAAS0J,GAKvB,MAAMwkF,EAAe,IAAIjC,EAEzB8B,EAAQD,EAAa3pF,WAAWvJ,UAAKsB,GAAW,KAC/C,GAAIw1B,EACH,IACC1xB,EAAQ0xB,IACT,CAAE,MAAOhvB,GACRgH,EAAOhH,EACR,KAK6B,mBAAnBmqD,EAAQ30B,QAClB20B,EAAQ30B,UAGO,IAAZvyB,EACH3F,IACU2F,aAAmBJ,MAC7BmE,EAAO/D,IAEPuoF,EAAavoF,QAAUA,GAAW,2BAA2BkoF,iBAC7DnkF,EAAOwkF,GACR,GACEL,GAEH,WACC,IACC7tF,QAAc6sD,EACf,CAAE,MAAOnqD,GACRgH,EAAOhH,EACR,CACA,EAND,EAMI,IAGoCozD,SAAQ,KAChDk4B,EAAkB/1D,OAAO,IAQ1B,OALA+1D,EAAkB/1D,MAAQ,KACzB61D,EAAal2D,aAAah9B,UAAKsB,EAAW6xF,GAC1CA,OAAQ7xF,CAAS,EAGX8xF,CACR,CGkEoCG,CAASluF,QAAQD,QAAQuH,GAAY,CAAEsmF,aAAcvgF,EAAQy2D,WAEzEz2D,EAAQ8/B,SACR7lC,EAAYtH,QAAQy2D,KAAK,CAACnvD,EAAW7N,MAAK,EAAc4T,EAAQ8/B,WAEpE,MAAM9nC,QAAeiC,EACrBvH,EAAQsF,GACR5L,KAAK8B,KAAK,YAAa8J,EAC3B,CACA,MAAO5C,GACH,GAAIA,aAAiBupF,IAAiB3+E,EAAQggF,eAE1C,YADAttF,IAGJ0J,EAAOhH,GACPhJ,KAAK8B,KAAK,QAASkH,EACvB,CACA,QACIhJ,MAAK,GACT,IACD4T,GACH5T,KAAK8B,KAAK,OACV9B,MAAK,GAAoB,GAEjC,CACA,YAAM00F,CAAOC,EAAW/gF,GACpB,OAAOrN,QAAQ4oC,IAAIwlD,EAAU5iF,KAAI1C,MAAO4kF,GAAcj0F,KAAKqW,IAAI49E,EAAWrgF,KAC9E,CAIA,KAAAskC,GACI,OAAKl4C,MAAK,GAGVA,MAAK,GAAY,EACjBA,MAAK,IACEA,MAJIA,IAKf,CAIA,KAAAi4C,GACIj4C,MAAK,GAAY,CACrB,CAIA,KAAAu+B,GACIv+B,MAAK,EAAS,IAAIA,MAAK,CAC3B,CAMA,aAAM40F,GAEuB,IAArB50F,MAAK,EAAOuS,YAGVvS,MAAK,EAAS,QACxB,CAQA,oBAAM60F,CAAeC,GAEb90F,MAAK,EAAOuS,KAAOuiF,SAGjB90F,MAAK,EAAS,QAAQ,IAAMA,MAAK,EAAOuS,KAAOuiF,GACzD,CAMA,YAAMC,GAEoB,IAAlB/0F,MAAK,GAAuC,IAArBA,MAAK,EAAOuS,YAGjCvS,MAAK,EAAS,OACxB,CACA,OAAM,CAASG,EAAO2R,GAClB,OAAO,IAAIvL,SAAQD,IACf,MAAMjG,EAAW,KACTyR,IAAWA,MAGf9R,KAAK6C,IAAI1C,EAAOE,GAChBiG,IAAS,EAEbtG,KAAK2C,GAAGxC,EAAOE,EAAS,GAEhC,CAIA,QAAIkS,GACA,OAAOvS,MAAK,EAAOuS,IACvB,CAMA,MAAAyiF,CAAOphF,GAEH,OAAO5T,MAAK,EAAO8R,OAAO8B,GAASlS,MACvC,CAIA,WAAIiyB,GACA,OAAO3zB,MAAK,CAChB,CAIA,YAAIi1F,GACA,OAAOj1F,MAAK,CAChB,iBCpTG,MAAMk1F,EACR,CAACr1F,EAAIs1F,EAAOC,IACRv1F,EAAGqU,KAAKkhF,mHCkBjB,MAAMC,ECjBS,SAAgBxkD,GAC9B,IAAOh0B,OAAOksB,UDgBF,QChB4ClsB,OAAO22E,kBAC9D,MAAM,IAAIpzF,UAAU,uDAGrB,MAAM4yB,EAAQ,IAAI,IAClB,IAAIsiE,EAAc,EAElB,MAQM/8E,EAAMlJ,MAAO4kF,EAAW3tF,EAAS+3B,KACtCi3D,IAEA,MAAM1pF,EAAS,UAAaqoF,KAAa51D,GAA1B,GAEf/3B,EAAQsF,GAER,UACOA,CACP,CAAE,MAAO,CAhBT0pF,IAEItiE,EAAMzgB,KAAO,GAChBygB,EAAMqgE,SAANrgE,EAeK,EAqBDuiE,EAAY,CAACtB,KAAc51D,IAAe,IAAI93B,SAAQD,IAlB5C,EAAC2tF,EAAW3tF,EAAS+3B,KACpCrL,EAAM8/D,QACLoC,EAAmB38E,EAAIrE,UAAK1R,EAAWyxF,EAAW3tF,EAAS+3B,KAG5D,iBAKO93B,QAAQD,UAEVgvF,EDzBM,GCyBuBtiE,EAAMzgB,KAAO,GAC7CygB,EAAMqgE,SAANrgE,EAED,EAVD,EAUI,EAIJ8/D,CAAQmB,EAAW3tF,EAAS+3B,EAAW,IAiBxC,OAdA9+B,OAAOo6B,iBAAiB47D,EAAW,CAClCD,YAAa,CACZvvF,IAAK,IAAMuvF,GAEZE,aAAc,CACbzvF,IAAK,IAAMitB,EAAMzgB,MAElBkjF,WAAY,CACX,KAAApwF,GACC2tB,EAAMuL,OACP,KAIKg3D,CACR,CDlDW,GAAMhY,EAAI,IAAI9xE,WAAciqF,EAAIrmF,eAAepK,EAAGw0D,EAAG/5B,EAAGlI,EAAI,SACpEh2B,OAAI,EAAQiG,EAAI,CAAC,GAClB,IAAIhG,EACJ,OAA2BA,EAApBg4D,aAAa3uD,KAAW2uD,QAAcA,IAAKj4D,IAAMiG,EAAEw+C,YAAczkD,GAAIiG,EAAE,kBAAoBA,EAAE,gBAAkB,kCAAmC,IAAE2qC,QAAQ,CACjKlsC,OAAQ,MACRmC,IAAKpD,EACLH,KAAMrD,EACNiyC,OAAQhU,EACRi2D,iBAAkBn+D,EAClBsa,QAASrqC,GAEb,EAAG28E,EAAI,SAASn/E,EAAGw0D,EAAG/5B,GACpB,OAAa,IAAN+5B,GAAWx0D,EAAEsN,MAAQmtB,EAAIn5B,QAAQD,QAAQ,IAAIwE,KAAK,CAAC7F,GAAI,CAAE4F,KAAM5F,EAAE4F,MAAQ,8BAAiCwqF,GAAG,IAAM,IAAI9uF,SAAQ,CAACixB,EAAGh2B,KACxI+7E,EAAE50E,OAAS,KACI,OAAb40E,EAAE3xE,QAAmB4rB,EAAE,IAAI1sB,KAAK,CAACyyE,EAAE3xE,QAAS,CAC1Cf,KAAM,8BACHrJ,EAAE,IAAIqK,MAAM,gCAAgC,EAChD0xE,EAAEqY,kBAAkB3wF,EAAE9D,MAAMs4D,EAAGA,EAAI/5B,GAAG,KAE7C,EAOG5jB,EAAI,SAAS7W,OAAI,GAClB,MAAMw0D,EAAIt2D,OAAO4hD,IAAI8wC,WAAW3lF,OAAO4lF,eACvC,GAAIr8B,GAAK,EACP,OAAO,EACT,IAAK58C,OAAO48C,GACV,OAAO,SACT,MAAM/5B,EAAInK,KAAKD,IAAIzY,OAAO48C,GAAI,SAC9B,YAAa,IAANx0D,EAAey6B,EAAInK,KAAKD,IAAIoK,EAAGnK,KAAK+3B,KAAKroD,EAAI,KACtD,EACA,IAAI0a,EAAoB,CAAE1a,IAAOA,EAAEA,EAAE8wF,YAAc,GAAK,cAAe9wF,EAAEA,EAAE+wF,UAAY,GAAK,YAAa/wF,EAAEA,EAAEgxF,WAAa,GAAK,aAAchxF,EAAEA,EAAEixF,SAAW,GAAK,WAAYjxF,EAAEA,EAAEkxF,UAAY,GAAK,YAAalxF,EAAEA,EAAE+sD,OAAS,GAAK,SAAU/sD,GAAnN,CAAuN0a,GAAK,CAAC,GACrP,IAAIy2E,EAAK,MACPC,QACAC,MACAC,WACAC,QACAC,MACAC,UAAY,EACZC,WAAa,EACbC,QAAU,EACVC,YACAC,UAAY,KACZ,WAAAjzF,CAAY41D,EAAG/5B,GAAI,EAAIlI,EAAGh2B,GACxB,MAAMiG,EAAI8tB,KAAKiM,IAAI1lB,IAAM,EAAIyZ,KAAK+3B,KAAK91B,EAAI1b,KAAO,EAAG,KACrD9b,KAAKq2F,QAAU58B,EAAGz5D,KAAKu2F,WAAa72D,GAAK5jB,IAAM,GAAKrU,EAAI,EAAGzH,KAAKw2F,QAAUx2F,KAAKu2F,WAAa9uF,EAAI,EAAGzH,KAAKy2F,MAAQj/D,EAAGx3B,KAAKs2F,MAAQ90F,EAAGxB,KAAK62F,YAAc,IAAI1jD,eAC5J,CACA,UAAIptB,GACF,OAAO/lB,KAAKq2F,OACd,CACA,QAAIlmF,GACF,OAAOnQ,KAAKs2F,KACd,CACA,aAAIS,GACF,OAAO/2F,KAAKu2F,UACd,CACA,UAAI5uD,GACF,OAAO3nC,KAAKw2F,OACd,CACA,QAAIjkF,GACF,OAAOvS,KAAKy2F,KACd,CACA,aAAIO,GACF,OAAOh3F,KAAK22F,UACd,CACA,YAAI9tF,CAAS4wD,GACXz5D,KAAK82F,UAAYr9B,CACnB,CACA,YAAI5wD,GACF,OAAO7I,KAAK82F,SACd,CACA,YAAIG,GACF,OAAOj3F,KAAK02F,SACd,CAIA,YAAIO,CAASx9B,GACX,GAAIA,GAAKz5D,KAAKy2F,MAEZ,OADAz2F,KAAK42F,QAAU52F,KAAKu2F,WAAa,EAAI,OAAGv2F,KAAK02F,UAAY12F,KAAKy2F,OAGhEz2F,KAAK42F,QAAU,EAAG52F,KAAK02F,UAAYj9B,EAAuB,IAApBz5D,KAAK22F,aAAqB32F,KAAK22F,YAAa,IAAqB/wF,MAAQ4iC,UACjH,CACA,UAAIr/B,GACF,OAAOnJ,KAAK42F,OACd,CAIA,UAAIztF,CAAOswD,GACTz5D,KAAK42F,QAAUn9B,CACjB,CAIA,UAAI/lB,GACF,OAAO1zC,KAAK62F,YAAYnjD,MAC1B,CAIA,MAAAlV,GACEx+B,KAAK62F,YAAY1hE,QAASn1B,KAAK42F,QAAU,CAC3C,GAuBF,MAA8G/tB,EAAtF,QAAZ5jE,GAAyG,YAAtF,UAAIm4B,OAAO,YAAYE,SAAU,UAAIF,OAAO,YAAY6lD,OAAOh+E,EAAEk+B,KAAK7F,QAA1F,IAACr4B,EACR4hF,GAAoB,CAAE5hF,IAAOA,EAAEA,EAAEiyF,KAAO,GAAK,OAAQjyF,EAAEA,EAAE+wF,UAAY,GAAK,YAAa/wF,EAAEA,EAAEkyF,OAAS,GAAK,SAAUlyF,GAA/F,CAAmG4hF,IAAK,CAAC,GACjI,MAAMmB,GAEJoP,mBACAC,UAEAC,aAAe,GACfC,UAAY,IAAI,EAAE,CAAE1mD,YAAa,IACjC2mD,WAAa,EACbC,eAAiB,EACjBC,aAAe,EACfC,WAAa,GAOb,WAAA9zF,CAAY41D,GAAI,EAAI/5B,GAClB,GAAI1/B,KAAKq3F,UAAY59B,GAAI/5B,EAAG,CAC1B,MAAMlI,GAAI,WAAK2L,IAAK3hC,GAAI,QAAE,aAAag2B,KACvC,IAAKA,EACH,MAAM,IAAI3rB,MAAM,yBAClB6zB,EAAI,IAAI,KAAE,CACRr7B,GAAI,EACJouC,MAAOjb,EACPmU,YAAa,KAAEqF,IACftF,KAAM,UAAUlU,IAChBzR,OAAQvkB,GAEZ,CACAxB,KAAKowC,YAAc1Q,EAAGmpC,EAAExjC,MAAM,+BAAgC,CAC5D+K,YAAapwC,KAAKowC,YAClB1E,KAAM1rC,KAAK0rC,KACXksD,SAAUn+B,EACVo+B,cAAe/7E,KAEnB,CAIA,eAAIs0B,GACF,OAAOpwC,KAAKo3F,kBACd,CAIA,eAAIhnD,CAAYqpB,GACd,IAAKA,EACH,MAAM,IAAI5tD,MAAM,8BAClBg9D,EAAExjC,MAAM,kBAAmB,CAAEsO,OAAQ8lB,IAAMz5D,KAAKo3F,mBAAqB39B,CACvE,CAIA,QAAI/tB,GACF,OAAO1rC,KAAKo3F,mBAAmBrxE,MACjC,CAIA,SAAIiN,GACF,OAAOhzB,KAAKs3F,YACd,CACA,KAAAlpD,GACEpuC,KAAKs3F,aAAaxhF,OAAO,EAAG9V,KAAKs3F,aAAa51F,QAAS1B,KAAKu3F,UAAUh5D,QAASv+B,KAAKw3F,WAAa,EAAGx3F,KAAKy3F,eAAiB,EAAGz3F,KAAK03F,aAAe,CACnJ,CAIA,KAAAz/C,GACEj4C,KAAKu3F,UAAUt/C,QAASj4C,KAAK03F,aAAe,CAC9C,CAIA,KAAAx/C,GACEl4C,KAAKu3F,UAAUr/C,QAASl4C,KAAK03F,aAAe,EAAG13F,KAAK83F,aACtD,CAIA,QAAI3iF,GACF,MAAO,CACL5C,KAAMvS,KAAKw3F,WACX/tB,SAAUzpE,KAAKy3F,eACftuF,OAAQnJ,KAAK03F,aAEjB,CACA,WAAAI,GACE,MAAMr+B,EAAIz5D,KAAKs3F,aAAavlF,KAAKylB,GAAMA,EAAEjlB,OAAM9E,QAAO,CAAC+pB,EAAGh2B,IAAMg2B,EAAIh2B,GAAG,GAAIk+B,EAAI1/B,KAAKs3F,aAAavlF,KAAKylB,GAAMA,EAAEy/D,WAAUxpF,QAAO,CAAC+pB,EAAGh2B,IAAMg2B,EAAIh2B,GAAG,GAChJxB,KAAKw3F,WAAa/9B,EAAGz5D,KAAKy3F,eAAiB/3D,EAAyB,IAAtB1/B,KAAK03F,eAAuB13F,KAAK03F,aAAe13F,KAAKu3F,UAAUhlF,KAAO,EAAI,EAAI,EAC9H,CACA,WAAAwlF,CAAYt+B,GACVz5D,KAAK23F,WAAWn3F,KAAKi5D,EACvB,CAOA,MAAAzhB,CAAOyhB,EAAG/5B,EAAGlI,GACX,MAAMh2B,EAAI,GAAGg2B,GAAKx3B,KAAK0rC,QAAQ+tB,EAAE3tD,QAAQ,MAAO,OAASzB,OAAQ5C,GAAM,IAAI8C,IAAI/I,GAAIC,EAAIgG,GAAI,QAAEjG,EAAEL,MAAMsG,EAAE/F,SACvGmnE,EAAExjC,MAAM,aAAa3F,EAAE1+B,WAAWS,KAClC,MAAMk4D,EAAI79C,EAAE4jB,EAAEntB,MAAO0oE,EAAU,IAANthB,GAAWj6B,EAAEntB,KAAOonD,GAAK35D,KAAKq3F,UAAWptF,EAAI,IAAImsF,EAAG50F,GAAIy5E,EAAGv7C,EAAEntB,KAAMmtB,GAC5F,OAAO1/B,KAAKs3F,aAAa92F,KAAKyJ,GAAIjK,KAAK83F,cAAe,IAAI,GAAEzoF,MAAO+7E,EAAGtiB,EAAGlsD,KACvE,GAAIA,EAAE3S,EAAEu0B,QAASy8C,EAAG,CAClBpS,EAAExjC,MAAM,8BAA+B,CAAEl1B,KAAMuvB,EAAGsY,OAAQ/tC,IAC1D,MAAMqP,QAAU8qE,EAAE1kD,EAAG,EAAGz1B,EAAEsI,MAAOqyE,EAAIv1E,UACnC,IACEpF,EAAEpB,eAAiB6sF,EACjBj0F,EACA6X,EACArP,EAAEypC,QACDxsB,IACCjd,EAAEgtF,SAAWhtF,EAAEgtF,SAAW/vE,EAAE8wE,MAAOh4F,KAAK83F,aAAa,QAEvD,EACA,CACE,aAAcp4D,EAAEkP,aAAe,IAC/B,eAAgBlP,EAAE70B,OAEnBZ,EAAEgtF,SAAWhtF,EAAEsI,KAAMvS,KAAK83F,cAAejvB,EAAExjC,MAAM,yBAAyB3F,EAAE1+B,OAAQ,CAAEmP,KAAMuvB,EAAGsY,OAAQ/tC,IAAMmhF,EAAEnhF,EACpH,CAAE,MAAOid,GACP,GAAIA,aAAa,KAEf,OADAjd,EAAEd,OAASwW,EAAEqyC,YAAQ8W,EAAE,6BAGzB5hD,GAAGre,WAAaoB,EAAEpB,SAAWqe,EAAEre,UAAWoB,EAAEd,OAASwW,EAAEqyC,OAAQ6W,EAAE7/D,MAAM,oBAAoB02B,EAAE1+B,OAAQ,CAAEgI,MAAOke,EAAG/W,KAAMuvB,EAAGsY,OAAQ/tC,IAAM6+D,EAAE,4BAC5I,CACA9oE,KAAK23F,WAAWzmF,SAASgW,IACvB,IACEA,EAAEjd,EACJ,CAAE,MACF,IACA,EAEJjK,KAAKu3F,UAAUlhF,IAAIuuE,GAAI5kF,KAAK83F,aAC9B,KAAO,CACLjvB,EAAExjC,MAAM,8BAA+B,CAAEl1B,KAAMuvB,EAAGsY,OAAQ/tC,IAC1D,MAAMqP,QA9PNjK,eAAepK,GACrB,MAAiJzD,EAAI,IAA3I,QAAE,gBAAe,WAAK2hC,0BAA+B,IAAIvhC,MAAM,KAAKmQ,KAAI,IAAMwjB,KAAKg4B,MAAsB,GAAhBh4B,KAAKu4B,UAAepmD,SAAS,MAAKiT,KAAK,MAAwBlT,EAAIxC,EAAI,CAAEghD,YAAahhD,QAAM,EAC/L,aAAa,IAAEmtC,QAAQ,CACrBlsC,OAAQ,QACRmC,IAAK7G,EACLswC,QAASrqC,IACPjG,CACN,CAuPwByiD,CAAGxiD,GAAImjF,EAAI,GAC3B,IAAK,IAAI19D,EAAI,EAAGA,EAAIjd,EAAE09B,OAAQzgB,IAAK,CACjC,MAAMygE,EAAIzgE,EAAIyyC,EAAGiqB,EAAIruD,KAAKiM,IAAImmD,EAAIhuB,EAAG1vD,EAAEsI,MAAOu0E,EAAI,IAAM1C,EAAE1kD,EAAGioD,EAAGhuB,GAAI0E,EAAI,IAAMq3B,EAC5E,GAAGp8E,KAAK4N,EAAI,IACZ4/D,EACA78E,EAAEypC,QACF,IAAM1zC,KAAK83F,eACXr2F,EACA,CACE,aAAci+B,EAAEkP,aAAe,IAC/B,kBAAmBlP,EAAEntB,KACrB,eAAgB,6BAElBsF,MAAK,KACL5N,EAAEgtF,SAAWhtF,EAAEgtF,SAAWt9B,CAAC,IAC1BxhD,OAAO8K,IACR,MAA8B,MAAxBA,GAAGpa,UAAUM,QAAkB0/D,EAAE7/D,MAAM,mGAAoG,CAAEA,MAAOia,EAAG+0B,OAAQ/tC,IAAMA,EAAEu0B,SAAUv0B,EAAEd,OAASwW,EAAEqyC,OAAQ/uC,IAAMA,aAAa,OAAM4lD,EAAE7/D,MAAM,SAASke,EAAI,KAAKygE,OAAO/D,qBAAsB,CAAE56E,MAAOia,EAAG+0B,OAAQ/tC,IAAMA,EAAEu0B,SAAUv0B,EAAEd,OAASwW,EAAEqyC,QAAS/uC,EAAE,IAE5V2hE,EAAEpkF,KAAKR,KAAKu3F,UAAUlhF,IAAIgoD,GAC5B,CACA,UACQ93D,QAAQ4oC,IAAIy1C,GAAI5kF,KAAK83F,cAAe7tF,EAAEpB,eAAiB,IAAEupC,QAAQ,CACrElsC,OAAQ,OACRmC,IAAK,GAAGiR,UACRw4B,QAAS,CACP,aAAcpS,EAAEkP,aAAe,IAC/B,kBAAmBlP,EAAEntB,KACrB0zC,YAAaxkD,KAEbzB,KAAK83F,cAAe7tF,EAAEd,OAASwW,EAAEu2E,SAAUrtB,EAAExjC,MAAM,yBAAyB3F,EAAE1+B,OAAQ,CAAEmP,KAAMuvB,EAAGsY,OAAQ/tC,IAAMmhF,EAAEnhF,EACvH,CAAE,MAAOid,GACPA,aAAa,MAAKjd,EAAEd,OAASwW,EAAEqyC,OAAQ8W,EAAE,+BAAiC7+D,EAAEd,OAASwW,EAAEqyC,OAAQ8W,EAAE,0CAA2C,IAAE12B,QAAQ,CACpJlsC,OAAQ,SACRmC,IAAK,GAAGiR,KAEZ,CACAtZ,KAAK23F,WAAWzmF,SAASgW,IACvB,IACEA,EAAEjd,EACJ,CAAE,MACF,IAEJ,CACA,OAAOjK,KAAKu3F,UAAUxC,SAASl9E,MAAK,IAAM7X,KAAKouC,UAAUnkC,CAAC,GAE9D,EAEF,SAASy9E,GAAEziF,EAAGw0D,EAAG/5B,EAAGlI,EAAGh2B,EAAGiG,EAAGhG,EAAGk4D,GAC9B,IAEI1vD,EAFAgxE,EAAgB,mBAALh2E,EAAkBA,EAAE2O,QAAU3O,EAG7C,GAFAw0D,IAAMwhB,EAAEp4D,OAAS42C,EAAGwhB,EAAEgd,gBAAkBv4D,EAAGu7C,EAAEid,WAAY,GAAK1gE,IAAMyjD,EAAEv4D,YAAa,GAAKjb,IAAMwzE,EAAEkd,SAAW,UAAY1wF,GAEnHhG,GAAKwI,EAAI,SAAS6+D,KACpBA,EAAIA,GACJ9oE,KAAK0jB,QAAU1jB,KAAK0jB,OAAO00E,YAC3Bp4F,KAAKuhB,QAAUvhB,KAAKuhB,OAAOmC,QAAU1jB,KAAKuhB,OAAOmC,OAAO00E,oBAAyBC,oBAAsB,MAAQvvB,EAAIuvB,qBAAsB72F,GAAKA,EAAEN,KAAKlB,KAAM8oE,GAAIA,GAAKA,EAAEwvB,uBAAyBxvB,EAAEwvB,sBAAsBjiF,IAAI5U,EAC7N,EAAGw5E,EAAEsd,aAAetuF,GAAKzI,IAAMyI,EAAI0vD,EAAI,WACrCn4D,EAAEN,KACAlB,MACCi7E,EAAEv4D,WAAa1iB,KAAKuhB,OAASvhB,MAAMw4F,MAAMp+D,SAASq+D,WAEvD,EAAIj3F,GAAIyI,EACN,GAAIgxE,EAAEv4D,WAAY,CAChBu4D,EAAEyd,cAAgBzuF,EAClB,IAAI6Y,EAAIm4D,EAAEp4D,OACVo4D,EAAEp4D,OAAS,SAASjG,EAAGtD,GACrB,OAAOrP,EAAE/I,KAAKoY,GAAIwJ,EAAElG,EAAGtD,EACzB,CACF,KAAO,CACL,IAAI8xE,EAAInQ,EAAE1gD,aACV0gD,EAAE1gD,aAAe6wD,EAAI,GAAG/pF,OAAO+pF,EAAGnhF,GAAK,CAACA,EAC1C,CACF,MAAO,CACLjH,QAASiC,EACT2O,QAASqnE,EAEb,CAiCA,MAAM0d,GAV2BjR,GAtBtB,CACT1mF,KAAM,aACNw6B,MAAO,CAAC,SACR7Y,MAAO,CACLxX,MAAO,CACLN,KAAME,QAER0wB,UAAW,CACT5wB,KAAME,OACN6X,QAAS,gBAEXrQ,KAAM,CACJ1H,KAAMgS,OACN+F,QAAS,OAIN,WACP,IAAI62C,EAAIz5D,KAAM0/B,EAAI+5B,EAAE79B,MAAMD,GAC1B,OAAO+D,EAAE,OAAQ+5B,EAAE59B,GAAG,CAAEC,YAAa,mCAAoChX,MAAO,CAAE,eAAe20C,EAAEtuD,OAAQ,KAAW,aAAcsuD,EAAEtuD,MAAO+4C,KAAM,OAASvhD,GAAI,CAAEyG,MAAO,SAASouB,GAChL,OAAOiiC,EAAEz9B,MAAM,QAASxE,EAC1B,IAAO,OAAQiiC,EAAEx9B,QAAQ,GAAK,CAACyD,EAAE,MAAO,CAAE5D,YAAa,4BAA6BhX,MAAO,CAAE8zE,KAAMn/B,EAAEh+B,UAAWud,MAAOygB,EAAElnD,KAAM4+C,OAAQsI,EAAElnD,KAAMsmF,QAAS,cAAiB,CAACn5D,EAAE,OAAQ,CAAE5a,MAAO,CAAEgkD,EAAG,2OAA8O,CAACrP,EAAEtuD,MAAQu0B,EAAE,QAAS,CAAC+5B,EAAEv9B,GAAGu9B,EAAEhpD,GAAGgpD,EAAEtuD,UAAYsuD,EAAE5gD,UACne,GAAQ,IAIN,EACA,KACA,KACA,KACA,MAEY7V,QAgCR81F,GAV2BpR,GAtBL,CAC1B1mF,KAAM,WACNw6B,MAAO,CAAC,SACR7Y,MAAO,CACLxX,MAAO,CACLN,KAAME,QAER0wB,UAAW,CACT5wB,KAAME,OACN6X,QAAS,gBAEXrQ,KAAM,CACJ1H,KAAMgS,OACN+F,QAAS,OAIN,WACP,IAAI62C,EAAIz5D,KAAM0/B,EAAI+5B,EAAE79B,MAAMD,GAC1B,OAAO+D,EAAE,OAAQ+5B,EAAE59B,GAAG,CAAEC,YAAa,iCAAkChX,MAAO,CAAE,eAAe20C,EAAEtuD,OAAQ,KAAW,aAAcsuD,EAAEtuD,MAAO+4C,KAAM,OAASvhD,GAAI,CAAEyG,MAAO,SAASouB,GAC9K,OAAOiiC,EAAEz9B,MAAM,QAASxE,EAC1B,IAAO,OAAQiiC,EAAEx9B,QAAQ,GAAK,CAACyD,EAAE,MAAO,CAAE5D,YAAa,4BAA6BhX,MAAO,CAAE8zE,KAAMn/B,EAAEh+B,UAAWud,MAAOygB,EAAElnD,KAAM4+C,OAAQsI,EAAElnD,KAAMsmF,QAAS,cAAiB,CAACn5D,EAAE,OAAQ,CAAE5a,MAAO,CAAEgkD,EAAG,8CAAiD,CAACrP,EAAEtuD,MAAQu0B,EAAE,QAAS,CAAC+5B,EAAEv9B,GAAGu9B,EAAEhpD,GAAGgpD,EAAEtuD,UAAYsuD,EAAE5gD,UACtS,GAAQ,IAIN,EACA,KACA,KACA,KACA,MAEY7V,QAgCR+1F,GAV2BrR,GAtBL,CAC1B1mF,KAAM,aACNw6B,MAAO,CAAC,SACR7Y,MAAO,CACLxX,MAAO,CACLN,KAAME,QAER0wB,UAAW,CACT5wB,KAAME,OACN6X,QAAS,gBAEXrQ,KAAM,CACJ1H,KAAMgS,OACN+F,QAAS,OAIN,WACP,IAAI62C,EAAIz5D,KAAM0/B,EAAI+5B,EAAE79B,MAAMD,GAC1B,OAAO+D,EAAE,OAAQ+5B,EAAE59B,GAAG,CAAEC,YAAa,mCAAoChX,MAAO,CAAE,eAAe20C,EAAEtuD,OAAQ,KAAW,aAAcsuD,EAAEtuD,MAAO+4C,KAAM,OAASvhD,GAAI,CAAEyG,MAAO,SAASouB,GAChL,OAAOiiC,EAAEz9B,MAAM,QAASxE,EAC1B,IAAO,OAAQiiC,EAAEx9B,QAAQ,GAAK,CAACyD,EAAE,MAAO,CAAE5D,YAAa,4BAA6BhX,MAAO,CAAE8zE,KAAMn/B,EAAEh+B,UAAWud,MAAOygB,EAAElnD,KAAM4+C,OAAQsI,EAAElnD,KAAMsmF,QAAS,cAAiB,CAACn5D,EAAE,OAAQ,CAAE5a,MAAO,CAAEgkD,EAAG,mDAAsD,CAACrP,EAAEtuD,MAAQu0B,EAAE,QAAS,CAAC+5B,EAAEv9B,GAAGu9B,EAAEhpD,GAAGgpD,EAAEtuD,UAAYsuD,EAAE5gD,UAC3S,GAAQ,IAIN,EACA,KACA,KACA,KACA,MAEY7V,QAuBRqkF,IAAI,SAAK2R,eACf,CAAC,CAAEC,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,kEAAmE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGhWC,OAAQ,CAAC,iOAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,kCAAmC,gBAAiB,+DAAgE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,mHAAqHC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,2EAI9+BC,OAAQ,CAAC,0TAKR,wBAAyB,CAAEH,MAAO,wBAAyBM,aAAc,yBAA0BH,OAAQ,CAAC,qBAAsB,qBAAsB,yBAA0B,qBAAsB,wBAAyB,0BAA4B,qCAAsC,CAAEH,MAAO,qCAAsCM,aAAc,sCAAuCH,OAAQ,CAAC,oCAAqC,oCAAqC,wCAAyC,oCAAqC,uCAAwC,yCAA2C,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,2BAA6B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,4CAA8CJ,OAAQ,CAAC,kBAAoB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,oBAAsBK,OAAQ,CAAER,MAAO,SAAUG,OAAQ,CAAC,UAAY,8BAA+B,CAAEH,MAAO,8BAA+BG,OAAQ,CAAC,yBAA2B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,6BAA+BM,SAAU,CAAET,MAAO,WAAYG,OAAQ,CAAC,UAAY,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,wBAA0B,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,mBAAqB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,gGAAkG,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,8BAAgCO,IAAK,CAAEV,MAAO,MAAOG,OAAQ,CAAC,SAAW,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,eAAiBE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,YAAc,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,kBAAoB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,6BAA+B,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,8BAAgC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,6BAA+B,iBAAkB,CAAEH,MAAO,iBAAkBM,aAAc,qBAAsBH,OAAQ,CAAC,oBAAqB,oBAAqB,oBAAqB,oBAAqB,oBAAqB,sBAAwB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,kBAAoB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,qBAAuB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,cAAgB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,kBAAoB,iGAAkG,CAAEH,MAAO,iGAAkGG,OAAQ,CAAC,qEAAuE,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,wCAA0C,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,+DAAqE,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,iFAAkF,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,qHAAuHC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG73HC,OAAQ,CAAC,wUAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,MAAOC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,oCAAqC,gBAAiB,kEAAmE,eAAgB,4BAA6BsnD,SAAU,MAAO,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,uDAGl6BC,OAAQ,CAAC,6OAKR,wBAAyB,CAAEH,MAAO,wBAAyBM,aAAc,yBAA0BH,OAAQ,CAAC,8BAA+B,iCAAmC,qCAAsC,CAAEH,MAAO,qCAAsCM,aAAc,sCAAuCH,OAAQ,CAAC,2CAA4C,8CAAgD,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,8BAAgC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,4CAA8CJ,OAAQ,CAAC,6BAA+B,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,yBAA2B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,wBAA0BM,SAAU,CAAET,MAAO,WAAYG,OAAQ,CAAC,WAAa,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,iCAAmC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,sBAAwB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,+FAAiG,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,qDAAuDO,IAAK,CAAEV,MAAO,MAAOG,OAAQ,CAAC,UAAY,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,kBAAoBE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,YAAc,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,2BAA6B,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,0BAA4B,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,0CAA4C,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,sCAAwC,iBAAkB,CAAEH,MAAO,iBAAkBM,aAAc,qBAAsBH,OAAQ,CAAC,sBAAuB,4BAA8B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,sBAAwB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,uBAAyB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,mBAAqB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,kBAAoB,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,kCAAoC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,gFAAsF,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,iDAAkD,gBAAiB,oEAAqE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,oEAGjrGC,OAAQ,CAAC,2PAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,2BAA6B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,gCAAkCJ,OAAQ,CAAC,iBAAmB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,0BAA4BC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,aAAe,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,wBAA0B,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,uBAAyBE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,eAAiB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,uBAA6B,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,mEAAoE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,0KAA4KC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGroCC,OAAQ,CAAC,4WAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,gFAAiF,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGz6BC,OAAQ,CAAC,kPAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,gFAAiF,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGz6BC,OAAQ,CAAC,kPAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,+DAAgE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,mUAAqUC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGrrCC,OAAQ,CAAC,igBAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,gEAAiE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,0GAA4GC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG79BC,OAAQ,CAAC,ySAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,qDAAsD,gBAAiB,gEAAiE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,qHAI/6BC,OAAQ,CAAC,2PAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,4BAA8B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,gCAAkCJ,OAAQ,CAAC,kBAAoB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,sBAAwBC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,YAAc,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,0BAA4B,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,qCAAuCE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,aAAe,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,yBAA+B,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,gDAAiD,gBAAiB,8DAA+D,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gHAAkHC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,mEAG1mCC,OAAQ,CAAC,oUAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,oBAAsB,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,gCAAkCJ,OAAQ,CAAC,iBAAmB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,yBAA2BC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,WAAa,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,qBAAuB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,6BAA+BE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,oBAA0B,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,0CAA2C,gBAAiB,kFAAmF,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,gHAAkHC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,mFAIpiCC,OAAQ,CAAC,qVAKR,wBAAyB,CAAEH,MAAO,wBAAyBM,aAAc,yBAA0BH,OAAQ,CAAC,yBAA0B,yBAA0B,yBAA0B,2BAA6B,qCAAsC,CAAEH,MAAO,qCAAsCM,aAAc,sCAAuCH,OAAQ,CAAC,qCAAsC,qCAAsC,qCAAsC,uCAAyC,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,oBAAsB,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,4CAA8CJ,OAAQ,CAAC,iBAAmB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,yBAA2BK,OAAQ,CAAER,MAAO,SAAUG,OAAQ,CAAC,WAAa,8BAA+B,CAAEH,MAAO,8BAA+BG,OAAQ,CAAC,yBAA2B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,qBAAuBM,SAAU,CAAET,MAAO,WAAYG,OAAQ,CAAC,eAAiB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,8BAAgC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,qBAAuB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,iFAAmF,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,kCAAoCO,IAAK,CAAEV,MAAO,MAAOG,OAAQ,CAAC,SAAW,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,eAAiBE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,gBAAkB,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,mBAAqB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,wCAA0C,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,qCAAuC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,gCAAkC,iBAAkB,CAAEH,MAAO,iBAAkBM,aAAc,qBAAsBH,OAAQ,CAAC,yBAA0B,4BAA6B,4BAA6B,8BAAgC,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,qBAAuB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,sBAAwB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,mBAAqB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,uBAAyB,iGAAkG,CAAEH,MAAO,iGAAkGG,OAAQ,CAAC,6FAA+F,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,uCAAyC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,2FAAiG,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,kFAAmF,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,6EAA+EC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGtyHC,OAAQ,CAAC,iSAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,wCAAyC,gBAAiB,+DAAgE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,iFAIj6BC,OAAQ,CAAC,6OAKR,wBAAyB,CAAEH,MAAO,wBAAyBM,aAAc,yBAA0BH,OAAQ,CAAC,uBAAwB,6BAA+B,qCAAsC,CAAEH,MAAO,qCAAsCM,aAAc,sCAAuCH,OAAQ,CAAC,mCAAoC,yCAA2C,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,gCAAkC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,4CAA8CJ,OAAQ,CAAC,kBAAoB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,4BAA8BK,OAAQ,CAAER,MAAO,SAAUG,OAAQ,CAAC,aAAe,8BAA+B,CAAEH,MAAO,8BAA+BG,OAAQ,CAAC,6BAA+B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,qBAAuBM,SAAU,CAAET,MAAO,WAAYG,OAAQ,CAAC,YAAc,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,iCAAmC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,yBAA2B,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,6FAA+F,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,oCAAsCO,IAAK,CAAEV,MAAO,MAAOG,OAAQ,CAAC,OAAS,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,eAAiBE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,WAAa,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,+BAAiC,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,qBAAuB,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,iCAAmC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,wBAA0B,iBAAkB,CAAEH,MAAO,iBAAkBM,aAAc,qBAAsBH,OAAQ,CAAC,wBAAyB,8BAAgC,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,qBAAuB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,sBAAwB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,iBAAmB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,sBAAwB,iGAAkG,CAAEH,MAAO,iGAAkGG,OAAQ,CAAC,+FAAiG,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,uCAAyC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,sEAA4E,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,+CAAgD,gBAAiB,+DAAgE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,wFAInjHC,OAAQ,CAAC,oPAKR,wBAAyB,CAAEH,MAAO,wBAAyBM,aAAc,yBAA0BH,OAAQ,CAAC,yBAA0B,4BAA8B,qCAAsC,CAAEH,MAAO,qCAAsCM,aAAc,sCAAuCH,OAAQ,CAAC,sCAAuC,yCAA2C,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,mCAAqC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,4CAA8CJ,OAAQ,CAAC,uBAAyB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,2BAA6BK,OAAQ,CAAER,MAAO,SAAUG,OAAQ,CAAC,cAAgB,8BAA+B,CAAEH,MAAO,8BAA+BG,OAAQ,CAAC,mCAAqC,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,wBAA0BM,SAAU,CAAET,MAAO,WAAYG,OAAQ,CAAC,eAAiB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,iCAAmC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,uBAAyB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,mGAAqG,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,yCAA2CO,IAAK,CAAEV,MAAO,MAAOG,OAAQ,CAAC,QAAU,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,iBAAmBE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,aAAe,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,iBAAmB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,qCAAuC,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,uCAAyC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,iCAAmC,iBAAkB,CAAEH,MAAO,iBAAkBM,aAAc,qBAAsBH,OAAQ,CAAC,2BAA4B,iCAAmC,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,qBAAuB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,0BAA4B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,sBAAwB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,+BAAiC,iGAAkG,CAAEH,MAAO,iGAAkGG,OAAQ,CAAC,wHAA0H,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,yCAA2C,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,iFAAuF,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,+CAAgD,gBAAiB,4EAA6E,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,wFAI3rHC,OAAQ,CAAC,oQAKR,wBAAyB,CAAEH,MAAO,wBAAyBM,aAAc,yBAA0BH,OAAQ,CAAC,yBAA0B,4BAA8B,qCAAsC,CAAEH,MAAO,qCAAsCM,aAAc,sCAAuCH,OAAQ,CAAC,sCAAuC,yCAA2C,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,kCAAoC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,4CAA8CJ,OAAQ,CAAC,uBAAyB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,iCAAmCK,OAAQ,CAAER,MAAO,SAAUG,OAAQ,CAAC,cAAgB,8BAA+B,CAAEH,MAAO,8BAA+BG,OAAQ,CAAC,mCAAqC,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,wBAA0BM,SAAU,CAAET,MAAO,WAAYG,OAAQ,CAAC,eAAiB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,iCAAmC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,uBAAyB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,oGAAsG,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,yCAA2CO,IAAK,CAAEV,MAAO,MAAOG,OAAQ,CAAC,QAAU,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,iBAAmBE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,aAAe,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,iBAAmB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,qCAAuC,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,uCAAyC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,iCAAmC,iBAAkB,CAAEH,MAAO,iBAAkBM,aAAc,qBAAsBH,OAAQ,CAAC,6BAA8B,iCAAmC,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,qBAAuB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,0BAA4B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,sBAAwB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,+BAAiC,iGAAkG,CAAEH,MAAO,iGAAkGG,OAAQ,CAAC,wHAA0H,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,yCAA2C,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,mFAAyF,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,gBAAiB,gBAAiB,8DAA+D,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,mCAGlpHC,OAAQ,CAAC,oNAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,qCAAuC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,gCAAkCJ,OAAQ,CAAC,qBAAuB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,gCAAkCC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,aAAe,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,0BAA4B,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,qCAAuCE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,aAAe,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,4BAAkC,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,0EAA2E,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG/iCC,OAAQ,CAAC,4OAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yCAA0C,gBAAiB,oFAAqF,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,2GAI77BC,OAAQ,CAAC,sQAKR,wBAAyB,CAAEH,MAAO,wBAAyBM,aAAc,yBAA0BH,OAAQ,CAAC,wBAAyB,2BAA6B,qCAAsC,CAAEH,MAAO,qCAAsCM,aAAc,sCAAuCH,OAAQ,CAAC,qCAAsC,wCAA0C,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,2BAA6B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,4CAA8CJ,OAAQ,CAAC,gBAAkB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,uBAAyBC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,QAAU,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,mBAAqBM,SAAU,CAAET,MAAO,WAAYG,OAAQ,CAAC,aAAe,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,yBAA2B,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,qBAAuB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,uFAAyF,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,+BAAiC,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,gBAAkBE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,WAAa,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,kBAAoB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,0BAA4B,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,8BAAgC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,yBAA2B,iBAAkB,CAAEH,MAAO,iBAAkBM,aAAc,qBAAsBH,OAAQ,CAAC,iBAAkB,uBAAyB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,iBAAmB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,qBAAuB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,iBAAmB,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,qCAAuC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,0EAAgF,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,kEAAmE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG17FC,OAAQ,CAAC,iOAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,wBAAyB,gBAAiB,gEAAiE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,uLAMz7BC,OAAQ,CAAC,qQAKR,wBAAyB,CAAEH,MAAO,wBAAyBM,aAAc,yBAA0BH,OAAQ,CAAC,+BAAgC,gCAAiC,kCAAoC,qCAAsC,CAAEH,MAAO,qCAAsCM,aAAc,sCAAuCH,OAAQ,CAAC,4CAA6C,6CAA8C,+CAAiD,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,iCAAmC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,4CAA8CJ,OAAQ,CAAC,oBAAsB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,yBAA2B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,qBAAuBM,SAAU,CAAET,MAAO,WAAYG,OAAQ,CAAC,cAAgB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,8BAAgC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,sBAAwB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,4FAA8F,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,6CAA+CO,IAAK,CAAEV,MAAO,MAAOG,OAAQ,CAAC,UAAY,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,kBAAoBE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,YAAc,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,yBAA2B,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,mDAAqD,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,8CAAgD,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,0CAA4C,iBAAkB,CAAEH,MAAO,iBAAkBM,aAAc,qBAAsBH,OAAQ,CAAC,sBAAuB,0BAA2B,4BAA8B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,uBAAyB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,qBAAuB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,mBAAqB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,0BAA4B,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,mCAAqC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,8EAAoF,CAAER,OAAQ,SAAUC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,oFAAqF,eAAgB,4BAA6BsnD,SAAU,SAAU,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGv1GC,OAAQ,CAAC,8RAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,iCAAmC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,gCAAkCJ,OAAQ,CAAC,sBAAwB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,0BAA4BC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,YAAc,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,qBAAuB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,8BAAgCE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,YAAc,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,uBAA6B,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,wBAAyB,gBAAiB,+EAAgF,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,2CAG9jCC,OAAQ,CAAC,uRAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,iCAAmC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,gCAAkCJ,OAAQ,CAAC,oBAAsB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,yBAA2BC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,WAAa,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,qBAAuB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,8BAAgCE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,YAAc,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,uBAA6B,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,2EAA4E,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGvjCC,OAAQ,CAAC,oRAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,8EAA+E,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG98BC,OAAQ,CAAC,uRAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,gFAAiF,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGh9BC,OAAQ,CAAC,yRAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,wFAAyF,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGx9BC,OAAQ,CAAC,iSAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,6EAA8E,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG78BC,OAAQ,CAAC,sRAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,+EAAgF,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG/8BC,OAAQ,CAAC,wRAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,8EAA+E,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG98BC,OAAQ,CAAC,uRAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,4EAA6E,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,yEAI58BC,OAAQ,CAAC,qRAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,iCAAmC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,gCAAkCJ,OAAQ,CAAC,sBAAwB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,0BAA4BC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,YAAc,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,wBAA0B,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,8BAAgCE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,aAAe,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,wBAA8B,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,+EAAgF,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGpkCC,OAAQ,CAAC,wRAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,4EAA6E,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG58BC,OAAQ,CAAC,qRAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,0EAA2E,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG18BC,OAAQ,CAAC,mRAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,iFAAkF,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGj9BC,OAAQ,CAAC,0RAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,8EAA+E,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG98BC,OAAQ,CAAC,uRAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,iFAAkF,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGj9BC,OAAQ,CAAC,0RAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,6EAA8E,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG78BC,OAAQ,CAAC,sRAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,mBAAoB,gBAAiB,8EAA+E,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,oDAIj6BC,OAAQ,CAAC,0OAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,8BAAgC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,gCAAkCJ,OAAQ,CAAC,uBAAyB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,uBAAyBC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,SAAW,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,0BAA4B,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,kCAAoCE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,WAAa,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,wBAA8B,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,oDAAqD,gBAAiB,+DAAgE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,uEAG9hCC,OAAQ,CAAC,yPAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,oCAAsC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,gCAAkCJ,OAAQ,CAAC,uBAAyB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,iCAAmCC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,WAAa,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,qBAAuB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,uCAAyCE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,cAAgB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,wBAA8B,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,wBAAyB,gBAAiB,gEAAiE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,+BAAiCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,2CAGvhCC,OAAQ,CAAC,6NAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,yBAA2B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,gCAAkCJ,OAAQ,CAAC,eAAiB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,oBAAsBC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,eAAiB,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,iCAAmC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,0BAA4BE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,aAAe,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,yBAA+B,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,6CAA8C,gBAAiB,6EAA8E,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,gEAGniCC,OAAQ,CAAC,mQAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,gCAAkC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,gCAAkCJ,OAAQ,CAAC,oBAAsB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,6BAA+BC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,UAAY,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,uBAAyB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,qCAAuCE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,gBAAkB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,0BAAgC,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,gEAAiE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGjhCC,OAAQ,CAAC,+NAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,qBAAsB,gBAAiB,+DAAgE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,mFAAqFC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,oFAKj8BC,OAAQ,CAAC,6QAKR,wBAAyB,CAAEH,MAAO,wBAAyBM,aAAc,yBAA0BH,OAAQ,CAAC,6BAA8B,8BAA+B,gCAAkC,qCAAsC,CAAEH,MAAO,qCAAsCM,aAAc,sCAAuCH,OAAQ,CAAC,4CAA6C,6CAA8C,+CAAiD,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,iCAAmC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,4CAA8CJ,OAAQ,CAAC,mBAAqB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,gCAAkCK,OAAQ,CAAER,MAAO,SAAUG,OAAQ,CAAC,YAAc,8BAA+B,CAAEH,MAAO,8BAA+BG,OAAQ,CAAC,gCAAkC,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,uBAAyBM,SAAU,CAAET,MAAO,WAAYG,OAAQ,CAAC,cAAgB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,gCAAkC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,sBAAwB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,0FAA4F,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,kDAAoDO,IAAK,CAAEV,MAAO,MAAOG,OAAQ,CAAC,YAAc,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,qBAAuBE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,aAAe,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,sBAAwB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,2CAA6C,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,6CAA+C,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,4CAA8C,iBAAkB,CAAEH,MAAO,iBAAkBM,aAAc,qBAAsBH,OAAQ,CAAC,qBAAsB,2BAA4B,6BAA+B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,oBAAsB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,YAAc,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,gCAAkC,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,kCAAoC,iGAAkG,CAAEH,MAAO,iGAAkGG,OAAQ,CAAC,qHAAuH,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,8CAAgD,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,uFAA6F,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,yEAA0E,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,6FAA+FC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG52HC,OAAQ,CAAC,qSAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,iDAAkD,gBAAiB,iEAAkE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,0JAK56BC,OAAQ,CAAC,wPAKR,wBAAyB,CAAEH,MAAO,wBAAyBM,aAAc,yBAA0BH,OAAQ,CAAC,gCAAiC,mCAAqC,qCAAsC,CAAEH,MAAO,qCAAsCM,aAAc,sCAAuCH,OAAQ,CAAC,6CAA8C,gDAAkD,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,8BAAgC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,4CAA8CJ,OAAQ,CAAC,iBAAmB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,wBAA0B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,oBAAsBM,SAAU,CAAET,MAAO,WAAYG,OAAQ,CAAC,cAAgB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,iCAAmC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,sBAAwB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,6FAA+F,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,4CAA8CO,IAAK,CAAEV,MAAO,MAAOG,OAAQ,CAAC,SAAW,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,iBAAmBE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,WAAa,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,0BAA4B,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,wCAA0C,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,8CAAgD,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,yCAA2C,iBAAkB,CAAEH,MAAO,iBAAkBM,aAAc,qBAAsBH,OAAQ,CAAC,sBAAuB,6BAA+B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,uBAAyB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,oBAAsB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,qBAAuB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,sBAAwB,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,mCAAqC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,kFAAwF,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,+DAAgE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,8HAAgIC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG1vGC,OAAQ,CAAC,4TAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,yEAA0E,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGl6BC,OAAQ,CAAC,2OAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,iEAAkE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,wGAA0GC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG59BC,OAAQ,CAAC,wSAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,MAAOC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,uEAAwE,eAAgB,4BAA6BsnD,SAAU,MAAO,eAAgB,oFAAsFC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGh9BC,OAAQ,CAAC,2RAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,kEAAmE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGr5BC,OAAQ,CAAC,iOAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,kBAAmB,gBAAiB,+EAAgF,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,mFAIj6BC,OAAQ,CAAC,0OAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,2BAA6B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,gCAAkCJ,OAAQ,CAAC,qBAAuB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,4BAA8BC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,cAAgB,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,6BAA+B,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,2BAA6BE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,kBAAoB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,0BAAgC,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,iEAAkE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG/gCC,OAAQ,CAAC,gOAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,oEAAqE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGv5BC,OAAQ,CAAC,mOAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,oCAAqC,gBAAiB,mEAAoE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,+HAK15BC,OAAQ,CAAC,sOAKR,wBAAyB,CAAEH,MAAO,wBAAyBM,aAAc,yBAA0BH,OAAQ,CAAC,8BAAgC,qCAAsC,CAAEH,MAAO,qCAAsCM,aAAc,sCAAuCH,OAAQ,CAAC,8CAAgD,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,4BAA8B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,4CAA8CJ,OAAQ,CAAC,mBAAqB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,0BAA4B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,sBAAwBM,SAAU,CAAET,MAAO,WAAYG,OAAQ,CAAC,cAAgB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,qCAAuC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,mBAAqB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,kFAAoF,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,+CAAiDO,IAAK,CAAEV,MAAO,MAAOG,OAAQ,CAAC,SAAW,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,eAAiBE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,WAAa,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,qBAAuB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,8BAAgC,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,gCAAkC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,4BAA8B,iBAAkB,CAAEH,MAAO,iBAAkBM,aAAc,qBAAsBH,OAAQ,CAAC,0BAA4B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,2BAA6B,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,wBAA0B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,kBAAoB,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,8CAAgD,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,8FAAoG,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,6DAA8D,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGh8FC,OAAQ,CAAC,qNAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yCAA0C,gBAAiB,kEAAmE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,sDAAwDC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4DAG37BC,OAAQ,CAAC,uQAKR,wBAAyB,CAAEH,MAAO,wBAAyBM,aAAc,yBAA0BH,OAAQ,CAAC,yBAA0B,4BAA8B,qCAAsC,CAAEH,MAAO,qCAAsCM,aAAc,sCAAuCH,OAAQ,CAAC,qCAAsC,wCAA0C,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,6BAA+B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,4CAA8CJ,OAAQ,CAAC,iBAAmB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,2BAA6B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,2BAA6BM,SAAU,CAAET,MAAO,WAAYG,OAAQ,CAAC,gBAAkB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,4BAA8B,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,0BAA4B,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,+FAAiG,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,0CAA4CO,IAAK,CAAEV,MAAO,MAAOG,OAAQ,CAAC,SAAW,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,cAAgBE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,UAAY,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,qBAAuB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,mBAAqB,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,qCAAuC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,4BAA8B,iBAAkB,CAAEH,MAAO,iBAAkBM,aAAc,qBAAsBH,OAAQ,CAAC,sBAAuB,yBAA2B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,iBAAmB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,yBAA2B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,oBAAsB,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,0CAA4C,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,2FAAiG,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,iBAAkB,gBAAiB,gEAAiE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,kGAK9iGC,OAAQ,CAAC,8PAKR,wBAAyB,CAAEH,MAAO,wBAAyBM,aAAc,yBAA0BH,OAAQ,CAAC,4BAA6B,4BAA6B,8BAAgC,qCAAsC,CAAEH,MAAO,qCAAsCM,aAAc,sCAAuCH,OAAQ,CAAC,yCAA0C,yCAA0C,2CAA6C,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,iCAAmC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,4CAA8CJ,OAAQ,CAAC,qBAAuB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,6BAA+B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,0BAA4BM,SAAU,CAAET,MAAO,WAAYG,OAAQ,CAAC,aAAe,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,+BAAiC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,uBAAyB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,2FAA6F,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,gCAAkCO,IAAK,CAAEV,MAAO,MAAOG,OAAQ,CAAC,UAAY,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,mBAAqBE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,UAAY,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,uBAAyB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,+BAAiC,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,qCAAuC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,iCAAmC,iBAAkB,CAAEH,MAAO,iBAAkBM,aAAc,qBAAsBH,OAAQ,CAAC,oBAAqB,qBAAsB,uBAAyB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,2BAA6B,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,2BAA6B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,kBAAoB,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,+BAAiC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,yEAA+E,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,2EAA4E,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,uEAAyEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG1qGC,OAAQ,CAAC,oRAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,aAAc,gBAAiB,4EAA6E,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,2CAIl5BC,OAAQ,CAAC,2NAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,mBAAqB,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,gCAAkCJ,OAAQ,CAAC,cAAgB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,SAAWC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,OAAS,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,iBAAmB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,WAAaE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,UAAY,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,oBAA0B,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,iEAAkE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,8BAAgCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG17BC,OAAQ,CAAC,8NAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,8EAA+E,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,8BAAgCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGr6BC,OAAQ,CAAC,8OAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,MAAOC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,gBAAiB,gBAAiB,gEAAiE,eAAgB,4BAA6BsnD,SAAU,MAAO,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,mCAG54BC,OAAQ,CAAC,uNAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,oCAAsC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,gCAAkCJ,OAAQ,CAAC,wBAA0B,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,iCAAmCC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,QAAU,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,iBAAmB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,gCAAkCE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,WAAa,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,sBAA4B,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,+DAAgE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,8BAAgCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGpgCC,OAAQ,CAAC,4NAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,8DAA+D,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG14BC,OAAQ,CAAC,sNAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,gEAAiE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,+BAAiCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGl5BC,OAAQ,CAAC,8NAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,oBAAqB,gBAAiB,+DAAgE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,uGAKt4BC,OAAQ,CAAC,kNAKR,wBAAyB,CAAEH,MAAO,wBAAyBM,aAAc,yBAA0BH,OAAQ,CAAC,sBAAwB,qCAAsC,CAAEH,MAAO,qCAAsCM,aAAc,sCAAuCH,OAAQ,CAAC,kCAAoC,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,iBAAmB,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,4CAA8CJ,OAAQ,CAAC,cAAgB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,SAAW,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,WAAaM,SAAU,CAAET,MAAO,WAAYG,OAAQ,CAAC,OAAS,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,aAAe,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,UAAY,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,2CAA6C,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,kBAAoBO,IAAK,CAAEV,MAAO,MAAOG,OAAQ,CAAC,WAAa,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,SAAWE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,UAAY,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,aAAe,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,eAAiB,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,aAAe,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,eAAiB,iBAAkB,CAAEH,MAAO,iBAAkBM,aAAc,qBAAsBH,OAAQ,CAAC,qBAAuB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,eAAiB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,YAAc,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,WAAa,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,YAAc,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,qBAAuB,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,6CAAmD,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,8DAA+D,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGxrFC,OAAQ,CAAC,6NAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,sEAAuE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGz5BC,OAAQ,CAAC,qOAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,4DAA6D,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGx4BC,OAAQ,CAAC,oNAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,kFAAmF,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,mKAAqKC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG9iCC,OAAQ,CAAC,uXAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,gEAAiE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,mEAAqEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGt7BC,OAAQ,CAAC,kQAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,8CAA+C,gBAAiB,mEAAoE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,8DAAgEC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,iEAGz8BC,OAAQ,CAAC,qRAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,oCAAsC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,gCAAkCJ,OAAQ,CAAC,uBAAyB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,yBAA2BC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,WAAa,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,wBAA0B,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,gCAAkCE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,cAAgB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,6BAAmC,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,0BAA2B,gBAAiB,kEAAmE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,6CAGrhCC,OAAQ,CAAC,kOAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,4BAA8B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,gCAAkCJ,OAAQ,CAAC,kBAAoB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,yBAA2BC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,UAAY,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,sBAAwB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,mCAAqCE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,kBAAoB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,oBAA0B,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,gEAAiE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGhgCC,OAAQ,CAAC,+NAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,4EAA6E,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG95BC,OAAQ,CAAC,uOAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,gEAAiE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG54BC,OAAQ,CAAC,wNAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,uBAAwB,gBAAiB,qFAAsF,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,yFAI56BC,OAAQ,CAAC,qPAKR,wBAAyB,CAAEH,MAAO,wBAAyBM,aAAc,yBAA0BH,OAAQ,CAAC,wBAAyB,0BAA4B,qCAAsC,CAAEH,MAAO,qCAAsCM,aAAc,sCAAuCH,OAAQ,CAAC,qCAAsC,sCAAwC,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,6BAA+B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,4CAA8CJ,OAAQ,CAAC,iBAAmB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,2BAA6B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,yBAA2BM,SAAU,CAAET,MAAO,WAAYG,OAAQ,CAAC,aAAe,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,wBAA0B,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,sBAAwB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,uFAAyF,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,+BAAiCO,IAAK,CAAEV,MAAO,MAAOG,OAAQ,CAAC,OAAS,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,eAAiBE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,WAAa,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,sBAAwB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,cAAgB,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,iCAAmC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,wBAA0B,iBAAkB,CAAEH,MAAO,iBAAkBM,aAAc,qBAAsBH,OAAQ,CAAC,iBAAkB,4BAA8B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,qBAAuB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,uBAAyB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,mBAAqB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,0BAA4B,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,iCAAmC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,kEAAwE,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,+DAAgE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG9gGC,OAAQ,CAAC,8NAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,uCAAwC,gBAAiB,8DAA+D,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,0DAG/5BC,OAAQ,CAAC,2OAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,2BAA6B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,gCAAkCJ,OAAQ,CAAC,mBAAqB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,0BAA4BC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,aAAe,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,sBAAwB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,qCAAuCE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,eAAiB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,yBAA+B,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,0EAA2E,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGlhCC,OAAQ,CAAC,yOAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,sFAAuF,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG/6BC,OAAQ,CAAC,wPAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,4EAA6E,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,+BAAiCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG95BC,OAAQ,CAAC,0OAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,gBAAiB,gBAAiB,+DAAgE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,kLAAoLC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4GAK3hCC,OAAQ,CAAC,uWAKR,wBAAyB,CAAEH,MAAO,wBAAyBM,aAAc,yBAA0BH,OAAQ,CAAC,mBAAoB,4BAA6B,4BAA6B,8BAAgC,qCAAsC,CAAEH,MAAO,qCAAsCM,aAAc,sCAAuCH,OAAQ,CAAC,uCAAwC,2CAA4C,2CAA4C,6CAA+C,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,+BAAiC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,4CAA8CJ,OAAQ,CAAC,qBAAuB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,2BAA6B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,qBAAuBM,SAAU,CAAET,MAAO,WAAYG,OAAQ,CAAC,cAAgB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,iCAAmC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,sBAAwB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,uFAAyF,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,wCAA0CO,IAAK,CAAEV,MAAO,MAAOG,OAAQ,CAAC,SAAW,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,gBAAkBE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,eAAiB,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,mBAAqB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,2BAA6B,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,uCAAyC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,iCAAmC,iBAAkB,CAAEH,MAAO,iBAAkBM,aAAc,qBAAsBH,OAAQ,CAAC,eAAgB,uBAAwB,uBAAwB,yBAA2B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,qBAAuB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,wBAA0B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,iBAAmB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,qBAAuB,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,gCAAkC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,+EAAqF,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,+DAAgE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG9wGC,OAAQ,CAAC,8NAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,2DAA4D,gBAAiB,+EAAgF,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,mFAAqFC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,oGAI7/BC,OAAQ,CAAC,sUAKR,wBAAyB,CAAEH,MAAO,wBAAyBM,aAAc,yBAA0BH,OAAQ,CAAC,+BAAgC,+BAAgC,iCAAmC,qCAAsC,CAAEH,MAAO,qCAAsCM,aAAc,sCAAuCH,OAAQ,CAAC,4CAA6C,4CAA6C,8CAAgD,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,iCAAmC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,4CAA8CJ,OAAQ,CAAC,oBAAsB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,8BAAgCK,OAAQ,CAAER,MAAO,SAAUG,OAAQ,CAAC,aAAe,8BAA+B,CAAEH,MAAO,8BAA+BG,OAAQ,CAAC,gCAAkC,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,qBAAuBM,SAAU,CAAET,MAAO,WAAYG,OAAQ,CAAC,cAAgB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,6BAA+B,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,qBAAuB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,kGAAoG,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,4CAA8CO,IAAK,CAAEV,MAAO,MAAOG,OAAQ,CAAC,SAAW,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,gBAAkBE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,YAAc,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,sBAAwB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,sCAAwC,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,2CAA6C,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,sCAAwC,iBAAkB,CAAEH,MAAO,iBAAkBM,aAAc,qBAAsBH,OAAQ,CAAC,2BAA4B,2BAA4B,6BAA+B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,yBAA2B,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,oBAAsB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,oBAAsB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,uBAAyB,iGAAkG,CAAEH,MAAO,iGAAkGG,OAAQ,CAAC,8FAAgG,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,uCAAyC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,sFAA4F,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,sCAAuC,gBAAiB,iFAAkF,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,mFAAqFC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,yDAGl0HC,OAAQ,CAAC,mTAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,gCAAkC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,gCAAkCJ,OAAQ,CAAC,kBAAoB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,wBAA0BC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,cAAgB,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,oBAAsB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,4BAA8BE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,YAAc,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,yBAA+B,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,qDAAsD,gBAAiB,iEAAkE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,yEAA2EC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,wEAGnkCC,OAAQ,CAAC,qSAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,6BAA+B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,gCAAkCJ,OAAQ,CAAC,iBAAmB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,0BAA4BC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,WAAa,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,wBAA0B,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,6BAA+BE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,iBAAmB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,wBAA8B,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,kBAAmB,gBAAiB,gEAAiE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,0KAA4KC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4HAKpoCC,OAAQ,CAAC,kWAKR,wBAAyB,CAAEH,MAAO,wBAAyBM,aAAc,yBAA0BH,OAAQ,CAAC,yBAA0B,0BAA2B,0BAA2B,4BAA8B,qCAAsC,CAAEH,MAAO,qCAAsCM,aAAc,sCAAuCH,OAAQ,CAAC,qCAAsC,sCAAuC,sCAAuC,wCAA0C,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,8BAAgC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,4CAA8CJ,OAAQ,CAAC,oBAAsB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,8BAAgCC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,aAAe,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,sBAAwBM,SAAU,CAAET,MAAO,WAAYG,OAAQ,CAAC,eAAiB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,+BAAiC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,mBAAqB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,oFAAsF,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,yCAA2C,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,iBAAmBE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,mBAAqB,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,6BAA+B,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,0BAA4B,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,mCAAqC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,4BAA8B,iBAAkB,CAAEH,MAAO,iBAAkBM,aAAc,qBAAsBH,OAAQ,CAAC,kBAAmB,2BAA4B,4BAA6B,8BAAgC,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,uBAAyB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,sBAAwB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,oBAAsB,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,qCAAuC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,qFAA2F,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,4EAA6E,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,0KAA4KC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG/2GC,OAAQ,CAAC,wXAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,kEAAmE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGr5BC,OAAQ,CAAC,iOAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,gEAAiE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGn5BC,OAAQ,CAAC,+NAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,+EAAgF,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGx6BC,OAAQ,CAAC,iPAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,6EAA8E,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,2GAA6GC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGj/BC,OAAQ,CAAC,0TAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,0BAA2B,gBAAiB,kEAAmE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,oFAAsFC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,6CAG18BC,OAAQ,CAAC,sRAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,wBAA0B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,gCAAkCJ,OAAQ,CAAC,cAAgB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,oBAAsBC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,UAAY,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,wBAA0B,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,yBAA2BE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,cAAgB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,wBAA8B,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,gFAAiF,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,oFAAsFC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGrjCC,OAAQ,CAAC,sSAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,iEAAkE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGp5BC,OAAQ,CAAC,gOAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,mBAAoB,gBAAiB,gEAAiE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,0GAA4GC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,qFAIv9BC,OAAQ,CAAC,mSAKR,wBAAyB,CAAEH,MAAO,wBAAyBM,aAAc,yBAA0BH,OAAQ,CAAC,wBAAyB,yBAA0B,2BAA6B,qCAAsC,CAAEH,MAAO,qCAAsCM,aAAc,sCAAuCH,OAAQ,CAAC,oCAAqC,qCAAsC,uCAAyC,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,mCAAqC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,4CAA8CJ,OAAQ,CAAC,qBAAuB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,kCAAoC,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,uBAAyBM,SAAU,CAAET,MAAO,WAAYG,OAAQ,CAAC,YAAc,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,+BAAiC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,sBAAwB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,yEAA2E,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,sCAAwCO,IAAK,CAAEV,MAAO,MAAOG,OAAQ,CAAC,SAAW,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,iBAAmBE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,cAAgB,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,mBAAqB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,qCAAuC,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,kCAAoC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,6BAA+B,iBAAkB,CAAEH,MAAO,iBAAkBM,aAAc,qBAAsBH,OAAQ,CAAC,qBAAsB,yBAA0B,6BAA+B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,uBAAyB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,0BAA4B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,oBAAsB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,uBAAyB,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,qCAAuC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,2EAAiF,CAAER,OAAQ,WAAYC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,8EAA+E,eAAgB,4BAA6BsnD,SAAU,WAAY,eAAgB,0GAA4GC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGlxGC,OAAQ,CAAC,6TAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,uBAAwB,gBAAiB,gEAAiE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,gEAIj5BC,OAAQ,CAAC,6NAKR,wBAAyB,CAAEH,MAAO,wBAAyBM,aAAc,yBAA0BH,OAAQ,CAAC,sBAAuB,0BAA4B,qCAAsC,CAAEH,MAAO,qCAAsCM,aAAc,sCAAuCH,OAAQ,CAAC,kCAAmC,sCAAwC,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,gCAAkC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,4CAA8CJ,OAAQ,CAAC,oBAAsB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,wBAA0BK,OAAQ,CAAER,MAAO,SAAUG,OAAQ,CAAC,WAAa,8BAA+B,CAAEH,MAAO,8BAA+BG,OAAQ,CAAC,4BAA8B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,yBAA2BM,SAAU,CAAET,MAAO,WAAYG,OAAQ,CAAC,aAAe,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,+BAAiC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,sBAAwB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,kGAAoG,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,gCAAkCO,IAAK,CAAEV,MAAO,MAAOG,OAAQ,CAAC,OAAS,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,eAAiBE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,WAAa,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,yBAA2B,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,4BAA8B,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,+BAAiC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,wBAA0B,iBAAkB,CAAEH,MAAO,iBAAkBM,aAAc,qBAAsBH,OAAQ,CAAC,uBAAwB,6BAA+B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,kBAAoB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,0BAA4B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,oBAAsB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,wBAA0B,iGAAkG,CAAEH,MAAO,iGAAkGG,OAAQ,CAAC,iFAAmF,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,iCAAmC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,wEAA8E,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,gEAAiE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGngHC,OAAQ,CAAC,+NAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,8DAA+D,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGj5BC,OAAQ,CAAC,6NAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,6EAA8E,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGt6BC,OAAQ,CAAC,+OAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,6DAA8D,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGz4BC,OAAQ,CAAC,qNAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,oDAAqD,gBAAiB,2EAA4E,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,uEAGx7BC,OAAQ,CAAC,iQAKR,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,8BAAgC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,gCAAkCJ,OAAQ,CAAC,oBAAsB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,yBAA2BC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,UAAY,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,qBAAuB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,2BAA6BE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,iBAAmB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,oBAA0B,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,gEAAiE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG1/BC,OAAQ,CAAC,+NAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yCAA0C,gBAAiB,gEAAiE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,+BAAiCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,kFAIl6BC,OAAQ,CAAC,8OAKR,wBAAyB,CAAEH,MAAO,wBAAyBM,aAAc,yBAA0BH,OAAQ,CAAC,8BAA+B,gCAAkC,qCAAsC,CAAEH,MAAO,qCAAsCM,aAAc,sCAAuCH,OAAQ,CAAC,mDAAoD,qDAAuD,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,2BAA6B,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,4CAA8CJ,OAAQ,CAAC,iBAAmB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,yBAA2BK,OAAQ,CAAER,MAAO,SAAUG,OAAQ,CAAC,UAAY,8BAA+B,CAAEH,MAAO,8BAA+BG,OAAQ,CAAC,wBAA0B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,yBAA2BM,SAAU,CAAET,MAAO,WAAYG,OAAQ,CAAC,WAAa,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,yBAA2B,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,mBAAqB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,0EAA4E,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,uCAAyCO,IAAK,CAAEV,MAAO,MAAOG,OAAQ,CAAC,SAAW,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,eAAiBE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,iBAAmB,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,uBAAyB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,0BAA4B,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,+BAAiC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,2BAA6B,iBAAkB,CAAEH,MAAO,iBAAkBM,aAAc,qBAAsBH,OAAQ,CAAC,kBAAmB,yBAA2B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,qBAAuB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,yBAA2B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,oBAAsB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,uBAAyB,iGAAkG,CAAEH,MAAO,iGAAkGG,OAAQ,CAAC,mFAAqF,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,yCAA2C,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,qEAA2E,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,+DAAgE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG9gHC,OAAQ,CAAC,8NAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,2CAA4C,gBAAiB,kEAAmE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,8PAAgQC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,oFAIroCC,OAAQ,CAAC,idAKR,wBAAyB,CAAEH,MAAO,wBAAyBM,aAAc,yBAA0BH,OAAQ,CAAC,2BAA4B,4BAA6B,6BAA8B,+BAAiC,qCAAsC,CAAEH,MAAO,qCAAsCM,aAAc,sCAAuCH,OAAQ,CAAC,gDAAiD,iDAAkD,kDAAmD,oDAAsD,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,gCAAkC,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,4CAA8CJ,OAAQ,CAAC,sBAAwB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,6BAA+BK,OAAQ,CAAER,MAAO,SAAUG,OAAQ,CAAC,cAAgB,8BAA+B,CAAEH,MAAO,8BAA+BG,OAAQ,CAAC,gCAAkC,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,2BAA6BM,SAAU,CAAET,MAAO,WAAYG,OAAQ,CAAC,eAAiB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,8BAAgC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,oBAAsB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,+FAAiG,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,kCAAoCO,IAAK,CAAEV,MAAO,MAAOG,OAAQ,CAAC,SAAW,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,gBAAkBE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,gBAAkB,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,wBAA0B,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,gBAAkB,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,+BAAiC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,4BAA8B,iBAAkB,CAAEH,MAAO,iBAAkBM,aAAc,qBAAsBH,OAAQ,CAAC,kBAAmB,2BAA4B,4BAA6B,8BAAgC,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,qBAAuB,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,2BAA6B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,sBAAwB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,wBAA0B,iGAAkG,CAAEH,MAAO,iGAAkGG,OAAQ,CAAC,8GAAgH,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,wBAA0B,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,kFAAwF,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,2EAA4E,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,gCAAkCC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAGh0HC,OAAQ,CAAC,6OAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,yBAA0B,gBAAiB,8DAA+D,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,4CAG14BC,OAAQ,CAAC,sNAKR,0BAA2B,CAAEH,MAAO,0BAA2BG,OAAQ,CAAC,KAAO,2CAA4C,CAAEH,MAAO,2CAA4CG,OAAQ,CAAC,KAAO,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,KAAO,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,KAAOC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,KAAO,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,KAAO,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,KAAOE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,SAAe,CAAER,OAAQ,KAAMC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,uBAAwB,gBAAiB,mEAAoE,eAAgB,4BAA6BsnD,SAAU,KAAM,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,yFAI74BC,OAAQ,CAAC,yNAKR,wBAAyB,CAAEH,MAAO,wBAAyBM,aAAc,yBAA0BH,OAAQ,CAAC,6BAA+B,qCAAsC,CAAEH,MAAO,qCAAsCM,aAAc,sCAAuCH,OAAQ,CAAC,wCAA0C,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,sBAAwB,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,4CAA8CJ,OAAQ,CAAC,mBAAqB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,yBAA2B,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,gBAAkBM,SAAU,CAAET,MAAO,WAAYG,OAAQ,CAAC,aAAe,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,8BAAgC,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,uBAAyB,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,uFAAyF,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,yCAA2CO,IAAK,CAAEV,MAAO,MAAOG,OAAQ,CAAC,YAAc,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,kBAAoBE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,gBAAkB,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,kBAAoB,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,6BAA+B,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,mCAAqC,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,gCAAkC,iBAAkB,CAAEH,MAAO,iBAAkBM,aAAc,qBAAsBH,OAAQ,CAAC,2BAA6B,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,wBAA0B,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,iBAAmB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,oBAAsB,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,iBAAmB,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,8BAAgC,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,uEAA6E,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,oBAAqB,gBAAiB,2EAA4E,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,sFAIj+FC,OAAQ,CAAC,iOAKR,wBAAyB,CAAEH,MAAO,wBAAyBM,aAAc,yBAA0BH,OAAQ,CAAC,gBAAkB,qCAAsC,CAAEH,MAAO,qCAAsCM,aAAc,sCAAuCH,OAAQ,CAAC,+BAAiC,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,mBAAqB,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,4CAA8CJ,OAAQ,CAAC,cAAgB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,SAAWC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,OAAS,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,SAAWM,SAAU,CAAET,MAAO,WAAYG,OAAQ,CAAC,OAAS,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,WAAa,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,UAAY,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,+BAAiC,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,eAAiB,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,QAAUE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,QAAU,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,SAAW,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,aAAe,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,cAAgB,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,aAAe,iBAAkB,CAAEH,MAAO,iBAAkBM,aAAc,qBAAsBH,OAAQ,CAAC,iBAAmB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,WAAa,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,SAAW,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,SAAW,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,cAAgB,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,qBAA2B,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,mBAAoB,gBAAiB,+EAAgF,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,qFAIxiFC,OAAQ,CAAC,oOAKR,wBAAyB,CAAEH,MAAO,wBAAyBM,aAAc,yBAA0BH,OAAQ,CAAC,kBAAoB,qCAAsC,CAAEH,MAAO,qCAAsCM,aAAc,sCAAuCH,OAAQ,CAAC,+BAAiC,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,mBAAqB,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,4CAA8CJ,OAAQ,CAAC,cAAgB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,SAAWC,IAAK,CAAEJ,MAAO,MAAOG,OAAQ,CAAC,OAAS,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,SAAWM,SAAU,CAAET,MAAO,WAAYG,OAAQ,CAAC,OAAS,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,WAAa,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,SAAW,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,6BAA+B,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,aAAe,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,SAAWE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,QAAU,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,SAAW,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,aAAe,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,aAAe,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,YAAc,iBAAkB,CAAEH,MAAO,iBAAkBM,aAAc,qBAAsBH,OAAQ,CAAC,mBAAqB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,SAAW,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,UAAY,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,SAAW,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,cAAgB,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,8BAAoC,CAAER,OAAQ,QAASC,KAAM,CAAEC,QAAS,QAASrnD,QAAS,CAAE,kBAAmB,iCAAkC,gBAAiB,4EAA6E,eAAgB,4BAA6BsnD,SAAU,QAAS,eAAgB,yBAA2BC,aAAc,CAAE,GAAI,CAAE,GAAI,CAAEC,MAAO,GAAIC,SAAU,CAAEC,WAAY,0EAIzjFC,OAAQ,CAAC,+OAKR,wBAAyB,CAAEH,MAAO,wBAAyBM,aAAc,yBAA0BH,OAAQ,CAAC,kBAAoB,qCAAsC,CAAEH,MAAO,qCAAsCM,aAAc,sCAAuCH,OAAQ,CAAC,+BAAiC,yBAA0B,CAAEH,MAAO,yBAA0BG,OAAQ,CAAC,mBAAqB,cAAe,CAAEH,MAAO,cAAeC,SAAU,CAAEM,UAAW,4CAA8CJ,OAAQ,CAAC,cAAgB,qBAAsB,CAAEH,MAAO,qBAAsBG,OAAQ,CAAC,SAAWK,OAAQ,CAAER,MAAO,SAAUG,OAAQ,CAAC,OAAS,8BAA+B,CAAEH,MAAO,8BAA+BG,OAAQ,CAAC,WAAa,iBAAkB,CAAEH,MAAO,iBAAkBG,OAAQ,CAAC,SAAWM,SAAU,CAAET,MAAO,WAAYG,OAAQ,CAAC,OAAS,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,WAAa,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,SAAW,qFAAsF,CAAEH,MAAO,qFAAsFG,OAAQ,CAAC,6BAA+B,6BAA8B,CAAEH,MAAO,6BAA8BG,OAAQ,CAAC,aAAeO,IAAK,CAAEV,MAAO,MAAOG,OAAQ,CAAC,OAAS,cAAe,CAAEH,MAAO,cAAeG,OAAQ,CAAC,QAAUE,OAAQ,CAAEL,MAAO,SAAUG,OAAQ,CAAC,QAAU,gBAAiB,CAAEH,MAAO,gBAAiBG,OAAQ,CAAC,SAAW,wBAAyB,CAAEH,MAAO,wBAAyBG,OAAQ,CAAC,aAAe,4BAA6B,CAAEH,MAAO,4BAA6BG,OAAQ,CAAC,aAAe,uBAAwB,CAAEH,MAAO,uBAAwBG,OAAQ,CAAC,YAAc,iBAAkB,CAAEH,MAAO,iBAAkBM,aAAc,qBAAsBH,OAAQ,CAAC,kBAAoB,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,SAAW,mBAAoB,CAAEH,MAAO,mBAAoBG,OAAQ,CAAC,UAAY,eAAgB,CAAEH,MAAO,eAAgBG,OAAQ,CAAC,SAAW,kBAAmB,CAAEH,MAAO,kBAAmBG,OAAQ,CAAC,SAAW,iGAAkG,CAAEH,MAAO,iGAAkGG,OAAQ,CAAC,6BAA+B,mCAAoC,CAAEH,MAAO,mCAAoCG,OAAQ,CAAC,cAAgB,oEAAqE,CAAEH,MAAO,oEAAqEG,OAAQ,CAAC,+BAAoC1nF,KAAK9M,GAAMoiF,GAAE4S,eAAeh1F,EAAEg0F,OAAQh0F,EAAEi0F,QACjrF,MAAMtoE,GAAIy2D,GAAE/pD,QAAS48D,GAAKtpE,GAAEupE,SAASjmF,KAAK0c,IAAIouD,GAAIpuD,GAAEwpE,QAAQlmF,KAAK0c,IAAIypE,GAAK,KAAE76E,OAAO,CACjFxe,KAAM,eACNwZ,WAAY,CACVs/E,OAAQnB,GACR/3C,eAAgB,IAChBC,UAAW,IACX6K,SAAU,IACVpnB,iBAAkB,IAClBzF,cAAe,IACfy7D,KAAMxB,GACNyB,OAAQxB,IAEVp2E,MAAO,CACL5S,OAAQ,CACNlF,KAAMjJ,MACNghB,QAAS,MAEX43E,SAAU,CACR3vF,KAAMwT,QACNuE,SAAS,GAEX63E,SAAU,CACR5vF,KAAMwT,QACNuE,SAAS,GAEXwtB,YAAa,CACXvlC,KAAM,KACN+X,aAAS,GAKXm/D,QAAS,CACPl3E,KAAMjJ,MACNghB,QAAS,IAAM,IAEjBghC,oBAAqB,CACnB/4C,KAAMjJ,MACNghB,QAAS,IAAM,KAGnB9d,KAAI,KACK,CACL41F,SAAU1b,GAAE,OACZ2b,YAAa3b,GAAE,kBACf4b,YAAa5b,GAAE,gBACf6b,cAAe7b,GAAE,mBACjB8b,eAAgB,wBAAwBvlE,KAAKu4B,SAASpmD,SAAS,IAAIvG,MAAM,KACzE45F,IAAK,KACLC,SAAU,GACVC,mBAAoB,GACpBC,cAAepV,OAGnB9mD,SAAU,CACR,cAAAm8D,GACE,OAAOn7F,KAAKk7F,cAAc/lF,MAAM5C,MAAQ,CAC1C,EACA,iBAAA6oF,GACE,OAAOp7F,KAAKk7F,cAAc/lF,MAAMs0D,UAAY,CAC9C,EACA,QAAAA,GACE,OAAOl0C,KAAKm0B,MAAM1pD,KAAKo7F,kBAAoBp7F,KAAKm7F,eAAiB,MAAQ,CAC3E,EACA,KAAAnoE,GACE,OAAOhzB,KAAKk7F,cAAcloE,KAC5B,EACA,UAAAqoE,GACE,OAAmE,IAA5Dr7F,KAAKgzB,OAAOlhB,QAAQ7M,GAAMA,EAAEkE,SAAWwW,EAAEqyC,SAAQtwD,MAC1D,EACA,WAAA45F,GACE,OAAOt7F,KAAKgzB,OAAOtxB,OAAS,CAC9B,EACA,YAAA65F,GACE,OAAuE,IAAhEv7F,KAAKgzB,OAAOlhB,QAAQ7M,GAAMA,EAAEkE,SAAWwW,EAAEs2E,aAAYv0F,MAC9D,EACA,QAAAuzF,GACE,OAAOj1F,KAAKk7F,cAAc/lF,MAAMhM,SAAW09E,GAAEsQ,MAC/C,EAEA,UAAAqE,GACE,IAAKx7F,KAAKs7F,YACR,OAAOt7F,KAAK06F,QAChB,GAEFx1D,MAAO,CACL,WAAAkL,CAAYnrC,GACVjF,KAAKy7F,eAAex2F,EACtB,EACA,cAAAk2F,CAAel2F,GACbjF,KAAK+6F,IAAM,EAAE,CAAEv5D,IAAK,EAAGlM,IAAKrwB,IAAMjF,KAAK07F,cACzC,EACA,iBAAAN,CAAkBn2F,GAChBjF,KAAK+6F,KAAKvxB,SAASvkE,GAAIjF,KAAK07F,cAC9B,EACA,QAAAzG,CAAShwF,GACPA,EAAIjF,KAAKg8B,MAAM,SAAUh8B,KAAKgzB,OAAShzB,KAAKg8B,MAAM,UAAWh8B,KAAKgzB,MACpE,GAEF,WAAA4M,GACE5/B,KAAKowC,aAAepwC,KAAKy7F,eAAez7F,KAAKowC,aAAcpwC,KAAKk7F,cAAcnD,YAAY/3F,KAAK27F,oBAAqB9yB,EAAExjC,MAAM,2BAC9H,EACAjF,QAAS,CAIP,OAAAqa,GACEz6C,KAAKw8C,MAAMzhC,MAAM3R,OACnB,EAIA,YAAMwyF,GACJ,IAAI32F,EAAI,IAAIjF,KAAKw8C,MAAMzhC,MAAM7K,OAC7B,GAAI2rF,GAAG52F,EAAGjF,KAAK+hF,SAAU,CACvB,MAAMtoB,EAAIx0D,EAAE6M,QAAQ0lB,GAAMx3B,KAAK+hF,QAAQl9C,MAAMrjC,GAAMA,EAAE8uC,WAAa9Y,EAAEx2B,SAAO8Q,OAAOuM,SAAUqhB,EAAIz6B,EAAE6M,QAAQ0lB,IAAOiiC,EAAEpzD,SAASmxB,KAC5H,IACE,MAAQuW,SAAUvW,EAAGgZ,QAAShvC,SAAYs6F,GAAG97F,KAAKowC,YAAYE,SAAUmpB,EAAGz5D,KAAK+hF,SAChF98E,EAAI,IAAIy6B,KAAMlI,KAAMh2B,EACtB,CAAE,MAEA,YADA,QAAEw9E,GAAE,oBAEN,CACF,CACA/5E,EAAEiM,SAASuoD,IACT,MAAMjiC,GAAKx3B,KAAK4jD,qBAAuB,IAAI/e,MAAMrjC,GAAMi4D,EAAEz4D,KAAKqF,SAAS7E,KACvEg2B,GAAI,QAAEwnD,GAAE,IAAIxnD,0CAA4Cx3B,KAAKk7F,cAAcljD,OAAOyhB,EAAEz4D,KAAMy4D,GAAGthD,OAAM,QACjG,IACAnY,KAAKw8C,MAAMu/C,KAAK3tD,OACtB,EAIA,QAAAkF,GACEtzC,KAAKk7F,cAAcloE,MAAM9hB,SAASjM,IAChCA,EAAEu5B,QAAQ,IACRx+B,KAAKw8C,MAAMu/C,KAAK3tD,OACtB,EACA,YAAAstD,GACE,GAAI17F,KAAKi1F,SAEP,YADAj1F,KAAKg7F,SAAWhc,GAAE,WAGpB,MAAM/5E,EAAIswB,KAAKm0B,MAAM1pD,KAAK+6F,IAAIlxB,YAC9B,GAAI5kE,IAAM,IAIV,GAAIA,EAAI,GACNjF,KAAKg7F,SAAWhc,GAAE,2BAGpB,GAAI/5E,EAAI,GAAR,CACE,MAAMw0D,EAAoB,IAAI7zD,KAAK,GACnC6zD,EAAEuiC,WAAW/2F,GACb,MAAMy6B,EAAI+5B,EAAEwiC,cAAc96F,MAAM,GAAI,IACpCnB,KAAKg7F,SAAWhc,GAAE,cAAe,CAAEvqE,KAAMirB,GAE3C,MACA1/B,KAAKg7F,SAAWhc,GAAE,yBAA0B,CAAEkd,QAASj3F,SAdrDjF,KAAKg7F,SAAWhc,GAAE,uBAetB,EACA,cAAAyc,CAAex2F,GACRjF,KAAKowC,aAIVpwC,KAAKk7F,cAAc9qD,YAAcnrC,EAAGjF,KAAKi7F,oBAAqB,QAAEh2F,IAH9D4jE,EAAExjC,MAAM,sBAIZ,EACA,kBAAAs2D,CAAmB12F,GACjBA,EAAEkE,SAAWwW,EAAEqyC,OAAShyD,KAAKg8B,MAAM,SAAU/2B,GAAKjF,KAAKg8B,MAAM,WAAY/2B,EAC3E,KA8BEk3F,GAV2BzU,GAC/B2S,IAlBO,WACP,IAAI5gC,EAAIz5D,KAAM0/B,EAAI+5B,EAAE79B,MAAMD,GAC1B,OAAO89B,EAAE79B,MAAM4f,YAAaie,EAAErpB,YAAc1Q,EAAE,OAAQ,CAAEle,IAAK,OAAQsa,YAAa,gBAAiB9Q,MAAO,CAAE,2BAA4ByuC,EAAE6hC,YAAa,wBAAyB7hC,EAAEw7B,UAAYnwE,MAAO,CAAE,wBAAyB,KAAQ,CAAC20C,EAAEwhC,oBAAsD,IAAhCxhC,EAAEwhC,mBAAmBv5F,OAAeg+B,EAAE,WAAY,CAAE5a,MAAO,CAAE01E,SAAU/gC,EAAE+gC,SAAU,4BAA6B,GAAI3vF,KAAM,aAAelI,GAAI,CAAEyG,MAAOqwD,EAAEhf,SAAWxW,YAAaw1B,EAAEv1B,GAAG,CAAC,CAAEt3B,IAAK,OAAQ/M,GAAI,WACxc,MAAO,CAAC6/B,EAAE,OAAQ,CAAE5a,MAAO,CAAE3Z,MAAO,GAAIoH,KAAM,GAAI6pF,WAAY,MAChE,EAAGn1F,OAAO,IAAO,MAAM,EAAI,aAAe,CAACwyD,EAAEv9B,GAAG,IAAMu9B,EAAEhpD,GAAGgpD,EAAE+hC,YAAc,OAAS97D,EAAE,YAAa,CAAE5a,MAAO,CAAE,YAAa20C,EAAE+hC,WAAY,aAAc/hC,EAAEihC,SAAU7vF,KAAM,aAAeo5B,YAAaw1B,EAAEv1B,GAAG,CAAC,CAAEt3B,IAAK,OAAQ/M,GAAI,WAC5N,MAAO,CAAC6/B,EAAE,OAAQ,CAAE5a,MAAO,CAAE3Z,MAAO,GAAIoH,KAAM,GAAI6pF,WAAY,MAChE,EAAGn1F,OAAO,IAAO,MAAM,EAAI,aAAe,CAACy4B,EAAE,iBAAkB,CAAE5a,MAAO,CAAE,4BAA6B,GAAI,qBAAqB,GAAMniB,GAAI,CAAEyG,MAAOqwD,EAAEhf,SAAWxW,YAAaw1B,EAAEv1B,GAAG,CAAC,CAAEt3B,IAAK,OAAQ/M,GAAI,WACpM,MAAO,CAAC6/B,EAAE,SAAU,CAAE5a,MAAO,CAAE3Z,MAAO,GAAIoH,KAAM,GAAI6pF,WAAY,MAClE,EAAGn1F,OAAO,IAAO,MAAM,EAAI,aAAe,CAACwyD,EAAEv9B,GAAG,IAAMu9B,EAAEhpD,GAAGgpD,EAAEmhC,aAAe,OAAQnhC,EAAEz1B,GAAGy1B,EAAEwhC,oBAAoB,SAASzjE,GACtH,OAAOkI,EAAE,iBAAkB,CAAE9yB,IAAK4qB,EAAEnzB,GAAIy3B,YAAa,4BAA6BhX,MAAO,CAAE7V,KAAMuoB,EAAE4O,UAAW,qBAAqB,GAAMzjC,GAAI,CAAEyG,MAAO,SAAS5H,GAC7J,OAAOg2B,EAAE1M,QAAQ2uC,EAAErpB,YAAaqpB,EAAEsoB,QACpC,GAAK99C,YAAaw1B,EAAEv1B,GAAG,CAAC1M,EAAE6T,cAAgB,CAAEz+B,IAAK,OAAQ/M,GAAI,WAC3D,MAAO,CAAC6/B,EAAE,mBAAoB,CAAE5a,MAAO,CAAEu3E,IAAK7kE,EAAE6T,iBAClD,EAAGpkC,OAAO,GAAO,MAAO,MAAM,IAAO,CAACwyD,EAAEv9B,GAAG,IAAMu9B,EAAEhpD,GAAG+mB,EAAE4T,aAAe,MACzE,KAAK,GAAI1L,EAAE,MAAO,CAAEymB,WAAY,CAAC,CAAEnlD,KAAM,OAAQolD,QAAS,SAAU/gD,MAAOo0D,EAAE6hC,YAAaj1C,WAAY,gBAAkBvqB,YAAa,2BAA6B,CAAC4D,EAAE,gBAAiB,CAAE5a,MAAO,CAAE,aAAc20C,EAAEohC,cAAe,mBAAoBphC,EAAEqhC,eAAgB9xF,MAAOywD,EAAE4hC,WAAYh2F,MAAOo0D,EAAEgQ,SAAUl3D,KAAM,YAAemtB,EAAE,IAAK,CAAE5a,MAAO,CAAEzgB,GAAIo1D,EAAEqhC,iBAAoB,CAACrhC,EAAEv9B,GAAG,IAAMu9B,EAAEhpD,GAAGgpD,EAAEuhC,UAAY,QAAS,GAAIvhC,EAAE6hC,YAAc57D,EAAE,WAAY,CAAE5D,YAAa,wBAAyBhX,MAAO,CAAEja,KAAM,WAAY,aAAc4uD,EAAEkhC,YAAa,+BAAgC,IAAMh4F,GAAI,CAAEyG,MAAOqwD,EAAEnmB,UAAYrP,YAAaw1B,EAAEv1B,GAAG,CAAC,CAAEt3B,IAAK,OAAQ/M,GAAI,WAC9nB,MAAO,CAAC6/B,EAAE,SAAU,CAAE5a,MAAO,CAAE3Z,MAAO,GAAIoH,KAAM,MAClD,EAAGtL,OAAO,IAAO,MAAM,EAAI,cAAiBwyD,EAAE5gD,KAAM6mB,EAAE,QAAS,CAAEymB,WAAY,CAAC,CAAEnlD,KAAM,OAAQolD,QAAS,SAAU/gD,OAAO,EAAIghD,WAAY,UAAY7kC,IAAK,QAASsD,MAAO,CAAEja,KAAM,OAAQkF,OAAQ0pD,EAAE1pD,QAAQ4K,OAAO,MAAO8/E,SAAUhhC,EAAEghC,SAAU,8BAA+B,IAAM93F,GAAI,CAAE25F,OAAQ7iC,EAAEmiC,WAAc,GAAKniC,EAAE5gD,IAC3T,GAAQ,IAIN,EACA,KACA,WACA,KACA,MAEY7V,QACd,IAAIwgF,GAAI,KACR,SAASsC,KACP,MAAM7gF,EAAoE,OAAhEuE,SAAS+nB,cAAc,qCACjC,OAAOiyD,cAAawE,KAAMxE,GAAI,IAAIwE,GAAE/iF,IAAKu+E,EAC3C,CAKAn0E,eAAeysF,GAAG72F,EAAGw0D,EAAG/5B,GACtB,MAAMlI,GAAI,SAAE,IAAM,2DAClB,OAAO,IAAIjxB,SAAQ,CAAC/E,EAAGiG,KACrB,MAAMhG,EAAI,IAAI,KAAE,CACdT,KAAM,qBACN6hB,OAAS82C,GAAMA,EAAEniC,EAAG,CAClB7U,MAAO,CACL+qB,QAASzoC,EACTorC,UAAWopB,EACXsoB,QAASriD,GAEX/8B,GAAI,CACF,MAAA45F,CAAOthB,GACLz5E,EAAEy5E,GAAIx5E,EAAE+6F,WAAY/6F,EAAEigC,KAAKkb,YAAY8rB,YAAYjnE,EAAEigC,IACvD,EACA,MAAAlD,CAAOy8C,GACLxzE,EAAEwzE,GAAK,IAAIpvE,MAAM,aAAcpK,EAAE+6F,WAAY/6F,EAAEigC,KAAKkb,YAAY8rB,YAAYjnE,EAAEigC,IAChF,OAINjgC,EAAEs+C,SAAUv2C,SAAS4B,KAAKu2B,YAAYlgC,EAAEigC,IAAI,GAEhD,CACA,SAASm6D,GAAG52F,EAAGw0D,GACb,MAAM/5B,EAAI+5B,EAAE1nD,KAAKvQ,GAAMA,EAAE8uC,WACzB,OAAOrrC,EAAE6M,QAAQtQ,IACf,MAAMiG,EAAIjG,aAAa+sC,KAAO/sC,EAAER,KAAOQ,EAAE8uC,SACzC,OAAyB,IAAlB5Q,EAAE7pB,QAAQpO,EAAS,IACzB/F,OAAS,CACd,2DEhqDA,MAAgEgmF,EAAI,CAAClwD,EAAGvyB,KACtE,IAAIwC,EACJ,OAAgD,OAAvCA,EAAS,MAALxC,OAAY,EAASA,EAAEw3F,SAAmBh1F,EAAIkgF,KAFxB,CAACnwD,GAAM,eAAiBA,EAEOqxC,CAAErxC,EAAE,EAOrEsxC,EAAI,CAACtxC,EAAGvyB,EAAGwC,KACZ,MAAMkY,EAAIpgB,OAAOmF,OAAO,CACtBg4F,QAAQ,GACPj1F,GAAK,CAAC,GAST,MAAuB,MAAhB+vB,EAAEpS,OAAO,KAAeoS,EAAI,IAAMA,GARhCyjD,GADoBA,EASqBh2E,GAAK,CAAC,IARtC,CAAC,EAQ4BuyB,EARvB1rB,QACpB,eACA,SAASrK,EAAGi+B,GACV,MAAMz1B,EAAIgxE,EAAEv7C,GACZ,OAAO/f,EAAE+8E,OAAS7gF,mBAA+B,iBAAL5R,GAA6B,iBAALA,EAAgBA,EAAEvC,WAAajG,GAAiB,iBAALwI,GAA6B,iBAALA,EAAgBA,EAAEvC,WAAajG,CACxK,IANa,IAAYw5E,CAS6B,EACzDn4D,EAAI,CAAC0U,EAAGvyB,EAAGwC,KACZ,IAAIkY,EAAG85C,EAAGj4D,EACV,MAAMy5E,EAAI17E,OAAOmF,OAAO,CACtBi4F,WAAW,GACVl1F,GAAK,CAAC,GAAIhG,EAA4C,OAAvCke,EAAS,MAALlY,OAAY,EAASA,EAAEg1F,SAAmB98E,EAAIg6C,IACpE,OAAgI,KAAzC,OAA9En4D,EAAiD,OAA5Ci4D,EAAc,MAAVt2D,YAAiB,EAASA,OAAO4hD,SAAc,EAAS0U,EAAE70C,aAAkB,EAASpjB,EAAEo7F,oBAA8B3hB,EAAE0hB,UAA6Bl7F,EAAI,aAAeqnE,EAAEtxC,EAAGvyB,EAAGwC,GAA5ChG,EAAIqnE,EAAEtxC,EAAGvyB,EAAGwC,EAAkC,EAMlMkgF,EAAI,IAAMxkF,OAAOmH,SAASmlB,SAAW,KAAOtsB,OAAOmH,SAASolB,KAAOiqC,IACtE,SAASA,IACP,IAAIniC,EAAIr0B,OAAO05F,YACf,UAAWrlE,EAAI,IAAK,CAClBA,EAAIltB,SAASqtB,SACb,MAAM1yB,EAAIuyB,EAAE3hB,QAAQ,eACpB,IAAW,IAAP5Q,EACFuyB,EAAIA,EAAEr2B,MAAM,EAAG8D,OACZ,CACH,MAAMwC,EAAI+vB,EAAE3hB,QAAQ,IAAK,GACzB2hB,EAAIA,EAAEr2B,MAAM,EAAGsG,EAAI,EAAIA,OAAI,EAC7B,CACF,CACA,OAAO+vB,CACT,0EC1CA,MAAM,MACJslE,EAAK,WACLxnD,EAAU,cACVynD,EAAa,SACbC,EAAQ,YACRC,EAAW,QACXC,EAAO,IACP/tD,EAAG,OACH2qD,EAAM,aACNqD,EAAY,OACZC,EAAM,WACNC,EAAU,aACVC,EAAY,eACZC,EAAc,WACdC,EAAU,WACVC,EAAU,YACVC,GACE,MCrBAC,EAA2B,CAAC,EAGhC,SAASC,EAAoBC,GAE5B,IAAIC,EAAeH,EAAyBE,GAC5C,QAAqBr7F,IAAjBs7F,EACH,OAAOA,EAAa96F,QAGrB,IAAID,EAAS46F,EAAyBE,GAAY,CACjDx5F,GAAIw5F,EACJE,QAAQ,EACR/6F,QAAS,CAAC,GAUX,OANAg7F,EAAoBH,GAAU38F,KAAK6B,EAAOC,QAASD,EAAQA,EAAOC,QAAS46F,GAG3E76F,EAAOg7F,QAAS,EAGTh7F,EAAOC,OACf,CAGA46F,EAAoB12E,EAAI82E,E9R5BpB7+F,EAAW,GACfy+F,EAAoB9W,EAAI,CAACl7E,EAAQqyF,EAAUp+F,EAAIkzF,KAC9C,IAAGkL,EAAH,CAMA,IAAIC,EAAep0B,IACnB,IAAStoE,EAAI,EAAGA,EAAIrC,EAASuC,OAAQF,IAAK,CACrCy8F,EAAW9+F,EAASqC,GAAG,GACvB3B,EAAKV,EAASqC,GAAG,GACjBuxF,EAAW5zF,EAASqC,GAAG,GAE3B,IAJA,IAGI28F,GAAY,EACPz7F,EAAI,EAAGA,EAAIu7F,EAASv8F,OAAQgB,MACpB,EAAXqwF,GAAsBmL,GAAgBnL,IAAaxzF,OAAO6G,KAAKw3F,EAAoB9W,GAAG/kE,OAAOnV,GAASgxF,EAAoB9W,EAAEl6E,GAAKqxF,EAASv7F,MAC9Iu7F,EAASnoF,OAAOpT,IAAK,IAErBy7F,GAAY,EACTpL,EAAWmL,IAAcA,EAAenL,IAG7C,GAAGoL,EAAW,CACbh/F,EAAS2W,OAAOtU,IAAK,GACrB,IAAIy5E,EAAIp7E,SACE2C,IAANy4E,IAAiBrvE,EAASqvE,EAC/B,CACD,CACA,OAAOrvE,CArBP,CAJCmnF,EAAWA,GAAY,EACvB,IAAI,IAAIvxF,EAAIrC,EAASuC,OAAQF,EAAI,GAAKrC,EAASqC,EAAI,GAAG,GAAKuxF,EAAUvxF,IAAKrC,EAASqC,GAAKrC,EAASqC,EAAI,GACrGrC,EAASqC,GAAK,CAACy8F,EAAUp+F,EAAIkzF,EAuBjB,E+R3Bd6K,EAAoBpmE,EAAKz0B,IACxB,IAAIq7F,EAASr7F,GAAUA,EAAOmzB,WAC7B,IAAOnzB,EAAiB,QACxB,IAAM,EAEP,OADA66F,EAAoB90B,EAAEs1B,EAAQ,CAAEn0F,EAAGm0F,IAC5BA,CAAM,ECLdR,EAAoB90B,EAAI,CAAC9lE,EAASq7F,KACjC,IAAI,IAAIzxF,KAAOyxF,EACXT,EAAoBn2F,EAAE42F,EAAYzxF,KAASgxF,EAAoBn2F,EAAEzE,EAAS4J,IAC5ErN,OAAO0Z,eAAejW,EAAS4J,EAAK,CAAEyM,YAAY,EAAMtT,IAAKs4F,EAAWzxF,IAE1E,ECNDgxF,EAAoBjkC,EAAI,CAAC,EAGzBikC,EAAoB34F,EAAKq5F,GACjB/3F,QAAQ4oC,IAAI5vC,OAAO6G,KAAKw3F,EAAoBjkC,GAAGlsD,QAAO,CAACopC,EAAUjqC,KACvEgxF,EAAoBjkC,EAAE/sD,GAAK0xF,EAASznD,GAC7BA,IACL,KCNJ+mD,EAAoB5e,EAAKsf,GAEZA,EAAU,IAAMA,EAAU,SAAW,CAAC,KAAO,uBAAuB,KAAO,uBAAuB,KAAO,wBAAwBA,GCH9IV,EAAoB/0B,EAAI,WACvB,GAA0B,iBAAfzlE,WAAyB,OAAOA,WAC3C,IACC,OAAOpD,MAAQ,IAAIyhC,SAAS,cAAb,EAChB,CAAE,MAAOx8B,GACR,GAAsB,iBAAX9B,OAAqB,OAAOA,MACxC,CACA,CAPuB,GCAxBy6F,EAAoBn2F,EAAI,CAACsR,EAAK9S,IAAU1G,OAAOC,UAAUC,eAAeyB,KAAK6X,EAAK9S,GnSA9E7G,EAAa,CAAC,EACdC,EAAoB,aAExBu+F,EAAoBn8F,EAAI,CAAC4G,EAAKqxD,EAAM9sD,EAAK0xF,KACxC,GAAGl/F,EAAWiJ,GAAQjJ,EAAWiJ,GAAK7H,KAAKk5D,OAA3C,CACA,IAAI+G,EAAQ89B,EACZ,QAAW/7F,IAARoK,EAEF,IADA,IAAI4xF,EAAUh1F,SAAS8tE,qBAAqB,UACpC91E,EAAI,EAAGA,EAAIg9F,EAAQ98F,OAAQF,IAAK,CACvC,IAAIi4D,EAAI+kC,EAAQh9F,GAChB,GAAGi4D,EAAEptC,aAAa,QAAUhkB,GAAOoxD,EAAEptC,aAAa,iBAAmBhtB,EAAoBuN,EAAK,CAAE6zD,EAAShH,EAAG,KAAO,CACpH,CAEGgH,IACH89B,GAAa,GACb99B,EAASj3D,SAASU,cAAc,WAEzBivF,QAAU,QACjB14B,EAAO4J,QAAU,IACbuzB,EAAoBrZ,IACvB9jB,EAAOha,aAAa,QAASm3C,EAAoBrZ,IAElD9jB,EAAOha,aAAa,eAAgBpnD,EAAoBuN,GAExD6zD,EAAOnY,IAAMjgD,GAEdjJ,EAAWiJ,GAAO,CAACqxD,GACnB,IAAI+kC,EAAmB,CAAC3pE,EAAM30B,KAE7BsgE,EAAO33D,QAAU23D,EAAO93D,OAAS,KACjCu1B,aAAamsC,GACb,IAAIq0B,EAAUt/F,EAAWiJ,GAIzB,UAHOjJ,EAAWiJ,GAClBo4D,EAAO7jB,YAAc6jB,EAAO7jB,WAAW8rB,YAAYjI,GACnDi+B,GAAWA,EAAQxtF,SAASrR,GAAQA,EAAGM,KACpC20B,EAAM,OAAOA,EAAK30B,EAAM,EAExBkqE,EAAU5/D,WAAWg0F,EAAiBvqF,KAAK,UAAM1R,EAAW,CAAEqI,KAAM,UAAW7G,OAAQy8D,IAAW,MACtGA,EAAO33D,QAAU21F,EAAiBvqF,KAAK,KAAMusD,EAAO33D,SACpD23D,EAAO93D,OAAS81F,EAAiBvqF,KAAK,KAAMusD,EAAO93D,QACnD41F,GAAc/0F,SAASm1F,KAAKh9D,YAAY8+B,EApCkB,CAoCX,EoSvChDm9B,EAAoB3iB,EAAKj4E,IACH,oBAAXuE,QAA0BA,OAAO+rB,aAC1C/zB,OAAO0Z,eAAejW,EAASuE,OAAO+rB,YAAa,CAAEjuB,MAAO,WAE7D9F,OAAO0Z,eAAejW,EAAS,aAAc,CAAEqC,OAAO,GAAO,ECL9Du4F,EAAoBgB,IAAO77F,IAC1BA,EAAOmqC,MAAQ,GACVnqC,EAAOggB,WAAUhgB,EAAOggB,SAAW,IACjChgB,GCHR66F,EAAoBl7F,EAAI,WCAxB,IAAIm8F,EACAjB,EAAoB/0B,EAAEb,gBAAe62B,EAAYjB,EAAoB/0B,EAAEv+D,SAAW,IACtF,IAAId,EAAWo0F,EAAoB/0B,EAAEr/D,SACrC,IAAKq1F,GAAar1F,IACbA,EAASs1F,gBACZD,EAAYr1F,EAASs1F,cAAcx2C,MAC/Bu2C,GAAW,CACf,IAAIL,EAAUh1F,EAAS8tE,qBAAqB,UAC5C,GAAGknB,EAAQ98F,OAEV,IADA,IAAIF,EAAIg9F,EAAQ98F,OAAS,EAClBF,GAAK,KAAOq9F,IAAc,aAAa/0F,KAAK+0F,KAAaA,EAAYL,EAAQh9F,KAAK8mD,GAE3F,CAID,IAAKu2C,EAAW,MAAM,IAAIhzF,MAAM,yDAChCgzF,EAAYA,EAAU/yF,QAAQ,OAAQ,IAAIA,QAAQ,QAAS,IAAIA,QAAQ,YAAa,KACpF8xF,EAAoBtkF,EAAIulF,YClBxBjB,EAAoBhhF,EAAIpT,SAAS0zE,SAAWj1E,KAAKqC,SAASF,KAK1D,IAAI20F,EAAkB,CACrB,KAAM,GAGPnB,EAAoBjkC,EAAEj3D,EAAI,CAAC47F,EAASznD,KAElC,IAAImoD,EAAqBpB,EAAoBn2F,EAAEs3F,EAAiBT,GAAWS,EAAgBT,QAAW97F,EACtG,GAA0B,IAAvBw8F,EAGF,GAAGA,EACFnoD,EAASr2C,KAAKw+F,EAAmB,QAC3B,CAGL,IAAI7rC,EAAU,IAAI5sD,SAAQ,CAACD,EAAS0J,IAAYgvF,EAAqBD,EAAgBT,GAAW,CAACh4F,EAAS0J,KAC1G6mC,EAASr2C,KAAKw+F,EAAmB,GAAK7rC,GAGtC,IAAI9qD,EAAMu1F,EAAoBtkF,EAAIskF,EAAoB5e,EAAEsf,GAEpDt1F,EAAQ,IAAI6C,MAgBhB+xF,EAAoBn8F,EAAE4G,GAfFlI,IACnB,GAAGy9F,EAAoBn2F,EAAEs3F,EAAiBT,KAEf,KAD1BU,EAAqBD,EAAgBT,MACRS,EAAgBT,QAAW97F,GACrDw8F,GAAoB,CACtB,IAAIlsE,EAAY3yB,IAAyB,SAAfA,EAAM0K,KAAkB,UAAY1K,EAAM0K,MAChEo0F,EAAU9+F,GAASA,EAAM6D,QAAU7D,EAAM6D,OAAOskD,IACpDt/C,EAAMiD,QAAU,iBAAmBqyF,EAAU,cAAgBxrE,EAAY,KAAOmsE,EAAU,IAC1Fj2F,EAAMhI,KAAO,iBACbgI,EAAM6B,KAAOioB,EACb9pB,EAAMopC,QAAU6sD,EAChBD,EAAmB,GAAGh2F,EACvB,CACD,GAEwC,SAAWs1F,EAASA,EAE/D,CACD,EAWFV,EAAoB9W,EAAEpkF,EAAK47F,GAA0C,IAA7BS,EAAgBT,GAGxD,IAAIY,EAAuB,CAACC,EAA4Br6F,KACvD,IAKI+4F,EAAUS,EALVL,EAAWn5F,EAAK,GAChBs6F,EAAct6F,EAAK,GACnBu6F,EAAUv6F,EAAK,GAGItD,EAAI,EAC3B,GAAGy8F,EAAS30D,MAAMjlC,GAAgC,IAAxB06F,EAAgB16F,KAAa,CACtD,IAAIw5F,KAAYuB,EACZxB,EAAoBn2F,EAAE23F,EAAavB,KACrCD,EAAoB12E,EAAE22E,GAAYuB,EAAYvB,IAGhD,GAAGwB,EAAS,IAAIzzF,EAASyzF,EAAQzB,EAClC,CAEA,IADGuB,GAA4BA,EAA2Br6F,GACrDtD,EAAIy8F,EAASv8F,OAAQF,IACzB88F,EAAUL,EAASz8F,GAChBo8F,EAAoBn2F,EAAEs3F,EAAiBT,IAAYS,EAAgBT,IACrES,EAAgBT,GAAS,KAE1BS,EAAgBT,GAAW,EAE5B,OAAOV,EAAoB9W,EAAEl7E,EAAO,EAGjC0zF,EAAqBr3F,KAA4B,sBAAIA,KAA4B,uBAAK,GAC1Fq3F,EAAmBpuF,QAAQguF,EAAqBhrF,KAAK,KAAM,IAC3DorF,EAAmB9+F,KAAO0+F,EAAqBhrF,KAAK,KAAMorF,EAAmB9+F,KAAK0T,KAAKorF,QCvFvF1B,EAAoBrZ,QAAK/hF,ECGzB,IAAI+8F,EAAsB3B,EAAoB9W,OAAEtkF,EAAW,CAAC,OAAO,IAAOo7F,EAAoB,SAC9F2B,EAAsB3B,EAAoB9W,EAAEyY","sources":["webpack:///nextcloud/webpack/runtime/chunk loaded","webpack:///nextcloud/webpack/runtime/load script","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/eventemitter3/index.js","webpack:///nextcloud/node_modules/pinia/node_modules/vue-demi/lib/index.mjs","webpack:///nextcloud/node_modules/@vue/devtools-api/lib/esm/env.js","webpack:///nextcloud/node_modules/@vue/devtools-api/lib/esm/const.js","webpack:///nextcloud/node_modules/@vue/devtools-api/lib/esm/time.js","webpack:///nextcloud/node_modules/@vue/devtools-api/lib/esm/proxy.js","webpack:///nextcloud/node_modules/@vue/devtools-api/lib/esm/index.js","webpack:///nextcloud/node_modules/pinia/dist/pinia.mjs","webpack:///nextcloud/node_modules/decode-uri-component/index.js","webpack:///nextcloud/node_modules/split-on-first/index.js","webpack:///nextcloud/node_modules/filter-obj/index.js","webpack:///nextcloud/node_modules/query-string/base.js","webpack:///nextcloud/node_modules/query-string/index.js","webpack:///nextcloud/node_modules/vue-router/dist/vue-router.esm.js","webpack:///nextcloud/apps/files/src/router/router.ts","webpack:///nextcloud/apps/files/src/FilesApp.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/Cog.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/Cog.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/Cog.vue?4d6d","webpack:///nextcloud/node_modules/vue-material-design-icons/Cog.vue?vue&type=template&id=89df8f2e","webpack:///nextcloud/apps/files/src/store/viewConfig.ts","webpack:///nextcloud/apps/files/src/logger.js","webpack:///nextcloud/node_modules/throttle-debounce/esm/index.js","webpack:///nextcloud/node_modules/vue-material-design-icons/ChartPie.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/ChartPie.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/ChartPie.vue?421f","webpack:///nextcloud/node_modules/vue-material-design-icons/ChartPie.vue?vue&type=template&id=b117066e","webpack:///nextcloud/apps/files/src/components/NavigationQuota.vue","webpack:///nextcloud/apps/files/src/components/NavigationQuota.vue?vue&type=script&lang=js","webpack://nextcloud/./apps/files/src/components/NavigationQuota.vue?ebc6","webpack://nextcloud/./apps/files/src/components/NavigationQuota.vue?2966","webpack://nextcloud/./apps/files/src/components/NavigationQuota.vue?08cb","webpack://nextcloud/./apps/files/src/views/Settings.vue?84f7","webpack:///nextcloud/node_modules/vue-material-design-icons/Clipboard.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/Clipboard.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/Clipboard.vue?68c7","webpack:///nextcloud/node_modules/vue-material-design-icons/Clipboard.vue?vue&type=template&id=0c133921","webpack:///nextcloud/apps/files/src/components/Setting.vue","webpack:///nextcloud/apps/files/src/components/Setting.vue?vue&type=script&lang=js","webpack://nextcloud/./apps/files/src/components/Setting.vue?98ea","webpack://nextcloud/./apps/files/src/components/Setting.vue?8d57","webpack:///nextcloud/apps/files/src/store/userconfig.ts","webpack:///nextcloud/apps/files/src/views/Settings.vue","webpack:///nextcloud/apps/files/src/views/Settings.vue?vue&type=script&lang=js","webpack://nextcloud/./apps/files/src/views/Settings.vue?7616","webpack://nextcloud/./apps/files/src/views/Settings.vue?b81b","webpack:///nextcloud/apps/files/src/views/Navigation.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/views/Navigation.vue","webpack://nextcloud/./apps/files/src/views/Navigation.vue?ee84","webpack://nextcloud/./apps/files/src/views/Navigation.vue?74b9","webpack:///nextcloud/apps/files/src/views/FilesList.vue","webpack:///nextcloud/node_modules/natural-orderby/dist/index.js","webpack:///nextcloud/node_modules/vue-material-design-icons/FormatListBulletedSquare.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/FormatListBulletedSquare.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/FormatListBulletedSquare.vue?5dae","webpack:///nextcloud/node_modules/vue-material-design-icons/FormatListBulletedSquare.vue?vue&type=template&id=00aea13f","webpack:///nextcloud/node_modules/vue-material-design-icons/AccountPlus.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/AccountPlus.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/AccountPlus.vue?2818","webpack:///nextcloud/node_modules/vue-material-design-icons/AccountPlus.vue?vue&type=template&id=a16afc28","webpack:///nextcloud/node_modules/vue-material-design-icons/ViewGrid.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/ViewGrid.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/ViewGrid.vue?4e55","webpack:///nextcloud/node_modules/vue-material-design-icons/ViewGrid.vue?vue&type=template&id=7b96a104","webpack:///nextcloud/apps/files/src/actions/sidebarAction.ts","webpack:///nextcloud/apps/files/src/store/files.ts","webpack:///nextcloud/apps/files/src/store/paths.ts","webpack:///nextcloud/apps/files/src/store/selection.ts","webpack:///nextcloud/apps/files/src/store/uploader.ts","webpack:///nextcloud/apps/files/src/services/DropServiceUtils.ts","webpack://nextcloud/./node_modules/@nextcloud/dialogs/dist/style.css?d87c","webpack:///nextcloud/apps/files/src/actions/moveOrCopyActionUtils.ts","webpack:///nextcloud/apps/files/src/services/WebdavClient.ts","webpack:///nextcloud/apps/files/src/utils/hashUtils.ts","webpack:///nextcloud/apps/files/src/services/Files.ts","webpack:///nextcloud/apps/files/src/utils/fileUtils.ts","webpack:///nextcloud/apps/files/src/actions/moveOrCopyAction.ts","webpack:///nextcloud/apps/files/src/services/DropService.ts","webpack:///nextcloud/apps/files/src/store/dragging.ts","webpack:///nextcloud/apps/files/src/mixins/filesListWidth.ts","webpack:///nextcloud/apps/files/src/components/BreadCrumbs.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/BreadCrumbs.vue","webpack://nextcloud/./apps/files/src/components/BreadCrumbs.vue?9696","webpack://nextcloud/./apps/files/src/components/BreadCrumbs.vue?d357","webpack:///nextcloud/apps/files/src/components/FilesListVirtual.vue","webpack:///nextcloud/apps/files/src/store/actionsmenu.ts","webpack:///nextcloud/apps/files/src/store/renaming.ts","webpack:///nextcloud/node_modules/vue-material-design-icons/FileMultiple.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/FileMultiple.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/FileMultiple.vue?6e9d","webpack:///nextcloud/node_modules/vue-material-design-icons/FileMultiple.vue?vue&type=template&id=27b46e04","webpack:///nextcloud/node_modules/vue-material-design-icons/Folder.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/Folder.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/Folder.vue?b60e","webpack:///nextcloud/node_modules/vue-material-design-icons/Folder.vue?vue&type=template&id=07f089a4","webpack:///nextcloud/apps/files/src/components/DragAndDropPreview.vue","webpack:///nextcloud/apps/files/src/components/DragAndDropPreview.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/DragAndDropPreview.vue?3906","webpack://nextcloud/./apps/files/src/components/DragAndDropPreview.vue?36f6","webpack:///nextcloud/apps/files/src/utils/dragUtils.ts","webpack:///nextcloud/apps/files/src/components/FileEntryMixin.ts","webpack:///nextcloud/apps/files/src/components/CustomElementRender.vue","webpack:///nextcloud/apps/files/src/components/CustomElementRender.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/CustomElementRender.vue?5f5c","webpack:///nextcloud/node_modules/vue-material-design-icons/ArrowLeft.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/ArrowLeft.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/ArrowLeft.vue?f857","webpack:///nextcloud/node_modules/vue-material-design-icons/ArrowLeft.vue?vue&type=template&id=214c9a86","webpack:///nextcloud/node_modules/vue-material-design-icons/ChevronRight.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/ChevronRight.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/ChevronRight.vue?621b","webpack:///nextcloud/node_modules/vue-material-design-icons/ChevronRight.vue?vue&type=template&id=d6df4f34","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryActions.vue","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryActions.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryActions.vue?539e","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryActions.vue?ea42","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryActions.vue?7b52","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryCheckbox.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryCheckbox.vue","webpack:///nextcloud/apps/files/src/store/keyboard.ts","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryCheckbox.vue?a18b","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryName.vue","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryName.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryName.vue?98a4","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryPreview.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/File.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/File.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/File.vue?245d","webpack:///nextcloud/node_modules/vue-material-design-icons/File.vue?vue&type=template&id=e3c8d598","webpack:///nextcloud/node_modules/vue-material-design-icons/FolderOpen.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/FolderOpen.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/FolderOpen.vue?6818","webpack:///nextcloud/node_modules/vue-material-design-icons/FolderOpen.vue?vue&type=template&id=79cee0a4","webpack:///nextcloud/node_modules/vue-material-design-icons/Key.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/Key.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/Key.vue?157c","webpack:///nextcloud/node_modules/vue-material-design-icons/Key.vue?vue&type=template&id=01a06d54","webpack:///nextcloud/node_modules/vue-material-design-icons/Network.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/Network.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/Network.vue?11eb","webpack:///nextcloud/node_modules/vue-material-design-icons/Network.vue?vue&type=template&id=29f8873c","webpack:///nextcloud/node_modules/vue-material-design-icons/Tag.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/Tag.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/Tag.vue?6116","webpack:///nextcloud/node_modules/vue-material-design-icons/Tag.vue?vue&type=template&id=75dd05e4","webpack:///nextcloud/node_modules/vue-material-design-icons/PlayCircle.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/PlayCircle.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/PlayCircle.vue?0c26","webpack:///nextcloud/node_modules/vue-material-design-icons/PlayCircle.vue?vue&type=template&id=6901b3e6","webpack:///nextcloud/apps/files/src/components/FileEntry/CollectivesIcon.vue?vue&type=script&lang=js","webpack:///nextcloud/apps/files/src/components/FileEntry/CollectivesIcon.vue","webpack://nextcloud/./apps/files/src/components/FileEntry/CollectivesIcon.vue?1937","webpack://nextcloud/./apps/files/src/components/FileEntry/CollectivesIcon.vue?949d","webpack:///nextcloud/apps/files/src/components/FileEntry/FavoriteIcon.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/FileEntry/FavoriteIcon.vue","webpack://nextcloud/./apps/files/src/components/FileEntry/FavoriteIcon.vue?6d98","webpack://nextcloud/./apps/files/src/components/FileEntry/FavoriteIcon.vue?62c6","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryPreview.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/services/LivePhotos.ts","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryPreview.vue?8c1f","webpack:///nextcloud/apps/files/src/components/FileEntry.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/FileEntry.vue","webpack://nextcloud/./apps/files/src/components/FileEntry.vue?da7c","webpack:///nextcloud/apps/files/src/components/FileEntryGrid.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/FileEntryGrid.vue","webpack://nextcloud/./apps/files/src/components/FileEntryGrid.vue?bb8e","webpack:///nextcloud/apps/files/src/components/FilesListHeader.vue","webpack:///nextcloud/apps/files/src/components/FilesListHeader.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/FilesListHeader.vue?349b","webpack:///nextcloud/apps/files/src/components/FilesListTableFooter.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/FilesListTableFooter.vue","webpack://nextcloud/./apps/files/src/components/FilesListTableFooter.vue?975a","webpack://nextcloud/./apps/files/src/components/FilesListTableFooter.vue?fa4c","webpack:///nextcloud/apps/files/src/components/FilesListTableHeader.vue","webpack:///nextcloud/apps/files/src/mixins/filesSorting.ts","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderButton.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderButton.vue","webpack://nextcloud/./apps/files/src/components/FilesListTableHeaderButton.vue?7b8e","webpack://nextcloud/./apps/files/src/components/FilesListTableHeaderButton.vue?e364","webpack:///nextcloud/apps/files/src/components/FilesListTableHeader.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/FilesListTableHeader.vue?1b05","webpack://nextcloud/./apps/files/src/components/FilesListTableHeader.vue?b1c9","webpack:///nextcloud/apps/files/src/components/VirtualList.vue","webpack:///nextcloud/apps/files/src/components/VirtualList.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/VirtualList.vue?37fa","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderActions.vue","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderActions.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/FilesListTableHeaderActions.vue?0445","webpack://nextcloud/./apps/files/src/components/FilesListTableHeaderActions.vue?9494","webpack:///nextcloud/apps/files/src/components/FilesListVirtual.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/FilesListVirtual.vue?4ceb","webpack://nextcloud/./apps/files/src/components/FilesListVirtual.vue?22b6","webpack://nextcloud/./apps/files/src/components/FilesListVirtual.vue?3555","webpack:///nextcloud/node_modules/vue-material-design-icons/TrayArrowDown.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/TrayArrowDown.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/TrayArrowDown.vue?a897","webpack:///nextcloud/node_modules/vue-material-design-icons/TrayArrowDown.vue?vue&type=template&id=447c2cd4","webpack:///nextcloud/apps/files/src/components/DragAndDropNotice.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/DragAndDropNotice.vue","webpack://nextcloud/./apps/files/src/components/DragAndDropNotice.vue?c924","webpack://nextcloud/./apps/files/src/components/DragAndDropNotice.vue?a2e0","webpack:///nextcloud/apps/files/src/views/FilesList.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/views/FilesList.vue?3a01","webpack://nextcloud/./apps/files/src/views/FilesList.vue?1e5b","webpack:///nextcloud/apps/files/src/FilesApp.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/FilesApp.vue?597e","webpack:///nextcloud/apps/files/src/main.ts","webpack:///nextcloud/apps/files/src/services/RouterService.ts","webpack:///nextcloud/apps/files/src/services/Settings.js","webpack:///nextcloud/apps/files/src/models/Setting.js","webpack:///nextcloud/node_modules/cancelable-promise/umd/CancelablePromise.js","webpack:///nextcloud/node_modules/@nextcloud/dialogs/dist/style.css","webpack:///nextcloud/node_modules/@nextcloud/upload/dist/assets/index-FLLHP6Jd.css","webpack:///nextcloud/apps/files/src/components/BreadCrumbs.vue?vue&type=style&index=0&id=159e0cca&prod&lang=scss&scoped=true","webpack:///nextcloud/apps/files/src/components/DragAndDropNotice.vue?vue&type=style&index=0&id=02c943a6&prod&lang=scss&scoped=true","webpack:///nextcloud/apps/files/src/components/DragAndDropPreview.vue?vue&type=style&index=0&id=578d5cf6&prod&lang=scss","webpack:///nextcloud/apps/files/src/components/FileEntry/FavoriteIcon.vue?vue&type=style&index=0&id=04e52abc&prod&lang=scss&scoped=true","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryActions.vue?vue&type=style&index=0&id=6168180a&prod&lang=scss","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryActions.vue?vue&type=style&index=1&id=6168180a&prod&lang=scss&scoped=true","webpack:///nextcloud/apps/files/src/components/FilesListTableFooter.vue?vue&type=style&index=0&id=a85bde20&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListTableHeader.vue?vue&type=style&index=0&id=952162c2&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderActions.vue?vue&type=style&index=0&id=d939292c&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderButton.vue?vue&type=style&index=0&id=097f69d4&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListVirtual.vue?vue&type=style&index=0&id=2bbbfb12&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListVirtual.vue?vue&type=style&index=1&id=2bbbfb12&prod&lang=scss","webpack:///nextcloud/apps/files/src/components/NavigationQuota.vue?vue&type=style&index=0&id=063ed938&prod&lang=scss&scoped=true","webpack:///nextcloud/apps/files/src/views/FilesList.vue?vue&type=style&index=0&id=1b7c1ce0&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/views/Navigation.vue?vue&type=style&index=0&id=8291caa8&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/views/Settings.vue?vue&type=style&index=0&id=6d63c120&prod&lang=scss&scoped=true","webpack:///nextcloud/node_modules/sax/lib/sax.js","webpack:///nextcloud/node_modules/setimmediate/setImmediate.js","webpack:///nextcloud/node_modules/simple-eta/index.js","webpack:///nextcloud/node_modules/timers-browserify/main.js","webpack:///nextcloud/node_modules/xml2js/lib/bom.js","webpack:///nextcloud/node_modules/xml2js/lib/builder.js","webpack:///nextcloud/node_modules/xml2js/lib/defaults.js","webpack:///nextcloud/node_modules/xml2js/lib/parser.js","webpack:///nextcloud/node_modules/xml2js/lib/processors.js","webpack:///nextcloud/node_modules/xml2js/lib/xml2js.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/DocumentPosition.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/NodeType.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/Utility.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/WriterState.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLAttribute.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLCData.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLCharacterData.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLComment.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDOMConfiguration.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDOMErrorHandler.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDOMImplementation.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDOMStringList.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDTDAttList.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDTDElement.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDTDEntity.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDTDNotation.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDeclaration.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDocType.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDocument.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDocumentCB.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDummy.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLElement.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLNamedNodeMap.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLNode.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLNodeList.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLProcessingInstruction.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLRaw.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLStreamWriter.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLStringWriter.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLStringifier.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLText.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLWriterBase.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/index.js","webpack:///nextcloud/node_modules/@nextcloud/files/dist/index.mjs","webpack://nextcloud/./node_modules/@nextcloud/upload/dist/assets/index-FLLHP6Jd.css?f350","webpack:///nextcloud/node_modules/p-cancelable/index.js","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/p-timeout/index.js","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/p-queue/dist/priority-queue.js","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/p-queue/dist/lower-bound.js","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/p-queue/dist/index.js","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/p-limit/async-hooks-stub.js","webpack:///nextcloud/node_modules/@nextcloud/upload/dist/chunks/index-dMIU3rSK.mjs","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/p-limit/index.js","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/@nextcloud/router/dist/index.mjs","webpack:///nextcloud/node_modules/axios/index.js","webpack:///nextcloud/webpack/bootstrap","webpack:///nextcloud/webpack/runtime/compat get default export","webpack:///nextcloud/webpack/runtime/define property getters","webpack:///nextcloud/webpack/runtime/ensure chunk","webpack:///nextcloud/webpack/runtime/get javascript chunk filename","webpack:///nextcloud/webpack/runtime/global","webpack:///nextcloud/webpack/runtime/hasOwnProperty shorthand","webpack:///nextcloud/webpack/runtime/make namespace object","webpack:///nextcloud/webpack/runtime/node module decorator","webpack:///nextcloud/webpack/runtime/runtimeId","webpack:///nextcloud/webpack/runtime/publicPath","webpack:///nextcloud/webpack/runtime/jsonp chunk loading","webpack:///nextcloud/webpack/runtime/nonce","webpack:///nextcloud/webpack/startup"],"sourcesContent":["var deferred = [];\n__webpack_require__.O = (result, chunkIds, fn, priority) => {\n\tif(chunkIds) {\n\t\tpriority = priority || 0;\n\t\tfor(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];\n\t\tdeferred[i] = [chunkIds, fn, priority];\n\t\treturn;\n\t}\n\tvar notFulfilled = Infinity;\n\tfor (var i = 0; i < deferred.length; i++) {\n\t\tvar chunkIds = deferred[i][0];\n\t\tvar fn = deferred[i][1];\n\t\tvar priority = deferred[i][2];\n\t\tvar fulfilled = true;\n\t\tfor (var j = 0; j < chunkIds.length; j++) {\n\t\t\tif ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every((key) => (__webpack_require__.O[key](chunkIds[j])))) {\n\t\t\t\tchunkIds.splice(j--, 1);\n\t\t\t} else {\n\t\t\t\tfulfilled = false;\n\t\t\t\tif(priority < notFulfilled) notFulfilled = priority;\n\t\t\t}\n\t\t}\n\t\tif(fulfilled) {\n\t\t\tdeferred.splice(i--, 1)\n\t\t\tvar r = fn();\n\t\t\tif (r !== undefined) result = r;\n\t\t}\n\t}\n\treturn result;\n};","var inProgress = {};\nvar dataWebpackPrefix = \"nextcloud:\";\n// loadScript function to load a script via script tag\n__webpack_require__.l = (url, done, key, chunkId) => {\n\tif(inProgress[url]) { inProgress[url].push(done); return; }\n\tvar script, needAttach;\n\tif(key !== undefined) {\n\t\tvar scripts = document.getElementsByTagName(\"script\");\n\t\tfor(var i = 0; i < scripts.length; i++) {\n\t\t\tvar s = scripts[i];\n\t\t\tif(s.getAttribute(\"src\") == url || s.getAttribute(\"data-webpack\") == dataWebpackPrefix + key) { script = s; break; }\n\t\t}\n\t}\n\tif(!script) {\n\t\tneedAttach = true;\n\t\tscript = document.createElement('script');\n\n\t\tscript.charset = 'utf-8';\n\t\tscript.timeout = 120;\n\t\tif (__webpack_require__.nc) {\n\t\t\tscript.setAttribute(\"nonce\", __webpack_require__.nc);\n\t\t}\n\t\tscript.setAttribute(\"data-webpack\", dataWebpackPrefix + key);\n\n\t\tscript.src = url;\n\t}\n\tinProgress[url] = [done];\n\tvar onScriptComplete = (prev, event) => {\n\t\t// avoid mem leaks in IE.\n\t\tscript.onerror = script.onload = null;\n\t\tclearTimeout(timeout);\n\t\tvar doneFns = inProgress[url];\n\t\tdelete inProgress[url];\n\t\tscript.parentNode && script.parentNode.removeChild(script);\n\t\tdoneFns && doneFns.forEach((fn) => (fn(event)));\n\t\tif(prev) return prev(event);\n\t}\n\tvar timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);\n\tscript.onerror = onScriptComplete.bind(null, script.onerror);\n\tscript.onload = onScriptComplete.bind(null, script.onload);\n\tneedAttach && document.head.appendChild(script);\n};","'use strict';\n\nvar has = Object.prototype.hasOwnProperty\n , prefix = '~';\n\n/**\n * Constructor to create a storage for our `EE` objects.\n * An `Events` instance is a plain object whose properties are event names.\n *\n * @constructor\n * @private\n */\nfunction Events() {}\n\n//\n// We try to not inherit from `Object.prototype`. In some engines creating an\n// instance in this way is faster than calling `Object.create(null)` directly.\n// If `Object.create(null)` is not supported we prefix the event names with a\n// character to make sure that the built-in object properties are not\n// overridden or used as an attack vector.\n//\nif (Object.create) {\n Events.prototype = Object.create(null);\n\n //\n // This hack is needed because the `__proto__` property is still inherited in\n // some old browsers like Android 4, iPhone 5.1, Opera 11 and Safari 5.\n //\n if (!new Events().__proto__) prefix = false;\n}\n\n/**\n * Representation of a single event listener.\n *\n * @param {Function} fn The listener function.\n * @param {*} context The context to invoke the listener with.\n * @param {Boolean} [once=false] Specify if the listener is a one-time listener.\n * @constructor\n * @private\n */\nfunction EE(fn, context, once) {\n this.fn = fn;\n this.context = context;\n this.once = once || false;\n}\n\n/**\n * Add a listener for a given event.\n *\n * @param {EventEmitter} emitter Reference to the `EventEmitter` instance.\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} context The context to invoke the listener with.\n * @param {Boolean} once Specify if the listener is a one-time listener.\n * @returns {EventEmitter}\n * @private\n */\nfunction addListener(emitter, event, fn, context, once) {\n if (typeof fn !== 'function') {\n throw new TypeError('The listener must be a function');\n }\n\n var listener = new EE(fn, context || emitter, once)\n , evt = prefix ? prefix + event : event;\n\n if (!emitter._events[evt]) emitter._events[evt] = listener, emitter._eventsCount++;\n else if (!emitter._events[evt].fn) emitter._events[evt].push(listener);\n else emitter._events[evt] = [emitter._events[evt], listener];\n\n return emitter;\n}\n\n/**\n * Clear event by name.\n *\n * @param {EventEmitter} emitter Reference to the `EventEmitter` instance.\n * @param {(String|Symbol)} evt The Event name.\n * @private\n */\nfunction clearEvent(emitter, evt) {\n if (--emitter._eventsCount === 0) emitter._events = new Events();\n else delete emitter._events[evt];\n}\n\n/**\n * Minimal `EventEmitter` interface that is molded against the Node.js\n * `EventEmitter` interface.\n *\n * @constructor\n * @public\n */\nfunction EventEmitter() {\n this._events = new Events();\n this._eventsCount = 0;\n}\n\n/**\n * Return an array listing the events for which the emitter has registered\n * listeners.\n *\n * @returns {Array}\n * @public\n */\nEventEmitter.prototype.eventNames = function eventNames() {\n var names = []\n , events\n , name;\n\n if (this._eventsCount === 0) return names;\n\n for (name in (events = this._events)) {\n if (has.call(events, name)) names.push(prefix ? name.slice(1) : name);\n }\n\n if (Object.getOwnPropertySymbols) {\n return names.concat(Object.getOwnPropertySymbols(events));\n }\n\n return names;\n};\n\n/**\n * Return the listeners registered for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Array} The registered listeners.\n * @public\n */\nEventEmitter.prototype.listeners = function listeners(event) {\n var evt = prefix ? prefix + event : event\n , handlers = this._events[evt];\n\n if (!handlers) return [];\n if (handlers.fn) return [handlers.fn];\n\n for (var i = 0, l = handlers.length, ee = new Array(l); i < l; i++) {\n ee[i] = handlers[i].fn;\n }\n\n return ee;\n};\n\n/**\n * Return the number of listeners listening to a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Number} The number of listeners.\n * @public\n */\nEventEmitter.prototype.listenerCount = function listenerCount(event) {\n var evt = prefix ? prefix + event : event\n , listeners = this._events[evt];\n\n if (!listeners) return 0;\n if (listeners.fn) return 1;\n return listeners.length;\n};\n\n/**\n * Calls each of the listeners registered for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Boolean} `true` if the event had listeners, else `false`.\n * @public\n */\nEventEmitter.prototype.emit = function emit(event, a1, a2, a3, a4, a5) {\n var evt = prefix ? prefix + event : event;\n\n if (!this._events[evt]) return false;\n\n var listeners = this._events[evt]\n , len = arguments.length\n , args\n , i;\n\n if (listeners.fn) {\n if (listeners.once) this.removeListener(event, listeners.fn, undefined, true);\n\n switch (len) {\n case 1: return listeners.fn.call(listeners.context), true;\n case 2: return listeners.fn.call(listeners.context, a1), true;\n case 3: return listeners.fn.call(listeners.context, a1, a2), true;\n case 4: return listeners.fn.call(listeners.context, a1, a2, a3), true;\n case 5: return listeners.fn.call(listeners.context, a1, a2, a3, a4), true;\n case 6: return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true;\n }\n\n for (i = 1, args = new Array(len -1); i < len; i++) {\n args[i - 1] = arguments[i];\n }\n\n listeners.fn.apply(listeners.context, args);\n } else {\n var length = listeners.length\n , j;\n\n for (i = 0; i < length; i++) {\n if (listeners[i].once) this.removeListener(event, listeners[i].fn, undefined, true);\n\n switch (len) {\n case 1: listeners[i].fn.call(listeners[i].context); break;\n case 2: listeners[i].fn.call(listeners[i].context, a1); break;\n case 3: listeners[i].fn.call(listeners[i].context, a1, a2); break;\n case 4: listeners[i].fn.call(listeners[i].context, a1, a2, a3); break;\n default:\n if (!args) for (j = 1, args = new Array(len -1); j < len; j++) {\n args[j - 1] = arguments[j];\n }\n\n listeners[i].fn.apply(listeners[i].context, args);\n }\n }\n }\n\n return true;\n};\n\n/**\n * Add a listener for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} [context=this] The context to invoke the listener with.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.on = function on(event, fn, context) {\n return addListener(this, event, fn, context, false);\n};\n\n/**\n * Add a one-time listener for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} [context=this] The context to invoke the listener with.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.once = function once(event, fn, context) {\n return addListener(this, event, fn, context, true);\n};\n\n/**\n * Remove the listeners of a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn Only remove the listeners that match this function.\n * @param {*} context Only remove the listeners that have this context.\n * @param {Boolean} once Only remove one-time listeners.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.removeListener = function removeListener(event, fn, context, once) {\n var evt = prefix ? prefix + event : event;\n\n if (!this._events[evt]) return this;\n if (!fn) {\n clearEvent(this, evt);\n return this;\n }\n\n var listeners = this._events[evt];\n\n if (listeners.fn) {\n if (\n listeners.fn === fn &&\n (!once || listeners.once) &&\n (!context || listeners.context === context)\n ) {\n clearEvent(this, evt);\n }\n } else {\n for (var i = 0, events = [], length = listeners.length; i < length; i++) {\n if (\n listeners[i].fn !== fn ||\n (once && !listeners[i].once) ||\n (context && listeners[i].context !== context)\n ) {\n events.push(listeners[i]);\n }\n }\n\n //\n // Reset the array, or remove it completely if we have no more listeners.\n //\n if (events.length) this._events[evt] = events.length === 1 ? events[0] : events;\n else clearEvent(this, evt);\n }\n\n return this;\n};\n\n/**\n * Remove all listeners, or those of the specified event.\n *\n * @param {(String|Symbol)} [event] The event name.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.removeAllListeners = function removeAllListeners(event) {\n var evt;\n\n if (event) {\n evt = prefix ? prefix + event : event;\n if (this._events[evt]) clearEvent(this, evt);\n } else {\n this._events = new Events();\n this._eventsCount = 0;\n }\n\n return this;\n};\n\n//\n// Alias methods names because people roll like that.\n//\nEventEmitter.prototype.off = EventEmitter.prototype.removeListener;\nEventEmitter.prototype.addListener = EventEmitter.prototype.on;\n\n//\n// Expose the prefix.\n//\nEventEmitter.prefixed = prefix;\n\n//\n// Allow `EventEmitter` to be imported as module namespace.\n//\nEventEmitter.EventEmitter = EventEmitter;\n\n//\n// Expose the module.\n//\nif ('undefined' !== typeof module) {\n module.exports = EventEmitter;\n}\n","import Vue from 'vue'\nimport { getCurrentInstance } from 'vue'\n\nvar isVue2 = true\nvar isVue3 = false\nvar Vue2 = Vue\nvar warn = Vue.util.warn\n\nfunction install() {}\n\n// createApp polyfill\nexport function createApp(rootComponent, rootProps) {\n var vm\n var provide = {}\n var app = {\n config: Vue.config,\n use: Vue.use.bind(Vue),\n mixin: Vue.mixin.bind(Vue),\n component: Vue.component.bind(Vue),\n provide: function (key, value) {\n provide[key] = value\n return this\n },\n directive: function (name, dir) {\n if (dir) {\n Vue.directive(name, dir)\n return app\n } else {\n return Vue.directive(name)\n }\n },\n mount: function (el, hydrating) {\n if (!vm) {\n vm = new Vue(Object.assign({ propsData: rootProps }, rootComponent, { provide: Object.assign(provide, rootComponent.provide) }))\n vm.$mount(el, hydrating)\n return vm\n } else {\n return vm\n }\n },\n unmount: function () {\n if (vm) {\n vm.$destroy()\n vm = undefined\n }\n },\n }\n return app\n}\n\nexport {\n Vue,\n Vue2,\n isVue2,\n isVue3,\n install,\n warn\n}\n\n// Vue 3 components mock\nfunction createMockComponent(name) {\n return {\n setup() {\n throw new Error('[vue-demi] ' + name + ' is not supported in Vue 2. It\\'s provided to avoid compiler errors.')\n }\n }\n}\nexport var Fragment = /*#__PURE__*/ createMockComponent('Fragment')\nexport var Transition = /*#__PURE__*/ createMockComponent('Transition')\nexport var TransitionGroup = /*#__PURE__*/ createMockComponent('TransitionGroup')\nexport var Teleport = /*#__PURE__*/ createMockComponent('Teleport')\nexport var Suspense = /*#__PURE__*/ createMockComponent('Suspense')\nexport var KeepAlive = /*#__PURE__*/ createMockComponent('KeepAlive')\n\nexport * from 'vue'\n\n// Not implemented https://github.com/vuejs/core/pull/8111, falls back to getCurrentInstance()\nexport function hasInjectionContext() {\n return !!getCurrentInstance()\n}\n","export function getDevtoolsGlobalHook() {\n return getTarget().__VUE_DEVTOOLS_GLOBAL_HOOK__;\n}\nexport function getTarget() {\n // @ts-expect-error navigator and windows are not available in all environments\n return (typeof navigator !== 'undefined' && typeof window !== 'undefined')\n ? window\n : typeof globalThis !== 'undefined'\n ? globalThis\n : {};\n}\nexport const isProxyAvailable = typeof Proxy === 'function';\n","export const HOOK_SETUP = 'devtools-plugin:setup';\nexport const HOOK_PLUGIN_SETTINGS_SET = 'plugin:settings:set';\n","let supported;\nlet perf;\nexport function isPerformanceSupported() {\n var _a;\n if (supported !== undefined) {\n return supported;\n }\n if (typeof window !== 'undefined' && window.performance) {\n supported = true;\n perf = window.performance;\n }\n else if (typeof globalThis !== 'undefined' && ((_a = globalThis.perf_hooks) === null || _a === void 0 ? void 0 : _a.performance)) {\n supported = true;\n perf = globalThis.perf_hooks.performance;\n }\n else {\n supported = false;\n }\n return supported;\n}\nexport function now() {\n return isPerformanceSupported() ? perf.now() : Date.now();\n}\n","import { HOOK_PLUGIN_SETTINGS_SET } from './const.js';\nimport { now } from './time.js';\nexport class ApiProxy {\n constructor(plugin, hook) {\n this.target = null;\n this.targetQueue = [];\n this.onQueue = [];\n this.plugin = plugin;\n this.hook = hook;\n const defaultSettings = {};\n if (plugin.settings) {\n for (const id in plugin.settings) {\n const item = plugin.settings[id];\n defaultSettings[id] = item.defaultValue;\n }\n }\n const localSettingsSaveId = `__vue-devtools-plugin-settings__${plugin.id}`;\n let currentSettings = Object.assign({}, defaultSettings);\n try {\n const raw = localStorage.getItem(localSettingsSaveId);\n const data = JSON.parse(raw);\n Object.assign(currentSettings, data);\n }\n catch (e) {\n // noop\n }\n this.fallbacks = {\n getSettings() {\n return currentSettings;\n },\n setSettings(value) {\n try {\n localStorage.setItem(localSettingsSaveId, JSON.stringify(value));\n }\n catch (e) {\n // noop\n }\n currentSettings = value;\n },\n now() {\n return now();\n },\n };\n if (hook) {\n hook.on(HOOK_PLUGIN_SETTINGS_SET, (pluginId, value) => {\n if (pluginId === this.plugin.id) {\n this.fallbacks.setSettings(value);\n }\n });\n }\n this.proxiedOn = new Proxy({}, {\n get: (_target, prop) => {\n if (this.target) {\n return this.target.on[prop];\n }\n else {\n return (...args) => {\n this.onQueue.push({\n method: prop,\n args,\n });\n };\n }\n },\n });\n this.proxiedTarget = new Proxy({}, {\n get: (_target, prop) => {\n if (this.target) {\n return this.target[prop];\n }\n else if (prop === 'on') {\n return this.proxiedOn;\n }\n else if (Object.keys(this.fallbacks).includes(prop)) {\n return (...args) => {\n this.targetQueue.push({\n method: prop,\n args,\n resolve: () => { },\n });\n return this.fallbacks[prop](...args);\n };\n }\n else {\n return (...args) => {\n return new Promise((resolve) => {\n this.targetQueue.push({\n method: prop,\n args,\n resolve,\n });\n });\n };\n }\n },\n });\n }\n async setRealTarget(target) {\n this.target = target;\n for (const item of this.onQueue) {\n this.target.on[item.method](...item.args);\n }\n for (const item of this.targetQueue) {\n item.resolve(await this.target[item.method](...item.args));\n }\n }\n}\n","import { getDevtoolsGlobalHook, getTarget, isProxyAvailable } from './env.js';\nimport { HOOK_SETUP } from './const.js';\nimport { ApiProxy } from './proxy.js';\nexport * from './api/index.js';\nexport * from './plugin.js';\nexport * from './time.js';\nexport function setupDevtoolsPlugin(pluginDescriptor, setupFn) {\n const descriptor = pluginDescriptor;\n const target = getTarget();\n const hook = getDevtoolsGlobalHook();\n const enableProxy = isProxyAvailable && descriptor.enableEarlyProxy;\n if (hook && (target.__VUE_DEVTOOLS_PLUGIN_API_AVAILABLE__ || !enableProxy)) {\n hook.emit(HOOK_SETUP, pluginDescriptor, setupFn);\n }\n else {\n const proxy = enableProxy ? new ApiProxy(descriptor, hook) : null;\n const list = target.__VUE_DEVTOOLS_PLUGINS__ = target.__VUE_DEVTOOLS_PLUGINS__ || [];\n list.push({\n pluginDescriptor: descriptor,\n setupFn,\n proxy,\n });\n if (proxy) {\n setupFn(proxy.proxiedTarget);\n }\n }\n}\n","/*!\n * pinia v2.1.7\n * (c) 2023 Eduardo San Martin Morote\n * @license MIT\n */\nimport { hasInjectionContext, inject, toRaw, watch, unref, markRaw, effectScope, ref, isVue2, isRef, isReactive, set, getCurrentScope, onScopeDispose, getCurrentInstance, reactive, toRef, del, nextTick, computed, toRefs } from 'vue-demi';\nimport { setupDevtoolsPlugin } from '@vue/devtools-api';\n\n/**\n * setActivePinia must be called to handle SSR at the top of functions like\n * `fetch`, `setup`, `serverPrefetch` and others\n */\nlet activePinia;\n/**\n * Sets or unsets the active pinia. Used in SSR and internally when calling\n * actions and getters\n *\n * @param pinia - Pinia instance\n */\n// @ts-expect-error: cannot constrain the type of the return\nconst setActivePinia = (pinia) => (activePinia = pinia);\n/**\n * Get the currently active pinia if there is any.\n */\nconst getActivePinia = () => (hasInjectionContext() && inject(piniaSymbol)) || activePinia;\nconst piniaSymbol = ((process.env.NODE_ENV !== 'production') ? Symbol('pinia') : /* istanbul ignore next */ Symbol());\n\nfunction isPlainObject(\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\no) {\n return (o &&\n typeof o === 'object' &&\n Object.prototype.toString.call(o) === '[object Object]' &&\n typeof o.toJSON !== 'function');\n}\n// type DeepReadonly<T> = { readonly [P in keyof T]: DeepReadonly<T[P]> }\n// TODO: can we change these to numbers?\n/**\n * Possible types for SubscriptionCallback\n */\nvar MutationType;\n(function (MutationType) {\n /**\n * Direct mutation of the state:\n *\n * - `store.name = 'new name'`\n * - `store.$state.name = 'new name'`\n * - `store.list.push('new item')`\n */\n MutationType[\"direct\"] = \"direct\";\n /**\n * Mutated the state with `$patch` and an object\n *\n * - `store.$patch({ name: 'newName' })`\n */\n MutationType[\"patchObject\"] = \"patch object\";\n /**\n * Mutated the state with `$patch` and a function\n *\n * - `store.$patch(state => state.name = 'newName')`\n */\n MutationType[\"patchFunction\"] = \"patch function\";\n // maybe reset? for $state = {} and $reset\n})(MutationType || (MutationType = {}));\n\nconst IS_CLIENT = typeof window !== 'undefined';\n/**\n * Should we add the devtools plugins.\n * - only if dev mode or forced through the prod devtools flag\n * - not in test\n * - only if window exists (could change in the future)\n */\nconst USE_DEVTOOLS = ((process.env.NODE_ENV !== 'production') || (typeof __VUE_PROD_DEVTOOLS__ !== 'undefined' && __VUE_PROD_DEVTOOLS__)) && !(process.env.NODE_ENV === 'test') && IS_CLIENT;\n\n/*\n * FileSaver.js A saveAs() FileSaver implementation.\n *\n * Originally by Eli Grey, adapted as an ESM module by Eduardo San Martin\n * Morote.\n *\n * License : MIT\n */\n// The one and only way of getting global scope in all environments\n// https://stackoverflow.com/q/3277182/1008999\nconst _global = /*#__PURE__*/ (() => typeof window === 'object' && window.window === window\n ? window\n : typeof self === 'object' && self.self === self\n ? self\n : typeof global === 'object' && global.global === global\n ? global\n : typeof globalThis === 'object'\n ? globalThis\n : { HTMLElement: null })();\nfunction bom(blob, { autoBom = false } = {}) {\n // prepend BOM for UTF-8 XML and text/* types (including HTML)\n // note: your browser will automatically convert UTF-16 U+FEFF to EF BB BF\n if (autoBom &&\n /^\\s*(?:text\\/\\S*|application\\/xml|\\S*\\/\\S*\\+xml)\\s*;.*charset\\s*=\\s*utf-8/i.test(blob.type)) {\n return new Blob([String.fromCharCode(0xfeff), blob], { type: blob.type });\n }\n return blob;\n}\nfunction download(url, name, opts) {\n const xhr = new XMLHttpRequest();\n xhr.open('GET', url);\n xhr.responseType = 'blob';\n xhr.onload = function () {\n saveAs(xhr.response, name, opts);\n };\n xhr.onerror = function () {\n console.error('could not download file');\n };\n xhr.send();\n}\nfunction corsEnabled(url) {\n const xhr = new XMLHttpRequest();\n // use sync to avoid popup blocker\n xhr.open('HEAD', url, false);\n try {\n xhr.send();\n }\n catch (e) { }\n return xhr.status >= 200 && xhr.status <= 299;\n}\n// `a.click()` doesn't work for all browsers (#465)\nfunction click(node) {\n try {\n node.dispatchEvent(new MouseEvent('click'));\n }\n catch (e) {\n const evt = document.createEvent('MouseEvents');\n evt.initMouseEvent('click', true, true, window, 0, 0, 0, 80, 20, false, false, false, false, 0, null);\n node.dispatchEvent(evt);\n }\n}\nconst _navigator = \n typeof navigator === 'object' ? navigator : { userAgent: '' };\n// Detect WebView inside a native macOS app by ruling out all browsers\n// We just need to check for 'Safari' because all other browsers (besides Firefox) include that too\n// https://www.whatismybrowser.com/guides/the-latest-user-agent/macos\nconst isMacOSWebView = /*#__PURE__*/ (() => /Macintosh/.test(_navigator.userAgent) &&\n /AppleWebKit/.test(_navigator.userAgent) &&\n !/Safari/.test(_navigator.userAgent))();\nconst saveAs = !IS_CLIENT\n ? () => { } // noop\n : // Use download attribute first if possible (#193 Lumia mobile) unless this is a macOS WebView or mini program\n typeof HTMLAnchorElement !== 'undefined' &&\n 'download' in HTMLAnchorElement.prototype &&\n !isMacOSWebView\n ? downloadSaveAs\n : // Use msSaveOrOpenBlob as a second approach\n 'msSaveOrOpenBlob' in _navigator\n ? msSaveAs\n : // Fallback to using FileReader and a popup\n fileSaverSaveAs;\nfunction downloadSaveAs(blob, name = 'download', opts) {\n const a = document.createElement('a');\n a.download = name;\n a.rel = 'noopener'; // tabnabbing\n // TODO: detect chrome extensions & packaged apps\n // a.target = '_blank'\n if (typeof blob === 'string') {\n // Support regular links\n a.href = blob;\n if (a.origin !== location.origin) {\n if (corsEnabled(a.href)) {\n download(blob, name, opts);\n }\n else {\n a.target = '_blank';\n click(a);\n }\n }\n else {\n click(a);\n }\n }\n else {\n // Support blobs\n a.href = URL.createObjectURL(blob);\n setTimeout(function () {\n URL.revokeObjectURL(a.href);\n }, 4e4); // 40s\n setTimeout(function () {\n click(a);\n }, 0);\n }\n}\nfunction msSaveAs(blob, name = 'download', opts) {\n if (typeof blob === 'string') {\n if (corsEnabled(blob)) {\n download(blob, name, opts);\n }\n else {\n const a = document.createElement('a');\n a.href = blob;\n a.target = '_blank';\n setTimeout(function () {\n click(a);\n });\n }\n }\n else {\n // @ts-ignore: works on windows\n navigator.msSaveOrOpenBlob(bom(blob, opts), name);\n }\n}\nfunction fileSaverSaveAs(blob, name, opts, popup) {\n // Open a popup immediately do go around popup blocker\n // Mostly only available on user interaction and the fileReader is async so...\n popup = popup || open('', '_blank');\n if (popup) {\n popup.document.title = popup.document.body.innerText = 'downloading...';\n }\n if (typeof blob === 'string')\n return download(blob, name, opts);\n const force = blob.type === 'application/octet-stream';\n const isSafari = /constructor/i.test(String(_global.HTMLElement)) || 'safari' in _global;\n const isChromeIOS = /CriOS\\/[\\d]+/.test(navigator.userAgent);\n if ((isChromeIOS || (force && isSafari) || isMacOSWebView) &&\n typeof FileReader !== 'undefined') {\n // Safari doesn't allow downloading of blob URLs\n const reader = new FileReader();\n reader.onloadend = function () {\n let url = reader.result;\n if (typeof url !== 'string') {\n popup = null;\n throw new Error('Wrong reader.result type');\n }\n url = isChromeIOS\n ? url\n : url.replace(/^data:[^;]*;/, 'data:attachment/file;');\n if (popup) {\n popup.location.href = url;\n }\n else {\n location.assign(url);\n }\n popup = null; // reverse-tabnabbing #460\n };\n reader.readAsDataURL(blob);\n }\n else {\n const url = URL.createObjectURL(blob);\n if (popup)\n popup.location.assign(url);\n else\n location.href = url;\n popup = null; // reverse-tabnabbing #460\n setTimeout(function () {\n URL.revokeObjectURL(url);\n }, 4e4); // 40s\n }\n}\n\n/**\n * Shows a toast or console.log\n *\n * @param message - message to log\n * @param type - different color of the tooltip\n */\nfunction toastMessage(message, type) {\n const piniaMessage = '🍍 ' + message;\n if (typeof __VUE_DEVTOOLS_TOAST__ === 'function') {\n // No longer available :(\n __VUE_DEVTOOLS_TOAST__(piniaMessage, type);\n }\n else if (type === 'error') {\n console.error(piniaMessage);\n }\n else if (type === 'warn') {\n console.warn(piniaMessage);\n }\n else {\n console.log(piniaMessage);\n }\n}\nfunction isPinia(o) {\n return '_a' in o && 'install' in o;\n}\n\n/**\n * This file contain devtools actions, they are not Pinia actions.\n */\n// ---\nfunction checkClipboardAccess() {\n if (!('clipboard' in navigator)) {\n toastMessage(`Your browser doesn't support the Clipboard API`, 'error');\n return true;\n }\n}\nfunction checkNotFocusedError(error) {\n if (error instanceof Error &&\n error.message.toLowerCase().includes('document is not focused')) {\n toastMessage('You need to activate the \"Emulate a focused page\" setting in the \"Rendering\" panel of devtools.', 'warn');\n return true;\n }\n return false;\n}\nasync function actionGlobalCopyState(pinia) {\n if (checkClipboardAccess())\n return;\n try {\n await navigator.clipboard.writeText(JSON.stringify(pinia.state.value));\n toastMessage('Global state copied to clipboard.');\n }\n catch (error) {\n if (checkNotFocusedError(error))\n return;\n toastMessage(`Failed to serialize the state. Check the console for more details.`, 'error');\n console.error(error);\n }\n}\nasync function actionGlobalPasteState(pinia) {\n if (checkClipboardAccess())\n return;\n try {\n loadStoresState(pinia, JSON.parse(await navigator.clipboard.readText()));\n toastMessage('Global state pasted from clipboard.');\n }\n catch (error) {\n if (checkNotFocusedError(error))\n return;\n toastMessage(`Failed to deserialize the state from clipboard. Check the console for more details.`, 'error');\n console.error(error);\n }\n}\nasync function actionGlobalSaveState(pinia) {\n try {\n saveAs(new Blob([JSON.stringify(pinia.state.value)], {\n type: 'text/plain;charset=utf-8',\n }), 'pinia-state.json');\n }\n catch (error) {\n toastMessage(`Failed to export the state as JSON. Check the console for more details.`, 'error');\n console.error(error);\n }\n}\nlet fileInput;\nfunction getFileOpener() {\n if (!fileInput) {\n fileInput = document.createElement('input');\n fileInput.type = 'file';\n fileInput.accept = '.json';\n }\n function openFile() {\n return new Promise((resolve, reject) => {\n fileInput.onchange = async () => {\n const files = fileInput.files;\n if (!files)\n return resolve(null);\n const file = files.item(0);\n if (!file)\n return resolve(null);\n return resolve({ text: await file.text(), file });\n };\n // @ts-ignore: TODO: changed from 4.3 to 4.4\n fileInput.oncancel = () => resolve(null);\n fileInput.onerror = reject;\n fileInput.click();\n });\n }\n return openFile;\n}\nasync function actionGlobalOpenStateFile(pinia) {\n try {\n const open = getFileOpener();\n const result = await open();\n if (!result)\n return;\n const { text, file } = result;\n loadStoresState(pinia, JSON.parse(text));\n toastMessage(`Global state imported from \"${file.name}\".`);\n }\n catch (error) {\n toastMessage(`Failed to import the state from JSON. Check the console for more details.`, 'error');\n console.error(error);\n }\n}\nfunction loadStoresState(pinia, state) {\n for (const key in state) {\n const storeState = pinia.state.value[key];\n // store is already instantiated, patch it\n if (storeState) {\n Object.assign(storeState, state[key]);\n }\n else {\n // store is not instantiated, set the initial state\n pinia.state.value[key] = state[key];\n }\n }\n}\n\nfunction formatDisplay(display) {\n return {\n _custom: {\n display,\n },\n };\n}\nconst PINIA_ROOT_LABEL = '🍍 Pinia (root)';\nconst PINIA_ROOT_ID = '_root';\nfunction formatStoreForInspectorTree(store) {\n return isPinia(store)\n ? {\n id: PINIA_ROOT_ID,\n label: PINIA_ROOT_LABEL,\n }\n : {\n id: store.$id,\n label: store.$id,\n };\n}\nfunction formatStoreForInspectorState(store) {\n if (isPinia(store)) {\n const storeNames = Array.from(store._s.keys());\n const storeMap = store._s;\n const state = {\n state: storeNames.map((storeId) => ({\n editable: true,\n key: storeId,\n value: store.state.value[storeId],\n })),\n getters: storeNames\n .filter((id) => storeMap.get(id)._getters)\n .map((id) => {\n const store = storeMap.get(id);\n return {\n editable: false,\n key: id,\n value: store._getters.reduce((getters, key) => {\n getters[key] = store[key];\n return getters;\n }, {}),\n };\n }),\n };\n return state;\n }\n const state = {\n state: Object.keys(store.$state).map((key) => ({\n editable: true,\n key,\n value: store.$state[key],\n })),\n };\n // avoid adding empty getters\n if (store._getters && store._getters.length) {\n state.getters = store._getters.map((getterName) => ({\n editable: false,\n key: getterName,\n value: store[getterName],\n }));\n }\n if (store._customProperties.size) {\n state.customProperties = Array.from(store._customProperties).map((key) => ({\n editable: true,\n key,\n value: store[key],\n }));\n }\n return state;\n}\nfunction formatEventData(events) {\n if (!events)\n return {};\n if (Array.isArray(events)) {\n // TODO: handle add and delete for arrays and objects\n return events.reduce((data, event) => {\n data.keys.push(event.key);\n data.operations.push(event.type);\n data.oldValue[event.key] = event.oldValue;\n data.newValue[event.key] = event.newValue;\n return data;\n }, {\n oldValue: {},\n keys: [],\n operations: [],\n newValue: {},\n });\n }\n else {\n return {\n operation: formatDisplay(events.type),\n key: formatDisplay(events.key),\n oldValue: events.oldValue,\n newValue: events.newValue,\n };\n }\n}\nfunction formatMutationType(type) {\n switch (type) {\n case MutationType.direct:\n return 'mutation';\n case MutationType.patchFunction:\n return '$patch';\n case MutationType.patchObject:\n return '$patch';\n default:\n return 'unknown';\n }\n}\n\n// timeline can be paused when directly changing the state\nlet isTimelineActive = true;\nconst componentStateTypes = [];\nconst MUTATIONS_LAYER_ID = 'pinia:mutations';\nconst INSPECTOR_ID = 'pinia';\nconst { assign: assign$1 } = Object;\n/**\n * Gets the displayed name of a store in devtools\n *\n * @param id - id of the store\n * @returns a formatted string\n */\nconst getStoreType = (id) => '🍍 ' + id;\n/**\n * Add the pinia plugin without any store. Allows displaying a Pinia plugin tab\n * as soon as it is added to the application.\n *\n * @param app - Vue application\n * @param pinia - pinia instance\n */\nfunction registerPiniaDevtools(app, pinia) {\n setupDevtoolsPlugin({\n id: 'dev.esm.pinia',\n label: 'Pinia 🍍',\n logo: 'https://pinia.vuejs.org/logo.svg',\n packageName: 'pinia',\n homepage: 'https://pinia.vuejs.org',\n componentStateTypes,\n app,\n }, (api) => {\n if (typeof api.now !== 'function') {\n toastMessage('You seem to be using an outdated version of Vue Devtools. Are you still using the Beta release instead of the stable one? You can find the links at https://devtools.vuejs.org/guide/installation.html.');\n }\n api.addTimelineLayer({\n id: MUTATIONS_LAYER_ID,\n label: `Pinia 🍍`,\n color: 0xe5df88,\n });\n api.addInspector({\n id: INSPECTOR_ID,\n label: 'Pinia 🍍',\n icon: 'storage',\n treeFilterPlaceholder: 'Search stores',\n actions: [\n {\n icon: 'content_copy',\n action: () => {\n actionGlobalCopyState(pinia);\n },\n tooltip: 'Serialize and copy the state',\n },\n {\n icon: 'content_paste',\n action: async () => {\n await actionGlobalPasteState(pinia);\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n },\n tooltip: 'Replace the state with the content of your clipboard',\n },\n {\n icon: 'save',\n action: () => {\n actionGlobalSaveState(pinia);\n },\n tooltip: 'Save the state as a JSON file',\n },\n {\n icon: 'folder_open',\n action: async () => {\n await actionGlobalOpenStateFile(pinia);\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n },\n tooltip: 'Import the state from a JSON file',\n },\n ],\n nodeActions: [\n {\n icon: 'restore',\n tooltip: 'Reset the state (with \"$reset\")',\n action: (nodeId) => {\n const store = pinia._s.get(nodeId);\n if (!store) {\n toastMessage(`Cannot reset \"${nodeId}\" store because it wasn't found.`, 'warn');\n }\n else if (typeof store.$reset !== 'function') {\n toastMessage(`Cannot reset \"${nodeId}\" store because it doesn't have a \"$reset\" method implemented.`, 'warn');\n }\n else {\n store.$reset();\n toastMessage(`Store \"${nodeId}\" reset.`);\n }\n },\n },\n ],\n });\n api.on.inspectComponent((payload, ctx) => {\n const proxy = (payload.componentInstance &&\n payload.componentInstance.proxy);\n if (proxy && proxy._pStores) {\n const piniaStores = payload.componentInstance.proxy._pStores;\n Object.values(piniaStores).forEach((store) => {\n payload.instanceData.state.push({\n type: getStoreType(store.$id),\n key: 'state',\n editable: true,\n value: store._isOptionsAPI\n ? {\n _custom: {\n value: toRaw(store.$state),\n actions: [\n {\n icon: 'restore',\n tooltip: 'Reset the state of this store',\n action: () => store.$reset(),\n },\n ],\n },\n }\n : // NOTE: workaround to unwrap transferred refs\n Object.keys(store.$state).reduce((state, key) => {\n state[key] = store.$state[key];\n return state;\n }, {}),\n });\n if (store._getters && store._getters.length) {\n payload.instanceData.state.push({\n type: getStoreType(store.$id),\n key: 'getters',\n editable: false,\n value: store._getters.reduce((getters, key) => {\n try {\n getters[key] = store[key];\n }\n catch (error) {\n // @ts-expect-error: we just want to show it in devtools\n getters[key] = error;\n }\n return getters;\n }, {}),\n });\n }\n });\n }\n });\n api.on.getInspectorTree((payload) => {\n if (payload.app === app && payload.inspectorId === INSPECTOR_ID) {\n let stores = [pinia];\n stores = stores.concat(Array.from(pinia._s.values()));\n payload.rootNodes = (payload.filter\n ? stores.filter((store) => '$id' in store\n ? store.$id\n .toLowerCase()\n .includes(payload.filter.toLowerCase())\n : PINIA_ROOT_LABEL.toLowerCase().includes(payload.filter.toLowerCase()))\n : stores).map(formatStoreForInspectorTree);\n }\n });\n api.on.getInspectorState((payload) => {\n if (payload.app === app && payload.inspectorId === INSPECTOR_ID) {\n const inspectedStore = payload.nodeId === PINIA_ROOT_ID\n ? pinia\n : pinia._s.get(payload.nodeId);\n if (!inspectedStore) {\n // this could be the selected store restored for a different project\n // so it's better not to say anything here\n return;\n }\n if (inspectedStore) {\n payload.state = formatStoreForInspectorState(inspectedStore);\n }\n }\n });\n api.on.editInspectorState((payload, ctx) => {\n if (payload.app === app && payload.inspectorId === INSPECTOR_ID) {\n const inspectedStore = payload.nodeId === PINIA_ROOT_ID\n ? pinia\n : pinia._s.get(payload.nodeId);\n if (!inspectedStore) {\n return toastMessage(`store \"${payload.nodeId}\" not found`, 'error');\n }\n const { path } = payload;\n if (!isPinia(inspectedStore)) {\n // access only the state\n if (path.length !== 1 ||\n !inspectedStore._customProperties.has(path[0]) ||\n path[0] in inspectedStore.$state) {\n path.unshift('$state');\n }\n }\n else {\n // Root access, we can omit the `.value` because the devtools API does it for us\n path.unshift('state');\n }\n isTimelineActive = false;\n payload.set(inspectedStore, path, payload.state.value);\n isTimelineActive = true;\n }\n });\n api.on.editComponentState((payload) => {\n if (payload.type.startsWith('🍍')) {\n const storeId = payload.type.replace(/^🍍\\s*/, '');\n const store = pinia._s.get(storeId);\n if (!store) {\n return toastMessage(`store \"${storeId}\" not found`, 'error');\n }\n const { path } = payload;\n if (path[0] !== 'state') {\n return toastMessage(`Invalid path for store \"${storeId}\":\\n${path}\\nOnly state can be modified.`);\n }\n // rewrite the first entry to be able to directly set the state as\n // well as any other path\n path[0] = '$state';\n isTimelineActive = false;\n payload.set(store, path, payload.state.value);\n isTimelineActive = true;\n }\n });\n });\n}\nfunction addStoreToDevtools(app, store) {\n if (!componentStateTypes.includes(getStoreType(store.$id))) {\n componentStateTypes.push(getStoreType(store.$id));\n }\n setupDevtoolsPlugin({\n id: 'dev.esm.pinia',\n label: 'Pinia 🍍',\n logo: 'https://pinia.vuejs.org/logo.svg',\n packageName: 'pinia',\n homepage: 'https://pinia.vuejs.org',\n componentStateTypes,\n app,\n settings: {\n logStoreChanges: {\n label: 'Notify about new/deleted stores',\n type: 'boolean',\n defaultValue: true,\n },\n // useEmojis: {\n // label: 'Use emojis in messages ⚡️',\n // type: 'boolean',\n // defaultValue: true,\n // },\n },\n }, (api) => {\n // gracefully handle errors\n const now = typeof api.now === 'function' ? api.now.bind(api) : Date.now;\n store.$onAction(({ after, onError, name, args }) => {\n const groupId = runningActionId++;\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n title: '🛫 ' + name,\n subtitle: 'start',\n data: {\n store: formatDisplay(store.$id),\n action: formatDisplay(name),\n args,\n },\n groupId,\n },\n });\n after((result) => {\n activeAction = undefined;\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n title: '🛬 ' + name,\n subtitle: 'end',\n data: {\n store: formatDisplay(store.$id),\n action: formatDisplay(name),\n args,\n result,\n },\n groupId,\n },\n });\n });\n onError((error) => {\n activeAction = undefined;\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n logType: 'error',\n title: '💥 ' + name,\n subtitle: 'end',\n data: {\n store: formatDisplay(store.$id),\n action: formatDisplay(name),\n args,\n error,\n },\n groupId,\n },\n });\n });\n }, true);\n store._customProperties.forEach((name) => {\n watch(() => unref(store[name]), (newValue, oldValue) => {\n api.notifyComponentUpdate();\n api.sendInspectorState(INSPECTOR_ID);\n if (isTimelineActive) {\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n title: 'Change',\n subtitle: name,\n data: {\n newValue,\n oldValue,\n },\n groupId: activeAction,\n },\n });\n }\n }, { deep: true });\n });\n store.$subscribe(({ events, type }, state) => {\n api.notifyComponentUpdate();\n api.sendInspectorState(INSPECTOR_ID);\n if (!isTimelineActive)\n return;\n // rootStore.state[store.id] = state\n const eventData = {\n time: now(),\n title: formatMutationType(type),\n data: assign$1({ store: formatDisplay(store.$id) }, formatEventData(events)),\n groupId: activeAction,\n };\n if (type === MutationType.patchFunction) {\n eventData.subtitle = '⤵️';\n }\n else if (type === MutationType.patchObject) {\n eventData.subtitle = '🧩';\n }\n else if (events && !Array.isArray(events)) {\n eventData.subtitle = events.type;\n }\n if (events) {\n eventData.data['rawEvent(s)'] = {\n _custom: {\n display: 'DebuggerEvent',\n type: 'object',\n tooltip: 'raw DebuggerEvent[]',\n value: events,\n },\n };\n }\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: eventData,\n });\n }, { detached: true, flush: 'sync' });\n const hotUpdate = store._hotUpdate;\n store._hotUpdate = markRaw((newStore) => {\n hotUpdate(newStore);\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n title: '🔥 ' + store.$id,\n subtitle: 'HMR update',\n data: {\n store: formatDisplay(store.$id),\n info: formatDisplay(`HMR update`),\n },\n },\n });\n // update the devtools too\n api.notifyComponentUpdate();\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n });\n const { $dispose } = store;\n store.$dispose = () => {\n $dispose();\n api.notifyComponentUpdate();\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n api.getSettings().logStoreChanges &&\n toastMessage(`Disposed \"${store.$id}\" store 🗑`);\n };\n // trigger an update so it can display new registered stores\n api.notifyComponentUpdate();\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n api.getSettings().logStoreChanges &&\n toastMessage(`\"${store.$id}\" store installed 🆕`);\n });\n}\nlet runningActionId = 0;\nlet activeAction;\n/**\n * Patches a store to enable action grouping in devtools by wrapping the store with a Proxy that is passed as the\n * context of all actions, allowing us to set `runningAction` on each access and effectively associating any state\n * mutation to the action.\n *\n * @param store - store to patch\n * @param actionNames - list of actionst to patch\n */\nfunction patchActionForGrouping(store, actionNames, wrapWithProxy) {\n // original actions of the store as they are given by pinia. We are going to override them\n const actions = actionNames.reduce((storeActions, actionName) => {\n // use toRaw to avoid tracking #541\n storeActions[actionName] = toRaw(store)[actionName];\n return storeActions;\n }, {});\n for (const actionName in actions) {\n store[actionName] = function () {\n // the running action id is incremented in a before action hook\n const _actionId = runningActionId;\n const trackedStore = wrapWithProxy\n ? new Proxy(store, {\n get(...args) {\n activeAction = _actionId;\n return Reflect.get(...args);\n },\n set(...args) {\n activeAction = _actionId;\n return Reflect.set(...args);\n },\n })\n : store;\n // For Setup Stores we need https://github.com/tc39/proposal-async-context\n activeAction = _actionId;\n const retValue = actions[actionName].apply(trackedStore, arguments);\n // this is safer as async actions in Setup Stores would associate mutations done outside of the action\n activeAction = undefined;\n return retValue;\n };\n }\n}\n/**\n * pinia.use(devtoolsPlugin)\n */\nfunction devtoolsPlugin({ app, store, options }) {\n // HMR module\n if (store.$id.startsWith('__hot:')) {\n return;\n }\n // detect option api vs setup api\n store._isOptionsAPI = !!options.state;\n patchActionForGrouping(store, Object.keys(options.actions), store._isOptionsAPI);\n // Upgrade the HMR to also update the new actions\n const originalHotUpdate = store._hotUpdate;\n toRaw(store)._hotUpdate = function (newStore) {\n originalHotUpdate.apply(this, arguments);\n patchActionForGrouping(store, Object.keys(newStore._hmrPayload.actions), !!store._isOptionsAPI);\n };\n addStoreToDevtools(app, \n // FIXME: is there a way to allow the assignment from Store<Id, S, G, A> to StoreGeneric?\n store);\n}\n\n/**\n * Creates a Pinia instance to be used by the application\n */\nfunction createPinia() {\n const scope = effectScope(true);\n // NOTE: here we could check the window object for a state and directly set it\n // if there is anything like it with Vue 3 SSR\n const state = scope.run(() => ref({}));\n let _p = [];\n // plugins added before calling app.use(pinia)\n let toBeInstalled = [];\n const pinia = markRaw({\n install(app) {\n // this allows calling useStore() outside of a component setup after\n // installing pinia's plugin\n setActivePinia(pinia);\n if (!isVue2) {\n pinia._a = app;\n app.provide(piniaSymbol, pinia);\n app.config.globalProperties.$pinia = pinia;\n /* istanbul ignore else */\n if (USE_DEVTOOLS) {\n registerPiniaDevtools(app, pinia);\n }\n toBeInstalled.forEach((plugin) => _p.push(plugin));\n toBeInstalled = [];\n }\n },\n use(plugin) {\n if (!this._a && !isVue2) {\n toBeInstalled.push(plugin);\n }\n else {\n _p.push(plugin);\n }\n return this;\n },\n _p,\n // it's actually undefined here\n // @ts-expect-error\n _a: null,\n _e: scope,\n _s: new Map(),\n state,\n });\n // pinia devtools rely on dev only features so they cannot be forced unless\n // the dev build of Vue is used. Avoid old browsers like IE11.\n if (USE_DEVTOOLS && typeof Proxy !== 'undefined') {\n pinia.use(devtoolsPlugin);\n }\n return pinia;\n}\n\n/**\n * Checks if a function is a `StoreDefinition`.\n *\n * @param fn - object to test\n * @returns true if `fn` is a StoreDefinition\n */\nconst isUseStore = (fn) => {\n return typeof fn === 'function' && typeof fn.$id === 'string';\n};\n/**\n * Mutates in place `newState` with `oldState` to _hot update_ it. It will\n * remove any key not existing in `newState` and recursively merge plain\n * objects.\n *\n * @param newState - new state object to be patched\n * @param oldState - old state that should be used to patch newState\n * @returns - newState\n */\nfunction patchObject(newState, oldState) {\n // no need to go through symbols because they cannot be serialized anyway\n for (const key in oldState) {\n const subPatch = oldState[key];\n // skip the whole sub tree\n if (!(key in newState)) {\n continue;\n }\n const targetValue = newState[key];\n if (isPlainObject(targetValue) &&\n isPlainObject(subPatch) &&\n !isRef(subPatch) &&\n !isReactive(subPatch)) {\n newState[key] = patchObject(targetValue, subPatch);\n }\n else {\n // objects are either a bit more complex (e.g. refs) or primitives, so we\n // just set the whole thing\n if (isVue2) {\n set(newState, key, subPatch);\n }\n else {\n newState[key] = subPatch;\n }\n }\n }\n return newState;\n}\n/**\n * Creates an _accept_ function to pass to `import.meta.hot` in Vite applications.\n *\n * @example\n * ```js\n * const useUser = defineStore(...)\n * if (import.meta.hot) {\n * import.meta.hot.accept(acceptHMRUpdate(useUser, import.meta.hot))\n * }\n * ```\n *\n * @param initialUseStore - return of the defineStore to hot update\n * @param hot - `import.meta.hot`\n */\nfunction acceptHMRUpdate(initialUseStore, hot) {\n // strip as much as possible from iife.prod\n if (!(process.env.NODE_ENV !== 'production')) {\n return () => { };\n }\n return (newModule) => {\n const pinia = hot.data.pinia || initialUseStore._pinia;\n if (!pinia) {\n // this store is still not used\n return;\n }\n // preserve the pinia instance across loads\n hot.data.pinia = pinia;\n // console.log('got data', newStore)\n for (const exportName in newModule) {\n const useStore = newModule[exportName];\n // console.log('checking for', exportName)\n if (isUseStore(useStore) && pinia._s.has(useStore.$id)) {\n // console.log('Accepting update for', useStore.$id)\n const id = useStore.$id;\n if (id !== initialUseStore.$id) {\n console.warn(`The id of the store changed from \"${initialUseStore.$id}\" to \"${id}\". Reloading.`);\n // return import.meta.hot.invalidate()\n return hot.invalidate();\n }\n const existingStore = pinia._s.get(id);\n if (!existingStore) {\n console.log(`[Pinia]: skipping hmr because store doesn't exist yet`);\n return;\n }\n useStore(pinia, existingStore);\n }\n }\n };\n}\n\nconst noop = () => { };\nfunction addSubscription(subscriptions, callback, detached, onCleanup = noop) {\n subscriptions.push(callback);\n const removeSubscription = () => {\n const idx = subscriptions.indexOf(callback);\n if (idx > -1) {\n subscriptions.splice(idx, 1);\n onCleanup();\n }\n };\n if (!detached && getCurrentScope()) {\n onScopeDispose(removeSubscription);\n }\n return removeSubscription;\n}\nfunction triggerSubscriptions(subscriptions, ...args) {\n subscriptions.slice().forEach((callback) => {\n callback(...args);\n });\n}\n\nconst fallbackRunWithContext = (fn) => fn();\nfunction mergeReactiveObjects(target, patchToApply) {\n // Handle Map instances\n if (target instanceof Map && patchToApply instanceof Map) {\n patchToApply.forEach((value, key) => target.set(key, value));\n }\n // Handle Set instances\n if (target instanceof Set && patchToApply instanceof Set) {\n patchToApply.forEach(target.add, target);\n }\n // no need to go through symbols because they cannot be serialized anyway\n for (const key in patchToApply) {\n if (!patchToApply.hasOwnProperty(key))\n continue;\n const subPatch = patchToApply[key];\n const targetValue = target[key];\n if (isPlainObject(targetValue) &&\n isPlainObject(subPatch) &&\n target.hasOwnProperty(key) &&\n !isRef(subPatch) &&\n !isReactive(subPatch)) {\n // NOTE: here I wanted to warn about inconsistent types but it's not possible because in setup stores one might\n // start the value of a property as a certain type e.g. a Map, and then for some reason, during SSR, change that\n // to `undefined`. When trying to hydrate, we want to override the Map with `undefined`.\n target[key] = mergeReactiveObjects(targetValue, subPatch);\n }\n else {\n // @ts-expect-error: subPatch is a valid value\n target[key] = subPatch;\n }\n }\n return target;\n}\nconst skipHydrateSymbol = (process.env.NODE_ENV !== 'production')\n ? Symbol('pinia:skipHydration')\n : /* istanbul ignore next */ Symbol();\nconst skipHydrateMap = /*#__PURE__*/ new WeakMap();\n/**\n * Tells Pinia to skip the hydration process of a given object. This is useful in setup stores (only) when you return a\n * stateful object in the store but it isn't really state. e.g. returning a router instance in a setup store.\n *\n * @param obj - target object\n * @returns obj\n */\nfunction skipHydrate(obj) {\n return isVue2\n ? // in @vue/composition-api, the refs are sealed so defineProperty doesn't work...\n /* istanbul ignore next */ skipHydrateMap.set(obj, 1) && obj\n : Object.defineProperty(obj, skipHydrateSymbol, {});\n}\n/**\n * Returns whether a value should be hydrated\n *\n * @param obj - target variable\n * @returns true if `obj` should be hydrated\n */\nfunction shouldHydrate(obj) {\n return isVue2\n ? /* istanbul ignore next */ !skipHydrateMap.has(obj)\n : !isPlainObject(obj) || !obj.hasOwnProperty(skipHydrateSymbol);\n}\nconst { assign } = Object;\nfunction isComputed(o) {\n return !!(isRef(o) && o.effect);\n}\nfunction createOptionsStore(id, options, pinia, hot) {\n const { state, actions, getters } = options;\n const initialState = pinia.state.value[id];\n let store;\n function setup() {\n if (!initialState && (!(process.env.NODE_ENV !== 'production') || !hot)) {\n /* istanbul ignore if */\n if (isVue2) {\n set(pinia.state.value, id, state ? state() : {});\n }\n else {\n pinia.state.value[id] = state ? state() : {};\n }\n }\n // avoid creating a state in pinia.state.value\n const localState = (process.env.NODE_ENV !== 'production') && hot\n ? // use ref() to unwrap refs inside state TODO: check if this is still necessary\n toRefs(ref(state ? state() : {}).value)\n : toRefs(pinia.state.value[id]);\n return assign(localState, actions, Object.keys(getters || {}).reduce((computedGetters, name) => {\n if ((process.env.NODE_ENV !== 'production') && name in localState) {\n console.warn(`[🍍]: A getter cannot have the same name as another state property. Rename one of them. Found with \"${name}\" in store \"${id}\".`);\n }\n computedGetters[name] = markRaw(computed(() => {\n setActivePinia(pinia);\n // it was created just before\n const store = pinia._s.get(id);\n // allow cross using stores\n /* istanbul ignore next */\n if (isVue2 && !store._r)\n return;\n // @ts-expect-error\n // return getters![name].call(context, context)\n // TODO: avoid reading the getter while assigning with a global variable\n return getters[name].call(store, store);\n }));\n return computedGetters;\n }, {}));\n }\n store = createSetupStore(id, setup, options, pinia, hot, true);\n return store;\n}\nfunction createSetupStore($id, setup, options = {}, pinia, hot, isOptionsStore) {\n let scope;\n const optionsForPlugin = assign({ actions: {} }, options);\n /* istanbul ignore if */\n if ((process.env.NODE_ENV !== 'production') && !pinia._e.active) {\n throw new Error('Pinia destroyed');\n }\n // watcher options for $subscribe\n const $subscribeOptions = {\n deep: true,\n // flush: 'post',\n };\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production') && !isVue2) {\n $subscribeOptions.onTrigger = (event) => {\n /* istanbul ignore else */\n if (isListening) {\n debuggerEvents = event;\n // avoid triggering this while the store is being built and the state is being set in pinia\n }\n else if (isListening == false && !store._hotUpdating) {\n // let patch send all the events together later\n /* istanbul ignore else */\n if (Array.isArray(debuggerEvents)) {\n debuggerEvents.push(event);\n }\n else {\n console.error('🍍 debuggerEvents should be an array. This is most likely an internal Pinia bug.');\n }\n }\n };\n }\n // internal state\n let isListening; // set to true at the end\n let isSyncListening; // set to true at the end\n let subscriptions = [];\n let actionSubscriptions = [];\n let debuggerEvents;\n const initialState = pinia.state.value[$id];\n // avoid setting the state for option stores if it is set\n // by the setup\n if (!isOptionsStore && !initialState && (!(process.env.NODE_ENV !== 'production') || !hot)) {\n /* istanbul ignore if */\n if (isVue2) {\n set(pinia.state.value, $id, {});\n }\n else {\n pinia.state.value[$id] = {};\n }\n }\n const hotState = ref({});\n // avoid triggering too many listeners\n // https://github.com/vuejs/pinia/issues/1129\n let activeListener;\n function $patch(partialStateOrMutator) {\n let subscriptionMutation;\n isListening = isSyncListening = false;\n // reset the debugger events since patches are sync\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n debuggerEvents = [];\n }\n if (typeof partialStateOrMutator === 'function') {\n partialStateOrMutator(pinia.state.value[$id]);\n subscriptionMutation = {\n type: MutationType.patchFunction,\n storeId: $id,\n events: debuggerEvents,\n };\n }\n else {\n mergeReactiveObjects(pinia.state.value[$id], partialStateOrMutator);\n subscriptionMutation = {\n type: MutationType.patchObject,\n payload: partialStateOrMutator,\n storeId: $id,\n events: debuggerEvents,\n };\n }\n const myListenerId = (activeListener = Symbol());\n nextTick().then(() => {\n if (activeListener === myListenerId) {\n isListening = true;\n }\n });\n isSyncListening = true;\n // because we paused the watcher, we need to manually call the subscriptions\n triggerSubscriptions(subscriptions, subscriptionMutation, pinia.state.value[$id]);\n }\n const $reset = isOptionsStore\n ? function $reset() {\n const { state } = options;\n const newState = state ? state() : {};\n // we use a patch to group all changes into one single subscription\n this.$patch(($state) => {\n assign($state, newState);\n });\n }\n : /* istanbul ignore next */\n (process.env.NODE_ENV !== 'production')\n ? () => {\n throw new Error(`🍍: Store \"${$id}\" is built using the setup syntax and does not implement $reset().`);\n }\n : noop;\n function $dispose() {\n scope.stop();\n subscriptions = [];\n actionSubscriptions = [];\n pinia._s.delete($id);\n }\n /**\n * Wraps an action to handle subscriptions.\n *\n * @param name - name of the action\n * @param action - action to wrap\n * @returns a wrapped action to handle subscriptions\n */\n function wrapAction(name, action) {\n return function () {\n setActivePinia(pinia);\n const args = Array.from(arguments);\n const afterCallbackList = [];\n const onErrorCallbackList = [];\n function after(callback) {\n afterCallbackList.push(callback);\n }\n function onError(callback) {\n onErrorCallbackList.push(callback);\n }\n // @ts-expect-error\n triggerSubscriptions(actionSubscriptions, {\n args,\n name,\n store,\n after,\n onError,\n });\n let ret;\n try {\n ret = action.apply(this && this.$id === $id ? this : store, args);\n // handle sync errors\n }\n catch (error) {\n triggerSubscriptions(onErrorCallbackList, error);\n throw error;\n }\n if (ret instanceof Promise) {\n return ret\n .then((value) => {\n triggerSubscriptions(afterCallbackList, value);\n return value;\n })\n .catch((error) => {\n triggerSubscriptions(onErrorCallbackList, error);\n return Promise.reject(error);\n });\n }\n // trigger after callbacks\n triggerSubscriptions(afterCallbackList, ret);\n return ret;\n };\n }\n const _hmrPayload = /*#__PURE__*/ markRaw({\n actions: {},\n getters: {},\n state: [],\n hotState,\n });\n const partialStore = {\n _p: pinia,\n // _s: scope,\n $id,\n $onAction: addSubscription.bind(null, actionSubscriptions),\n $patch,\n $reset,\n $subscribe(callback, options = {}) {\n const removeSubscription = addSubscription(subscriptions, callback, options.detached, () => stopWatcher());\n const stopWatcher = scope.run(() => watch(() => pinia.state.value[$id], (state) => {\n if (options.flush === 'sync' ? isSyncListening : isListening) {\n callback({\n storeId: $id,\n type: MutationType.direct,\n events: debuggerEvents,\n }, state);\n }\n }, assign({}, $subscribeOptions, options)));\n return removeSubscription;\n },\n $dispose,\n };\n /* istanbul ignore if */\n if (isVue2) {\n // start as non ready\n partialStore._r = false;\n }\n const store = reactive((process.env.NODE_ENV !== 'production') || USE_DEVTOOLS\n ? assign({\n _hmrPayload,\n _customProperties: markRaw(new Set()), // devtools custom properties\n }, partialStore\n // must be added later\n // setupStore\n )\n : partialStore);\n // store the partial store now so the setup of stores can instantiate each other before they are finished without\n // creating infinite loops.\n pinia._s.set($id, store);\n const runWithContext = (pinia._a && pinia._a.runWithContext) || fallbackRunWithContext;\n // TODO: idea create skipSerialize that marks properties as non serializable and they are skipped\n const setupStore = runWithContext(() => pinia._e.run(() => (scope = effectScope()).run(setup)));\n // overwrite existing actions to support $onAction\n for (const key in setupStore) {\n const prop = setupStore[key];\n if ((isRef(prop) && !isComputed(prop)) || isReactive(prop)) {\n // mark it as a piece of state to be serialized\n if ((process.env.NODE_ENV !== 'production') && hot) {\n set(hotState.value, key, toRef(setupStore, key));\n // createOptionStore directly sets the state in pinia.state.value so we\n // can just skip that\n }\n else if (!isOptionsStore) {\n // in setup stores we must hydrate the state and sync pinia state tree with the refs the user just created\n if (initialState && shouldHydrate(prop)) {\n if (isRef(prop)) {\n prop.value = initialState[key];\n }\n else {\n // probably a reactive object, lets recursively assign\n // @ts-expect-error: prop is unknown\n mergeReactiveObjects(prop, initialState[key]);\n }\n }\n // transfer the ref to the pinia state to keep everything in sync\n /* istanbul ignore if */\n if (isVue2) {\n set(pinia.state.value[$id], key, prop);\n }\n else {\n pinia.state.value[$id][key] = prop;\n }\n }\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n _hmrPayload.state.push(key);\n }\n // action\n }\n else if (typeof prop === 'function') {\n // @ts-expect-error: we are overriding the function we avoid wrapping if\n const actionValue = (process.env.NODE_ENV !== 'production') && hot ? prop : wrapAction(key, prop);\n // this a hot module replacement store because the hotUpdate method needs\n // to do it with the right context\n /* istanbul ignore if */\n if (isVue2) {\n set(setupStore, key, actionValue);\n }\n else {\n // @ts-expect-error\n setupStore[key] = actionValue;\n }\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n _hmrPayload.actions[key] = prop;\n }\n // list actions so they can be used in plugins\n // @ts-expect-error\n optionsForPlugin.actions[key] = prop;\n }\n else if ((process.env.NODE_ENV !== 'production')) {\n // add getters for devtools\n if (isComputed(prop)) {\n _hmrPayload.getters[key] = isOptionsStore\n ? // @ts-expect-error\n options.getters[key]\n : prop;\n if (IS_CLIENT) {\n const getters = setupStore._getters ||\n // @ts-expect-error: same\n (setupStore._getters = markRaw([]));\n getters.push(key);\n }\n }\n }\n }\n // add the state, getters, and action properties\n /* istanbul ignore if */\n if (isVue2) {\n Object.keys(setupStore).forEach((key) => {\n set(store, key, setupStore[key]);\n });\n }\n else {\n assign(store, setupStore);\n // allows retrieving reactive objects with `storeToRefs()`. Must be called after assigning to the reactive object.\n // Make `storeToRefs()` work with `reactive()` #799\n assign(toRaw(store), setupStore);\n }\n // use this instead of a computed with setter to be able to create it anywhere\n // without linking the computed lifespan to wherever the store is first\n // created.\n Object.defineProperty(store, '$state', {\n get: () => ((process.env.NODE_ENV !== 'production') && hot ? hotState.value : pinia.state.value[$id]),\n set: (state) => {\n /* istanbul ignore if */\n if ((process.env.NODE_ENV !== 'production') && hot) {\n throw new Error('cannot set hotState');\n }\n $patch(($state) => {\n assign($state, state);\n });\n },\n });\n // add the hotUpdate before plugins to allow them to override it\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n store._hotUpdate = markRaw((newStore) => {\n store._hotUpdating = true;\n newStore._hmrPayload.state.forEach((stateKey) => {\n if (stateKey in store.$state) {\n const newStateTarget = newStore.$state[stateKey];\n const oldStateSource = store.$state[stateKey];\n if (typeof newStateTarget === 'object' &&\n isPlainObject(newStateTarget) &&\n isPlainObject(oldStateSource)) {\n patchObject(newStateTarget, oldStateSource);\n }\n else {\n // transfer the ref\n newStore.$state[stateKey] = oldStateSource;\n }\n }\n // patch direct access properties to allow store.stateProperty to work as\n // store.$state.stateProperty\n set(store, stateKey, toRef(newStore.$state, stateKey));\n });\n // remove deleted state properties\n Object.keys(store.$state).forEach((stateKey) => {\n if (!(stateKey in newStore.$state)) {\n del(store, stateKey);\n }\n });\n // avoid devtools logging this as a mutation\n isListening = false;\n isSyncListening = false;\n pinia.state.value[$id] = toRef(newStore._hmrPayload, 'hotState');\n isSyncListening = true;\n nextTick().then(() => {\n isListening = true;\n });\n for (const actionName in newStore._hmrPayload.actions) {\n const action = newStore[actionName];\n set(store, actionName, wrapAction(actionName, action));\n }\n // TODO: does this work in both setup and option store?\n for (const getterName in newStore._hmrPayload.getters) {\n const getter = newStore._hmrPayload.getters[getterName];\n const getterValue = isOptionsStore\n ? // special handling of options api\n computed(() => {\n setActivePinia(pinia);\n return getter.call(store, store);\n })\n : getter;\n set(store, getterName, getterValue);\n }\n // remove deleted getters\n Object.keys(store._hmrPayload.getters).forEach((key) => {\n if (!(key in newStore._hmrPayload.getters)) {\n del(store, key);\n }\n });\n // remove old actions\n Object.keys(store._hmrPayload.actions).forEach((key) => {\n if (!(key in newStore._hmrPayload.actions)) {\n del(store, key);\n }\n });\n // update the values used in devtools and to allow deleting new properties later on\n store._hmrPayload = newStore._hmrPayload;\n store._getters = newStore._getters;\n store._hotUpdating = false;\n });\n }\n if (USE_DEVTOOLS) {\n const nonEnumerable = {\n writable: true,\n configurable: true,\n // avoid warning on devtools trying to display this property\n enumerable: false,\n };\n ['_p', '_hmrPayload', '_getters', '_customProperties'].forEach((p) => {\n Object.defineProperty(store, p, assign({ value: store[p] }, nonEnumerable));\n });\n }\n /* istanbul ignore if */\n if (isVue2) {\n // mark the store as ready before plugins\n store._r = true;\n }\n // apply all plugins\n pinia._p.forEach((extender) => {\n /* istanbul ignore else */\n if (USE_DEVTOOLS) {\n const extensions = scope.run(() => extender({\n store,\n app: pinia._a,\n pinia,\n options: optionsForPlugin,\n }));\n Object.keys(extensions || {}).forEach((key) => store._customProperties.add(key));\n assign(store, extensions);\n }\n else {\n assign(store, scope.run(() => extender({\n store,\n app: pinia._a,\n pinia,\n options: optionsForPlugin,\n })));\n }\n });\n if ((process.env.NODE_ENV !== 'production') &&\n store.$state &&\n typeof store.$state === 'object' &&\n typeof store.$state.constructor === 'function' &&\n !store.$state.constructor.toString().includes('[native code]')) {\n console.warn(`[🍍]: The \"state\" must be a plain object. It cannot be\\n` +\n `\\tstate: () => new MyClass()\\n` +\n `Found in store \"${store.$id}\".`);\n }\n // only apply hydrate to option stores with an initial state in pinia\n if (initialState &&\n isOptionsStore &&\n options.hydrate) {\n options.hydrate(store.$state, initialState);\n }\n isListening = true;\n isSyncListening = true;\n return store;\n}\nfunction defineStore(\n// TODO: add proper types from above\nidOrOptions, setup, setupOptions) {\n let id;\n let options;\n const isSetupStore = typeof setup === 'function';\n if (typeof idOrOptions === 'string') {\n id = idOrOptions;\n // the option store setup will contain the actual options in this case\n options = isSetupStore ? setupOptions : setup;\n }\n else {\n options = idOrOptions;\n id = idOrOptions.id;\n if ((process.env.NODE_ENV !== 'production') && typeof id !== 'string') {\n throw new Error(`[🍍]: \"defineStore()\" must be passed a store id as its first argument.`);\n }\n }\n function useStore(pinia, hot) {\n const hasContext = hasInjectionContext();\n pinia =\n // in test mode, ignore the argument provided as we can always retrieve a\n // pinia instance with getActivePinia()\n ((process.env.NODE_ENV === 'test') && activePinia && activePinia._testing ? null : pinia) ||\n (hasContext ? inject(piniaSymbol, null) : null);\n if (pinia)\n setActivePinia(pinia);\n if ((process.env.NODE_ENV !== 'production') && !activePinia) {\n throw new Error(`[🍍]: \"getActivePinia()\" was called but there was no active Pinia. Are you trying to use a store before calling \"app.use(pinia)\"?\\n` +\n `See https://pinia.vuejs.org/core-concepts/outside-component-usage.html for help.\\n` +\n `This will fail in production.`);\n }\n pinia = activePinia;\n if (!pinia._s.has(id)) {\n // creating the store registers it in `pinia._s`\n if (isSetupStore) {\n createSetupStore(id, setup, options, pinia);\n }\n else {\n createOptionsStore(id, options, pinia);\n }\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n // @ts-expect-error: not the right inferred type\n useStore._pinia = pinia;\n }\n }\n const store = pinia._s.get(id);\n if ((process.env.NODE_ENV !== 'production') && hot) {\n const hotId = '__hot:' + id;\n const newStore = isSetupStore\n ? createSetupStore(hotId, setup, options, pinia, true)\n : createOptionsStore(hotId, assign({}, options), pinia, true);\n hot._hotUpdate(newStore);\n // cleanup the state properties and the store from the cache\n delete pinia.state.value[hotId];\n pinia._s.delete(hotId);\n }\n if ((process.env.NODE_ENV !== 'production') && IS_CLIENT) {\n const currentInstance = getCurrentInstance();\n // save stores in instances to access them devtools\n if (currentInstance &&\n currentInstance.proxy &&\n // avoid adding stores that are just built for hot module replacement\n !hot) {\n const vm = currentInstance.proxy;\n const cache = '_pStores' in vm ? vm._pStores : (vm._pStores = {});\n cache[id] = store;\n }\n }\n // StoreGeneric cannot be casted towards Store\n return store;\n }\n useStore.$id = id;\n return useStore;\n}\n\nlet mapStoreSuffix = 'Store';\n/**\n * Changes the suffix added by `mapStores()`. Can be set to an empty string.\n * Defaults to `\"Store\"`. Make sure to extend the MapStoresCustomization\n * interface if you are using TypeScript.\n *\n * @param suffix - new suffix\n */\nfunction setMapStoreSuffix(suffix // could be 'Store' but that would be annoying for JS\n) {\n mapStoreSuffix = suffix;\n}\n/**\n * Allows using stores without the composition API (`setup()`) by generating an\n * object to be spread in the `computed` field of a component. It accepts a list\n * of store definitions.\n *\n * @example\n * ```js\n * export default {\n * computed: {\n * // other computed properties\n * ...mapStores(useUserStore, useCartStore)\n * },\n *\n * created() {\n * this.userStore // store with id \"user\"\n * this.cartStore // store with id \"cart\"\n * }\n * }\n * ```\n *\n * @param stores - list of stores to map to an object\n */\nfunction mapStores(...stores) {\n if ((process.env.NODE_ENV !== 'production') && Array.isArray(stores[0])) {\n console.warn(`[🍍]: Directly pass all stores to \"mapStores()\" without putting them in an array:\\n` +\n `Replace\\n` +\n `\\tmapStores([useAuthStore, useCartStore])\\n` +\n `with\\n` +\n `\\tmapStores(useAuthStore, useCartStore)\\n` +\n `This will fail in production if not fixed.`);\n stores = stores[0];\n }\n return stores.reduce((reduced, useStore) => {\n // @ts-expect-error: $id is added by defineStore\n reduced[useStore.$id + mapStoreSuffix] = function () {\n return useStore(this.$pinia);\n };\n return reduced;\n }, {});\n}\n/**\n * Allows using state and getters from one store without using the composition\n * API (`setup()`) by generating an object to be spread in the `computed` field\n * of a component.\n *\n * @param useStore - store to map from\n * @param keysOrMapper - array or object\n */\nfunction mapState(useStore, keysOrMapper) {\n return Array.isArray(keysOrMapper)\n ? keysOrMapper.reduce((reduced, key) => {\n reduced[key] = function () {\n return useStore(this.$pinia)[key];\n };\n return reduced;\n }, {})\n : Object.keys(keysOrMapper).reduce((reduced, key) => {\n // @ts-expect-error\n reduced[key] = function () {\n const store = useStore(this.$pinia);\n const storeKey = keysOrMapper[key];\n // for some reason TS is unable to infer the type of storeKey to be a\n // function\n return typeof storeKey === 'function'\n ? storeKey.call(this, store)\n : store[storeKey];\n };\n return reduced;\n }, {});\n}\n/**\n * Alias for `mapState()`. You should use `mapState()` instead.\n * @deprecated use `mapState()` instead.\n */\nconst mapGetters = mapState;\n/**\n * Allows directly using actions from your store without using the composition\n * API (`setup()`) by generating an object to be spread in the `methods` field\n * of a component.\n *\n * @param useStore - store to map from\n * @param keysOrMapper - array or object\n */\nfunction mapActions(useStore, keysOrMapper) {\n return Array.isArray(keysOrMapper)\n ? keysOrMapper.reduce((reduced, key) => {\n // @ts-expect-error\n reduced[key] = function (...args) {\n return useStore(this.$pinia)[key](...args);\n };\n return reduced;\n }, {})\n : Object.keys(keysOrMapper).reduce((reduced, key) => {\n // @ts-expect-error\n reduced[key] = function (...args) {\n return useStore(this.$pinia)[keysOrMapper[key]](...args);\n };\n return reduced;\n }, {});\n}\n/**\n * Allows using state and getters from one store without using the composition\n * API (`setup()`) by generating an object to be spread in the `computed` field\n * of a component.\n *\n * @param useStore - store to map from\n * @param keysOrMapper - array or object\n */\nfunction mapWritableState(useStore, keysOrMapper) {\n return Array.isArray(keysOrMapper)\n ? keysOrMapper.reduce((reduced, key) => {\n // @ts-ignore\n reduced[key] = {\n get() {\n return useStore(this.$pinia)[key];\n },\n set(value) {\n // it's easier to type it here as any\n return (useStore(this.$pinia)[key] = value);\n },\n };\n return reduced;\n }, {})\n : Object.keys(keysOrMapper).reduce((reduced, key) => {\n // @ts-ignore\n reduced[key] = {\n get() {\n return useStore(this.$pinia)[keysOrMapper[key]];\n },\n set(value) {\n // it's easier to type it here as any\n return (useStore(this.$pinia)[keysOrMapper[key]] = value);\n },\n };\n return reduced;\n }, {});\n}\n\n/**\n * Creates an object of references with all the state, getters, and plugin-added\n * state properties of the store. Similar to `toRefs()` but specifically\n * designed for Pinia stores so methods and non reactive properties are\n * completely ignored.\n *\n * @param store - store to extract the refs from\n */\nfunction storeToRefs(store) {\n // See https://github.com/vuejs/pinia/issues/852\n // It's easier to just use toRefs() even if it includes more stuff\n if (isVue2) {\n // @ts-expect-error: toRefs include methods and others\n return toRefs(store);\n }\n else {\n store = toRaw(store);\n const refs = {};\n for (const key in store) {\n const value = store[key];\n if (isRef(value) || isReactive(value)) {\n // @ts-expect-error: the key is state or getter\n refs[key] =\n // ---\n toRef(store, key);\n }\n }\n return refs;\n }\n}\n\n/**\n * Vue 2 Plugin that must be installed for pinia to work. Note **you don't need\n * this plugin if you are using Nuxt.js**. Use the `buildModule` instead:\n * https://pinia.vuejs.org/ssr/nuxt.html.\n *\n * @example\n * ```js\n * import Vue from 'vue'\n * import { PiniaVuePlugin, createPinia } from 'pinia'\n *\n * Vue.use(PiniaVuePlugin)\n * const pinia = createPinia()\n *\n * new Vue({\n * el: '#app',\n * // ...\n * pinia,\n * })\n * ```\n *\n * @param _Vue - `Vue` imported from 'vue'.\n */\nconst PiniaVuePlugin = function (_Vue) {\n // Equivalent of\n // app.config.globalProperties.$pinia = pinia\n _Vue.mixin({\n beforeCreate() {\n const options = this.$options;\n if (options.pinia) {\n const pinia = options.pinia;\n // HACK: taken from provide(): https://github.com/vuejs/composition-api/blob/main/src/apis/inject.ts#L31\n /* istanbul ignore else */\n if (!this._provided) {\n const provideCache = {};\n Object.defineProperty(this, '_provided', {\n get: () => provideCache,\n set: (v) => Object.assign(provideCache, v),\n });\n }\n this._provided[piniaSymbol] = pinia;\n // propagate the pinia instance in an SSR friendly way\n // avoid adding it to nuxt twice\n /* istanbul ignore else */\n if (!this.$pinia) {\n this.$pinia = pinia;\n }\n pinia._a = this;\n if (IS_CLIENT) {\n // this allows calling useStore() outside of a component setup after\n // installing pinia's plugin\n setActivePinia(pinia);\n }\n if (USE_DEVTOOLS) {\n registerPiniaDevtools(pinia._a, pinia);\n }\n }\n else if (!this.$pinia && options.parent && options.parent.$pinia) {\n this.$pinia = options.parent.$pinia;\n }\n },\n destroyed() {\n delete this._pStores;\n },\n });\n};\n\nexport { MutationType, PiniaVuePlugin, acceptHMRUpdate, createPinia, defineStore, getActivePinia, mapActions, mapGetters, mapState, mapStores, mapWritableState, setActivePinia, setMapStoreSuffix, skipHydrate, storeToRefs };\n","const token = '%[a-f0-9]{2}';\nconst singleMatcher = new RegExp('(' + token + ')|([^%]+?)', 'gi');\nconst multiMatcher = new RegExp('(' + token + ')+', 'gi');\n\nfunction decodeComponents(components, split) {\n\ttry {\n\t\t// Try to decode the entire string first\n\t\treturn [decodeURIComponent(components.join(''))];\n\t} catch {\n\t\t// Do nothing\n\t}\n\n\tif (components.length === 1) {\n\t\treturn components;\n\t}\n\n\tsplit = split || 1;\n\n\t// Split the array in 2 parts\n\tconst left = components.slice(0, split);\n\tconst right = components.slice(split);\n\n\treturn Array.prototype.concat.call([], decodeComponents(left), decodeComponents(right));\n}\n\nfunction decode(input) {\n\ttry {\n\t\treturn decodeURIComponent(input);\n\t} catch {\n\t\tlet tokens = input.match(singleMatcher) || [];\n\n\t\tfor (let i = 1; i < tokens.length; i++) {\n\t\t\tinput = decodeComponents(tokens, i).join('');\n\n\t\t\ttokens = input.match(singleMatcher) || [];\n\t\t}\n\n\t\treturn input;\n\t}\n}\n\nfunction customDecodeURIComponent(input) {\n\t// Keep track of all the replacements and prefill the map with the `BOM`\n\tconst replaceMap = {\n\t\t'%FE%FF': '\\uFFFD\\uFFFD',\n\t\t'%FF%FE': '\\uFFFD\\uFFFD',\n\t};\n\n\tlet match = multiMatcher.exec(input);\n\twhile (match) {\n\t\ttry {\n\t\t\t// Decode as big chunks as possible\n\t\t\treplaceMap[match[0]] = decodeURIComponent(match[0]);\n\t\t} catch {\n\t\t\tconst result = decode(match[0]);\n\n\t\t\tif (result !== match[0]) {\n\t\t\t\treplaceMap[match[0]] = result;\n\t\t\t}\n\t\t}\n\n\t\tmatch = multiMatcher.exec(input);\n\t}\n\n\t// Add `%C2` at the end of the map to make sure it does not replace the combinator before everything else\n\treplaceMap['%C2'] = '\\uFFFD';\n\n\tconst entries = Object.keys(replaceMap);\n\n\tfor (const key of entries) {\n\t\t// Replace all decoded components\n\t\tinput = input.replace(new RegExp(key, 'g'), replaceMap[key]);\n\t}\n\n\treturn input;\n}\n\nexport default function decodeUriComponent(encodedURI) {\n\tif (typeof encodedURI !== 'string') {\n\t\tthrow new TypeError('Expected `encodedURI` to be of type `string`, got `' + typeof encodedURI + '`');\n\t}\n\n\ttry {\n\t\t// Try the built in decoder first\n\t\treturn decodeURIComponent(encodedURI);\n\t} catch {\n\t\t// Fallback to a more advanced decoder\n\t\treturn customDecodeURIComponent(encodedURI);\n\t}\n}\n","export default function splitOnFirst(string, separator) {\n\tif (!(typeof string === 'string' && typeof separator === 'string')) {\n\t\tthrow new TypeError('Expected the arguments to be of type `string`');\n\t}\n\n\tif (string === '' || separator === '') {\n\t\treturn [];\n\t}\n\n\tconst separatorIndex = string.indexOf(separator);\n\n\tif (separatorIndex === -1) {\n\t\treturn [];\n\t}\n\n\treturn [\n\t\tstring.slice(0, separatorIndex),\n\t\tstring.slice(separatorIndex + separator.length)\n\t];\n}\n","export function includeKeys(object, predicate) {\n\tconst result = {};\n\n\tif (Array.isArray(predicate)) {\n\t\tfor (const key of predicate) {\n\t\t\tconst descriptor = Object.getOwnPropertyDescriptor(object, key);\n\t\t\tif (descriptor?.enumerable) {\n\t\t\t\tObject.defineProperty(result, key, descriptor);\n\t\t\t}\n\t\t}\n\t} else {\n\t\t// `Reflect.ownKeys()` is required to retrieve symbol properties\n\t\tfor (const key of Reflect.ownKeys(object)) {\n\t\t\tconst descriptor = Object.getOwnPropertyDescriptor(object, key);\n\t\t\tif (descriptor.enumerable) {\n\t\t\t\tconst value = object[key];\n\t\t\t\tif (predicate(key, value, object)) {\n\t\t\t\t\tObject.defineProperty(result, key, descriptor);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn result;\n}\n\nexport function excludeKeys(object, predicate) {\n\tif (Array.isArray(predicate)) {\n\t\tconst set = new Set(predicate);\n\t\treturn includeKeys(object, key => !set.has(key));\n\t}\n\n\treturn includeKeys(object, (key, value, object) => !predicate(key, value, object));\n}\n","import decodeComponent from 'decode-uri-component';\nimport splitOnFirst from 'split-on-first';\nimport {includeKeys} from 'filter-obj';\n\nconst isNullOrUndefined = value => value === null || value === undefined;\n\n// eslint-disable-next-line unicorn/prefer-code-point\nconst strictUriEncode = string => encodeURIComponent(string).replace(/[!'()*]/g, x => `%${x.charCodeAt(0).toString(16).toUpperCase()}`);\n\nconst encodeFragmentIdentifier = Symbol('encodeFragmentIdentifier');\n\nfunction encoderForArrayFormat(options) {\n\tswitch (options.arrayFormat) {\n\t\tcase 'index': {\n\t\t\treturn key => (result, value) => {\n\t\t\t\tconst index = result.length;\n\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\tif (value === null) {\n\t\t\t\t\treturn [\n\t\t\t\t\t\t...result, [encode(key, options), '[', index, ']'].join(''),\n\t\t\t\t\t];\n\t\t\t\t}\n\n\t\t\t\treturn [\n\t\t\t\t\t...result,\n\t\t\t\t\t[encode(key, options), '[', encode(index, options), ']=', encode(value, options)].join(''),\n\t\t\t\t];\n\t\t\t};\n\t\t}\n\n\t\tcase 'bracket': {\n\t\t\treturn key => (result, value) => {\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\tif (value === null) {\n\t\t\t\t\treturn [\n\t\t\t\t\t\t...result,\n\t\t\t\t\t\t[encode(key, options), '[]'].join(''),\n\t\t\t\t\t];\n\t\t\t\t}\n\n\t\t\t\treturn [\n\t\t\t\t\t...result,\n\t\t\t\t\t[encode(key, options), '[]=', encode(value, options)].join(''),\n\t\t\t\t];\n\t\t\t};\n\t\t}\n\n\t\tcase 'colon-list-separator': {\n\t\t\treturn key => (result, value) => {\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\tif (value === null) {\n\t\t\t\t\treturn [\n\t\t\t\t\t\t...result,\n\t\t\t\t\t\t[encode(key, options), ':list='].join(''),\n\t\t\t\t\t];\n\t\t\t\t}\n\n\t\t\t\treturn [\n\t\t\t\t\t...result,\n\t\t\t\t\t[encode(key, options), ':list=', encode(value, options)].join(''),\n\t\t\t\t];\n\t\t\t};\n\t\t}\n\n\t\tcase 'comma':\n\t\tcase 'separator':\n\t\tcase 'bracket-separator': {\n\t\t\tconst keyValueSep = options.arrayFormat === 'bracket-separator'\n\t\t\t\t? '[]='\n\t\t\t\t: '=';\n\n\t\t\treturn key => (result, value) => {\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\t// Translate null to an empty string so that it doesn't serialize as 'null'\n\t\t\t\tvalue = value === null ? '' : value;\n\n\t\t\t\tif (result.length === 0) {\n\t\t\t\t\treturn [[encode(key, options), keyValueSep, encode(value, options)].join('')];\n\t\t\t\t}\n\n\t\t\t\treturn [[result, encode(value, options)].join(options.arrayFormatSeparator)];\n\t\t\t};\n\t\t}\n\n\t\tdefault: {\n\t\t\treturn key => (result, value) => {\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\tif (value === null) {\n\t\t\t\t\treturn [\n\t\t\t\t\t\t...result,\n\t\t\t\t\t\tencode(key, options),\n\t\t\t\t\t];\n\t\t\t\t}\n\n\t\t\t\treturn [\n\t\t\t\t\t...result,\n\t\t\t\t\t[encode(key, options), '=', encode(value, options)].join(''),\n\t\t\t\t];\n\t\t\t};\n\t\t}\n\t}\n}\n\nfunction parserForArrayFormat(options) {\n\tlet result;\n\n\tswitch (options.arrayFormat) {\n\t\tcase 'index': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tresult = /\\[(\\d*)]$/.exec(key);\n\n\t\t\t\tkey = key.replace(/\\[\\d*]$/, '');\n\n\t\t\t\tif (!result) {\n\t\t\t\t\taccumulator[key] = value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = {};\n\t\t\t\t}\n\n\t\t\t\taccumulator[key][result[1]] = value;\n\t\t\t};\n\t\t}\n\n\t\tcase 'bracket': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tresult = /(\\[])$/.exec(key);\n\t\t\t\tkey = key.replace(/\\[]$/, '');\n\n\t\t\t\tif (!result) {\n\t\t\t\t\taccumulator[key] = value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = [value];\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\taccumulator[key] = [...accumulator[key], value];\n\t\t\t};\n\t\t}\n\n\t\tcase 'colon-list-separator': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tresult = /(:list)$/.exec(key);\n\t\t\t\tkey = key.replace(/:list$/, '');\n\n\t\t\t\tif (!result) {\n\t\t\t\t\taccumulator[key] = value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = [value];\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\taccumulator[key] = [...accumulator[key], value];\n\t\t\t};\n\t\t}\n\n\t\tcase 'comma':\n\t\tcase 'separator': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tconst isArray = typeof value === 'string' && value.includes(options.arrayFormatSeparator);\n\t\t\t\tconst isEncodedArray = (typeof value === 'string' && !isArray && decode(value, options).includes(options.arrayFormatSeparator));\n\t\t\t\tvalue = isEncodedArray ? decode(value, options) : value;\n\t\t\t\tconst newValue = isArray || isEncodedArray ? value.split(options.arrayFormatSeparator).map(item => decode(item, options)) : (value === null ? value : decode(value, options));\n\t\t\t\taccumulator[key] = newValue;\n\t\t\t};\n\t\t}\n\n\t\tcase 'bracket-separator': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tconst isArray = /(\\[])$/.test(key);\n\t\t\t\tkey = key.replace(/\\[]$/, '');\n\n\t\t\t\tif (!isArray) {\n\t\t\t\t\taccumulator[key] = value ? decode(value, options) : value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tconst arrayValue = value === null\n\t\t\t\t\t? []\n\t\t\t\t\t: value.split(options.arrayFormatSeparator).map(item => decode(item, options));\n\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = arrayValue;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\taccumulator[key] = [...accumulator[key], ...arrayValue];\n\t\t\t};\n\t\t}\n\n\t\tdefault: {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\taccumulator[key] = [...[accumulator[key]].flat(), value];\n\t\t\t};\n\t\t}\n\t}\n}\n\nfunction validateArrayFormatSeparator(value) {\n\tif (typeof value !== 'string' || value.length !== 1) {\n\t\tthrow new TypeError('arrayFormatSeparator must be single character string');\n\t}\n}\n\nfunction encode(value, options) {\n\tif (options.encode) {\n\t\treturn options.strict ? strictUriEncode(value) : encodeURIComponent(value);\n\t}\n\n\treturn value;\n}\n\nfunction decode(value, options) {\n\tif (options.decode) {\n\t\treturn decodeComponent(value);\n\t}\n\n\treturn value;\n}\n\nfunction keysSorter(input) {\n\tif (Array.isArray(input)) {\n\t\treturn input.sort();\n\t}\n\n\tif (typeof input === 'object') {\n\t\treturn keysSorter(Object.keys(input))\n\t\t\t.sort((a, b) => Number(a) - Number(b))\n\t\t\t.map(key => input[key]);\n\t}\n\n\treturn input;\n}\n\nfunction removeHash(input) {\n\tconst hashStart = input.indexOf('#');\n\tif (hashStart !== -1) {\n\t\tinput = input.slice(0, hashStart);\n\t}\n\n\treturn input;\n}\n\nfunction getHash(url) {\n\tlet hash = '';\n\tconst hashStart = url.indexOf('#');\n\tif (hashStart !== -1) {\n\t\thash = url.slice(hashStart);\n\t}\n\n\treturn hash;\n}\n\nfunction parseValue(value, options) {\n\tif (options.parseNumbers && !Number.isNaN(Number(value)) && (typeof value === 'string' && value.trim() !== '')) {\n\t\tvalue = Number(value);\n\t} else if (options.parseBooleans && value !== null && (value.toLowerCase() === 'true' || value.toLowerCase() === 'false')) {\n\t\tvalue = value.toLowerCase() === 'true';\n\t}\n\n\treturn value;\n}\n\nexport function extract(input) {\n\tinput = removeHash(input);\n\tconst queryStart = input.indexOf('?');\n\tif (queryStart === -1) {\n\t\treturn '';\n\t}\n\n\treturn input.slice(queryStart + 1);\n}\n\nexport function parse(query, options) {\n\toptions = {\n\t\tdecode: true,\n\t\tsort: true,\n\t\tarrayFormat: 'none',\n\t\tarrayFormatSeparator: ',',\n\t\tparseNumbers: false,\n\t\tparseBooleans: false,\n\t\t...options,\n\t};\n\n\tvalidateArrayFormatSeparator(options.arrayFormatSeparator);\n\n\tconst formatter = parserForArrayFormat(options);\n\n\t// Create an object with no prototype\n\tconst returnValue = Object.create(null);\n\n\tif (typeof query !== 'string') {\n\t\treturn returnValue;\n\t}\n\n\tquery = query.trim().replace(/^[?#&]/, '');\n\n\tif (!query) {\n\t\treturn returnValue;\n\t}\n\n\tfor (const parameter of query.split('&')) {\n\t\tif (parameter === '') {\n\t\t\tcontinue;\n\t\t}\n\n\t\tconst parameter_ = options.decode ? parameter.replace(/\\+/g, ' ') : parameter;\n\n\t\tlet [key, value] = splitOnFirst(parameter_, '=');\n\n\t\tif (key === undefined) {\n\t\t\tkey = parameter_;\n\t\t}\n\n\t\t// Missing `=` should be `null`:\n\t\t// http://w3.org/TR/2012/WD-url-20120524/#collect-url-parameters\n\t\tvalue = value === undefined ? null : (['comma', 'separator', 'bracket-separator'].includes(options.arrayFormat) ? value : decode(value, options));\n\t\tformatter(decode(key, options), value, returnValue);\n\t}\n\n\tfor (const [key, value] of Object.entries(returnValue)) {\n\t\tif (typeof value === 'object' && value !== null) {\n\t\t\tfor (const [key2, value2] of Object.entries(value)) {\n\t\t\t\tvalue[key2] = parseValue(value2, options);\n\t\t\t}\n\t\t} else {\n\t\t\treturnValue[key] = parseValue(value, options);\n\t\t}\n\t}\n\n\tif (options.sort === false) {\n\t\treturn returnValue;\n\t}\n\n\t// TODO: Remove the use of `reduce`.\n\t// eslint-disable-next-line unicorn/no-array-reduce\n\treturn (options.sort === true ? Object.keys(returnValue).sort() : Object.keys(returnValue).sort(options.sort)).reduce((result, key) => {\n\t\tconst value = returnValue[key];\n\t\tresult[key] = Boolean(value) && typeof value === 'object' && !Array.isArray(value) ? keysSorter(value) : value;\n\t\treturn result;\n\t}, Object.create(null));\n}\n\nexport function stringify(object, options) {\n\tif (!object) {\n\t\treturn '';\n\t}\n\n\toptions = {encode: true,\n\t\tstrict: true,\n\t\tarrayFormat: 'none',\n\t\tarrayFormatSeparator: ',', ...options};\n\n\tvalidateArrayFormatSeparator(options.arrayFormatSeparator);\n\n\tconst shouldFilter = key => (\n\t\t(options.skipNull && isNullOrUndefined(object[key]))\n\t\t|| (options.skipEmptyString && object[key] === '')\n\t);\n\n\tconst formatter = encoderForArrayFormat(options);\n\n\tconst objectCopy = {};\n\n\tfor (const [key, value] of Object.entries(object)) {\n\t\tif (!shouldFilter(key)) {\n\t\t\tobjectCopy[key] = value;\n\t\t}\n\t}\n\n\tconst keys = Object.keys(objectCopy);\n\n\tif (options.sort !== false) {\n\t\tkeys.sort(options.sort);\n\t}\n\n\treturn keys.map(key => {\n\t\tconst value = object[key];\n\n\t\tif (value === undefined) {\n\t\t\treturn '';\n\t\t}\n\n\t\tif (value === null) {\n\t\t\treturn encode(key, options);\n\t\t}\n\n\t\tif (Array.isArray(value)) {\n\t\t\tif (value.length === 0 && options.arrayFormat === 'bracket-separator') {\n\t\t\t\treturn encode(key, options) + '[]';\n\t\t\t}\n\n\t\t\treturn value\n\t\t\t\t.reduce(formatter(key), [])\n\t\t\t\t.join('&');\n\t\t}\n\n\t\treturn encode(key, options) + '=' + encode(value, options);\n\t}).filter(x => x.length > 0).join('&');\n}\n\nexport function parseUrl(url, options) {\n\toptions = {\n\t\tdecode: true,\n\t\t...options,\n\t};\n\n\tlet [url_, hash] = splitOnFirst(url, '#');\n\n\tif (url_ === undefined) {\n\t\turl_ = url;\n\t}\n\n\treturn {\n\t\turl: url_?.split('?')?.[0] ?? '',\n\t\tquery: parse(extract(url), options),\n\t\t...(options && options.parseFragmentIdentifier && hash ? {fragmentIdentifier: decode(hash, options)} : {}),\n\t};\n}\n\nexport function stringifyUrl(object, options) {\n\toptions = {\n\t\tencode: true,\n\t\tstrict: true,\n\t\t[encodeFragmentIdentifier]: true,\n\t\t...options,\n\t};\n\n\tconst url = removeHash(object.url).split('?')[0] || '';\n\tconst queryFromUrl = extract(object.url);\n\n\tconst query = {\n\t\t...parse(queryFromUrl, {sort: false}),\n\t\t...object.query,\n\t};\n\n\tlet queryString = stringify(query, options);\n\tif (queryString) {\n\t\tqueryString = `?${queryString}`;\n\t}\n\n\tlet hash = getHash(object.url);\n\tif (object.fragmentIdentifier) {\n\t\tconst urlObjectForFragmentEncode = new URL(url);\n\t\turlObjectForFragmentEncode.hash = object.fragmentIdentifier;\n\t\thash = options[encodeFragmentIdentifier] ? urlObjectForFragmentEncode.hash : `#${object.fragmentIdentifier}`;\n\t}\n\n\treturn `${url}${queryString}${hash}`;\n}\n\nexport function pick(input, filter, options) {\n\toptions = {\n\t\tparseFragmentIdentifier: true,\n\t\t[encodeFragmentIdentifier]: false,\n\t\t...options,\n\t};\n\n\tconst {url, query, fragmentIdentifier} = parseUrl(input, options);\n\n\treturn stringifyUrl({\n\t\turl,\n\t\tquery: includeKeys(query, filter),\n\t\tfragmentIdentifier,\n\t}, options);\n}\n\nexport function exclude(input, filter, options) {\n\tconst exclusionFilter = Array.isArray(filter) ? key => !filter.includes(key) : (key, value) => !filter(key, value);\n\n\treturn pick(input, exclusionFilter, options);\n}\n","import * as queryString from './base.js';\n\nexport default queryString;\n","/*!\n * vue-router v3.6.5\n * (c) 2022 Evan You\n * @license MIT\n */\n/* */\n\nfunction assert (condition, message) {\n if (!condition) {\n throw new Error((\"[vue-router] \" + message))\n }\n}\n\nfunction warn (condition, message) {\n if (!condition) {\n typeof console !== 'undefined' && console.warn((\"[vue-router] \" + message));\n }\n}\n\nfunction extend (a, b) {\n for (var key in b) {\n a[key] = b[key];\n }\n return a\n}\n\n/* */\n\nvar encodeReserveRE = /[!'()*]/g;\nvar encodeReserveReplacer = function (c) { return '%' + c.charCodeAt(0).toString(16); };\nvar commaRE = /%2C/g;\n\n// fixed encodeURIComponent which is more conformant to RFC3986:\n// - escapes [!'()*]\n// - preserve commas\nvar encode = function (str) { return encodeURIComponent(str)\n .replace(encodeReserveRE, encodeReserveReplacer)\n .replace(commaRE, ','); };\n\nfunction decode (str) {\n try {\n return decodeURIComponent(str)\n } catch (err) {\n if (process.env.NODE_ENV !== 'production') {\n warn(false, (\"Error decoding \\\"\" + str + \"\\\". Leaving it intact.\"));\n }\n }\n return str\n}\n\nfunction resolveQuery (\n query,\n extraQuery,\n _parseQuery\n) {\n if ( extraQuery === void 0 ) extraQuery = {};\n\n var parse = _parseQuery || parseQuery;\n var parsedQuery;\n try {\n parsedQuery = parse(query || '');\n } catch (e) {\n process.env.NODE_ENV !== 'production' && warn(false, e.message);\n parsedQuery = {};\n }\n for (var key in extraQuery) {\n var value = extraQuery[key];\n parsedQuery[key] = Array.isArray(value)\n ? value.map(castQueryParamValue)\n : castQueryParamValue(value);\n }\n return parsedQuery\n}\n\nvar castQueryParamValue = function (value) { return (value == null || typeof value === 'object' ? value : String(value)); };\n\nfunction parseQuery (query) {\n var res = {};\n\n query = query.trim().replace(/^(\\?|#|&)/, '');\n\n if (!query) {\n return res\n }\n\n query.split('&').forEach(function (param) {\n var parts = param.replace(/\\+/g, ' ').split('=');\n var key = decode(parts.shift());\n var val = parts.length > 0 ? decode(parts.join('=')) : null;\n\n if (res[key] === undefined) {\n res[key] = val;\n } else if (Array.isArray(res[key])) {\n res[key].push(val);\n } else {\n res[key] = [res[key], val];\n }\n });\n\n return res\n}\n\nfunction stringifyQuery (obj) {\n var res = obj\n ? Object.keys(obj)\n .map(function (key) {\n var val = obj[key];\n\n if (val === undefined) {\n return ''\n }\n\n if (val === null) {\n return encode(key)\n }\n\n if (Array.isArray(val)) {\n var result = [];\n val.forEach(function (val2) {\n if (val2 === undefined) {\n return\n }\n if (val2 === null) {\n result.push(encode(key));\n } else {\n result.push(encode(key) + '=' + encode(val2));\n }\n });\n return result.join('&')\n }\n\n return encode(key) + '=' + encode(val)\n })\n .filter(function (x) { return x.length > 0; })\n .join('&')\n : null;\n return res ? (\"?\" + res) : ''\n}\n\n/* */\n\nvar trailingSlashRE = /\\/?$/;\n\nfunction createRoute (\n record,\n location,\n redirectedFrom,\n router\n) {\n var stringifyQuery = router && router.options.stringifyQuery;\n\n var query = location.query || {};\n try {\n query = clone(query);\n } catch (e) {}\n\n var route = {\n name: location.name || (record && record.name),\n meta: (record && record.meta) || {},\n path: location.path || '/',\n hash: location.hash || '',\n query: query,\n params: location.params || {},\n fullPath: getFullPath(location, stringifyQuery),\n matched: record ? formatMatch(record) : []\n };\n if (redirectedFrom) {\n route.redirectedFrom = getFullPath(redirectedFrom, stringifyQuery);\n }\n return Object.freeze(route)\n}\n\nfunction clone (value) {\n if (Array.isArray(value)) {\n return value.map(clone)\n } else if (value && typeof value === 'object') {\n var res = {};\n for (var key in value) {\n res[key] = clone(value[key]);\n }\n return res\n } else {\n return value\n }\n}\n\n// the starting route that represents the initial state\nvar START = createRoute(null, {\n path: '/'\n});\n\nfunction formatMatch (record) {\n var res = [];\n while (record) {\n res.unshift(record);\n record = record.parent;\n }\n return res\n}\n\nfunction getFullPath (\n ref,\n _stringifyQuery\n) {\n var path = ref.path;\n var query = ref.query; if ( query === void 0 ) query = {};\n var hash = ref.hash; if ( hash === void 0 ) hash = '';\n\n var stringify = _stringifyQuery || stringifyQuery;\n return (path || '/') + stringify(query) + hash\n}\n\nfunction isSameRoute (a, b, onlyPath) {\n if (b === START) {\n return a === b\n } else if (!b) {\n return false\n } else if (a.path && b.path) {\n return a.path.replace(trailingSlashRE, '') === b.path.replace(trailingSlashRE, '') && (onlyPath ||\n a.hash === b.hash &&\n isObjectEqual(a.query, b.query))\n } else if (a.name && b.name) {\n return (\n a.name === b.name &&\n (onlyPath || (\n a.hash === b.hash &&\n isObjectEqual(a.query, b.query) &&\n isObjectEqual(a.params, b.params))\n )\n )\n } else {\n return false\n }\n}\n\nfunction isObjectEqual (a, b) {\n if ( a === void 0 ) a = {};\n if ( b === void 0 ) b = {};\n\n // handle null value #1566\n if (!a || !b) { return a === b }\n var aKeys = Object.keys(a).sort();\n var bKeys = Object.keys(b).sort();\n if (aKeys.length !== bKeys.length) {\n return false\n }\n return aKeys.every(function (key, i) {\n var aVal = a[key];\n var bKey = bKeys[i];\n if (bKey !== key) { return false }\n var bVal = b[key];\n // query values can be null and undefined\n if (aVal == null || bVal == null) { return aVal === bVal }\n // check nested equality\n if (typeof aVal === 'object' && typeof bVal === 'object') {\n return isObjectEqual(aVal, bVal)\n }\n return String(aVal) === String(bVal)\n })\n}\n\nfunction isIncludedRoute (current, target) {\n return (\n current.path.replace(trailingSlashRE, '/').indexOf(\n target.path.replace(trailingSlashRE, '/')\n ) === 0 &&\n (!target.hash || current.hash === target.hash) &&\n queryIncludes(current.query, target.query)\n )\n}\n\nfunction queryIncludes (current, target) {\n for (var key in target) {\n if (!(key in current)) {\n return false\n }\n }\n return true\n}\n\nfunction handleRouteEntered (route) {\n for (var i = 0; i < route.matched.length; i++) {\n var record = route.matched[i];\n for (var name in record.instances) {\n var instance = record.instances[name];\n var cbs = record.enteredCbs[name];\n if (!instance || !cbs) { continue }\n delete record.enteredCbs[name];\n for (var i$1 = 0; i$1 < cbs.length; i$1++) {\n if (!instance._isBeingDestroyed) { cbs[i$1](instance); }\n }\n }\n }\n}\n\nvar View = {\n name: 'RouterView',\n functional: true,\n props: {\n name: {\n type: String,\n default: 'default'\n }\n },\n render: function render (_, ref) {\n var props = ref.props;\n var children = ref.children;\n var parent = ref.parent;\n var data = ref.data;\n\n // used by devtools to display a router-view badge\n data.routerView = true;\n\n // directly use parent context's createElement() function\n // so that components rendered by router-view can resolve named slots\n var h = parent.$createElement;\n var name = props.name;\n var route = parent.$route;\n var cache = parent._routerViewCache || (parent._routerViewCache = {});\n\n // determine current view depth, also check to see if the tree\n // has been toggled inactive but kept-alive.\n var depth = 0;\n var inactive = false;\n while (parent && parent._routerRoot !== parent) {\n var vnodeData = parent.$vnode ? parent.$vnode.data : {};\n if (vnodeData.routerView) {\n depth++;\n }\n if (vnodeData.keepAlive && parent._directInactive && parent._inactive) {\n inactive = true;\n }\n parent = parent.$parent;\n }\n data.routerViewDepth = depth;\n\n // render previous view if the tree is inactive and kept-alive\n if (inactive) {\n var cachedData = cache[name];\n var cachedComponent = cachedData && cachedData.component;\n if (cachedComponent) {\n // #2301\n // pass props\n if (cachedData.configProps) {\n fillPropsinData(cachedComponent, data, cachedData.route, cachedData.configProps);\n }\n return h(cachedComponent, data, children)\n } else {\n // render previous empty view\n return h()\n }\n }\n\n var matched = route.matched[depth];\n var component = matched && matched.components[name];\n\n // render empty node if no matched route or no config component\n if (!matched || !component) {\n cache[name] = null;\n return h()\n }\n\n // cache component\n cache[name] = { component: component };\n\n // attach instance registration hook\n // this will be called in the instance's injected lifecycle hooks\n data.registerRouteInstance = function (vm, val) {\n // val could be undefined for unregistration\n var current = matched.instances[name];\n if (\n (val && current !== vm) ||\n (!val && current === vm)\n ) {\n matched.instances[name] = val;\n }\n }\n\n // also register instance in prepatch hook\n // in case the same component instance is reused across different routes\n ;(data.hook || (data.hook = {})).prepatch = function (_, vnode) {\n matched.instances[name] = vnode.componentInstance;\n };\n\n // register instance in init hook\n // in case kept-alive component be actived when routes changed\n data.hook.init = function (vnode) {\n if (vnode.data.keepAlive &&\n vnode.componentInstance &&\n vnode.componentInstance !== matched.instances[name]\n ) {\n matched.instances[name] = vnode.componentInstance;\n }\n\n // if the route transition has already been confirmed then we weren't\n // able to call the cbs during confirmation as the component was not\n // registered yet, so we call it here.\n handleRouteEntered(route);\n };\n\n var configProps = matched.props && matched.props[name];\n // save route and configProps in cache\n if (configProps) {\n extend(cache[name], {\n route: route,\n configProps: configProps\n });\n fillPropsinData(component, data, route, configProps);\n }\n\n return h(component, data, children)\n }\n};\n\nfunction fillPropsinData (component, data, route, configProps) {\n // resolve props\n var propsToPass = data.props = resolveProps(route, configProps);\n if (propsToPass) {\n // clone to prevent mutation\n propsToPass = data.props = extend({}, propsToPass);\n // pass non-declared props as attrs\n var attrs = data.attrs = data.attrs || {};\n for (var key in propsToPass) {\n if (!component.props || !(key in component.props)) {\n attrs[key] = propsToPass[key];\n delete propsToPass[key];\n }\n }\n }\n}\n\nfunction resolveProps (route, config) {\n switch (typeof config) {\n case 'undefined':\n return\n case 'object':\n return config\n case 'function':\n return config(route)\n case 'boolean':\n return config ? route.params : undefined\n default:\n if (process.env.NODE_ENV !== 'production') {\n warn(\n false,\n \"props in \\\"\" + (route.path) + \"\\\" is a \" + (typeof config) + \", \" +\n \"expecting an object, function or boolean.\"\n );\n }\n }\n}\n\n/* */\n\nfunction resolvePath (\n relative,\n base,\n append\n) {\n var firstChar = relative.charAt(0);\n if (firstChar === '/') {\n return relative\n }\n\n if (firstChar === '?' || firstChar === '#') {\n return base + relative\n }\n\n var stack = base.split('/');\n\n // remove trailing segment if:\n // - not appending\n // - appending to trailing slash (last segment is empty)\n if (!append || !stack[stack.length - 1]) {\n stack.pop();\n }\n\n // resolve relative path\n var segments = relative.replace(/^\\//, '').split('/');\n for (var i = 0; i < segments.length; i++) {\n var segment = segments[i];\n if (segment === '..') {\n stack.pop();\n } else if (segment !== '.') {\n stack.push(segment);\n }\n }\n\n // ensure leading slash\n if (stack[0] !== '') {\n stack.unshift('');\n }\n\n return stack.join('/')\n}\n\nfunction parsePath (path) {\n var hash = '';\n var query = '';\n\n var hashIndex = path.indexOf('#');\n if (hashIndex >= 0) {\n hash = path.slice(hashIndex);\n path = path.slice(0, hashIndex);\n }\n\n var queryIndex = path.indexOf('?');\n if (queryIndex >= 0) {\n query = path.slice(queryIndex + 1);\n path = path.slice(0, queryIndex);\n }\n\n return {\n path: path,\n query: query,\n hash: hash\n }\n}\n\nfunction cleanPath (path) {\n return path.replace(/\\/(?:\\s*\\/)+/g, '/')\n}\n\nvar isarray = Array.isArray || function (arr) {\n return Object.prototype.toString.call(arr) == '[object Array]';\n};\n\n/**\n * Expose `pathToRegexp`.\n */\nvar pathToRegexp_1 = pathToRegexp;\nvar parse_1 = parse;\nvar compile_1 = compile;\nvar tokensToFunction_1 = tokensToFunction;\nvar tokensToRegExp_1 = tokensToRegExp;\n\n/**\n * The main path matching regexp utility.\n *\n * @type {RegExp}\n */\nvar PATH_REGEXP = new RegExp([\n // Match escaped characters that would otherwise appear in future matches.\n // This allows the user to escape special characters that won't transform.\n '(\\\\\\\\.)',\n // Match Express-style parameters and un-named parameters with a prefix\n // and optional suffixes. Matches appear as:\n //\n // \"/:test(\\\\d+)?\" => [\"/\", \"test\", \"\\d+\", undefined, \"?\", undefined]\n // \"/route(\\\\d+)\" => [undefined, undefined, undefined, \"\\d+\", undefined, undefined]\n // \"/*\" => [\"/\", undefined, undefined, undefined, undefined, \"*\"]\n '([\\\\/.])?(?:(?:\\\\:(\\\\w+)(?:\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))?|\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))([+*?])?|(\\\\*))'\n].join('|'), 'g');\n\n/**\n * Parse a string for the raw tokens.\n *\n * @param {string} str\n * @param {Object=} options\n * @return {!Array}\n */\nfunction parse (str, options) {\n var tokens = [];\n var key = 0;\n var index = 0;\n var path = '';\n var defaultDelimiter = options && options.delimiter || '/';\n var res;\n\n while ((res = PATH_REGEXP.exec(str)) != null) {\n var m = res[0];\n var escaped = res[1];\n var offset = res.index;\n path += str.slice(index, offset);\n index = offset + m.length;\n\n // Ignore already escaped sequences.\n if (escaped) {\n path += escaped[1];\n continue\n }\n\n var next = str[index];\n var prefix = res[2];\n var name = res[3];\n var capture = res[4];\n var group = res[5];\n var modifier = res[6];\n var asterisk = res[7];\n\n // Push the current path onto the tokens.\n if (path) {\n tokens.push(path);\n path = '';\n }\n\n var partial = prefix != null && next != null && next !== prefix;\n var repeat = modifier === '+' || modifier === '*';\n var optional = modifier === '?' || modifier === '*';\n var delimiter = res[2] || defaultDelimiter;\n var pattern = capture || group;\n\n tokens.push({\n name: name || key++,\n prefix: prefix || '',\n delimiter: delimiter,\n optional: optional,\n repeat: repeat,\n partial: partial,\n asterisk: !!asterisk,\n pattern: pattern ? escapeGroup(pattern) : (asterisk ? '.*' : '[^' + escapeString(delimiter) + ']+?')\n });\n }\n\n // Match any characters still remaining.\n if (index < str.length) {\n path += str.substr(index);\n }\n\n // If the path exists, push it onto the end.\n if (path) {\n tokens.push(path);\n }\n\n return tokens\n}\n\n/**\n * Compile a string to a template function for the path.\n *\n * @param {string} str\n * @param {Object=} options\n * @return {!function(Object=, Object=)}\n */\nfunction compile (str, options) {\n return tokensToFunction(parse(str, options), options)\n}\n\n/**\n * Prettier encoding of URI path segments.\n *\n * @param {string}\n * @return {string}\n */\nfunction encodeURIComponentPretty (str) {\n return encodeURI(str).replace(/[\\/?#]/g, function (c) {\n return '%' + c.charCodeAt(0).toString(16).toUpperCase()\n })\n}\n\n/**\n * Encode the asterisk parameter. Similar to `pretty`, but allows slashes.\n *\n * @param {string}\n * @return {string}\n */\nfunction encodeAsterisk (str) {\n return encodeURI(str).replace(/[?#]/g, function (c) {\n return '%' + c.charCodeAt(0).toString(16).toUpperCase()\n })\n}\n\n/**\n * Expose a method for transforming tokens into the path function.\n */\nfunction tokensToFunction (tokens, options) {\n // Compile all the tokens into regexps.\n var matches = new Array(tokens.length);\n\n // Compile all the patterns before compilation.\n for (var i = 0; i < tokens.length; i++) {\n if (typeof tokens[i] === 'object') {\n matches[i] = new RegExp('^(?:' + tokens[i].pattern + ')$', flags(options));\n }\n }\n\n return function (obj, opts) {\n var path = '';\n var data = obj || {};\n var options = opts || {};\n var encode = options.pretty ? encodeURIComponentPretty : encodeURIComponent;\n\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i];\n\n if (typeof token === 'string') {\n path += token;\n\n continue\n }\n\n var value = data[token.name];\n var segment;\n\n if (value == null) {\n if (token.optional) {\n // Prepend partial segment prefixes.\n if (token.partial) {\n path += token.prefix;\n }\n\n continue\n } else {\n throw new TypeError('Expected \"' + token.name + '\" to be defined')\n }\n }\n\n if (isarray(value)) {\n if (!token.repeat) {\n throw new TypeError('Expected \"' + token.name + '\" to not repeat, but received `' + JSON.stringify(value) + '`')\n }\n\n if (value.length === 0) {\n if (token.optional) {\n continue\n } else {\n throw new TypeError('Expected \"' + token.name + '\" to not be empty')\n }\n }\n\n for (var j = 0; j < value.length; j++) {\n segment = encode(value[j]);\n\n if (!matches[i].test(segment)) {\n throw new TypeError('Expected all \"' + token.name + '\" to match \"' + token.pattern + '\", but received `' + JSON.stringify(segment) + '`')\n }\n\n path += (j === 0 ? token.prefix : token.delimiter) + segment;\n }\n\n continue\n }\n\n segment = token.asterisk ? encodeAsterisk(value) : encode(value);\n\n if (!matches[i].test(segment)) {\n throw new TypeError('Expected \"' + token.name + '\" to match \"' + token.pattern + '\", but received \"' + segment + '\"')\n }\n\n path += token.prefix + segment;\n }\n\n return path\n }\n}\n\n/**\n * Escape a regular expression string.\n *\n * @param {string} str\n * @return {string}\n */\nfunction escapeString (str) {\n return str.replace(/([.+*?=^!:${}()[\\]|\\/\\\\])/g, '\\\\$1')\n}\n\n/**\n * Escape the capturing group by escaping special characters and meaning.\n *\n * @param {string} group\n * @return {string}\n */\nfunction escapeGroup (group) {\n return group.replace(/([=!:$\\/()])/g, '\\\\$1')\n}\n\n/**\n * Attach the keys as a property of the regexp.\n *\n * @param {!RegExp} re\n * @param {Array} keys\n * @return {!RegExp}\n */\nfunction attachKeys (re, keys) {\n re.keys = keys;\n return re\n}\n\n/**\n * Get the flags for a regexp from the options.\n *\n * @param {Object} options\n * @return {string}\n */\nfunction flags (options) {\n return options && options.sensitive ? '' : 'i'\n}\n\n/**\n * Pull out keys from a regexp.\n *\n * @param {!RegExp} path\n * @param {!Array} keys\n * @return {!RegExp}\n */\nfunction regexpToRegexp (path, keys) {\n // Use a negative lookahead to match only capturing groups.\n var groups = path.source.match(/\\((?!\\?)/g);\n\n if (groups) {\n for (var i = 0; i < groups.length; i++) {\n keys.push({\n name: i,\n prefix: null,\n delimiter: null,\n optional: false,\n repeat: false,\n partial: false,\n asterisk: false,\n pattern: null\n });\n }\n }\n\n return attachKeys(path, keys)\n}\n\n/**\n * Transform an array into a regexp.\n *\n * @param {!Array} path\n * @param {Array} keys\n * @param {!Object} options\n * @return {!RegExp}\n */\nfunction arrayToRegexp (path, keys, options) {\n var parts = [];\n\n for (var i = 0; i < path.length; i++) {\n parts.push(pathToRegexp(path[i], keys, options).source);\n }\n\n var regexp = new RegExp('(?:' + parts.join('|') + ')', flags(options));\n\n return attachKeys(regexp, keys)\n}\n\n/**\n * Create a path regexp from string input.\n *\n * @param {string} path\n * @param {!Array} keys\n * @param {!Object} options\n * @return {!RegExp}\n */\nfunction stringToRegexp (path, keys, options) {\n return tokensToRegExp(parse(path, options), keys, options)\n}\n\n/**\n * Expose a function for taking tokens and returning a RegExp.\n *\n * @param {!Array} tokens\n * @param {(Array|Object)=} keys\n * @param {Object=} options\n * @return {!RegExp}\n */\nfunction tokensToRegExp (tokens, keys, options) {\n if (!isarray(keys)) {\n options = /** @type {!Object} */ (keys || options);\n keys = [];\n }\n\n options = options || {};\n\n var strict = options.strict;\n var end = options.end !== false;\n var route = '';\n\n // Iterate over the tokens and create our regexp string.\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i];\n\n if (typeof token === 'string') {\n route += escapeString(token);\n } else {\n var prefix = escapeString(token.prefix);\n var capture = '(?:' + token.pattern + ')';\n\n keys.push(token);\n\n if (token.repeat) {\n capture += '(?:' + prefix + capture + ')*';\n }\n\n if (token.optional) {\n if (!token.partial) {\n capture = '(?:' + prefix + '(' + capture + '))?';\n } else {\n capture = prefix + '(' + capture + ')?';\n }\n } else {\n capture = prefix + '(' + capture + ')';\n }\n\n route += capture;\n }\n }\n\n var delimiter = escapeString(options.delimiter || '/');\n var endsWithDelimiter = route.slice(-delimiter.length) === delimiter;\n\n // In non-strict mode we allow a slash at the end of match. If the path to\n // match already ends with a slash, we remove it for consistency. The slash\n // is valid at the end of a path match, not in the middle. This is important\n // in non-ending mode, where \"/test/\" shouldn't match \"/test//route\".\n if (!strict) {\n route = (endsWithDelimiter ? route.slice(0, -delimiter.length) : route) + '(?:' + delimiter + '(?=$))?';\n }\n\n if (end) {\n route += '$';\n } else {\n // In non-ending mode, we need the capturing groups to match as much as\n // possible by using a positive lookahead to the end or next path segment.\n route += strict && endsWithDelimiter ? '' : '(?=' + delimiter + '|$)';\n }\n\n return attachKeys(new RegExp('^' + route, flags(options)), keys)\n}\n\n/**\n * Normalize the given path string, returning a regular expression.\n *\n * An empty array can be passed in for the keys, which will hold the\n * placeholder key descriptions. For example, using `/user/:id`, `keys` will\n * contain `[{ name: 'id', delimiter: '/', optional: false, repeat: false }]`.\n *\n * @param {(string|RegExp|Array)} path\n * @param {(Array|Object)=} keys\n * @param {Object=} options\n * @return {!RegExp}\n */\nfunction pathToRegexp (path, keys, options) {\n if (!isarray(keys)) {\n options = /** @type {!Object} */ (keys || options);\n keys = [];\n }\n\n options = options || {};\n\n if (path instanceof RegExp) {\n return regexpToRegexp(path, /** @type {!Array} */ (keys))\n }\n\n if (isarray(path)) {\n return arrayToRegexp(/** @type {!Array} */ (path), /** @type {!Array} */ (keys), options)\n }\n\n return stringToRegexp(/** @type {string} */ (path), /** @type {!Array} */ (keys), options)\n}\npathToRegexp_1.parse = parse_1;\npathToRegexp_1.compile = compile_1;\npathToRegexp_1.tokensToFunction = tokensToFunction_1;\npathToRegexp_1.tokensToRegExp = tokensToRegExp_1;\n\n/* */\n\n// $flow-disable-line\nvar regexpCompileCache = Object.create(null);\n\nfunction fillParams (\n path,\n params,\n routeMsg\n) {\n params = params || {};\n try {\n var filler =\n regexpCompileCache[path] ||\n (regexpCompileCache[path] = pathToRegexp_1.compile(path));\n\n // Fix #2505 resolving asterisk routes { name: 'not-found', params: { pathMatch: '/not-found' }}\n // and fix #3106 so that you can work with location descriptor object having params.pathMatch equal to empty string\n if (typeof params.pathMatch === 'string') { params[0] = params.pathMatch; }\n\n return filler(params, { pretty: true })\n } catch (e) {\n if (process.env.NODE_ENV !== 'production') {\n // Fix #3072 no warn if `pathMatch` is string\n warn(typeof params.pathMatch === 'string', (\"missing param for \" + routeMsg + \": \" + (e.message)));\n }\n return ''\n } finally {\n // delete the 0 if it was added\n delete params[0];\n }\n}\n\n/* */\n\nfunction normalizeLocation (\n raw,\n current,\n append,\n router\n) {\n var next = typeof raw === 'string' ? { path: raw } : raw;\n // named target\n if (next._normalized) {\n return next\n } else if (next.name) {\n next = extend({}, raw);\n var params = next.params;\n if (params && typeof params === 'object') {\n next.params = extend({}, params);\n }\n return next\n }\n\n // relative params\n if (!next.path && next.params && current) {\n next = extend({}, next);\n next._normalized = true;\n var params$1 = extend(extend({}, current.params), next.params);\n if (current.name) {\n next.name = current.name;\n next.params = params$1;\n } else if (current.matched.length) {\n var rawPath = current.matched[current.matched.length - 1].path;\n next.path = fillParams(rawPath, params$1, (\"path \" + (current.path)));\n } else if (process.env.NODE_ENV !== 'production') {\n warn(false, \"relative params navigation requires a current route.\");\n }\n return next\n }\n\n var parsedPath = parsePath(next.path || '');\n var basePath = (current && current.path) || '/';\n var path = parsedPath.path\n ? resolvePath(parsedPath.path, basePath, append || next.append)\n : basePath;\n\n var query = resolveQuery(\n parsedPath.query,\n next.query,\n router && router.options.parseQuery\n );\n\n var hash = next.hash || parsedPath.hash;\n if (hash && hash.charAt(0) !== '#') {\n hash = \"#\" + hash;\n }\n\n return {\n _normalized: true,\n path: path,\n query: query,\n hash: hash\n }\n}\n\n/* */\n\n// work around weird flow bug\nvar toTypes = [String, Object];\nvar eventTypes = [String, Array];\n\nvar noop = function () {};\n\nvar warnedCustomSlot;\nvar warnedTagProp;\nvar warnedEventProp;\n\nvar Link = {\n name: 'RouterLink',\n props: {\n to: {\n type: toTypes,\n required: true\n },\n tag: {\n type: String,\n default: 'a'\n },\n custom: Boolean,\n exact: Boolean,\n exactPath: Boolean,\n append: Boolean,\n replace: Boolean,\n activeClass: String,\n exactActiveClass: String,\n ariaCurrentValue: {\n type: String,\n default: 'page'\n },\n event: {\n type: eventTypes,\n default: 'click'\n }\n },\n render: function render (h) {\n var this$1$1 = this;\n\n var router = this.$router;\n var current = this.$route;\n var ref = router.resolve(\n this.to,\n current,\n this.append\n );\n var location = ref.location;\n var route = ref.route;\n var href = ref.href;\n\n var classes = {};\n var globalActiveClass = router.options.linkActiveClass;\n var globalExactActiveClass = router.options.linkExactActiveClass;\n // Support global empty active class\n var activeClassFallback =\n globalActiveClass == null ? 'router-link-active' : globalActiveClass;\n var exactActiveClassFallback =\n globalExactActiveClass == null\n ? 'router-link-exact-active'\n : globalExactActiveClass;\n var activeClass =\n this.activeClass == null ? activeClassFallback : this.activeClass;\n var exactActiveClass =\n this.exactActiveClass == null\n ? exactActiveClassFallback\n : this.exactActiveClass;\n\n var compareTarget = route.redirectedFrom\n ? createRoute(null, normalizeLocation(route.redirectedFrom), null, router)\n : route;\n\n classes[exactActiveClass] = isSameRoute(current, compareTarget, this.exactPath);\n classes[activeClass] = this.exact || this.exactPath\n ? classes[exactActiveClass]\n : isIncludedRoute(current, compareTarget);\n\n var ariaCurrentValue = classes[exactActiveClass] ? this.ariaCurrentValue : null;\n\n var handler = function (e) {\n if (guardEvent(e)) {\n if (this$1$1.replace) {\n router.replace(location, noop);\n } else {\n router.push(location, noop);\n }\n }\n };\n\n var on = { click: guardEvent };\n if (Array.isArray(this.event)) {\n this.event.forEach(function (e) {\n on[e] = handler;\n });\n } else {\n on[this.event] = handler;\n }\n\n var data = { class: classes };\n\n var scopedSlot =\n !this.$scopedSlots.$hasNormal &&\n this.$scopedSlots.default &&\n this.$scopedSlots.default({\n href: href,\n route: route,\n navigate: handler,\n isActive: classes[activeClass],\n isExactActive: classes[exactActiveClass]\n });\n\n if (scopedSlot) {\n if (process.env.NODE_ENV !== 'production' && !this.custom) {\n !warnedCustomSlot && warn(false, 'In Vue Router 4, the v-slot API will by default wrap its content with an <a> element. Use the custom prop to remove this warning:\\n<router-link v-slot=\"{ navigate, href }\" custom></router-link>\\n');\n warnedCustomSlot = true;\n }\n if (scopedSlot.length === 1) {\n return scopedSlot[0]\n } else if (scopedSlot.length > 1 || !scopedSlot.length) {\n if (process.env.NODE_ENV !== 'production') {\n warn(\n false,\n (\"<router-link> with to=\\\"\" + (this.to) + \"\\\" is trying to use a scoped slot but it didn't provide exactly one child. Wrapping the content with a span element.\")\n );\n }\n return scopedSlot.length === 0 ? h() : h('span', {}, scopedSlot)\n }\n }\n\n if (process.env.NODE_ENV !== 'production') {\n if ('tag' in this.$options.propsData && !warnedTagProp) {\n warn(\n false,\n \"<router-link>'s tag prop is deprecated and has been removed in Vue Router 4. Use the v-slot API to remove this warning: https://next.router.vuejs.org/guide/migration/#removal-of-event-and-tag-props-in-router-link.\"\n );\n warnedTagProp = true;\n }\n if ('event' in this.$options.propsData && !warnedEventProp) {\n warn(\n false,\n \"<router-link>'s event prop is deprecated and has been removed in Vue Router 4. Use the v-slot API to remove this warning: https://next.router.vuejs.org/guide/migration/#removal-of-event-and-tag-props-in-router-link.\"\n );\n warnedEventProp = true;\n }\n }\n\n if (this.tag === 'a') {\n data.on = on;\n data.attrs = { href: href, 'aria-current': ariaCurrentValue };\n } else {\n // find the first <a> child and apply listener and href\n var a = findAnchor(this.$slots.default);\n if (a) {\n // in case the <a> is a static node\n a.isStatic = false;\n var aData = (a.data = extend({}, a.data));\n aData.on = aData.on || {};\n // transform existing events in both objects into arrays so we can push later\n for (var event in aData.on) {\n var handler$1 = aData.on[event];\n if (event in on) {\n aData.on[event] = Array.isArray(handler$1) ? handler$1 : [handler$1];\n }\n }\n // append new listeners for router-link\n for (var event$1 in on) {\n if (event$1 in aData.on) {\n // on[event] is always a function\n aData.on[event$1].push(on[event$1]);\n } else {\n aData.on[event$1] = handler;\n }\n }\n\n var aAttrs = (a.data.attrs = extend({}, a.data.attrs));\n aAttrs.href = href;\n aAttrs['aria-current'] = ariaCurrentValue;\n } else {\n // doesn't have <a> child, apply listener to self\n data.on = on;\n }\n }\n\n return h(this.tag, data, this.$slots.default)\n }\n};\n\nfunction guardEvent (e) {\n // don't redirect with control keys\n if (e.metaKey || e.altKey || e.ctrlKey || e.shiftKey) { return }\n // don't redirect when preventDefault called\n if (e.defaultPrevented) { return }\n // don't redirect on right click\n if (e.button !== undefined && e.button !== 0) { return }\n // don't redirect if `target=\"_blank\"`\n if (e.currentTarget && e.currentTarget.getAttribute) {\n var target = e.currentTarget.getAttribute('target');\n if (/\\b_blank\\b/i.test(target)) { return }\n }\n // this may be a Weex event which doesn't have this method\n if (e.preventDefault) {\n e.preventDefault();\n }\n return true\n}\n\nfunction findAnchor (children) {\n if (children) {\n var child;\n for (var i = 0; i < children.length; i++) {\n child = children[i];\n if (child.tag === 'a') {\n return child\n }\n if (child.children && (child = findAnchor(child.children))) {\n return child\n }\n }\n }\n}\n\nvar _Vue;\n\nfunction install (Vue) {\n if (install.installed && _Vue === Vue) { return }\n install.installed = true;\n\n _Vue = Vue;\n\n var isDef = function (v) { return v !== undefined; };\n\n var registerInstance = function (vm, callVal) {\n var i = vm.$options._parentVnode;\n if (isDef(i) && isDef(i = i.data) && isDef(i = i.registerRouteInstance)) {\n i(vm, callVal);\n }\n };\n\n Vue.mixin({\n beforeCreate: function beforeCreate () {\n if (isDef(this.$options.router)) {\n this._routerRoot = this;\n this._router = this.$options.router;\n this._router.init(this);\n Vue.util.defineReactive(this, '_route', this._router.history.current);\n } else {\n this._routerRoot = (this.$parent && this.$parent._routerRoot) || this;\n }\n registerInstance(this, this);\n },\n destroyed: function destroyed () {\n registerInstance(this);\n }\n });\n\n Object.defineProperty(Vue.prototype, '$router', {\n get: function get () { return this._routerRoot._router }\n });\n\n Object.defineProperty(Vue.prototype, '$route', {\n get: function get () { return this._routerRoot._route }\n });\n\n Vue.component('RouterView', View);\n Vue.component('RouterLink', Link);\n\n var strats = Vue.config.optionMergeStrategies;\n // use the same hook merging strategy for route hooks\n strats.beforeRouteEnter = strats.beforeRouteLeave = strats.beforeRouteUpdate = strats.created;\n}\n\n/* */\n\nvar inBrowser = typeof window !== 'undefined';\n\n/* */\n\nfunction createRouteMap (\n routes,\n oldPathList,\n oldPathMap,\n oldNameMap,\n parentRoute\n) {\n // the path list is used to control path matching priority\n var pathList = oldPathList || [];\n // $flow-disable-line\n var pathMap = oldPathMap || Object.create(null);\n // $flow-disable-line\n var nameMap = oldNameMap || Object.create(null);\n\n routes.forEach(function (route) {\n addRouteRecord(pathList, pathMap, nameMap, route, parentRoute);\n });\n\n // ensure wildcard routes are always at the end\n for (var i = 0, l = pathList.length; i < l; i++) {\n if (pathList[i] === '*') {\n pathList.push(pathList.splice(i, 1)[0]);\n l--;\n i--;\n }\n }\n\n if (process.env.NODE_ENV === 'development') {\n // warn if routes do not include leading slashes\n var found = pathList\n // check for missing leading slash\n .filter(function (path) { return path && path.charAt(0) !== '*' && path.charAt(0) !== '/'; });\n\n if (found.length > 0) {\n var pathNames = found.map(function (path) { return (\"- \" + path); }).join('\\n');\n warn(false, (\"Non-nested routes must include a leading slash character. Fix the following routes: \\n\" + pathNames));\n }\n }\n\n return {\n pathList: pathList,\n pathMap: pathMap,\n nameMap: nameMap\n }\n}\n\nfunction addRouteRecord (\n pathList,\n pathMap,\n nameMap,\n route,\n parent,\n matchAs\n) {\n var path = route.path;\n var name = route.name;\n if (process.env.NODE_ENV !== 'production') {\n assert(path != null, \"\\\"path\\\" is required in a route configuration.\");\n assert(\n typeof route.component !== 'string',\n \"route config \\\"component\\\" for path: \" + (String(\n path || name\n )) + \" cannot be a \" + \"string id. Use an actual component instead.\"\n );\n\n warn(\n // eslint-disable-next-line no-control-regex\n !/[^\\u0000-\\u007F]+/.test(path),\n \"Route with path \\\"\" + path + \"\\\" contains unencoded characters, make sure \" +\n \"your path is correctly encoded before passing it to the router. Use \" +\n \"encodeURI to encode static segments of your path.\"\n );\n }\n\n var pathToRegexpOptions =\n route.pathToRegexpOptions || {};\n var normalizedPath = normalizePath(path, parent, pathToRegexpOptions.strict);\n\n if (typeof route.caseSensitive === 'boolean') {\n pathToRegexpOptions.sensitive = route.caseSensitive;\n }\n\n var record = {\n path: normalizedPath,\n regex: compileRouteRegex(normalizedPath, pathToRegexpOptions),\n components: route.components || { default: route.component },\n alias: route.alias\n ? typeof route.alias === 'string'\n ? [route.alias]\n : route.alias\n : [],\n instances: {},\n enteredCbs: {},\n name: name,\n parent: parent,\n matchAs: matchAs,\n redirect: route.redirect,\n beforeEnter: route.beforeEnter,\n meta: route.meta || {},\n props:\n route.props == null\n ? {}\n : route.components\n ? route.props\n : { default: route.props }\n };\n\n if (route.children) {\n // Warn if route is named, does not redirect and has a default child route.\n // If users navigate to this route by name, the default child will\n // not be rendered (GH Issue #629)\n if (process.env.NODE_ENV !== 'production') {\n if (\n route.name &&\n !route.redirect &&\n route.children.some(function (child) { return /^\\/?$/.test(child.path); })\n ) {\n warn(\n false,\n \"Named Route '\" + (route.name) + \"' has a default child route. \" +\n \"When navigating to this named route (:to=\\\"{name: '\" + (route.name) + \"'}\\\"), \" +\n \"the default child route will not be rendered. Remove the name from \" +\n \"this route and use the name of the default child route for named \" +\n \"links instead.\"\n );\n }\n }\n route.children.forEach(function (child) {\n var childMatchAs = matchAs\n ? cleanPath((matchAs + \"/\" + (child.path)))\n : undefined;\n addRouteRecord(pathList, pathMap, nameMap, child, record, childMatchAs);\n });\n }\n\n if (!pathMap[record.path]) {\n pathList.push(record.path);\n pathMap[record.path] = record;\n }\n\n if (route.alias !== undefined) {\n var aliases = Array.isArray(route.alias) ? route.alias : [route.alias];\n for (var i = 0; i < aliases.length; ++i) {\n var alias = aliases[i];\n if (process.env.NODE_ENV !== 'production' && alias === path) {\n warn(\n false,\n (\"Found an alias with the same value as the path: \\\"\" + path + \"\\\". You have to remove that alias. It will be ignored in development.\")\n );\n // skip in dev to make it work\n continue\n }\n\n var aliasRoute = {\n path: alias,\n children: route.children\n };\n addRouteRecord(\n pathList,\n pathMap,\n nameMap,\n aliasRoute,\n parent,\n record.path || '/' // matchAs\n );\n }\n }\n\n if (name) {\n if (!nameMap[name]) {\n nameMap[name] = record;\n } else if (process.env.NODE_ENV !== 'production' && !matchAs) {\n warn(\n false,\n \"Duplicate named routes definition: \" +\n \"{ name: \\\"\" + name + \"\\\", path: \\\"\" + (record.path) + \"\\\" }\"\n );\n }\n }\n}\n\nfunction compileRouteRegex (\n path,\n pathToRegexpOptions\n) {\n var regex = pathToRegexp_1(path, [], pathToRegexpOptions);\n if (process.env.NODE_ENV !== 'production') {\n var keys = Object.create(null);\n regex.keys.forEach(function (key) {\n warn(\n !keys[key.name],\n (\"Duplicate param keys in route with path: \\\"\" + path + \"\\\"\")\n );\n keys[key.name] = true;\n });\n }\n return regex\n}\n\nfunction normalizePath (\n path,\n parent,\n strict\n) {\n if (!strict) { path = path.replace(/\\/$/, ''); }\n if (path[0] === '/') { return path }\n if (parent == null) { return path }\n return cleanPath(((parent.path) + \"/\" + path))\n}\n\n/* */\n\n\n\nfunction createMatcher (\n routes,\n router\n) {\n var ref = createRouteMap(routes);\n var pathList = ref.pathList;\n var pathMap = ref.pathMap;\n var nameMap = ref.nameMap;\n\n function addRoutes (routes) {\n createRouteMap(routes, pathList, pathMap, nameMap);\n }\n\n function addRoute (parentOrRoute, route) {\n var parent = (typeof parentOrRoute !== 'object') ? nameMap[parentOrRoute] : undefined;\n // $flow-disable-line\n createRouteMap([route || parentOrRoute], pathList, pathMap, nameMap, parent);\n\n // add aliases of parent\n if (parent && parent.alias.length) {\n createRouteMap(\n // $flow-disable-line route is defined if parent is\n parent.alias.map(function (alias) { return ({ path: alias, children: [route] }); }),\n pathList,\n pathMap,\n nameMap,\n parent\n );\n }\n }\n\n function getRoutes () {\n return pathList.map(function (path) { return pathMap[path]; })\n }\n\n function match (\n raw,\n currentRoute,\n redirectedFrom\n ) {\n var location = normalizeLocation(raw, currentRoute, false, router);\n var name = location.name;\n\n if (name) {\n var record = nameMap[name];\n if (process.env.NODE_ENV !== 'production') {\n warn(record, (\"Route with name '\" + name + \"' does not exist\"));\n }\n if (!record) { return _createRoute(null, location) }\n var paramNames = record.regex.keys\n .filter(function (key) { return !key.optional; })\n .map(function (key) { return key.name; });\n\n if (typeof location.params !== 'object') {\n location.params = {};\n }\n\n if (currentRoute && typeof currentRoute.params === 'object') {\n for (var key in currentRoute.params) {\n if (!(key in location.params) && paramNames.indexOf(key) > -1) {\n location.params[key] = currentRoute.params[key];\n }\n }\n }\n\n location.path = fillParams(record.path, location.params, (\"named route \\\"\" + name + \"\\\"\"));\n return _createRoute(record, location, redirectedFrom)\n } else if (location.path) {\n location.params = {};\n for (var i = 0; i < pathList.length; i++) {\n var path = pathList[i];\n var record$1 = pathMap[path];\n if (matchRoute(record$1.regex, location.path, location.params)) {\n return _createRoute(record$1, location, redirectedFrom)\n }\n }\n }\n // no match\n return _createRoute(null, location)\n }\n\n function redirect (\n record,\n location\n ) {\n var originalRedirect = record.redirect;\n var redirect = typeof originalRedirect === 'function'\n ? originalRedirect(createRoute(record, location, null, router))\n : originalRedirect;\n\n if (typeof redirect === 'string') {\n redirect = { path: redirect };\n }\n\n if (!redirect || typeof redirect !== 'object') {\n if (process.env.NODE_ENV !== 'production') {\n warn(\n false, (\"invalid redirect option: \" + (JSON.stringify(redirect)))\n );\n }\n return _createRoute(null, location)\n }\n\n var re = redirect;\n var name = re.name;\n var path = re.path;\n var query = location.query;\n var hash = location.hash;\n var params = location.params;\n query = re.hasOwnProperty('query') ? re.query : query;\n hash = re.hasOwnProperty('hash') ? re.hash : hash;\n params = re.hasOwnProperty('params') ? re.params : params;\n\n if (name) {\n // resolved named direct\n var targetRecord = nameMap[name];\n if (process.env.NODE_ENV !== 'production') {\n assert(targetRecord, (\"redirect failed: named route \\\"\" + name + \"\\\" not found.\"));\n }\n return match({\n _normalized: true,\n name: name,\n query: query,\n hash: hash,\n params: params\n }, undefined, location)\n } else if (path) {\n // 1. resolve relative redirect\n var rawPath = resolveRecordPath(path, record);\n // 2. resolve params\n var resolvedPath = fillParams(rawPath, params, (\"redirect route with path \\\"\" + rawPath + \"\\\"\"));\n // 3. rematch with existing query and hash\n return match({\n _normalized: true,\n path: resolvedPath,\n query: query,\n hash: hash\n }, undefined, location)\n } else {\n if (process.env.NODE_ENV !== 'production') {\n warn(false, (\"invalid redirect option: \" + (JSON.stringify(redirect))));\n }\n return _createRoute(null, location)\n }\n }\n\n function alias (\n record,\n location,\n matchAs\n ) {\n var aliasedPath = fillParams(matchAs, location.params, (\"aliased route with path \\\"\" + matchAs + \"\\\"\"));\n var aliasedMatch = match({\n _normalized: true,\n path: aliasedPath\n });\n if (aliasedMatch) {\n var matched = aliasedMatch.matched;\n var aliasedRecord = matched[matched.length - 1];\n location.params = aliasedMatch.params;\n return _createRoute(aliasedRecord, location)\n }\n return _createRoute(null, location)\n }\n\n function _createRoute (\n record,\n location,\n redirectedFrom\n ) {\n if (record && record.redirect) {\n return redirect(record, redirectedFrom || location)\n }\n if (record && record.matchAs) {\n return alias(record, location, record.matchAs)\n }\n return createRoute(record, location, redirectedFrom, router)\n }\n\n return {\n match: match,\n addRoute: addRoute,\n getRoutes: getRoutes,\n addRoutes: addRoutes\n }\n}\n\nfunction matchRoute (\n regex,\n path,\n params\n) {\n var m = path.match(regex);\n\n if (!m) {\n return false\n } else if (!params) {\n return true\n }\n\n for (var i = 1, len = m.length; i < len; ++i) {\n var key = regex.keys[i - 1];\n if (key) {\n // Fix #1994: using * with props: true generates a param named 0\n params[key.name || 'pathMatch'] = typeof m[i] === 'string' ? decode(m[i]) : m[i];\n }\n }\n\n return true\n}\n\nfunction resolveRecordPath (path, record) {\n return resolvePath(path, record.parent ? record.parent.path : '/', true)\n}\n\n/* */\n\n// use User Timing api (if present) for more accurate key precision\nvar Time =\n inBrowser && window.performance && window.performance.now\n ? window.performance\n : Date;\n\nfunction genStateKey () {\n return Time.now().toFixed(3)\n}\n\nvar _key = genStateKey();\n\nfunction getStateKey () {\n return _key\n}\n\nfunction setStateKey (key) {\n return (_key = key)\n}\n\n/* */\n\nvar positionStore = Object.create(null);\n\nfunction setupScroll () {\n // Prevent browser scroll behavior on History popstate\n if ('scrollRestoration' in window.history) {\n window.history.scrollRestoration = 'manual';\n }\n // Fix for #1585 for Firefox\n // Fix for #2195 Add optional third attribute to workaround a bug in safari https://bugs.webkit.org/show_bug.cgi?id=182678\n // Fix for #2774 Support for apps loaded from Windows file shares not mapped to network drives: replaced location.origin with\n // window.location.protocol + '//' + window.location.host\n // location.host contains the port and location.hostname doesn't\n var protocolAndPath = window.location.protocol + '//' + window.location.host;\n var absolutePath = window.location.href.replace(protocolAndPath, '');\n // preserve existing history state as it could be overriden by the user\n var stateCopy = extend({}, window.history.state);\n stateCopy.key = getStateKey();\n window.history.replaceState(stateCopy, '', absolutePath);\n window.addEventListener('popstate', handlePopState);\n return function () {\n window.removeEventListener('popstate', handlePopState);\n }\n}\n\nfunction handleScroll (\n router,\n to,\n from,\n isPop\n) {\n if (!router.app) {\n return\n }\n\n var behavior = router.options.scrollBehavior;\n if (!behavior) {\n return\n }\n\n if (process.env.NODE_ENV !== 'production') {\n assert(typeof behavior === 'function', \"scrollBehavior must be a function\");\n }\n\n // wait until re-render finishes before scrolling\n router.app.$nextTick(function () {\n var position = getScrollPosition();\n var shouldScroll = behavior.call(\n router,\n to,\n from,\n isPop ? position : null\n );\n\n if (!shouldScroll) {\n return\n }\n\n if (typeof shouldScroll.then === 'function') {\n shouldScroll\n .then(function (shouldScroll) {\n scrollToPosition((shouldScroll), position);\n })\n .catch(function (err) {\n if (process.env.NODE_ENV !== 'production') {\n assert(false, err.toString());\n }\n });\n } else {\n scrollToPosition(shouldScroll, position);\n }\n });\n}\n\nfunction saveScrollPosition () {\n var key = getStateKey();\n if (key) {\n positionStore[key] = {\n x: window.pageXOffset,\n y: window.pageYOffset\n };\n }\n}\n\nfunction handlePopState (e) {\n saveScrollPosition();\n if (e.state && e.state.key) {\n setStateKey(e.state.key);\n }\n}\n\nfunction getScrollPosition () {\n var key = getStateKey();\n if (key) {\n return positionStore[key]\n }\n}\n\nfunction getElementPosition (el, offset) {\n var docEl = document.documentElement;\n var docRect = docEl.getBoundingClientRect();\n var elRect = el.getBoundingClientRect();\n return {\n x: elRect.left - docRect.left - offset.x,\n y: elRect.top - docRect.top - offset.y\n }\n}\n\nfunction isValidPosition (obj) {\n return isNumber(obj.x) || isNumber(obj.y)\n}\n\nfunction normalizePosition (obj) {\n return {\n x: isNumber(obj.x) ? obj.x : window.pageXOffset,\n y: isNumber(obj.y) ? obj.y : window.pageYOffset\n }\n}\n\nfunction normalizeOffset (obj) {\n return {\n x: isNumber(obj.x) ? obj.x : 0,\n y: isNumber(obj.y) ? obj.y : 0\n }\n}\n\nfunction isNumber (v) {\n return typeof v === 'number'\n}\n\nvar hashStartsWithNumberRE = /^#\\d/;\n\nfunction scrollToPosition (shouldScroll, position) {\n var isObject = typeof shouldScroll === 'object';\n if (isObject && typeof shouldScroll.selector === 'string') {\n // getElementById would still fail if the selector contains a more complicated query like #main[data-attr]\n // but at the same time, it doesn't make much sense to select an element with an id and an extra selector\n var el = hashStartsWithNumberRE.test(shouldScroll.selector) // $flow-disable-line\n ? document.getElementById(shouldScroll.selector.slice(1)) // $flow-disable-line\n : document.querySelector(shouldScroll.selector);\n\n if (el) {\n var offset =\n shouldScroll.offset && typeof shouldScroll.offset === 'object'\n ? shouldScroll.offset\n : {};\n offset = normalizeOffset(offset);\n position = getElementPosition(el, offset);\n } else if (isValidPosition(shouldScroll)) {\n position = normalizePosition(shouldScroll);\n }\n } else if (isObject && isValidPosition(shouldScroll)) {\n position = normalizePosition(shouldScroll);\n }\n\n if (position) {\n // $flow-disable-line\n if ('scrollBehavior' in document.documentElement.style) {\n window.scrollTo({\n left: position.x,\n top: position.y,\n // $flow-disable-line\n behavior: shouldScroll.behavior\n });\n } else {\n window.scrollTo(position.x, position.y);\n }\n }\n}\n\n/* */\n\nvar supportsPushState =\n inBrowser &&\n (function () {\n var ua = window.navigator.userAgent;\n\n if (\n (ua.indexOf('Android 2.') !== -1 || ua.indexOf('Android 4.0') !== -1) &&\n ua.indexOf('Mobile Safari') !== -1 &&\n ua.indexOf('Chrome') === -1 &&\n ua.indexOf('Windows Phone') === -1\n ) {\n return false\n }\n\n return window.history && typeof window.history.pushState === 'function'\n })();\n\nfunction pushState (url, replace) {\n saveScrollPosition();\n // try...catch the pushState call to get around Safari\n // DOM Exception 18 where it limits to 100 pushState calls\n var history = window.history;\n try {\n if (replace) {\n // preserve existing history state as it could be overriden by the user\n var stateCopy = extend({}, history.state);\n stateCopy.key = getStateKey();\n history.replaceState(stateCopy, '', url);\n } else {\n history.pushState({ key: setStateKey(genStateKey()) }, '', url);\n }\n } catch (e) {\n window.location[replace ? 'replace' : 'assign'](url);\n }\n}\n\nfunction replaceState (url) {\n pushState(url, true);\n}\n\n// When changing thing, also edit router.d.ts\nvar NavigationFailureType = {\n redirected: 2,\n aborted: 4,\n cancelled: 8,\n duplicated: 16\n};\n\nfunction createNavigationRedirectedError (from, to) {\n return createRouterError(\n from,\n to,\n NavigationFailureType.redirected,\n (\"Redirected when going from \\\"\" + (from.fullPath) + \"\\\" to \\\"\" + (stringifyRoute(\n to\n )) + \"\\\" via a navigation guard.\")\n )\n}\n\nfunction createNavigationDuplicatedError (from, to) {\n var error = createRouterError(\n from,\n to,\n NavigationFailureType.duplicated,\n (\"Avoided redundant navigation to current location: \\\"\" + (from.fullPath) + \"\\\".\")\n );\n // backwards compatible with the first introduction of Errors\n error.name = 'NavigationDuplicated';\n return error\n}\n\nfunction createNavigationCancelledError (from, to) {\n return createRouterError(\n from,\n to,\n NavigationFailureType.cancelled,\n (\"Navigation cancelled from \\\"\" + (from.fullPath) + \"\\\" to \\\"\" + (to.fullPath) + \"\\\" with a new navigation.\")\n )\n}\n\nfunction createNavigationAbortedError (from, to) {\n return createRouterError(\n from,\n to,\n NavigationFailureType.aborted,\n (\"Navigation aborted from \\\"\" + (from.fullPath) + \"\\\" to \\\"\" + (to.fullPath) + \"\\\" via a navigation guard.\")\n )\n}\n\nfunction createRouterError (from, to, type, message) {\n var error = new Error(message);\n error._isRouter = true;\n error.from = from;\n error.to = to;\n error.type = type;\n\n return error\n}\n\nvar propertiesToLog = ['params', 'query', 'hash'];\n\nfunction stringifyRoute (to) {\n if (typeof to === 'string') { return to }\n if ('path' in to) { return to.path }\n var location = {};\n propertiesToLog.forEach(function (key) {\n if (key in to) { location[key] = to[key]; }\n });\n return JSON.stringify(location, null, 2)\n}\n\nfunction isError (err) {\n return Object.prototype.toString.call(err).indexOf('Error') > -1\n}\n\nfunction isNavigationFailure (err, errorType) {\n return (\n isError(err) &&\n err._isRouter &&\n (errorType == null || err.type === errorType)\n )\n}\n\n/* */\n\nfunction runQueue (queue, fn, cb) {\n var step = function (index) {\n if (index >= queue.length) {\n cb();\n } else {\n if (queue[index]) {\n fn(queue[index], function () {\n step(index + 1);\n });\n } else {\n step(index + 1);\n }\n }\n };\n step(0);\n}\n\n/* */\n\nfunction resolveAsyncComponents (matched) {\n return function (to, from, next) {\n var hasAsync = false;\n var pending = 0;\n var error = null;\n\n flatMapComponents(matched, function (def, _, match, key) {\n // if it's a function and doesn't have cid attached,\n // assume it's an async component resolve function.\n // we are not using Vue's default async resolving mechanism because\n // we want to halt the navigation until the incoming component has been\n // resolved.\n if (typeof def === 'function' && def.cid === undefined) {\n hasAsync = true;\n pending++;\n\n var resolve = once(function (resolvedDef) {\n if (isESModule(resolvedDef)) {\n resolvedDef = resolvedDef.default;\n }\n // save resolved on async factory in case it's used elsewhere\n def.resolved = typeof resolvedDef === 'function'\n ? resolvedDef\n : _Vue.extend(resolvedDef);\n match.components[key] = resolvedDef;\n pending--;\n if (pending <= 0) {\n next();\n }\n });\n\n var reject = once(function (reason) {\n var msg = \"Failed to resolve async component \" + key + \": \" + reason;\n process.env.NODE_ENV !== 'production' && warn(false, msg);\n if (!error) {\n error = isError(reason)\n ? reason\n : new Error(msg);\n next(error);\n }\n });\n\n var res;\n try {\n res = def(resolve, reject);\n } catch (e) {\n reject(e);\n }\n if (res) {\n if (typeof res.then === 'function') {\n res.then(resolve, reject);\n } else {\n // new syntax in Vue 2.3\n var comp = res.component;\n if (comp && typeof comp.then === 'function') {\n comp.then(resolve, reject);\n }\n }\n }\n }\n });\n\n if (!hasAsync) { next(); }\n }\n}\n\nfunction flatMapComponents (\n matched,\n fn\n) {\n return flatten(matched.map(function (m) {\n return Object.keys(m.components).map(function (key) { return fn(\n m.components[key],\n m.instances[key],\n m, key\n ); })\n }))\n}\n\nfunction flatten (arr) {\n return Array.prototype.concat.apply([], arr)\n}\n\nvar hasSymbol =\n typeof Symbol === 'function' &&\n typeof Symbol.toStringTag === 'symbol';\n\nfunction isESModule (obj) {\n return obj.__esModule || (hasSymbol && obj[Symbol.toStringTag] === 'Module')\n}\n\n// in Webpack 2, require.ensure now also returns a Promise\n// so the resolve/reject functions may get called an extra time\n// if the user uses an arrow function shorthand that happens to\n// return that Promise.\nfunction once (fn) {\n var called = false;\n return function () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n if (called) { return }\n called = true;\n return fn.apply(this, args)\n }\n}\n\n/* */\n\nvar History = function History (router, base) {\n this.router = router;\n this.base = normalizeBase(base);\n // start with a route object that stands for \"nowhere\"\n this.current = START;\n this.pending = null;\n this.ready = false;\n this.readyCbs = [];\n this.readyErrorCbs = [];\n this.errorCbs = [];\n this.listeners = [];\n};\n\nHistory.prototype.listen = function listen (cb) {\n this.cb = cb;\n};\n\nHistory.prototype.onReady = function onReady (cb, errorCb) {\n if (this.ready) {\n cb();\n } else {\n this.readyCbs.push(cb);\n if (errorCb) {\n this.readyErrorCbs.push(errorCb);\n }\n }\n};\n\nHistory.prototype.onError = function onError (errorCb) {\n this.errorCbs.push(errorCb);\n};\n\nHistory.prototype.transitionTo = function transitionTo (\n location,\n onComplete,\n onAbort\n) {\n var this$1$1 = this;\n\n var route;\n // catch redirect option https://github.com/vuejs/vue-router/issues/3201\n try {\n route = this.router.match(location, this.current);\n } catch (e) {\n this.errorCbs.forEach(function (cb) {\n cb(e);\n });\n // Exception should still be thrown\n throw e\n }\n var prev = this.current;\n this.confirmTransition(\n route,\n function () {\n this$1$1.updateRoute(route);\n onComplete && onComplete(route);\n this$1$1.ensureURL();\n this$1$1.router.afterHooks.forEach(function (hook) {\n hook && hook(route, prev);\n });\n\n // fire ready cbs once\n if (!this$1$1.ready) {\n this$1$1.ready = true;\n this$1$1.readyCbs.forEach(function (cb) {\n cb(route);\n });\n }\n },\n function (err) {\n if (onAbort) {\n onAbort(err);\n }\n if (err && !this$1$1.ready) {\n // Initial redirection should not mark the history as ready yet\n // because it's triggered by the redirection instead\n // https://github.com/vuejs/vue-router/issues/3225\n // https://github.com/vuejs/vue-router/issues/3331\n if (!isNavigationFailure(err, NavigationFailureType.redirected) || prev !== START) {\n this$1$1.ready = true;\n this$1$1.readyErrorCbs.forEach(function (cb) {\n cb(err);\n });\n }\n }\n }\n );\n};\n\nHistory.prototype.confirmTransition = function confirmTransition (route, onComplete, onAbort) {\n var this$1$1 = this;\n\n var current = this.current;\n this.pending = route;\n var abort = function (err) {\n // changed after adding errors with\n // https://github.com/vuejs/vue-router/pull/3047 before that change,\n // redirect and aborted navigation would produce an err == null\n if (!isNavigationFailure(err) && isError(err)) {\n if (this$1$1.errorCbs.length) {\n this$1$1.errorCbs.forEach(function (cb) {\n cb(err);\n });\n } else {\n if (process.env.NODE_ENV !== 'production') {\n warn(false, 'uncaught error during route navigation:');\n }\n console.error(err);\n }\n }\n onAbort && onAbort(err);\n };\n var lastRouteIndex = route.matched.length - 1;\n var lastCurrentIndex = current.matched.length - 1;\n if (\n isSameRoute(route, current) &&\n // in the case the route map has been dynamically appended to\n lastRouteIndex === lastCurrentIndex &&\n route.matched[lastRouteIndex] === current.matched[lastCurrentIndex]\n ) {\n this.ensureURL();\n if (route.hash) {\n handleScroll(this.router, current, route, false);\n }\n return abort(createNavigationDuplicatedError(current, route))\n }\n\n var ref = resolveQueue(\n this.current.matched,\n route.matched\n );\n var updated = ref.updated;\n var deactivated = ref.deactivated;\n var activated = ref.activated;\n\n var queue = [].concat(\n // in-component leave guards\n extractLeaveGuards(deactivated),\n // global before hooks\n this.router.beforeHooks,\n // in-component update hooks\n extractUpdateHooks(updated),\n // in-config enter guards\n activated.map(function (m) { return m.beforeEnter; }),\n // async components\n resolveAsyncComponents(activated)\n );\n\n var iterator = function (hook, next) {\n if (this$1$1.pending !== route) {\n return abort(createNavigationCancelledError(current, route))\n }\n try {\n hook(route, current, function (to) {\n if (to === false) {\n // next(false) -> abort navigation, ensure current URL\n this$1$1.ensureURL(true);\n abort(createNavigationAbortedError(current, route));\n } else if (isError(to)) {\n this$1$1.ensureURL(true);\n abort(to);\n } else if (\n typeof to === 'string' ||\n (typeof to === 'object' &&\n (typeof to.path === 'string' || typeof to.name === 'string'))\n ) {\n // next('/') or next({ path: '/' }) -> redirect\n abort(createNavigationRedirectedError(current, route));\n if (typeof to === 'object' && to.replace) {\n this$1$1.replace(to);\n } else {\n this$1$1.push(to);\n }\n } else {\n // confirm transition and pass on the value\n next(to);\n }\n });\n } catch (e) {\n abort(e);\n }\n };\n\n runQueue(queue, iterator, function () {\n // wait until async components are resolved before\n // extracting in-component enter guards\n var enterGuards = extractEnterGuards(activated);\n var queue = enterGuards.concat(this$1$1.router.resolveHooks);\n runQueue(queue, iterator, function () {\n if (this$1$1.pending !== route) {\n return abort(createNavigationCancelledError(current, route))\n }\n this$1$1.pending = null;\n onComplete(route);\n if (this$1$1.router.app) {\n this$1$1.router.app.$nextTick(function () {\n handleRouteEntered(route);\n });\n }\n });\n });\n};\n\nHistory.prototype.updateRoute = function updateRoute (route) {\n this.current = route;\n this.cb && this.cb(route);\n};\n\nHistory.prototype.setupListeners = function setupListeners () {\n // Default implementation is empty\n};\n\nHistory.prototype.teardown = function teardown () {\n // clean up event listeners\n // https://github.com/vuejs/vue-router/issues/2341\n this.listeners.forEach(function (cleanupListener) {\n cleanupListener();\n });\n this.listeners = [];\n\n // reset current history route\n // https://github.com/vuejs/vue-router/issues/3294\n this.current = START;\n this.pending = null;\n};\n\nfunction normalizeBase (base) {\n if (!base) {\n if (inBrowser) {\n // respect <base> tag\n var baseEl = document.querySelector('base');\n base = (baseEl && baseEl.getAttribute('href')) || '/';\n // strip full URL origin\n base = base.replace(/^https?:\\/\\/[^\\/]+/, '');\n } else {\n base = '/';\n }\n }\n // make sure there's the starting slash\n if (base.charAt(0) !== '/') {\n base = '/' + base;\n }\n // remove trailing slash\n return base.replace(/\\/$/, '')\n}\n\nfunction resolveQueue (\n current,\n next\n) {\n var i;\n var max = Math.max(current.length, next.length);\n for (i = 0; i < max; i++) {\n if (current[i] !== next[i]) {\n break\n }\n }\n return {\n updated: next.slice(0, i),\n activated: next.slice(i),\n deactivated: current.slice(i)\n }\n}\n\nfunction extractGuards (\n records,\n name,\n bind,\n reverse\n) {\n var guards = flatMapComponents(records, function (def, instance, match, key) {\n var guard = extractGuard(def, name);\n if (guard) {\n return Array.isArray(guard)\n ? guard.map(function (guard) { return bind(guard, instance, match, key); })\n : bind(guard, instance, match, key)\n }\n });\n return flatten(reverse ? guards.reverse() : guards)\n}\n\nfunction extractGuard (\n def,\n key\n) {\n if (typeof def !== 'function') {\n // extend now so that global mixins are applied.\n def = _Vue.extend(def);\n }\n return def.options[key]\n}\n\nfunction extractLeaveGuards (deactivated) {\n return extractGuards(deactivated, 'beforeRouteLeave', bindGuard, true)\n}\n\nfunction extractUpdateHooks (updated) {\n return extractGuards(updated, 'beforeRouteUpdate', bindGuard)\n}\n\nfunction bindGuard (guard, instance) {\n if (instance) {\n return function boundRouteGuard () {\n return guard.apply(instance, arguments)\n }\n }\n}\n\nfunction extractEnterGuards (\n activated\n) {\n return extractGuards(\n activated,\n 'beforeRouteEnter',\n function (guard, _, match, key) {\n return bindEnterGuard(guard, match, key)\n }\n )\n}\n\nfunction bindEnterGuard (\n guard,\n match,\n key\n) {\n return function routeEnterGuard (to, from, next) {\n return guard(to, from, function (cb) {\n if (typeof cb === 'function') {\n if (!match.enteredCbs[key]) {\n match.enteredCbs[key] = [];\n }\n match.enteredCbs[key].push(cb);\n }\n next(cb);\n })\n }\n}\n\n/* */\n\nvar HTML5History = /*@__PURE__*/(function (History) {\n function HTML5History (router, base) {\n History.call(this, router, base);\n\n this._startLocation = getLocation(this.base);\n }\n\n if ( History ) HTML5History.__proto__ = History;\n HTML5History.prototype = Object.create( History && History.prototype );\n HTML5History.prototype.constructor = HTML5History;\n\n HTML5History.prototype.setupListeners = function setupListeners () {\n var this$1$1 = this;\n\n if (this.listeners.length > 0) {\n return\n }\n\n var router = this.router;\n var expectScroll = router.options.scrollBehavior;\n var supportsScroll = supportsPushState && expectScroll;\n\n if (supportsScroll) {\n this.listeners.push(setupScroll());\n }\n\n var handleRoutingEvent = function () {\n var current = this$1$1.current;\n\n // Avoiding first `popstate` event dispatched in some browsers but first\n // history route not updated since async guard at the same time.\n var location = getLocation(this$1$1.base);\n if (this$1$1.current === START && location === this$1$1._startLocation) {\n return\n }\n\n this$1$1.transitionTo(location, function (route) {\n if (supportsScroll) {\n handleScroll(router, route, current, true);\n }\n });\n };\n window.addEventListener('popstate', handleRoutingEvent);\n this.listeners.push(function () {\n window.removeEventListener('popstate', handleRoutingEvent);\n });\n };\n\n HTML5History.prototype.go = function go (n) {\n window.history.go(n);\n };\n\n HTML5History.prototype.push = function push (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(location, function (route) {\n pushState(cleanPath(this$1$1.base + route.fullPath));\n handleScroll(this$1$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n }, onAbort);\n };\n\n HTML5History.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(location, function (route) {\n replaceState(cleanPath(this$1$1.base + route.fullPath));\n handleScroll(this$1$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n }, onAbort);\n };\n\n HTML5History.prototype.ensureURL = function ensureURL (push) {\n if (getLocation(this.base) !== this.current.fullPath) {\n var current = cleanPath(this.base + this.current.fullPath);\n push ? pushState(current) : replaceState(current);\n }\n };\n\n HTML5History.prototype.getCurrentLocation = function getCurrentLocation () {\n return getLocation(this.base)\n };\n\n return HTML5History;\n}(History));\n\nfunction getLocation (base) {\n var path = window.location.pathname;\n var pathLowerCase = path.toLowerCase();\n var baseLowerCase = base.toLowerCase();\n // base=\"/a\" shouldn't turn path=\"/app\" into \"/a/pp\"\n // https://github.com/vuejs/vue-router/issues/3555\n // so we ensure the trailing slash in the base\n if (base && ((pathLowerCase === baseLowerCase) ||\n (pathLowerCase.indexOf(cleanPath(baseLowerCase + '/')) === 0))) {\n path = path.slice(base.length);\n }\n return (path || '/') + window.location.search + window.location.hash\n}\n\n/* */\n\nvar HashHistory = /*@__PURE__*/(function (History) {\n function HashHistory (router, base, fallback) {\n History.call(this, router, base);\n // check history fallback deeplinking\n if (fallback && checkFallback(this.base)) {\n return\n }\n ensureSlash();\n }\n\n if ( History ) HashHistory.__proto__ = History;\n HashHistory.prototype = Object.create( History && History.prototype );\n HashHistory.prototype.constructor = HashHistory;\n\n // this is delayed until the app mounts\n // to avoid the hashchange listener being fired too early\n HashHistory.prototype.setupListeners = function setupListeners () {\n var this$1$1 = this;\n\n if (this.listeners.length > 0) {\n return\n }\n\n var router = this.router;\n var expectScroll = router.options.scrollBehavior;\n var supportsScroll = supportsPushState && expectScroll;\n\n if (supportsScroll) {\n this.listeners.push(setupScroll());\n }\n\n var handleRoutingEvent = function () {\n var current = this$1$1.current;\n if (!ensureSlash()) {\n return\n }\n this$1$1.transitionTo(getHash(), function (route) {\n if (supportsScroll) {\n handleScroll(this$1$1.router, route, current, true);\n }\n if (!supportsPushState) {\n replaceHash(route.fullPath);\n }\n });\n };\n var eventType = supportsPushState ? 'popstate' : 'hashchange';\n window.addEventListener(\n eventType,\n handleRoutingEvent\n );\n this.listeners.push(function () {\n window.removeEventListener(eventType, handleRoutingEvent);\n });\n };\n\n HashHistory.prototype.push = function push (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(\n location,\n function (route) {\n pushHash(route.fullPath);\n handleScroll(this$1$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n HashHistory.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(\n location,\n function (route) {\n replaceHash(route.fullPath);\n handleScroll(this$1$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n HashHistory.prototype.go = function go (n) {\n window.history.go(n);\n };\n\n HashHistory.prototype.ensureURL = function ensureURL (push) {\n var current = this.current.fullPath;\n if (getHash() !== current) {\n push ? pushHash(current) : replaceHash(current);\n }\n };\n\n HashHistory.prototype.getCurrentLocation = function getCurrentLocation () {\n return getHash()\n };\n\n return HashHistory;\n}(History));\n\nfunction checkFallback (base) {\n var location = getLocation(base);\n if (!/^\\/#/.test(location)) {\n window.location.replace(cleanPath(base + '/#' + location));\n return true\n }\n}\n\nfunction ensureSlash () {\n var path = getHash();\n if (path.charAt(0) === '/') {\n return true\n }\n replaceHash('/' + path);\n return false\n}\n\nfunction getHash () {\n // We can't use window.location.hash here because it's not\n // consistent across browsers - Firefox will pre-decode it!\n var href = window.location.href;\n var index = href.indexOf('#');\n // empty path\n if (index < 0) { return '' }\n\n href = href.slice(index + 1);\n\n return href\n}\n\nfunction getUrl (path) {\n var href = window.location.href;\n var i = href.indexOf('#');\n var base = i >= 0 ? href.slice(0, i) : href;\n return (base + \"#\" + path)\n}\n\nfunction pushHash (path) {\n if (supportsPushState) {\n pushState(getUrl(path));\n } else {\n window.location.hash = path;\n }\n}\n\nfunction replaceHash (path) {\n if (supportsPushState) {\n replaceState(getUrl(path));\n } else {\n window.location.replace(getUrl(path));\n }\n}\n\n/* */\n\nvar AbstractHistory = /*@__PURE__*/(function (History) {\n function AbstractHistory (router, base) {\n History.call(this, router, base);\n this.stack = [];\n this.index = -1;\n }\n\n if ( History ) AbstractHistory.__proto__ = History;\n AbstractHistory.prototype = Object.create( History && History.prototype );\n AbstractHistory.prototype.constructor = AbstractHistory;\n\n AbstractHistory.prototype.push = function push (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n this.transitionTo(\n location,\n function (route) {\n this$1$1.stack = this$1$1.stack.slice(0, this$1$1.index + 1).concat(route);\n this$1$1.index++;\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n AbstractHistory.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n this.transitionTo(\n location,\n function (route) {\n this$1$1.stack = this$1$1.stack.slice(0, this$1$1.index).concat(route);\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n AbstractHistory.prototype.go = function go (n) {\n var this$1$1 = this;\n\n var targetIndex = this.index + n;\n if (targetIndex < 0 || targetIndex >= this.stack.length) {\n return\n }\n var route = this.stack[targetIndex];\n this.confirmTransition(\n route,\n function () {\n var prev = this$1$1.current;\n this$1$1.index = targetIndex;\n this$1$1.updateRoute(route);\n this$1$1.router.afterHooks.forEach(function (hook) {\n hook && hook(route, prev);\n });\n },\n function (err) {\n if (isNavigationFailure(err, NavigationFailureType.duplicated)) {\n this$1$1.index = targetIndex;\n }\n }\n );\n };\n\n AbstractHistory.prototype.getCurrentLocation = function getCurrentLocation () {\n var current = this.stack[this.stack.length - 1];\n return current ? current.fullPath : '/'\n };\n\n AbstractHistory.prototype.ensureURL = function ensureURL () {\n // noop\n };\n\n return AbstractHistory;\n}(History));\n\n/* */\n\n\n\nvar VueRouter = function VueRouter (options) {\n if ( options === void 0 ) options = {};\n\n if (process.env.NODE_ENV !== 'production') {\n warn(this instanceof VueRouter, \"Router must be called with the new operator.\");\n }\n this.app = null;\n this.apps = [];\n this.options = options;\n this.beforeHooks = [];\n this.resolveHooks = [];\n this.afterHooks = [];\n this.matcher = createMatcher(options.routes || [], this);\n\n var mode = options.mode || 'hash';\n this.fallback =\n mode === 'history' && !supportsPushState && options.fallback !== false;\n if (this.fallback) {\n mode = 'hash';\n }\n if (!inBrowser) {\n mode = 'abstract';\n }\n this.mode = mode;\n\n switch (mode) {\n case 'history':\n this.history = new HTML5History(this, options.base);\n break\n case 'hash':\n this.history = new HashHistory(this, options.base, this.fallback);\n break\n case 'abstract':\n this.history = new AbstractHistory(this, options.base);\n break\n default:\n if (process.env.NODE_ENV !== 'production') {\n assert(false, (\"invalid mode: \" + mode));\n }\n }\n};\n\nvar prototypeAccessors = { currentRoute: { configurable: true } };\n\nVueRouter.prototype.match = function match (raw, current, redirectedFrom) {\n return this.matcher.match(raw, current, redirectedFrom)\n};\n\nprototypeAccessors.currentRoute.get = function () {\n return this.history && this.history.current\n};\n\nVueRouter.prototype.init = function init (app /* Vue component instance */) {\n var this$1$1 = this;\n\n process.env.NODE_ENV !== 'production' &&\n assert(\n install.installed,\n \"not installed. Make sure to call `Vue.use(VueRouter)` \" +\n \"before creating root instance.\"\n );\n\n this.apps.push(app);\n\n // set up app destroyed handler\n // https://github.com/vuejs/vue-router/issues/2639\n app.$once('hook:destroyed', function () {\n // clean out app from this.apps array once destroyed\n var index = this$1$1.apps.indexOf(app);\n if (index > -1) { this$1$1.apps.splice(index, 1); }\n // ensure we still have a main app or null if no apps\n // we do not release the router so it can be reused\n if (this$1$1.app === app) { this$1$1.app = this$1$1.apps[0] || null; }\n\n if (!this$1$1.app) { this$1$1.history.teardown(); }\n });\n\n // main app previously initialized\n // return as we don't need to set up new history listener\n if (this.app) {\n return\n }\n\n this.app = app;\n\n var history = this.history;\n\n if (history instanceof HTML5History || history instanceof HashHistory) {\n var handleInitialScroll = function (routeOrError) {\n var from = history.current;\n var expectScroll = this$1$1.options.scrollBehavior;\n var supportsScroll = supportsPushState && expectScroll;\n\n if (supportsScroll && 'fullPath' in routeOrError) {\n handleScroll(this$1$1, routeOrError, from, false);\n }\n };\n var setupListeners = function (routeOrError) {\n history.setupListeners();\n handleInitialScroll(routeOrError);\n };\n history.transitionTo(\n history.getCurrentLocation(),\n setupListeners,\n setupListeners\n );\n }\n\n history.listen(function (route) {\n this$1$1.apps.forEach(function (app) {\n app._route = route;\n });\n });\n};\n\nVueRouter.prototype.beforeEach = function beforeEach (fn) {\n return registerHook(this.beforeHooks, fn)\n};\n\nVueRouter.prototype.beforeResolve = function beforeResolve (fn) {\n return registerHook(this.resolveHooks, fn)\n};\n\nVueRouter.prototype.afterEach = function afterEach (fn) {\n return registerHook(this.afterHooks, fn)\n};\n\nVueRouter.prototype.onReady = function onReady (cb, errorCb) {\n this.history.onReady(cb, errorCb);\n};\n\nVueRouter.prototype.onError = function onError (errorCb) {\n this.history.onError(errorCb);\n};\n\nVueRouter.prototype.push = function push (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n // $flow-disable-line\n if (!onComplete && !onAbort && typeof Promise !== 'undefined') {\n return new Promise(function (resolve, reject) {\n this$1$1.history.push(location, resolve, reject);\n })\n } else {\n this.history.push(location, onComplete, onAbort);\n }\n};\n\nVueRouter.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n // $flow-disable-line\n if (!onComplete && !onAbort && typeof Promise !== 'undefined') {\n return new Promise(function (resolve, reject) {\n this$1$1.history.replace(location, resolve, reject);\n })\n } else {\n this.history.replace(location, onComplete, onAbort);\n }\n};\n\nVueRouter.prototype.go = function go (n) {\n this.history.go(n);\n};\n\nVueRouter.prototype.back = function back () {\n this.go(-1);\n};\n\nVueRouter.prototype.forward = function forward () {\n this.go(1);\n};\n\nVueRouter.prototype.getMatchedComponents = function getMatchedComponents (to) {\n var route = to\n ? to.matched\n ? to\n : this.resolve(to).route\n : this.currentRoute;\n if (!route) {\n return []\n }\n return [].concat.apply(\n [],\n route.matched.map(function (m) {\n return Object.keys(m.components).map(function (key) {\n return m.components[key]\n })\n })\n )\n};\n\nVueRouter.prototype.resolve = function resolve (\n to,\n current,\n append\n) {\n current = current || this.history.current;\n var location = normalizeLocation(to, current, append, this);\n var route = this.match(location, current);\n var fullPath = route.redirectedFrom || route.fullPath;\n var base = this.history.base;\n var href = createHref(base, fullPath, this.mode);\n return {\n location: location,\n route: route,\n href: href,\n // for backwards compat\n normalizedTo: location,\n resolved: route\n }\n};\n\nVueRouter.prototype.getRoutes = function getRoutes () {\n return this.matcher.getRoutes()\n};\n\nVueRouter.prototype.addRoute = function addRoute (parentOrRoute, route) {\n this.matcher.addRoute(parentOrRoute, route);\n if (this.history.current !== START) {\n this.history.transitionTo(this.history.getCurrentLocation());\n }\n};\n\nVueRouter.prototype.addRoutes = function addRoutes (routes) {\n if (process.env.NODE_ENV !== 'production') {\n warn(false, 'router.addRoutes() is deprecated and has been removed in Vue Router 4. Use router.addRoute() instead.');\n }\n this.matcher.addRoutes(routes);\n if (this.history.current !== START) {\n this.history.transitionTo(this.history.getCurrentLocation());\n }\n};\n\nObject.defineProperties( VueRouter.prototype, prototypeAccessors );\n\nvar VueRouter$1 = VueRouter;\n\nfunction registerHook (list, fn) {\n list.push(fn);\n return function () {\n var i = list.indexOf(fn);\n if (i > -1) { list.splice(i, 1); }\n }\n}\n\nfunction createHref (base, fullPath, mode) {\n var path = mode === 'hash' ? '#' + fullPath : fullPath;\n return base ? cleanPath(base + '/' + path) : path\n}\n\n// We cannot remove this as it would be a breaking change\nVueRouter.install = install;\nVueRouter.version = '3.6.5';\nVueRouter.isNavigationFailure = isNavigationFailure;\nVueRouter.NavigationFailureType = NavigationFailureType;\nVueRouter.START_LOCATION = START;\n\nif (inBrowser && window.Vue) {\n window.Vue.use(VueRouter);\n}\n\nvar version = '3.6.5';\n\nexport { NavigationFailureType, Link as RouterLink, View as RouterView, START as START_LOCATION, VueRouter$1 as default, isNavigationFailure, version };\n","import { generateUrl } from '@nextcloud/router';\nimport queryString from 'query-string';\nimport Router from 'vue-router';\nimport Vue from 'vue';\nimport { ErrorHandler } from 'vue-router/types/router';\nVue.use(Router);\n// Prevent router from throwing errors when we're already on the page we're trying to go to\nconst originalPush = Router.prototype.push;\nRouter.prototype.push = function push(to, onComplete, onAbort) {\n if (onComplete || onAbort)\n return originalPush.call(this, to, onComplete, onAbort);\n return originalPush.call(this, to).catch(err => err);\n};\nconst router = new Router({\n mode: 'history',\n // if index.php is in the url AND we got this far, then it's working:\n // let's keep using index.php in the url\n base: generateUrl('/apps/files'),\n linkActiveClass: 'active',\n routes: [\n {\n path: '/',\n // Pretending we're using the default view\n redirect: { name: 'filelist', params: { view: 'files' } },\n },\n {\n path: '/:view/:fileid(\\\\d+)?',\n name: 'filelist',\n props: true,\n },\n ],\n // Custom stringifyQuery to prevent encoding of slashes in the url\n stringifyQuery(query) {\n const result = queryString.stringify(query).replace(/%2F/gmi, '/');\n return result ? ('?' + result) : '';\n },\n});\nexport default router;\n","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcContent',{attrs:{\"app-name\":\"files\"}},[_c('Navigation'),_vm._v(\" \"),_c('FilesList')],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon cog-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M12,15.5A3.5,3.5 0 0,1 8.5,12A3.5,3.5 0 0,1 12,8.5A3.5,3.5 0 0,1 15.5,12A3.5,3.5 0 0,1 12,15.5M19.43,12.97C19.47,12.65 19.5,12.33 19.5,12C19.5,11.67 19.47,11.34 19.43,11L21.54,9.37C21.73,9.22 21.78,8.95 21.66,8.73L19.66,5.27C19.54,5.05 19.27,4.96 19.05,5.05L16.56,6.05C16.04,5.66 15.5,5.32 14.87,5.07L14.5,2.42C14.46,2.18 14.25,2 14,2H10C9.75,2 9.54,2.18 9.5,2.42L9.13,5.07C8.5,5.32 7.96,5.66 7.44,6.05L4.95,5.05C4.73,4.96 4.46,5.05 4.34,5.27L2.34,8.73C2.21,8.95 2.27,9.22 2.46,9.37L4.57,11C4.53,11.34 4.5,11.67 4.5,12C4.5,12.33 4.53,12.65 4.57,12.97L2.46,14.63C2.27,14.78 2.21,15.05 2.34,15.27L4.34,18.73C4.46,18.95 4.73,19.03 4.95,18.95L7.44,17.94C7.96,18.34 8.5,18.68 9.13,18.93L9.5,21.58C9.54,21.82 9.75,22 10,22H14C14.25,22 14.46,21.82 14.5,21.58L14.87,18.93C15.5,18.67 16.04,18.34 16.56,17.94L19.05,18.95C19.27,19.03 19.54,18.95 19.66,18.73L21.66,15.27C21.78,15.05 21.73,14.78 21.54,14.63L19.43,12.97Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"CogIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Cog.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Cog.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./Cog.vue?vue&type=template&id=89df8f2e\"\nimport script from \"./Cog.vue?vue&type=script&lang=js\"\nexport * from \"./Cog.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon cog-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M12,15.5A3.5,3.5 0 0,1 8.5,12A3.5,3.5 0 0,1 12,8.5A3.5,3.5 0 0,1 15.5,12A3.5,3.5 0 0,1 12,15.5M19.43,12.97C19.47,12.65 19.5,12.33 19.5,12C19.5,11.67 19.47,11.34 19.43,11L21.54,9.37C21.73,9.22 21.78,8.95 21.66,8.73L19.66,5.27C19.54,5.05 19.27,4.96 19.05,5.05L16.56,6.05C16.04,5.66 15.5,5.32 14.87,5.07L14.5,2.42C14.46,2.18 14.25,2 14,2H10C9.75,2 9.54,2.18 9.5,2.42L9.13,5.07C8.5,5.32 7.96,5.66 7.44,6.05L4.95,5.05C4.73,4.96 4.46,5.05 4.34,5.27L2.34,8.73C2.21,8.95 2.27,9.22 2.46,9.37L4.57,11C4.53,11.34 4.5,11.67 4.5,12C4.5,12.33 4.53,12.65 4.57,12.97L2.46,14.63C2.27,14.78 2.21,15.05 2.34,15.27L4.34,18.73C4.46,18.95 4.73,19.03 4.95,18.95L7.44,17.94C7.96,18.34 8.5,18.68 9.13,18.93L9.5,21.58C9.54,21.82 9.75,22 10,22H14C14.25,22 14.46,21.82 14.5,21.58L14.87,18.93C15.5,18.67 16.04,18.34 16.56,17.94L19.05,18.95C19.27,19.03 19.54,18.95 19.66,18.73L21.66,15.27C21.78,15.05 21.73,14.78 21.54,14.63L19.43,12.97Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { defineStore } from 'pinia';\nimport { emit, subscribe } from '@nextcloud/event-bus';\nimport { generateUrl } from '@nextcloud/router';\nimport { loadState } from '@nextcloud/initial-state';\nimport axios from '@nextcloud/axios';\nimport Vue from 'vue';\nconst viewConfig = loadState('files', 'viewConfigs', {});\nexport const useViewConfigStore = function (...args) {\n const store = defineStore('viewconfig', {\n state: () => ({\n viewConfig,\n }),\n getters: {\n getConfig: (state) => (view) => state.viewConfig[view] || {},\n },\n actions: {\n /**\n * Update the view config local store\n */\n onUpdate(view, key, value) {\n if (!this.viewConfig[view]) {\n Vue.set(this.viewConfig, view, {});\n }\n Vue.set(this.viewConfig[view], key, value);\n },\n /**\n * Update the view config local store AND on server side\n */\n async update(view, key, value) {\n axios.put(generateUrl(`/apps/files/api/v1/views/${view}/${key}`), {\n value,\n });\n emit('files:viewconfig:updated', { view, key, value });\n },\n /**\n * Set the sorting key AND sort by ASC\n * The key param must be a valid key of a File object\n * If not found, will be searched within the File attributes\n */\n setSortingBy(key = 'basename', view = 'files') {\n // Save new config\n this.update(view, 'sorting_mode', key);\n this.update(view, 'sorting_direction', 'asc');\n },\n /**\n * Toggle the sorting direction\n */\n toggleSortingDirection(view = 'files') {\n const config = this.getConfig(view) || { sorting_direction: 'asc' };\n const newDirection = config.sorting_direction === 'asc' ? 'desc' : 'asc';\n // Save new config\n this.update(view, 'sorting_direction', newDirection);\n },\n },\n });\n const viewConfigStore = store(...args);\n // Make sure we only register the listeners once\n if (!viewConfigStore._initialized) {\n subscribe('files:viewconfig:updated', function ({ view, key, value }) {\n viewConfigStore.onUpdate(view, key, value);\n });\n viewConfigStore._initialized = true;\n }\n return viewConfigStore;\n};\n","/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { getLoggerBuilder } from '@nextcloud/logger'\n\nexport default getLoggerBuilder()\n\t.setApp('files')\n\t.detectUser()\n\t.build()\n","/* eslint-disable no-undefined,no-param-reassign,no-shadow */\n\n/**\n * Throttle execution of a function. Especially useful for rate limiting\n * execution of handlers on events like resize and scroll.\n *\n * @param {number} delay - A zero-or-greater delay in milliseconds. For event callbacks, values around 100 or 250 (or even higher)\n * are most useful.\n * @param {Function} callback - A function to be executed after delay milliseconds. The `this` context and all arguments are passed through,\n * as-is, to `callback` when the throttled-function is executed.\n * @param {object} [options] - An object to configure options.\n * @param {boolean} [options.noTrailing] - Optional, defaults to false. If noTrailing is true, callback will only execute every `delay` milliseconds\n * while the throttled-function is being called. If noTrailing is false or unspecified, callback will be executed\n * one final time after the last throttled-function call. (After the throttled-function has not been called for\n * `delay` milliseconds, the internal counter is reset).\n * @param {boolean} [options.noLeading] - Optional, defaults to false. If noLeading is false, the first throttled-function call will execute callback\n * immediately. If noLeading is true, the first the callback execution will be skipped. It should be noted that\n * callback will never executed if both noLeading = true and noTrailing = true.\n * @param {boolean} [options.debounceMode] - If `debounceMode` is true (at begin), schedule `clear` to execute after `delay` ms. If `debounceMode` is\n * false (at end), schedule `callback` to execute after `delay` ms.\n *\n * @returns {Function} A new, throttled, function.\n */\nfunction throttle (delay, callback, options) {\n var _ref = options || {},\n _ref$noTrailing = _ref.noTrailing,\n noTrailing = _ref$noTrailing === void 0 ? false : _ref$noTrailing,\n _ref$noLeading = _ref.noLeading,\n noLeading = _ref$noLeading === void 0 ? false : _ref$noLeading,\n _ref$debounceMode = _ref.debounceMode,\n debounceMode = _ref$debounceMode === void 0 ? undefined : _ref$debounceMode;\n /*\n * After wrapper has stopped being called, this timeout ensures that\n * `callback` is executed at the proper times in `throttle` and `end`\n * debounce modes.\n */\n\n\n var timeoutID;\n var cancelled = false; // Keep track of the last time `callback` was executed.\n\n var lastExec = 0; // Function to clear existing timeout\n\n function clearExistingTimeout() {\n if (timeoutID) {\n clearTimeout(timeoutID);\n }\n } // Function to cancel next exec\n\n\n function cancel(options) {\n var _ref2 = options || {},\n _ref2$upcomingOnly = _ref2.upcomingOnly,\n upcomingOnly = _ref2$upcomingOnly === void 0 ? false : _ref2$upcomingOnly;\n\n clearExistingTimeout();\n cancelled = !upcomingOnly;\n }\n /*\n * The `wrapper` function encapsulates all of the throttling / debouncing\n * functionality and when executed will limit the rate at which `callback`\n * is executed.\n */\n\n\n function wrapper() {\n for (var _len = arguments.length, arguments_ = new Array(_len), _key = 0; _key < _len; _key++) {\n arguments_[_key] = arguments[_key];\n }\n\n var self = this;\n var elapsed = Date.now() - lastExec;\n\n if (cancelled) {\n return;\n } // Execute `callback` and update the `lastExec` timestamp.\n\n\n function exec() {\n lastExec = Date.now();\n callback.apply(self, arguments_);\n }\n /*\n * If `debounceMode` is true (at begin) this is used to clear the flag\n * to allow future `callback` executions.\n */\n\n\n function clear() {\n timeoutID = undefined;\n }\n\n if (!noLeading && debounceMode && !timeoutID) {\n /*\n * Since `wrapper` is being called for the first time and\n * `debounceMode` is true (at begin), execute `callback`\n * and noLeading != true.\n */\n exec();\n }\n\n clearExistingTimeout();\n\n if (debounceMode === undefined && elapsed > delay) {\n if (noLeading) {\n /*\n * In throttle mode with noLeading, if `delay` time has\n * been exceeded, update `lastExec` and schedule `callback`\n * to execute after `delay` ms.\n */\n lastExec = Date.now();\n\n if (!noTrailing) {\n timeoutID = setTimeout(debounceMode ? clear : exec, delay);\n }\n } else {\n /*\n * In throttle mode without noLeading, if `delay` time has been exceeded, execute\n * `callback`.\n */\n exec();\n }\n } else if (noTrailing !== true) {\n /*\n * In trailing throttle mode, since `delay` time has not been\n * exceeded, schedule `callback` to execute `delay` ms after most\n * recent execution.\n *\n * If `debounceMode` is true (at begin), schedule `clear` to execute\n * after `delay` ms.\n *\n * If `debounceMode` is false (at end), schedule `callback` to\n * execute after `delay` ms.\n */\n timeoutID = setTimeout(debounceMode ? clear : exec, debounceMode === undefined ? delay - elapsed : delay);\n }\n }\n\n wrapper.cancel = cancel; // Return the wrapper function.\n\n return wrapper;\n}\n\n/* eslint-disable no-undefined */\n/**\n * Debounce execution of a function. Debouncing, unlike throttling,\n * guarantees that a function is only executed a single time, either at the\n * very beginning of a series of calls, or at the very end.\n *\n * @param {number} delay - A zero-or-greater delay in milliseconds. For event callbacks, values around 100 or 250 (or even higher) are most useful.\n * @param {Function} callback - A function to be executed after delay milliseconds. The `this` context and all arguments are passed through, as-is,\n * to `callback` when the debounced-function is executed.\n * @param {object} [options] - An object to configure options.\n * @param {boolean} [options.atBegin] - Optional, defaults to false. If atBegin is false or unspecified, callback will only be executed `delay` milliseconds\n * after the last debounced-function call. If atBegin is true, callback will be executed only at the first debounced-function call.\n * (After the throttled-function has not been called for `delay` milliseconds, the internal counter is reset).\n *\n * @returns {Function} A new, debounced function.\n */\n\nfunction debounce (delay, callback, options) {\n var _ref = options || {},\n _ref$atBegin = _ref.atBegin,\n atBegin = _ref$atBegin === void 0 ? false : _ref$atBegin;\n\n return throttle(delay, callback, {\n debounceMode: atBegin !== false\n });\n}\n\nexport { debounce, throttle };\n//# sourceMappingURL=index.js.map\n","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon chart-pie-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M11,2V22C5.9,21.5 2,17.2 2,12C2,6.8 5.9,2.5 11,2M13,2V11H22C21.5,6.2 17.8,2.5 13,2M13,13V22C17.7,21.5 21.5,17.8 22,13H13Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"ChartPieIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./ChartPie.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./ChartPie.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./ChartPie.vue?vue&type=template&id=b117066e\"\nimport script from \"./ChartPie.vue?vue&type=script&lang=js\"\nexport * from \"./ChartPie.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon chart-pie-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M11,2V22C5.9,21.5 2,17.2 2,12C2,6.8 5.9,2.5 11,2M13,2V11H22C21.5,6.2 17.8,2.5 13,2M13,13V22C17.7,21.5 21.5,17.8 22,13H13Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\n\t<NcAppNavigationItem v-if=\"storageStats\"\n\t\t:aria-label=\"t('files', 'Storage informations')\"\n\t\t:class=\"{ 'app-navigation-entry__settings-quota--not-unlimited': storageStats.quota >= 0}\"\n\t\t:loading=\"loadingStorageStats\"\n\t\t:name=\"storageStatsTitle\"\n\t\t:title=\"storageStatsTooltip\"\n\t\tclass=\"app-navigation-entry__settings-quota\"\n\t\tdata-cy-files-navigation-settings-quota\n\t\t@click.stop.prevent=\"debounceUpdateStorageStats\">\n\t\t<ChartPie slot=\"icon\" :size=\"20\" />\n\n\t\t<!-- Progress bar -->\n\t\t<NcProgressBar v-if=\"storageStats.quota >= 0\"\n\t\t\tslot=\"extra\"\n\t\t\t:error=\"storageStats.relative > 80\"\n\t\t\t:value=\"Math.min(storageStats.relative, 100)\" />\n\t</NcAppNavigationItem>\n</template>\n\n<script>\nimport { debounce, throttle } from 'throttle-debounce'\nimport { formatFileSize } from '@nextcloud/files'\nimport { generateUrl } from '@nextcloud/router'\nimport { loadState } from '@nextcloud/initial-state'\nimport { showError } from '@nextcloud/dialogs'\nimport { subscribe } from '@nextcloud/event-bus'\nimport { translate } from '@nextcloud/l10n'\nimport axios from '@nextcloud/axios'\n\nimport ChartPie from 'vue-material-design-icons/ChartPie.vue'\nimport NcAppNavigationItem from '@nextcloud/vue/dist/Components/NcAppNavigationItem.js'\nimport NcProgressBar from '@nextcloud/vue/dist/Components/NcProgressBar.js'\n\nimport logger from '../logger.js'\n\nexport default {\n\tname: 'NavigationQuota',\n\n\tcomponents: {\n\t\tChartPie,\n\t\tNcAppNavigationItem,\n\t\tNcProgressBar,\n\t},\n\n\tdata() {\n\t\treturn {\n\t\t\tloadingStorageStats: false,\n\t\t\tstorageStats: loadState('files', 'storageStats', null),\n\t\t}\n\t},\n\n\tcomputed: {\n\t\tstorageStatsTitle() {\n\t\t\tconst usedQuotaByte = formatFileSize(this.storageStats?.used, false, false)\n\t\t\tconst quotaByte = formatFileSize(this.storageStats?.quota, false, false)\n\n\t\t\t// If no quota set\n\t\t\tif (this.storageStats?.quota < 0) {\n\t\t\t\treturn this.t('files', '{usedQuotaByte} used', { usedQuotaByte })\n\t\t\t}\n\n\t\t\treturn this.t('files', '{used} of {quota} used', {\n\t\t\t\tused: usedQuotaByte,\n\t\t\t\tquota: quotaByte,\n\t\t\t})\n\t\t},\n\t\tstorageStatsTooltip() {\n\t\t\tif (!this.storageStats.relative) {\n\t\t\t\treturn ''\n\t\t\t}\n\n\t\t\treturn this.t('files', '{relative}% used', this.storageStats)\n\t\t},\n\t},\n\n\tbeforeMount() {\n\t\t/**\n\t\t * Update storage stats every minute\n\t\t * TODO: remove when all views are migrated to Vue\n\t\t */\n\t\tsetInterval(this.throttleUpdateStorageStats, 60 * 1000)\n\n\t\tsubscribe('files:node:created', this.throttleUpdateStorageStats)\n\t\tsubscribe('files:node:deleted', this.throttleUpdateStorageStats)\n\t\tsubscribe('files:node:moved', this.throttleUpdateStorageStats)\n\t\tsubscribe('files:node:updated', this.throttleUpdateStorageStats)\n\t},\n\n\tmounted() {\n\t\t// If the user has a quota set, warn if the available account storage is <=0\n\t\t//\n\t\t// NOTE: This doesn't catch situations where actual *server* \n\t\t// disk (non-quota) space is low, but those should probably\n\t\t// be handled differently anyway since a regular user can't\n\t\t// can't do much about them (If we did want to indicate server disk \n\t\t// space matters to users, we'd probably want to use a warning\n\t\t// specific to that situation anyhow. So this covers warning covers \n\t\t// our primary day-to-day concern (individual account quota usage).\n\t\t//\n\t\tif (this.storageStats?.quota > 0 && this.storageStats?.free <= 0) {\n\t\t\tthis.showStorageFullWarning()\n\t\t}\n\t},\n\n\tmethods: {\n\t\t// From user input\n\t\tdebounceUpdateStorageStats: debounce(200, function(event) {\n\t\t\tthis.updateStorageStats(event)\n\t\t}),\n\t\t// From interval or event bus\n\t\tthrottleUpdateStorageStats: throttle(1000, function(event) {\n\t\t\tthis.updateStorageStats(event)\n\t\t}),\n\n\t\t/**\n\t\t * Update the storage stats\n\t\t * Throttled at max 1 refresh per minute\n\t\t *\n\t\t * @param {Event} [event = null] if user interaction\n\t\t */\n\t\tasync updateStorageStats(event = null) {\n\t\t\tif (this.loadingStorageStats) {\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\tthis.loadingStorageStats = true\n\t\t\ttry {\n\t\t\t\tconst response = await axios.get(generateUrl('/apps/files/api/v1/stats'))\n\t\t\t\tif (!response?.data?.data) {\n\t\t\t\t\tthrow new Error('Invalid storage stats')\n\t\t\t\t}\n\n\t\t\t\t// Warn the user if the available account storage changed from > 0 to 0 \n\t\t\t\t// (unless only because quota was intentionally set to 0 by admin in the interim)\n\t\t\t\tif (this.storageStats?.free > 0 && response.data.data?.free <= 0 && response.data.data?.quota > 0) {\n\t\t\t\t\tthis.showStorageFullWarning()\n\t\t\t\t}\n\n\t\t\t\tthis.storageStats = response.data.data\n\t\t\t} catch (error) {\n\t\t\t\tlogger.error('Could not refresh storage stats', { error })\n\t\t\t\t// Only show to the user if it was manually triggered\n\t\t\t\tif (event) {\n\t\t\t\t\tshowError(t('files', 'Could not refresh storage stats'))\n\t\t\t\t}\n\t\t\t} finally {\n\t\t\t\tthis.loadingStorageStats = false\n\t\t\t}\n\t\t},\n\n\t\tshowStorageFullWarning() {\n\t\t\tshowError(this.t('files', 'Your storage is full, files can not be updated or synced anymore!'))\n\t\t},\n\n\t\tt: translate,\n\t},\n}\n</script>\n\n<style lang=\"scss\" scoped>\n// User storage stats display\n.app-navigation-entry__settings-quota {\n\t// Align title with progress and icon\n\t&--not-unlimited::v-deep .app-navigation-entry__name {\n\t\tmargin-top: -6px;\n\t}\n\n\tprogress {\n\t\tposition: absolute;\n\t\tbottom: 12px;\n\t\tmargin-left: 44px;\n\t\twidth: calc(100% - 44px - 22px);\n\t}\n}\n</style>\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavigationQuota.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavigationQuota.vue?vue&type=script&lang=js\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavigationQuota.vue?vue&type=style&index=0&id=063ed938&prod&lang=scss&scoped=true\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavigationQuota.vue?vue&type=style&index=0&id=063ed938&prod&lang=scss&scoped=true\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./NavigationQuota.vue?vue&type=template&id=063ed938&scoped=true\"\nimport script from \"./NavigationQuota.vue?vue&type=script&lang=js\"\nexport * from \"./NavigationQuota.vue?vue&type=script&lang=js\"\nimport style0 from \"./NavigationQuota.vue?vue&type=style&index=0&id=063ed938&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"063ed938\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return (_vm.storageStats)?_c('NcAppNavigationItem',{staticClass:\"app-navigation-entry__settings-quota\",class:{ 'app-navigation-entry__settings-quota--not-unlimited': _vm.storageStats.quota >= 0},attrs:{\"aria-label\":_vm.t('files', 'Storage informations'),\"loading\":_vm.loadingStorageStats,\"name\":_vm.storageStatsTitle,\"title\":_vm.storageStatsTooltip,\"data-cy-files-navigation-settings-quota\":\"\"},on:{\"click\":function($event){$event.stopPropagation();$event.preventDefault();return _vm.debounceUpdateStorageStats.apply(null, arguments)}}},[_c('ChartPie',{attrs:{\"slot\":\"icon\",\"size\":20},slot:\"icon\"}),_vm._v(\" \"),(_vm.storageStats.quota >= 0)?_c('NcProgressBar',{attrs:{\"slot\":\"extra\",\"error\":_vm.storageStats.relative > 80,\"value\":Math.min(_vm.storageStats.relative, 100)},slot:\"extra\"}):_vm._e()],1):_vm._e()\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('NcAppSettingsDialog',{attrs:{\"open\":_vm.open,\"show-navigation\":true,\"name\":_vm.t('files', 'Files settings')},on:{\"update:open\":_vm.onClose}},[_c('NcAppSettingsSection',{attrs:{\"id\":\"settings\",\"name\":_vm.t('files', 'Files settings')}},[_c('NcCheckboxRadioSwitch',{attrs:{\"checked\":_vm.userConfig.sort_favorites_first},on:{\"update:checked\":function($event){return _vm.setConfig('sort_favorites_first', $event)}}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Sort favorites first'))+\"\\n\\t\\t\")]),_vm._v(\" \"),_c('NcCheckboxRadioSwitch',{attrs:{\"checked\":_vm.userConfig.sort_folders_first},on:{\"update:checked\":function($event){return _vm.setConfig('sort_folders_first', $event)}}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Sort folders before files'))+\"\\n\\t\\t\")]),_vm._v(\" \"),_c('NcCheckboxRadioSwitch',{attrs:{\"checked\":_vm.userConfig.show_hidden},on:{\"update:checked\":function($event){return _vm.setConfig('show_hidden', $event)}}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Show hidden files'))+\"\\n\\t\\t\")]),_vm._v(\" \"),_c('NcCheckboxRadioSwitch',{attrs:{\"checked\":_vm.userConfig.crop_image_previews},on:{\"update:checked\":function($event){return _vm.setConfig('crop_image_previews', $event)}}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Crop image previews'))+\"\\n\\t\\t\")]),_vm._v(\" \"),(_vm.enableGridView)?_c('NcCheckboxRadioSwitch',{attrs:{\"checked\":_vm.userConfig.grid_view},on:{\"update:checked\":function($event){return _vm.setConfig('grid_view', $event)}}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Enable the grid view'))+\"\\n\\t\\t\")]):_vm._e()],1),_vm._v(\" \"),(_vm.settings.length !== 0)?_c('NcAppSettingsSection',{attrs:{\"id\":\"more-settings\",\"name\":_vm.t('files', 'Additional settings')}},[_vm._l((_vm.settings),function(setting){return [_c('Setting',{key:setting.name,attrs:{\"el\":setting.el}})]})],2):_vm._e(),_vm._v(\" \"),_c('NcAppSettingsSection',{attrs:{\"id\":\"webdav\",\"name\":_vm.t('files', 'WebDAV')}},[_c('NcInputField',{attrs:{\"id\":\"webdav-url-input\",\"label\":_vm.t('files', 'WebDAV URL'),\"show-trailing-button\":true,\"success\":_vm.webdavUrlCopied,\"trailing-button-label\":_vm.t('files', 'Copy to clipboard'),\"value\":_vm.webdavUrl,\"readonly\":\"readonly\",\"type\":\"url\"},on:{\"focus\":function($event){return $event.target.select()},\"trailing-button-click\":_vm.copyCloudId},scopedSlots:_vm._u([{key:\"trailing-button-icon\",fn:function(){return [_c('Clipboard',{attrs:{\"size\":20}})]},proxy:true}])}),_vm._v(\" \"),_c('em',[_c('a',{staticClass:\"setting-link\",attrs:{\"href\":_vm.webdavDocs,\"target\":\"_blank\",\"rel\":\"noreferrer noopener\"}},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('files', 'Use this address to access your Files via WebDAV'))+\" ↗\\n\\t\\t\\t\")])]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('em',[_c('a',{staticClass:\"setting-link\",attrs:{\"href\":_vm.appPasswordUrl}},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('files', 'If you have enabled 2FA, you must create and use a new app password by clicking here.'))+\" ↗\\n\\t\\t\\t\")])])],1)],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon clipboard-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M19,3H14.82C14.4,1.84 13.3,1 12,1C10.7,1 9.6,1.84 9.18,3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5A2,2 0 0,0 19,3M12,3A1,1 0 0,1 13,4A1,1 0 0,1 12,5A1,1 0 0,1 11,4A1,1 0 0,1 12,3\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"ClipboardIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Clipboard.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Clipboard.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./Clipboard.vue?vue&type=template&id=0c133921\"\nimport script from \"./Clipboard.vue?vue&type=script&lang=js\"\nexport * from \"./Clipboard.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon clipboard-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M19,3H14.82C14.4,1.84 13.3,1 12,1C10.7,1 9.6,1.84 9.18,3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5A2,2 0 0,0 19,3M12,3A1,1 0 0,1 13,4A1,1 0 0,1 12,5A1,1 0 0,1 11,4A1,1 0 0,1 12,3\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<!--\n - @copyright Copyright (c) 2020 Gary Kim <gary@garykim.dev>\n -\n - @author John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<template>\n\t<div />\n</template>\n<script>\nexport default {\n\tname: 'Setting',\n\tprops: {\n\t\tel: {\n\t\t\ttype: Function,\n\t\t\trequired: true,\n\t\t},\n\t},\n\tmounted() {\n\t\tthis.$el.appendChild(this.el())\n\t},\n}\n</script>\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Setting.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Setting.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./Setting.vue?vue&type=template&id=61d69eae\"\nimport script from \"./Setting.vue?vue&type=script&lang=js\"\nexport * from \"./Setting.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('div')\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import { defineStore } from 'pinia';\nimport { emit, subscribe } from '@nextcloud/event-bus';\nimport { generateUrl } from '@nextcloud/router';\nimport { loadState } from '@nextcloud/initial-state';\nimport axios from '@nextcloud/axios';\nimport Vue from 'vue';\nconst userConfig = loadState('files', 'config', {\n show_hidden: false,\n crop_image_previews: true,\n sort_favorites_first: true,\n sort_folders_first: true,\n grid_view: false,\n});\nexport const useUserConfigStore = function (...args) {\n const store = defineStore('userconfig', {\n state: () => ({\n userConfig,\n }),\n actions: {\n /**\n * Update the user config local store\n */\n onUpdate(key, value) {\n Vue.set(this.userConfig, key, value);\n },\n /**\n * Update the user config local store AND on server side\n */\n async update(key, value) {\n await axios.put(generateUrl('/apps/files/api/v1/config/' + key), {\n value,\n });\n emit('files:config:updated', { key, value });\n },\n },\n });\n const userConfigStore = store(...args);\n // Make sure we only register the listeners once\n if (!userConfigStore._initialized) {\n subscribe('files:config:updated', function ({ key, value }) {\n userConfigStore.onUpdate(key, value);\n });\n userConfigStore._initialized = true;\n }\n return userConfigStore;\n};\n","<!--\n - @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @author John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n<template>\n\t<NcAppSettingsDialog :open=\"open\"\n\t\t:show-navigation=\"true\"\n\t\t:name=\"t('files', 'Files settings')\"\n\t\t@update:open=\"onClose\">\n\t\t<!-- Settings API-->\n\t\t<NcAppSettingsSection id=\"settings\" :name=\"t('files', 'Files settings')\">\n\t\t\t<NcCheckboxRadioSwitch :checked=\"userConfig.sort_favorites_first\"\n\t\t\t\t@update:checked=\"setConfig('sort_favorites_first', $event)\">\n\t\t\t\t{{ t('files', 'Sort favorites first') }}\n\t\t\t</NcCheckboxRadioSwitch>\n\t\t\t<NcCheckboxRadioSwitch :checked=\"userConfig.sort_folders_first\"\n\t\t\t\t@update:checked=\"setConfig('sort_folders_first', $event)\">\n\t\t\t\t{{ t('files', 'Sort folders before files') }}\n\t\t\t</NcCheckboxRadioSwitch>\n\t\t\t<NcCheckboxRadioSwitch :checked=\"userConfig.show_hidden\"\n\t\t\t\t@update:checked=\"setConfig('show_hidden', $event)\">\n\t\t\t\t{{ t('files', 'Show hidden files') }}\n\t\t\t</NcCheckboxRadioSwitch>\n\t\t\t<NcCheckboxRadioSwitch :checked=\"userConfig.crop_image_previews\"\n\t\t\t\t@update:checked=\"setConfig('crop_image_previews', $event)\">\n\t\t\t\t{{ t('files', 'Crop image previews') }}\n\t\t\t</NcCheckboxRadioSwitch>\n\t\t\t<NcCheckboxRadioSwitch v-if=\"enableGridView\"\n\t\t\t\t:checked=\"userConfig.grid_view\"\n\t\t\t\t@update:checked=\"setConfig('grid_view', $event)\">\n\t\t\t\t{{ t('files', 'Enable the grid view') }}\n\t\t\t</NcCheckboxRadioSwitch>\n\t\t</NcAppSettingsSection>\n\n\t\t<!-- Settings API-->\n\t\t<NcAppSettingsSection v-if=\"settings.length !== 0\"\n\t\t\tid=\"more-settings\"\n\t\t\t:name=\"t('files', 'Additional settings')\">\n\t\t\t<template v-for=\"setting in settings\">\n\t\t\t\t<Setting :key=\"setting.name\" :el=\"setting.el\" />\n\t\t\t</template>\n\t\t</NcAppSettingsSection>\n\n\t\t<!-- Webdav URL-->\n\t\t<NcAppSettingsSection id=\"webdav\" :name=\"t('files', 'WebDAV')\">\n\t\t\t<NcInputField id=\"webdav-url-input\"\n\t\t\t\t:label=\"t('files', 'WebDAV URL')\"\n\t\t\t\t:show-trailing-button=\"true\"\n\t\t\t\t:success=\"webdavUrlCopied\"\n\t\t\t\t:trailing-button-label=\"t('files', 'Copy to clipboard')\"\n\t\t\t\t:value=\"webdavUrl\"\n\t\t\t\treadonly=\"readonly\"\n\t\t\t\ttype=\"url\"\n\t\t\t\t@focus=\"$event.target.select()\"\n\t\t\t\t@trailing-button-click=\"copyCloudId\">\n\t\t\t\t<template #trailing-button-icon>\n\t\t\t\t\t<Clipboard :size=\"20\" />\n\t\t\t\t</template>\n\t\t\t</NcInputField>\n\t\t\t<em>\n\t\t\t\t<a class=\"setting-link\"\n\t\t\t\t\t:href=\"webdavDocs\"\n\t\t\t\t\ttarget=\"_blank\"\n\t\t\t\t\trel=\"noreferrer noopener\">\n\t\t\t\t\t{{ t('files', 'Use this address to access your Files via WebDAV') }} ↗\n\t\t\t\t</a>\n\t\t\t</em>\n\t\t\t<br>\n\t\t\t<em>\n\t\t\t\t<a class=\"setting-link\" :href=\"appPasswordUrl\">\n\t\t\t\t\t{{ t('files', 'If you have enabled 2FA, you must create and use a new app password by clicking here.') }} ↗\n\t\t\t\t</a>\n\t\t\t</em>\n\t\t</NcAppSettingsSection>\n\t</NcAppSettingsDialog>\n</template>\n\n<script>\nimport NcAppSettingsDialog from '@nextcloud/vue/dist/Components/NcAppSettingsDialog.js'\nimport NcAppSettingsSection from '@nextcloud/vue/dist/Components/NcAppSettingsSection.js'\nimport NcCheckboxRadioSwitch from '@nextcloud/vue/dist/Components/NcCheckboxRadioSwitch.js'\nimport Clipboard from 'vue-material-design-icons/Clipboard.vue'\nimport NcInputField from '@nextcloud/vue/dist/Components/NcInputField.js'\nimport Setting from '../components/Setting.vue'\n\nimport { generateRemoteUrl, generateUrl } from '@nextcloud/router'\nimport { getCurrentUser } from '@nextcloud/auth'\nimport { showError, showSuccess } from '@nextcloud/dialogs'\nimport { translate } from '@nextcloud/l10n'\nimport { loadState } from '@nextcloud/initial-state'\nimport { useUserConfigStore } from '../store/userconfig.ts'\n\nexport default {\n\tname: 'Settings',\n\tcomponents: {\n\t\tClipboard,\n\t\tNcAppSettingsDialog,\n\t\tNcAppSettingsSection,\n\t\tNcCheckboxRadioSwitch,\n\t\tNcInputField,\n\t\tSetting,\n\t},\n\n\tprops: {\n\t\topen: {\n\t\t\ttype: Boolean,\n\t\t\tdefault: false,\n\t\t},\n\t},\n\n\tsetup() {\n\t\tconst userConfigStore = useUserConfigStore()\n\t\treturn {\n\t\t\tuserConfigStore,\n\t\t}\n\t},\n\n\tdata() {\n\t\treturn {\n\t\t\t// Settings API\n\t\t\tsettings: window.OCA?.Files?.Settings?.settings || [],\n\n\t\t\t// Webdav infos\n\t\t\twebdavUrl: generateRemoteUrl('dav/files/' + encodeURIComponent(getCurrentUser()?.uid)),\n\t\t\twebdavDocs: 'https://docs.nextcloud.com/server/stable/go.php?to=user-webdav',\n\t\t\tappPasswordUrl: generateUrl('/settings/user/security#generate-app-token-section'),\n\t\t\twebdavUrlCopied: false,\n\t\t\tenableGridView: (loadState('core', 'config', [])['enable_non-accessible_features'] ?? true),\n\t\t}\n\t},\n\n\tcomputed: {\n\t\tuserConfig() {\n\t\t\treturn this.userConfigStore.userConfig\n\t\t},\n\t},\n\n\tbeforeMount() {\n\t\t// Update the settings API entries state\n\t\tthis.settings.forEach(setting => setting.open())\n\t},\n\n\tbeforeDestroy() {\n\t\t// Update the settings API entries state\n\t\tthis.settings.forEach(setting => setting.close())\n\t},\n\n\tmethods: {\n\t\tonClose() {\n\t\t\tthis.$emit('close')\n\t\t},\n\n\t\tsetConfig(key, value) {\n\t\t\tthis.userConfigStore.update(key, value)\n\t\t},\n\n\t\tasync copyCloudId() {\n\t\t\tdocument.querySelector('input#webdav-url-input').select()\n\n\t\t\tif (!navigator.clipboard) {\n\t\t\t\t// Clipboard API not available\n\t\t\t\tshowError(t('files', 'Clipboard is not available'))\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\tawait navigator.clipboard.writeText(this.webdavUrl)\n\t\t\tthis.webdavUrlCopied = true\n\t\t\tshowSuccess(t('files', 'WebDAV URL copied to clipboard'))\n\t\t\tsetTimeout(() => {\n\t\t\t\tthis.webdavUrlCopied = false\n\t\t\t}, 5000)\n\t\t},\n\n\t\tt: translate,\n\t},\n}\n</script>\n\n<style lang=\"scss\" scoped>\n.setting-link:hover {\n\ttext-decoration: underline;\n}\n</style>\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Settings.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Settings.vue?vue&type=script&lang=js\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Settings.vue?vue&type=style&index=0&id=6d63c120&prod&lang=scss&scoped=true\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Settings.vue?vue&type=style&index=0&id=6d63c120&prod&lang=scss&scoped=true\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./Settings.vue?vue&type=template&id=6d63c120&scoped=true\"\nimport script from \"./Settings.vue?vue&type=script&lang=js\"\nexport * from \"./Settings.vue?vue&type=script&lang=js\"\nimport style0 from \"./Settings.vue?vue&type=style&index=0&id=6d63c120&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"6d63c120\",\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Navigation.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Navigation.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('NcAppNavigation',{attrs:{\"data-cy-files-navigation\":\"\",\"aria-label\":_vm.t('files', 'Files')},scopedSlots:_vm._u([{key:\"list\",fn:function(){return _vm._l((_vm.parentViews),function(view){return _c('NcAppNavigationItem',{key:view.id,attrs:{\"allow-collapse\":true,\"data-cy-files-navigation-item\":view.id,\"exact\":_vm.useExactRouteMatching(view),\"icon\":view.iconClass,\"name\":view.name,\"open\":_vm.isExpanded(view),\"pinned\":view.sticky,\"to\":_vm.generateToNavigation(view)},on:{\"update:open\":function($event){return _vm.onToggleExpand(view)}}},[(view.icon)?_c('NcIconSvgWrapper',{attrs:{\"slot\":\"icon\",\"svg\":view.icon},slot:\"icon\"}):_vm._e(),_vm._v(\" \"),_vm._l((_vm.childViews[view.id]),function(child){return _c('NcAppNavigationItem',{key:child.id,attrs:{\"data-cy-files-navigation-item\":child.id,\"exact-path\":true,\"icon\":child.iconClass,\"name\":child.name,\"to\":_vm.generateToNavigation(child)}},[(child.icon)?_c('NcIconSvgWrapper',{attrs:{\"slot\":\"icon\",\"svg\":child.icon},slot:\"icon\"}):_vm._e()],1)})],2)})},proxy:true},{key:\"footer\",fn:function(){return [_c('ul',{staticClass:\"app-navigation-entry__settings\"},[_c('NavigationQuota'),_vm._v(\" \"),_c('NcAppNavigationItem',{attrs:{\"aria-label\":_vm.t('files', 'Open the files app settings'),\"name\":_vm.t('files', 'Files settings'),\"data-cy-files-navigation-settings-button\":\"\"},on:{\"click\":function($event){$event.preventDefault();$event.stopPropagation();return _vm.openSettings.apply(null, arguments)}}},[_c('Cog',{attrs:{\"slot\":\"icon\",\"size\":20},slot:\"icon\"})],1)],1)]},proxy:true}])},[_vm._v(\" \"),_vm._v(\" \"),_c('SettingsModal',{attrs:{\"open\":_vm.settingsOpened,\"data-cy-files-navigation-settings\":\"\"},on:{\"close\":_vm.onSettingsClose}})],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Navigation.vue?vue&type=style&index=0&id=8291caa8&prod&scoped=true&lang=scss\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Navigation.vue?vue&type=style&index=0&id=8291caa8&prod&scoped=true&lang=scss\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./Navigation.vue?vue&type=template&id=8291caa8&scoped=true\"\nimport script from \"./Navigation.vue?vue&type=script&lang=ts\"\nexport * from \"./Navigation.vue?vue&type=script&lang=ts\"\nimport style0 from \"./Navigation.vue?vue&type=style&index=0&id=8291caa8&prod&scoped=true&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"8291caa8\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcAppContent',{attrs:{\"page-heading\":_vm.pageHeading,\"data-cy-files-content\":\"\"}},[_c('div',{staticClass:\"files-list__header\"},[_c('BreadCrumbs',{attrs:{\"path\":_vm.dir},on:{\"reload\":_vm.fetchContent},scopedSlots:_vm._u([{key:\"actions\",fn:function(){return [(_vm.canShare && _vm.filesListWidth >= 512)?_c('NcButton',{staticClass:\"files-list__header-share-button\",class:{ 'files-list__header-share-button--shared': _vm.shareButtonType },attrs:{\"aria-label\":_vm.shareButtonLabel,\"title\":_vm.shareButtonLabel,\"type\":\"tertiary\"},on:{\"click\":_vm.openSharingSidebar},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.shareButtonType === _vm.Type.SHARE_TYPE_LINK)?_c('LinkIcon'):_c('AccountPlusIcon',{attrs:{\"size\":20}})]},proxy:true}],null,false,2969853559)}):_vm._e(),_vm._v(\" \"),(!_vm.canUpload || _vm.isQuotaExceeded)?_c('NcButton',{staticClass:\"files-list__header-upload-button--disabled\",attrs:{\"aria-label\":_vm.cantUploadLabel,\"title\":_vm.cantUploadLabel,\"disabled\":true,\"type\":\"secondary\"},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [_c('PlusIcon',{attrs:{\"size\":20}})]},proxy:true}],null,false,2953566425)},[_vm._v(\"\\n\\t\\t\\t\\t\\t\"+_vm._s(_vm.t('files', 'New'))+\"\\n\\t\\t\\t\\t\")]):(_vm.currentFolder)?_c('UploadPicker',{staticClass:\"files-list__header-upload-button\",attrs:{\"content\":_vm.dirContents,\"destination\":_vm.currentFolder,\"multiple\":true},on:{\"failed\":_vm.onUploadFail,\"uploaded\":_vm.onUpload}}):_vm._e()]},proxy:true}])}),_vm._v(\" \"),(_vm.filesListWidth >= 512 && _vm.enableGridView)?_c('NcButton',{staticClass:\"files-list__header-grid-button\",attrs:{\"aria-label\":_vm.gridViewButtonLabel,\"title\":_vm.gridViewButtonLabel,\"type\":\"tertiary\"},on:{\"click\":_vm.toggleGridView},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.userConfig.grid_view)?_c('ListViewIcon'):_c('ViewGridIcon')]},proxy:true}],null,false,1682960703)}):_vm._e(),_vm._v(\" \"),(_vm.isRefreshing)?_c('NcLoadingIcon',{staticClass:\"files-list__refresh-icon\"}):_vm._e()],1),_vm._v(\" \"),(!_vm.loading && _vm.canUpload)?_c('DragAndDropNotice',{attrs:{\"current-folder\":_vm.currentFolder}}):_vm._e(),_vm._v(\" \"),(_vm.loading && !_vm.isRefreshing)?_c('NcLoadingIcon',{staticClass:\"files-list__loading-icon\",attrs:{\"size\":38,\"name\":_vm.t('files', 'Loading current folder')}}):(!_vm.loading && _vm.isEmptyDir)?_c('NcEmptyContent',{attrs:{\"name\":_vm.currentView?.emptyTitle || _vm.t('files', 'No files in here'),\"description\":_vm.currentView?.emptyCaption || _vm.t('files', 'Upload some content or sync with your devices!'),\"data-cy-files-content-empty\":\"\"},scopedSlots:_vm._u([{key:\"action\",fn:function(){return [(_vm.dir !== '/')?_c('NcButton',{attrs:{\"aria-label\":_vm.t('files', 'Go to the previous folder'),\"type\":\"primary\",\"to\":_vm.toPreviousDir}},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('files', 'Go back'))+\"\\n\\t\\t\\t\")]):_vm._e()]},proxy:true},{key:\"icon\",fn:function(){return [_c('NcIconSvgWrapper',{attrs:{\"svg\":_vm.currentView.icon}})]},proxy:true}])}):_c('FilesListVirtual',{ref:\"filesListVirtual\",attrs:{\"current-folder\":_vm.currentFolder,\"current-view\":_vm.currentView,\"nodes\":_vm.dirContentsSorted}})],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * natural-orderby v3.0.2\n *\n * Copyright (c) Olaf Ennen\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE.md file in the root directory of this source tree.\n *\n * @license MIT\n */\nvar compareNumbers = function compareNumbers(numberA, numberB) {\n if (numberA < numberB) {\n return -1;\n }\n if (numberA > numberB) {\n return 1;\n }\n return 0;\n};\n\nvar compareUnicode = function compareUnicode(stringA, stringB) {\n var result = stringA.localeCompare(stringB);\n return result ? result / Math.abs(result) : 0;\n};\n\nvar RE_NUMBERS = /(^0x[\\da-fA-F]+$|^([+-]?(?:\\d+(?:\\.\\d*)?|\\.\\d+)(?:[eE][+-]?\\d+)?(?!\\.\\d+)(?=\\D|\\s|$))|\\d+)/g;\nvar RE_LEADING_OR_TRAILING_WHITESPACES = /^\\s+|\\s+$/g; // trim pre-post whitespace\nvar RE_WHITESPACES = /\\s+/g; // normalize all whitespace to single ' ' character\nvar RE_INT_OR_FLOAT = /^[+-]?(?:\\d+(?:\\.\\d*)?|\\.\\d+)(?:[eE][+-]?\\d+)?$/; // identify integers and floats\nvar RE_DATE = /(^([\\w ]+,?[\\w ]+)?[\\w ]+,?[\\w ]+\\d+:\\d+(:\\d+)?[\\w ]?|^\\d{1,4}[/-]\\d{1,4}[/-]\\d{1,4}|^\\w+, \\w+ \\d+, \\d{4})/; // identify date strings\nvar RE_LEADING_ZERO = /^0+[1-9]{1}[0-9]*$/;\n// eslint-disable-next-line no-control-regex\nvar RE_UNICODE_CHARACTERS = /[^\\x00-\\x80]/;\n\nvar stringCompare = function stringCompare(stringA, stringB) {\n if (stringA < stringB) {\n return -1;\n }\n if (stringA > stringB) {\n return 1;\n }\n return 0;\n};\n\nvar compareChunks = function compareChunks(chunksA, chunksB) {\n var lengthA = chunksA.length;\n var lengthB = chunksB.length;\n var size = Math.min(lengthA, lengthB);\n for (var i = 0; i < size; i++) {\n var chunkA = chunksA[i];\n var chunkB = chunksB[i];\n if (chunkA.normalizedString !== chunkB.normalizedString) {\n if (chunkA.normalizedString === '' !== (chunkB.normalizedString === '')) {\n // empty strings have lowest value\n return chunkA.normalizedString === '' ? -1 : 1;\n }\n if (chunkA.parsedNumber !== undefined && chunkB.parsedNumber !== undefined) {\n // compare numbers\n var result = compareNumbers(chunkA.parsedNumber, chunkB.parsedNumber);\n if (result === 0) {\n // compare string value, if parsed numbers are equal\n // Example:\n // chunkA = { parsedNumber: 1, normalizedString: \"001\" }\n // chunkB = { parsedNumber: 1, normalizedString: \"01\" }\n // chunkA.parsedNumber === chunkB.parsedNumber\n // chunkA.normalizedString < chunkB.normalizedString\n return stringCompare(chunkA.normalizedString, chunkB.normalizedString);\n }\n return result;\n } else if (chunkA.parsedNumber !== undefined || chunkB.parsedNumber !== undefined) {\n // number < string\n return chunkA.parsedNumber !== undefined ? -1 : 1;\n } else if (RE_UNICODE_CHARACTERS.test(chunkA.normalizedString + chunkB.normalizedString)) {\n // use locale comparison only if one of the chunks contains unicode characters\n return compareUnicode(chunkA.normalizedString, chunkB.normalizedString);\n } else {\n // use common string comparison for performance reason\n return stringCompare(chunkA.normalizedString, chunkB.normalizedString);\n }\n }\n }\n // if the chunks are equal so far, the one which has more chunks is greater than the other one\n if (lengthA > size || lengthB > size) {\n return lengthA <= size ? -1 : 1;\n }\n return 0;\n};\n\nvar compareOtherTypes = function compareOtherTypes(valueA, valueB) {\n if (!valueA.chunks ? valueB.chunks : !valueB.chunks) {\n return !valueA.chunks ? 1 : -1;\n }\n if (valueA.isNaN ? !valueB.isNaN : valueB.isNaN) {\n return valueA.isNaN ? -1 : 1;\n }\n if (valueA.isSymbol ? !valueB.isSymbol : valueB.isSymbol) {\n return valueA.isSymbol ? -1 : 1;\n }\n if (valueA.isObject ? !valueB.isObject : valueB.isObject) {\n return valueA.isObject ? -1 : 1;\n }\n if (valueA.isArray ? !valueB.isArray : valueB.isArray) {\n return valueA.isArray ? -1 : 1;\n }\n if (valueA.isFunction ? !valueB.isFunction : valueB.isFunction) {\n return valueA.isFunction ? -1 : 1;\n }\n if (valueA.isNull ? !valueB.isNull : valueB.isNull) {\n return valueA.isNull ? -1 : 1;\n }\n return 0;\n};\n\nvar compareValues = function compareValues(valueA, valueB) {\n if (valueA.value === valueB.value) {\n return 0;\n }\n if (valueA.parsedNumber !== undefined && valueB.parsedNumber !== undefined) {\n return compareNumbers(valueA.parsedNumber, valueB.parsedNumber);\n }\n if (valueA.chunks && valueB.chunks) {\n return compareChunks(valueA.chunks, valueB.chunks);\n }\n return compareOtherTypes(valueA, valueB);\n};\n\nvar normalizeAlphaChunk = function normalizeAlphaChunk(chunk) {\n return chunk.replace(RE_WHITESPACES, ' ').replace(RE_LEADING_OR_TRAILING_WHITESPACES, '');\n};\n\nvar parseNumber = function parseNumber(value) {\n if (value.length !== 0) {\n var parsedNumber = Number(value);\n if (!Number.isNaN(parsedNumber)) {\n return parsedNumber;\n }\n }\n return undefined;\n};\n\nvar normalizeNumericChunk = function normalizeNumericChunk(chunk, index, chunks) {\n if (RE_INT_OR_FLOAT.test(chunk)) {\n // don´t parse a number, if there´s a preceding decimal point\n // to keep significance\n // e.g. 1.0020, 1.020\n if (!RE_LEADING_ZERO.test(chunk) || index === 0 || chunks[index - 1] !== '.') {\n return parseNumber(chunk) || 0;\n }\n }\n return undefined;\n};\n\nvar createChunkMap = function createChunkMap(chunk, index, chunks) {\n return {\n parsedNumber: normalizeNumericChunk(chunk, index, chunks),\n normalizedString: normalizeAlphaChunk(chunk)\n };\n};\n\nvar createChunks = function createChunks(value) {\n return value.replace(RE_NUMBERS, '\\0$1\\0').replace(/\\0$/, '').replace(/^\\0/, '').split('\\0');\n};\n\nvar createChunkMaps = function createChunkMaps(value) {\n var chunksMaps = createChunks(value).map(createChunkMap);\n return chunksMaps;\n};\n\nvar isFunction = function isFunction(value) {\n return typeof value === 'function';\n};\n\nvar isNaN = function isNaN(value) {\n return Number.isNaN(value) || value instanceof Number && Number.isNaN(value.valueOf());\n};\n\nvar isNull = function isNull(value) {\n return value === null;\n};\n\nvar isObject = function isObject(value) {\n return value !== null && typeof value === 'object' && !Array.isArray(value) && !(value instanceof Number) && !(value instanceof String) && !(value instanceof Boolean) && !(value instanceof Date);\n};\n\nvar isSymbol = function isSymbol(value) {\n return typeof value === 'symbol';\n};\n\nvar isUndefined = function isUndefined(value) {\n return value === undefined;\n};\n\nvar parseDate = function parseDate(value) {\n try {\n var parsedDate = Date.parse(value);\n if (!Number.isNaN(parsedDate)) {\n if (RE_DATE.test(value)) {\n return parsedDate;\n }\n }\n return undefined;\n } catch (_unused) {\n return undefined;\n }\n};\n\nvar numberify = function numberify(value) {\n var parsedNumber = parseNumber(value);\n if (parsedNumber !== undefined) {\n return parsedNumber;\n }\n return parseDate(value);\n};\n\nvar stringify = function stringify(value) {\n if (typeof value === 'boolean' || value instanceof Boolean) {\n return Number(value).toString();\n }\n if (typeof value === 'number' || value instanceof Number) {\n return value.toString();\n }\n if (value instanceof Date) {\n return value.getTime().toString();\n }\n if (typeof value === 'string' || value instanceof String) {\n return value.toLowerCase().replace(RE_LEADING_OR_TRAILING_WHITESPACES, '');\n }\n return '';\n};\n\nvar getMappedValueRecord = function getMappedValueRecord(value) {\n if (typeof value === 'string' || value instanceof String || (typeof value === 'number' || value instanceof Number) && !isNaN(value) || typeof value === 'boolean' || value instanceof Boolean || value instanceof Date) {\n var stringValue = stringify(value);\n var parsedNumber = numberify(stringValue);\n var chunks = createChunkMaps(parsedNumber ? \"\" + parsedNumber : stringValue);\n return {\n parsedNumber: parsedNumber,\n chunks: chunks,\n value: value\n };\n }\n return {\n isArray: Array.isArray(value),\n isFunction: isFunction(value),\n isNaN: isNaN(value),\n isNull: isNull(value),\n isObject: isObject(value),\n isSymbol: isSymbol(value),\n isUndefined: isUndefined(value),\n value: value\n };\n};\n\nvar baseCompare = function baseCompare(options) {\n return function (valueA, valueB) {\n var a = getMappedValueRecord(valueA);\n var b = getMappedValueRecord(valueB);\n var result = compareValues(a, b);\n return result * (options.order === 'desc' ? -1 : 1);\n };\n};\n\nvar isValidOrder = function isValidOrder(value) {\n return typeof value === 'string' && (value === 'asc' || value === 'desc');\n};\nvar getOptions = function getOptions(customOptions) {\n var order = 'asc';\n if (typeof customOptions === 'string' && isValidOrder(customOptions)) {\n order = customOptions;\n } else if (customOptions && typeof customOptions === 'object' && customOptions.order && isValidOrder(customOptions.order)) {\n order = customOptions.order;\n }\n return {\n order: order\n };\n};\n\n/**\n * Creates a compare function that defines the natural sort order considering\n * the given `options` which may be passed to [`Array.prototype.sort()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort).\n */\nfunction compare(options) {\n var validatedOptions = getOptions(options);\n return baseCompare(validatedOptions);\n}\n\nvar compareMultiple = function compareMultiple(recordA, recordB, orders) {\n var indexA = recordA.index,\n valuesA = recordA.values;\n var indexB = recordB.index,\n valuesB = recordB.values;\n var length = valuesA.length;\n var ordersLength = orders.length;\n for (var i = 0; i < length; i++) {\n var order = i < ordersLength ? orders[i] : null;\n if (order && typeof order === 'function') {\n var result = order(valuesA[i].value, valuesB[i].value);\n if (result) {\n return result;\n }\n } else {\n var _result = compareValues(valuesA[i], valuesB[i]);\n if (_result) {\n return _result * (order === 'desc' ? -1 : 1);\n }\n }\n }\n return indexA - indexB;\n};\n\nvar createIdentifierFn = function createIdentifierFn(identifier) {\n if (typeof identifier === 'function') {\n // identifier is already a lookup function\n return identifier;\n }\n return function (value) {\n if (Array.isArray(value)) {\n var index = Number(identifier);\n if (Number.isInteger(index)) {\n return value[index];\n }\n } else if (value && typeof value === 'object') {\n var result = Object.getOwnPropertyDescriptor(value, identifier);\n return result == null ? void 0 : result.value;\n }\n return value;\n };\n};\n\nvar getElementByIndex = function getElementByIndex(collection, index) {\n return collection[index];\n};\n\nvar getValueByIdentifier = function getValueByIdentifier(value, getValue) {\n return getValue(value);\n};\n\nvar baseOrderBy = function baseOrderBy(collection, identifiers, orders) {\n var identifierFns = identifiers.length ? identifiers.map(createIdentifierFn) : [function (value) {\n return value;\n }];\n\n // temporary array holds elements with position and sort-values\n var mappedCollection = collection.map(function (element, index) {\n var values = identifierFns.map(function (identifier) {\n return getValueByIdentifier(element, identifier);\n }).map(getMappedValueRecord);\n return {\n index: index,\n values: values\n };\n });\n\n // iterate over values and compare values until a != b or last value reached\n mappedCollection.sort(function (recordA, recordB) {\n return compareMultiple(recordA, recordB, orders);\n });\n return mappedCollection.map(function (element) {\n return getElementByIndex(collection, element.index);\n });\n};\n\nvar getIdentifiers = function getIdentifiers(identifiers) {\n if (!identifiers) {\n return [];\n }\n var identifierList = !Array.isArray(identifiers) ? [identifiers] : [].concat(identifiers);\n if (identifierList.some(function (identifier) {\n return typeof identifier !== 'string' && typeof identifier !== 'number' && typeof identifier !== 'function';\n })) {\n return [];\n }\n return identifierList;\n};\n\nvar getOrders = function getOrders(orders) {\n if (!orders) {\n return [];\n }\n var orderList = !Array.isArray(orders) ? [orders] : [].concat(orders);\n if (orderList.some(function (order) {\n return order !== 'asc' && order !== 'desc' && typeof order !== 'function';\n })) {\n return [];\n }\n return orderList;\n};\n\n/**\n * Creates an array of elements, natural sorted by specified identifiers and\n * the corresponding sort orders. This method implements a stable sort\n * algorithm, which means the original sort order of equal elements is\n * preserved.\n */\nfunction orderBy(collection, identifiers, orders) {\n if (!collection || !Array.isArray(collection)) {\n return [];\n }\n var validatedIdentifiers = getIdentifiers(identifiers);\n var validatedOrders = getOrders(orders);\n return baseOrderBy(collection, validatedIdentifiers, validatedOrders);\n}\n\nexport { compare, orderBy };\n","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon format-list-bulleted-square-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M3,4H7V8H3V4M9,5V7H21V5H9M3,10H7V14H3V10M9,11V13H21V11H9M3,16H7V20H3V16M9,17V19H21V17H9\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"FormatListBulletedSquareIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./FormatListBulletedSquare.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./FormatListBulletedSquare.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./FormatListBulletedSquare.vue?vue&type=template&id=00aea13f\"\nimport script from \"./FormatListBulletedSquare.vue?vue&type=script&lang=js\"\nexport * from \"./FormatListBulletedSquare.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon format-list-bulleted-square-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M3,4H7V8H3V4M9,5V7H21V5H9M3,10H7V14H3V10M9,11V13H21V11H9M3,16H7V20H3V16M9,17V19H21V17H9\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon account-plus-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M15,14C12.33,14 7,15.33 7,18V20H23V18C23,15.33 17.67,14 15,14M6,10V7H4V10H1V12H4V15H6V12H9V10M15,12A4,4 0 0,0 19,8A4,4 0 0,0 15,4A4,4 0 0,0 11,8A4,4 0 0,0 15,12Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"AccountPlusIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./AccountPlus.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./AccountPlus.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./AccountPlus.vue?vue&type=template&id=a16afc28\"\nimport script from \"./AccountPlus.vue?vue&type=script&lang=js\"\nexport * from \"./AccountPlus.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon account-plus-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M15,14C12.33,14 7,15.33 7,18V20H23V18C23,15.33 17.67,14 15,14M6,10V7H4V10H1V12H4V15H6V12H9V10M15,12A4,4 0 0,0 19,8A4,4 0 0,0 15,4A4,4 0 0,0 11,8A4,4 0 0,0 15,12Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./ViewGrid.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./ViewGrid.vue?vue&type=script&lang=js\"","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon view-grid-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M3,11H11V3H3M3,21H11V13H3M13,21H21V13H13M13,3V11H21V3\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"ViewGridIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import { render, staticRenderFns } from \"./ViewGrid.vue?vue&type=template&id=7b96a104\"\nimport script from \"./ViewGrid.vue?vue&type=script&lang=js\"\nexport * from \"./ViewGrid.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon view-grid-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M3,11H11V3H3M3,21H11V13H3M13,21H21V13H13M13,3V11H21V3\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { Permission, View, FileAction, FileType } from '@nextcloud/files';\nimport { translate as t } from '@nextcloud/l10n';\nimport InformationSvg from '@mdi/svg/svg/information-variant.svg?raw';\nimport logger from '../logger.js';\nexport const ACTION_DETAILS = 'details';\nexport const action = new FileAction({\n id: ACTION_DETAILS,\n displayName: () => t('files', 'Open details'),\n iconSvgInline: () => InformationSvg,\n // Sidebar currently supports user folder only, /files/USER\n enabled: (nodes) => {\n // Only works on single node\n if (nodes.length !== 1) {\n return false;\n }\n if (!nodes[0]) {\n return false;\n }\n // Only work if the sidebar is available\n if (!window?.OCA?.Files?.Sidebar) {\n return false;\n }\n return (nodes[0].root?.startsWith('/files/') && nodes[0].permissions !== Permission.NONE) ?? false;\n },\n async exec(node, view, dir) {\n try {\n // TODO: migrate Sidebar to use a Node instead\n await window.OCA.Files.Sidebar.open(node.path);\n // Silently update current fileid\n window.OCP.Files.Router.goToRoute(null, { view: view.id, fileid: node.fileid }, { dir }, true);\n return null;\n }\n catch (error) {\n logger.error('Error while opening sidebar', { error });\n return false;\n }\n },\n order: -50,\n});\n","import { defineStore } from 'pinia';\nimport { subscribe } from '@nextcloud/event-bus';\nimport logger from '../logger';\nimport Vue from 'vue';\nexport const useFilesStore = function (...args) {\n const store = defineStore('files', {\n state: () => ({\n files: {},\n roots: {},\n }),\n getters: {\n /**\n * Get a file or folder by id\n */\n getNode: (state) => (id) => state.files[id],\n /**\n * Get a list of files or folders by their IDs\n * Does not return undefined values\n */\n getNodes: (state) => (ids) => ids\n .map(id => state.files[id])\n .filter(Boolean),\n /**\n * Get a file or folder by id\n */\n getRoot: (state) => (service) => state.roots[service],\n },\n actions: {\n updateNodes(nodes) {\n // Update the store all at once\n const files = nodes.reduce((acc, node) => {\n if (!node.fileid) {\n logger.error('Trying to update/set a node without fileid', node);\n return acc;\n }\n acc[node.fileid] = node;\n return acc;\n }, {});\n Vue.set(this, 'files', { ...this.files, ...files });\n },\n deleteNodes(nodes) {\n nodes.forEach(node => {\n if (node.fileid) {\n Vue.delete(this.files, node.fileid);\n }\n });\n },\n setRoot({ service, root }) {\n Vue.set(this.roots, service, root);\n },\n onDeletedNode(node) {\n this.deleteNodes([node]);\n },\n onCreatedNode(node) {\n this.updateNodes([node]);\n },\n onUpdatedNode(node) {\n this.updateNodes([node]);\n },\n },\n });\n const fileStore = store(...args);\n // Make sure we only register the listeners once\n if (!fileStore._initialized) {\n subscribe('files:node:created', fileStore.onCreatedNode);\n subscribe('files:node:deleted', fileStore.onDeletedNode);\n subscribe('files:node:updated', fileStore.onUpdatedNode);\n fileStore._initialized = true;\n }\n return fileStore;\n};\n","import { defineStore } from 'pinia';\nimport { FileType, Folder, Node, getNavigation } from '@nextcloud/files';\nimport { subscribe } from '@nextcloud/event-bus';\nimport Vue from 'vue';\nimport logger from '../logger';\nimport { useFilesStore } from './files';\nexport const usePathsStore = function (...args) {\n const files = useFilesStore();\n const store = defineStore('paths', {\n state: () => ({\n paths: {},\n }),\n getters: {\n getPath: (state) => {\n return (service, path) => {\n if (!state.paths[service]) {\n return undefined;\n }\n return state.paths[service][path];\n };\n },\n },\n actions: {\n addPath(payload) {\n // If it doesn't exists, init the service state\n if (!this.paths[payload.service]) {\n Vue.set(this.paths, payload.service, {});\n }\n // Now we can set the provided path\n Vue.set(this.paths[payload.service], payload.path, payload.fileid);\n },\n onCreatedNode(node) {\n const service = getNavigation()?.active?.id || 'files';\n if (!node.fileid) {\n logger.error('Node has no fileid', { node });\n return;\n }\n // Only add path if it's a folder\n if (node.type === FileType.Folder) {\n this.addPath({\n service,\n path: node.path,\n fileid: node.fileid,\n });\n }\n // Update parent folder children if exists\n // If the folder is the root, get it and update it\n if (node.dirname === '/') {\n const root = files.getRoot(service);\n if (!root._children) {\n Vue.set(root, '_children', []);\n }\n root._children.push(node.fileid);\n return;\n }\n // If the folder doesn't exists yet, it will be\n // fetched later and its children updated anyway.\n if (this.paths[service][node.dirname]) {\n const parentId = this.paths[service][node.dirname];\n const parentFolder = files.getNode(parentId);\n logger.debug('Path already exists, updating children', { parentFolder, node });\n if (!parentFolder) {\n logger.error('Parent folder not found', { parentId });\n return;\n }\n if (!parentFolder._children) {\n Vue.set(parentFolder, '_children', []);\n }\n parentFolder._children.push(node.fileid);\n return;\n }\n logger.debug('Parent path does not exists, skipping children update', { node });\n },\n },\n });\n const pathsStore = store(...args);\n // Make sure we only register the listeners once\n if (!pathsStore._initialized) {\n // TODO: watch folders to update paths?\n subscribe('files:node:created', pathsStore.onCreatedNode);\n // subscribe('files:node:deleted', pathsStore.onDeletedNode)\n // subscribe('files:node:moved', pathsStore.onMovedNode)\n pathsStore._initialized = true;\n }\n return pathsStore;\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { defineStore } from 'pinia';\nimport Vue from 'vue';\nimport { FileId, SelectionStore } from '../types';\nexport const useSelectionStore = defineStore('selection', {\n state: () => ({\n selected: [],\n lastSelection: [],\n lastSelectedIndex: null,\n }),\n actions: {\n /**\n * Set the selection of fileIds\n */\n set(selection = []) {\n Vue.set(this, 'selected', [...new Set(selection)]);\n },\n /**\n * Set the last selected index\n */\n setLastIndex(lastSelectedIndex = null) {\n // Update the last selection if we provided a new selection starting point\n Vue.set(this, 'lastSelection', lastSelectedIndex ? this.selected : []);\n Vue.set(this, 'lastSelectedIndex', lastSelectedIndex);\n },\n /**\n * Reset the selection\n */\n reset() {\n Vue.set(this, 'selected', []);\n Vue.set(this, 'lastSelection', []);\n Vue.set(this, 'lastSelectedIndex', null);\n },\n },\n});\n","import { defineStore } from 'pinia';\nimport { getUploader } from '@nextcloud/upload';\nlet uploader;\nexport const useUploaderStore = function (...args) {\n // Only init on runtime\n uploader = getUploader();\n const store = defineStore('uploader', {\n state: () => ({\n queue: uploader.queue,\n }),\n });\n return store(...args);\n};\n","import { emit } from '@nextcloud/event-bus';\nimport { Folder, Node, davGetClient, davGetDefaultPropfind, davResultToNode } from '@nextcloud/files';\nimport { openConflictPicker } from '@nextcloud/upload';\nimport { showError, showInfo } from '@nextcloud/dialogs';\nimport { translate as t } from '@nextcloud/l10n';\nimport logger from '../logger.js';\n/**\n * This represents a Directory in the file tree\n * We extend the File class to better handling uploading\n * and stay as close as possible as the Filesystem API.\n * This also allow us to hijack the size or lastModified\n * properties to compute them dynamically.\n */\nexport class Directory extends File {\n /* eslint-disable no-use-before-define */\n _contents;\n constructor(name, contents = []) {\n super([], name, { type: 'httpd/unix-directory' });\n this._contents = contents;\n }\n set contents(contents) {\n this._contents = contents;\n }\n get contents() {\n return this._contents;\n }\n get size() {\n return this._computeDirectorySize(this);\n }\n get lastModified() {\n if (this._contents.length === 0) {\n return Date.now();\n }\n return this._computeDirectoryMtime(this);\n }\n /**\n * Get the last modification time of a file tree\n * This is not perfect, but will get us a pretty good approximation\n * @param directory the directory to traverse\n */\n _computeDirectoryMtime(directory) {\n return directory.contents.reduce((acc, file) => {\n return file.lastModified > acc\n // If the file is a directory, the lastModified will\n // also return the results of its _computeDirectoryMtime method\n // Fancy recursion, huh?\n ? file.lastModified\n : acc;\n }, 0);\n }\n /**\n * Get the size of a file tree\n * @param directory the directory to traverse\n */\n _computeDirectorySize(directory) {\n return directory.contents.reduce((acc, entry) => {\n // If the file is a directory, the size will\n // also return the results of its _computeDirectorySize method\n // Fancy recursion, huh?\n return acc + entry.size;\n }, 0);\n }\n}\n/**\n * Traverse a file tree using the Filesystem API\n * @param entry the entry to traverse\n */\nexport const traverseTree = async (entry) => {\n // Handle file\n if (entry.isFile) {\n return new Promise((resolve, reject) => {\n entry.file(resolve, reject);\n });\n }\n // Handle directory\n logger.debug('Handling recursive file tree', { entry: entry.name });\n const directory = entry;\n const entries = await readDirectory(directory);\n const contents = (await Promise.all(entries.map(traverseTree))).flat();\n return new Directory(directory.name, contents);\n};\n/**\n * Read a directory using Filesystem API\n * @param directory the directory to read\n */\nconst readDirectory = (directory) => {\n const dirReader = directory.createReader();\n return new Promise((resolve, reject) => {\n const entries = [];\n const getEntries = () => {\n dirReader.readEntries((results) => {\n if (results.length) {\n entries.push(...results);\n getEntries();\n }\n else {\n resolve(entries);\n }\n }, (error) => {\n reject(error);\n });\n };\n getEntries();\n });\n};\nexport const createDirectoryIfNotExists = async (absolutePath) => {\n const davClient = davGetClient();\n const dirExists = await davClient.exists(absolutePath);\n if (!dirExists) {\n logger.debug('Directory does not exist, creating it', { absolutePath });\n await davClient.createDirectory(absolutePath, { recursive: true });\n const stat = await davClient.stat(absolutePath, { details: true, data: davGetDefaultPropfind() });\n emit('files:node:created', davResultToNode(stat.data));\n }\n};\nexport const resolveConflict = async (files, destination, contents) => {\n try {\n // List all conflicting files\n const conflicts = files.filter((file) => {\n return contents.find((node) => node.basename === (file instanceof File ? file.name : file.basename));\n }).filter(Boolean);\n // List of incoming files that are NOT in conflict\n const uploads = files.filter((file) => {\n return !conflicts.includes(file);\n });\n // Let the user choose what to do with the conflicting files\n const { selected, renamed } = await openConflictPicker(destination.path, conflicts, contents);\n logger.debug('Conflict resolution', { uploads, selected, renamed });\n // If the user selected nothing, we cancel the upload\n if (selected.length === 0 && renamed.length === 0) {\n // User skipped\n showInfo(t('files', 'Conflicts resolution skipped'));\n logger.info('User skipped the conflict resolution');\n return [];\n }\n // Update the list of files to upload\n return [...uploads, ...selected, ...renamed];\n }\n catch (error) {\n console.error(error);\n // User cancelled\n showError(t('files', 'Upload cancelled'));\n logger.error('User cancelled the upload');\n }\n return [];\n};\n","\n import API from \"!../../../style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../css-loader/dist/cjs.js!./style.css\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../css-loader/dist/cjs.js!./style.css\";\n export default content && content.locals ? content.locals : undefined;\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport '@nextcloud/dialogs/style.css';\nimport { Permission } from '@nextcloud/files';\nimport PQueue from 'p-queue';\n// This is the processing queue. We only want to allow 3 concurrent requests\nlet queue;\n/**\n * Get the processing queue\n */\nexport const getQueue = () => {\n if (!queue) {\n queue = new PQueue({ concurrency: 3 });\n }\n return queue;\n};\nexport var MoveCopyAction;\n(function (MoveCopyAction) {\n MoveCopyAction[\"MOVE\"] = \"Move\";\n MoveCopyAction[\"COPY\"] = \"Copy\";\n MoveCopyAction[\"MOVE_OR_COPY\"] = \"move-or-copy\";\n})(MoveCopyAction || (MoveCopyAction = {}));\nexport const canMove = (nodes) => {\n const minPermission = nodes.reduce((min, node) => Math.min(min, node.permissions), Permission.ALL);\n return (minPermission & Permission.UPDATE) !== 0;\n};\nexport const canDownload = (nodes) => {\n return nodes.every(node => {\n const shareAttributes = JSON.parse(node.attributes?.['share-attributes'] ?? '[]');\n return !shareAttributes.some(attribute => attribute.scope === 'permissions' && attribute.enabled === false && attribute.key === 'download');\n });\n};\nexport const canCopy = (nodes) => {\n // For now the only restriction is that a shared file\n // cannot be copied if the download is disabled\n return canDownload(nodes);\n};\n","import { createClient, getPatcher } from 'webdav';\nimport { generateRemoteUrl } from '@nextcloud/router';\nimport { getCurrentUser, getRequestToken } from '@nextcloud/auth';\nimport { request } from 'webdav/dist/node/request.js';\nexport const rootPath = `/files/${getCurrentUser()?.uid}`;\nexport const defaultRootUrl = generateRemoteUrl('dav' + rootPath);\nexport const getClient = (rootUrl = defaultRootUrl) => {\n const client = createClient(rootUrl, {\n headers: {\n requesttoken: getRequestToken() || '',\n },\n });\n /**\n * Allow to override the METHOD to support dav REPORT\n *\n * @see https://github.com/perry-mitchell/webdav-client/blob/8d9694613c978ce7404e26a401c39a41f125f87f/source/request.ts\n */\n const patcher = getPatcher();\n // eslint-disable-next-line @typescript-eslint/ban-ts-comment\n // @ts-ignore\n // https://github.com/perry-mitchell/hot-patcher/issues/6\n patcher.patch('request', (options) => {\n if (options.headers?.method) {\n options.method = options.headers.method;\n delete options.headers.method;\n }\n return request(options);\n });\n return client;\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nexport const hashCode = function (str) {\n return str.split('').reduce(function (a, b) {\n a = ((a << 5) - a) + b.charCodeAt(0);\n return a & a;\n }, 0);\n};\n","import { CancelablePromise } from 'cancelable-promise';\nimport { File, Folder, davParsePermissions, davGetDefaultPropfind } from '@nextcloud/files';\nimport { generateRemoteUrl } from '@nextcloud/router';\nimport { getCurrentUser } from '@nextcloud/auth';\nimport { getClient, rootPath } from './WebdavClient';\nimport { hashCode } from '../utils/hashUtils';\nimport logger from '../logger';\nconst client = getClient();\nexport const resultToNode = function (node) {\n const userId = getCurrentUser()?.uid;\n if (!userId) {\n throw new Error('No user id found');\n }\n const props = node.props;\n const permissions = davParsePermissions(props?.permissions);\n const owner = (props['owner-id'] || userId).toString();\n const source = generateRemoteUrl('dav' + rootPath + node.filename);\n const id = props?.fileid < 0\n ? hashCode(source)\n : props?.fileid || 0;\n const nodeData = {\n id,\n source,\n mtime: new Date(node.lastmod),\n mime: node.mime || 'application/octet-stream',\n size: props?.size || 0,\n permissions,\n owner,\n root: rootPath,\n attributes: {\n ...node,\n ...props,\n hasPreview: props?.['has-preview'],\n failed: props?.fileid < 0,\n },\n };\n delete nodeData.attributes.props;\n return node.type === 'file'\n ? new File(nodeData)\n : new Folder(nodeData);\n};\nexport const getContents = (path = '/') => {\n const controller = new AbortController();\n const propfindPayload = davGetDefaultPropfind();\n return new CancelablePromise(async (resolve, reject, onCancel) => {\n onCancel(() => controller.abort());\n try {\n const contentsResponse = await client.getDirectoryContents(path, {\n details: true,\n data: propfindPayload,\n includeSelf: true,\n signal: controller.signal,\n });\n const root = contentsResponse.data[0];\n const contents = contentsResponse.data.slice(1);\n if (root.filename !== path) {\n throw new Error('Root node does not match requested path');\n }\n resolve({\n folder: resultToNode(root),\n contents: contents.map(result => {\n try {\n return resultToNode(result);\n }\n catch (error) {\n logger.error(`Invalid node detected '${result.basename}'`, { error });\n return null;\n }\n }).filter(Boolean),\n });\n }\n catch (error) {\n reject(error);\n }\n });\n};\n","/**\n * @copyright Copyright (c) 2021 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { FileType } from '@nextcloud/files';\nimport { translate as t, translatePlural as n } from '@nextcloud/l10n';\nimport { basename, extname } from 'path';\n// TODO: move to @nextcloud/files\n/**\n * Create an unique file name\n * @param name The initial name to use\n * @param otherNames Other names that are already used\n * @param suffix A function that takes an index an returns a suffix to add, defaults to '(index)'\n * @return Either the initial name, if unique, or the name with the suffix so that the name is unique\n */\nexport const getUniqueName = (name, otherNames, suffix = (n) => `(${n})`) => {\n let newName = name;\n let i = 1;\n while (otherNames.includes(newName)) {\n const ext = extname(name);\n newName = `${basename(name, ext)} ${suffix(i++)}${ext}`;\n }\n return newName;\n};\nexport const encodeFilePath = function (path) {\n const pathSections = (path.startsWith('/') ? path : `/${path}`).split('/');\n let relativePath = '';\n pathSections.forEach((section) => {\n if (section !== '') {\n relativePath += '/' + encodeURIComponent(section);\n }\n });\n return relativePath;\n};\n/**\n * Extract dir and name from file path\n *\n * @param {string} path the full path\n * @return {string[]} [dirPath, fileName]\n */\nexport const extractFilePaths = function (path) {\n const pathSections = path.split('/');\n const fileName = pathSections[pathSections.length - 1];\n const dirPath = pathSections.slice(0, pathSections.length - 1).join('/');\n return [dirPath, fileName];\n};\n/**\n * Generate a translated summary of an array of nodes\n * @param {Node[]} nodes the nodes to summarize\n * @return {string}\n */\nexport const getSummaryFor = (nodes) => {\n const fileCount = nodes.filter(node => node.type === FileType.File).length;\n const folderCount = nodes.filter(node => node.type === FileType.Folder).length;\n if (fileCount === 0) {\n return n('files', '{folderCount} folder', '{folderCount} folders', folderCount, { folderCount });\n }\n else if (folderCount === 0) {\n return n('files', '{fileCount} file', '{fileCount} files', fileCount, { fileCount });\n }\n if (fileCount === 1) {\n return n('files', '1 file and {folderCount} folder', '1 file and {folderCount} folders', folderCount, { folderCount });\n }\n if (folderCount === 1) {\n return n('files', '{fileCount} file and 1 folder', '{fileCount} files and 1 folder', fileCount, { fileCount });\n }\n return t('files', '{fileCount} files and {folderCount} folders', { fileCount, folderCount });\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport '@nextcloud/dialogs/style.css';\n// eslint-disable-next-line n/no-extraneous-import\nimport { AxiosError } from 'axios';\nimport { basename, join } from 'path';\nimport { emit } from '@nextcloud/event-bus';\nimport { FilePickerClosed, getFilePickerBuilder, showError } from '@nextcloud/dialogs';\nimport { Permission, FileAction, FileType, NodeStatus, davGetClient, davRootPath, davResultToNode, davGetDefaultPropfind } from '@nextcloud/files';\nimport { translate as t } from '@nextcloud/l10n';\nimport { openConflictPicker, hasConflict } from '@nextcloud/upload';\nimport Vue from 'vue';\nimport CopyIconSvg from '@mdi/svg/svg/folder-multiple.svg?raw';\nimport FolderMoveSvg from '@mdi/svg/svg/folder-move.svg?raw';\nimport { MoveCopyAction, canCopy, canMove, getQueue } from './moveOrCopyActionUtils';\nimport { getContents } from '../services/Files';\nimport logger from '../logger';\nimport { getUniqueName } from '../utils/fileUtils';\n/**\n * Return the action that is possible for the given nodes\n * @param {Node[]} nodes The nodes to check against\n * @return {MoveCopyAction} The action that is possible for the given nodes\n */\nconst getActionForNodes = (nodes) => {\n if (canMove(nodes)) {\n if (canCopy(nodes)) {\n return MoveCopyAction.MOVE_OR_COPY;\n }\n return MoveCopyAction.MOVE;\n }\n // Assuming we can copy as the enabled checks for copy permissions\n return MoveCopyAction.COPY;\n};\n/**\n * Handle the copy/move of a node to a destination\n * This can be imported and used by other scripts/components on server\n * @param {Node} node The node to copy/move\n * @param {Folder} destination The destination to copy/move the node to\n * @param {MoveCopyAction} method The method to use for the copy/move\n * @param {boolean} overwrite Whether to overwrite the destination if it exists\n * @return {Promise<void>} A promise that resolves when the copy/move is done\n */\nexport const handleCopyMoveNodeTo = async (node, destination, method, overwrite = false) => {\n if (!destination) {\n return;\n }\n if (destination.type !== FileType.Folder) {\n throw new Error(t('files', 'Destination is not a folder'));\n }\n // Do not allow to MOVE a node to the same folder it is already located\n if (method === MoveCopyAction.MOVE && node.dirname === destination.path) {\n throw new Error(t('files', 'This file/folder is already in that directory'));\n }\n /**\n * Example:\n * - node: /foo/bar/file.txt -> path = /foo/bar/file.txt, destination: /foo\n * Allow move of /foo does not start with /foo/bar/file.txt so allow\n * - node: /foo , destination: /foo/bar\n * Do not allow as it would copy foo within itself\n * - node: /foo/bar.txt, destination: /foo\n * Allow copy a file to the same directory\n * - node: \"/foo/bar\", destination: \"/foo/bar 1\"\n * Allow to move or copy but we need to check with trailing / otherwise it would report false positive\n */\n if (`${destination.path}/`.startsWith(`${node.path}/`)) {\n throw new Error(t('files', 'You cannot move a file/folder onto itself or into a subfolder of itself'));\n }\n // Set loading state\n Vue.set(node, 'status', NodeStatus.LOADING);\n const queue = getQueue();\n return await queue.add(async () => {\n const copySuffix = (index) => {\n if (index === 1) {\n return t('files', '(copy)'); // TRANSLATORS: Mark a file as a copy of another file\n }\n return t('files', '(copy %n)', undefined, index); // TRANSLATORS: Meaning it is the n'th copy of a file\n };\n try {\n const client = davGetClient();\n const currentPath = join(davRootPath, node.path);\n const destinationPath = join(davRootPath, destination.path);\n if (method === MoveCopyAction.COPY) {\n let target = node.basename;\n // If we do not allow overwriting then find an unique name\n if (!overwrite) {\n const otherNodes = await client.getDirectoryContents(destinationPath);\n target = getUniqueName(node.basename, otherNodes.map((n) => n.basename), copySuffix);\n }\n await client.copyFile(currentPath, join(destinationPath, target));\n // If the node is copied into current directory the view needs to be updated\n if (node.dirname === destination.path) {\n const { data } = await client.stat(join(destinationPath, target), {\n details: true,\n data: davGetDefaultPropfind(),\n });\n emit('files:node:created', davResultToNode(data));\n }\n }\n else {\n // show conflict file popup if we do not allow overwriting\n const otherNodes = await getContents(destination.path);\n if (hasConflict([node], otherNodes.contents)) {\n try {\n // Let the user choose what to do with the conflicting files\n const { selected, renamed } = await openConflictPicker(destination.path, [node], otherNodes.contents);\n // if the user selected to keep the old file, and did not select the new file\n // that means they opted to delete the current node\n if (!selected.length && !renamed.length) {\n await client.deleteFile(currentPath);\n emit('files:node:deleted', node);\n return;\n }\n }\n catch (error) {\n // User cancelled\n showError(t('files', 'Move cancelled'));\n return;\n }\n }\n // getting here means either no conflict, file was renamed to keep both files\n // in a conflict, or the selected file was chosen to be kept during the conflict\n await client.moveFile(currentPath, join(destinationPath, node.basename));\n // Delete the node as it will be fetched again\n // when navigating to the destination folder\n emit('files:node:deleted', node);\n }\n }\n catch (error) {\n if (error instanceof AxiosError) {\n if (error?.response?.status === 412) {\n throw new Error(t('files', 'A file or folder with that name already exists in this folder'));\n }\n else if (error?.response?.status === 423) {\n throw new Error(t('files', 'The files is locked'));\n }\n else if (error?.response?.status === 404) {\n throw new Error(t('files', 'The file does not exist anymore'));\n }\n else if (error.message) {\n throw new Error(error.message);\n }\n }\n logger.debug(error);\n throw new Error();\n }\n finally {\n Vue.set(node, 'status', undefined);\n }\n });\n};\n/**\n * Open a file picker for the given action\n * @param {MoveCopyAction} action The action to open the file picker for\n * @param {string} dir The directory to start the file picker in\n * @param {Node[]} nodes The nodes to move/copy\n * @return {Promise<MoveCopyResult>} The picked destination\n */\nconst openFilePickerForAction = async (action, dir = '/', nodes) => {\n const fileIDs = nodes.map(node => node.fileid).filter(Boolean);\n const filePicker = getFilePickerBuilder(t('files', 'Choose destination'))\n .allowDirectories(true)\n .setFilter((n) => {\n // We only want to show folders that we can create nodes in\n return (n.permissions & Permission.CREATE) !== 0\n // We don't want to show the current nodes in the file picker\n && !fileIDs.includes(n.fileid);\n })\n .setMimeTypeFilter([])\n .setMultiSelect(false)\n .startAt(dir);\n return new Promise((resolve, reject) => {\n filePicker.setButtonFactory((_selection, path) => {\n const buttons = [];\n const target = basename(path);\n const dirnames = nodes.map(node => node.dirname);\n const paths = nodes.map(node => node.path);\n if (action === MoveCopyAction.COPY || action === MoveCopyAction.MOVE_OR_COPY) {\n buttons.push({\n label: target ? t('files', 'Copy to {target}', { target }) : t('files', 'Copy'),\n type: 'primary',\n icon: CopyIconSvg,\n async callback(destination) {\n resolve({\n destination: destination[0],\n action: MoveCopyAction.COPY,\n });\n },\n });\n }\n // Invalid MOVE targets (but valid copy targets)\n if (dirnames.includes(path)) {\n // This file/folder is already in that directory\n return buttons;\n }\n if (paths.includes(path)) {\n // You cannot move a file/folder onto itself\n return buttons;\n }\n if (action === MoveCopyAction.MOVE || action === MoveCopyAction.MOVE_OR_COPY) {\n buttons.push({\n label: target ? t('files', 'Move to {target}', { target }) : t('files', 'Move'),\n type: action === MoveCopyAction.MOVE ? 'primary' : 'secondary',\n icon: FolderMoveSvg,\n async callback(destination) {\n resolve({\n destination: destination[0],\n action: MoveCopyAction.MOVE,\n });\n },\n });\n }\n return buttons;\n });\n const picker = filePicker.build();\n picker.pick().catch((error) => {\n logger.debug(error);\n if (error instanceof FilePickerClosed) {\n reject(new Error(t('files', 'Cancelled move or copy operation')));\n }\n else {\n reject(new Error(t('files', 'Move or copy operation failed')));\n }\n });\n });\n};\nexport const action = new FileAction({\n id: 'move-copy',\n displayName(nodes) {\n switch (getActionForNodes(nodes)) {\n case MoveCopyAction.MOVE:\n return t('files', 'Move');\n case MoveCopyAction.COPY:\n return t('files', 'Copy');\n case MoveCopyAction.MOVE_OR_COPY:\n return t('files', 'Move or copy');\n }\n },\n iconSvgInline: () => FolderMoveSvg,\n enabled(nodes) {\n // We only support moving/copying files within the user folder\n if (!nodes.every(node => node.root?.startsWith('/files/'))) {\n return false;\n }\n return nodes.length > 0 && (canMove(nodes) || canCopy(nodes));\n },\n async exec(node, view, dir) {\n const action = getActionForNodes([node]);\n let result;\n try {\n result = await openFilePickerForAction(action, dir, [node]);\n }\n catch (e) {\n logger.error(e);\n return false;\n }\n try {\n await handleCopyMoveNodeTo(node, result.destination, result.action);\n return true;\n }\n catch (error) {\n if (error instanceof Error && !!error.message) {\n showError(error.message);\n // Silent action as we handle the toast\n return null;\n }\n return false;\n }\n },\n async execBatch(nodes, view, dir) {\n const action = getActionForNodes(nodes);\n const result = await openFilePickerForAction(action, dir, nodes);\n const promises = nodes.map(async (node) => {\n try {\n await handleCopyMoveNodeTo(node, result.destination, result.action);\n return true;\n }\n catch (error) {\n logger.error(`Failed to ${result.action} node`, { node, error });\n return false;\n }\n });\n // We need to keep the selection on error!\n // So we do not return null, and for batch action\n // we let the front handle the error.\n return await Promise.all(promises);\n },\n order: 15,\n});\n","/**\n * @copyright Copyright (c) 2023 Ferdinand Thiessen <opensource@fthiessen.de>\n *\n * @author Ferdinand Thiessen <opensource@fthiessen.de>\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { Folder, Node, NodeStatus, davRootPath } from '@nextcloud/files';\nimport { getUploader, hasConflict } from '@nextcloud/upload';\nimport { join } from 'path';\nimport { joinPaths } from '@nextcloud/paths';\nimport { showError, showInfo, showSuccess, showWarning } from '@nextcloud/dialogs';\nimport { translate as t } from '@nextcloud/l10n';\nimport Vue from 'vue';\nimport { Directory, traverseTree, resolveConflict, createDirectoryIfNotExists } from './DropServiceUtils';\nimport { handleCopyMoveNodeTo } from '../actions/moveOrCopyAction';\nimport { MoveCopyAction } from '../actions/moveOrCopyActionUtils';\nimport logger from '../logger.js';\n/**\n * This function converts a list of DataTransferItems to a file tree.\n * It uses the Filesystem API if available, otherwise it falls back to the File API.\n * The File API will NOT be available if the browser is not in a secure context (e.g. HTTP).\n * ⚠️ When using this method, you need to use it as fast as possible, as the DataTransferItems\n * will be cleared after the first access to the props of one of the entries.\n *\n * @param items the list of DataTransferItems\n */\nexport const dataTransferToFileTree = async (items) => {\n // Check if the browser supports the Filesystem API\n // We need to cache the entries to prevent Blink engine bug that clears\n // the list (`data.items`) after first access props of one of the entries\n const entries = items\n .filter((item) => {\n if (item.kind !== 'file') {\n logger.debug('Skipping dropped item', { kind: item.kind, type: item.type });\n return false;\n }\n return true;\n }).map((item) => {\n // MDN recommends to try both, as it might be renamed in the future\n return item?.getAsEntry?.()\n ?? item?.webkitGetAsEntry?.()\n ?? item;\n });\n let warned = false;\n const fileTree = new Directory('root');\n // Traverse the file tree\n for (const entry of entries) {\n // Handle browser issues if Filesystem API is not available. Fallback to File API\n if (entry instanceof DataTransferItem) {\n logger.warn('Could not get FilesystemEntry of item, falling back to file');\n const file = entry.getAsFile();\n if (file === null) {\n logger.warn('Could not process DataTransferItem', { type: entry.type, kind: entry.kind });\n showError(t('files', 'One of the dropped files could not be processed'));\n continue;\n }\n // Warn the user that the browser does not support the Filesystem API\n // we therefore cannot upload directories recursively.\n if (file.type === 'httpd/unix-directory' || !file.type) {\n if (!warned) {\n logger.warn('Browser does not support Filesystem API. Directories will not be uploaded');\n showWarning(t('files', 'Your browser does not support the Filesystem API. Directories will not be uploaded'));\n warned = true;\n }\n continue;\n }\n fileTree.contents.push(file);\n continue;\n }\n // Use Filesystem API\n try {\n fileTree.contents.push(await traverseTree(entry));\n }\n catch (error) {\n // Do not throw, as we want to continue with the other files\n logger.error('Error while traversing file tree', { error });\n }\n }\n return fileTree;\n};\nexport const onDropExternalFiles = async (root, destination, contents) => {\n const uploader = getUploader();\n // Check for conflicts on root elements\n if (await hasConflict(root.contents, contents)) {\n root.contents = await resolveConflict(root.contents, destination, contents);\n }\n if (root.contents.length === 0) {\n logger.info('No files to upload', { root });\n showInfo(t('files', 'No files to upload'));\n return [];\n }\n // Let's process the files\n logger.debug(`Uploading files to ${destination.path}`, { root, contents: root.contents });\n const queue = [];\n const uploadDirectoryContents = async (directory, path) => {\n for (const file of directory.contents) {\n // This is the relative path to the resource\n // from the current uploader destination\n const relativePath = join(path, file.name);\n // If the file is a directory, we need to create it first\n // then browse its tree and upload its contents.\n if (file instanceof Directory) {\n const absolutePath = joinPaths(davRootPath, destination.path, relativePath);\n try {\n console.debug('Processing directory', { relativePath });\n await createDirectoryIfNotExists(absolutePath);\n await uploadDirectoryContents(file, relativePath);\n }\n catch (error) {\n showError(t('files', 'Unable to create the directory {directory}', { directory: file.name }));\n logger.error('', { error, absolutePath, directory: file });\n }\n continue;\n }\n // If we've reached a file, we can upload it\n logger.debug('Uploading file to ' + join(destination.path, relativePath), { file });\n // Overriding the root to avoid changing the current uploader context\n queue.push(uploader.upload(relativePath, file, destination.source));\n }\n };\n // Pause the uploader to prevent it from starting\n // while we compute the queue\n uploader.pause();\n // Upload the files. Using '/' as the starting point\n // as we already adjusted the uploader destination\n await uploadDirectoryContents(root, '/');\n uploader.start();\n // Wait for all promises to settle\n const results = await Promise.allSettled(queue);\n // Check for errors\n const errors = results.filter(result => result.status === 'rejected');\n if (errors.length > 0) {\n logger.error('Error while uploading files', { errors });\n showError(t('files', 'Some files could not be uploaded'));\n return [];\n }\n logger.debug('Files uploaded successfully');\n showSuccess(t('files', 'Files uploaded successfully'));\n return Promise.all(queue);\n};\nexport const onDropInternalFiles = async (nodes, destination, contents, isCopy = false) => {\n const queue = [];\n // Check for conflicts on root elements\n if (await hasConflict(nodes, contents)) {\n nodes = await resolveConflict(nodes, destination, contents);\n }\n if (nodes.length === 0) {\n logger.info('No files to process', { nodes });\n showInfo(t('files', 'No files to process'));\n return;\n }\n for (const node of nodes) {\n Vue.set(node, 'status', NodeStatus.LOADING);\n // TODO: resolve potential conflicts prior and force overwrite\n queue.push(handleCopyMoveNodeTo(node, destination, isCopy ? MoveCopyAction.COPY : MoveCopyAction.MOVE));\n }\n // Wait for all promises to settle\n const results = await Promise.allSettled(queue);\n nodes.forEach(node => Vue.set(node, 'status', undefined));\n // Check for errors\n const errors = results.filter(result => result.status === 'rejected');\n if (errors.length > 0) {\n logger.error('Error while copying or moving files', { errors });\n showError(isCopy ? t('files', 'Some files could not be copied') : t('files', 'Some files could not be moved'));\n return;\n }\n logger.debug('Files copy/move successful');\n showSuccess(isCopy ? t('files', 'Files copied successfully') : t('files', 'Files moved successfully'));\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { defineStore } from 'pinia';\nimport Vue from 'vue';\nexport const useDragAndDropStore = defineStore('dragging', {\n state: () => ({\n dragging: [],\n }),\n actions: {\n /**\n * Set the selection of fileIds\n */\n set(selection = []) {\n Vue.set(this, 'dragging', selection);\n },\n /**\n * Reset the selection\n */\n reset() {\n Vue.set(this, 'dragging', []);\n },\n },\n});\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport Vue from 'vue';\nexport default Vue.extend({\n data() {\n return {\n filesListWidth: null,\n };\n },\n mounted() {\n const fileListEl = document.querySelector('#app-content-vue');\n this.filesListWidth = fileListEl?.clientWidth ?? null;\n this.$resizeObserver = new ResizeObserver((entries) => {\n if (entries.length > 0 && entries[0].target === fileListEl) {\n this.filesListWidth = entries[0].contentRect.width;\n }\n });\n this.$resizeObserver.observe(fileListEl);\n },\n beforeDestroy() {\n this.$resizeObserver.disconnect();\n },\n});\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./BreadCrumbs.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./BreadCrumbs.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcBreadcrumbs',{attrs:{\"data-cy-files-content-breadcrumbs\":\"\",\"aria-label\":_vm.t('files', 'Current directory path')},scopedSlots:_vm._u([{key:\"actions\",fn:function(){return [_vm._t(\"actions\")]},proxy:true}],null,true)},_vm._l((_vm.sections),function(section,index){return _c('NcBreadcrumb',_vm._b({key:section.dir,attrs:{\"dir\":\"auto\",\"to\":section.to,\"force-icon-text\":true,\"title\":_vm.titleForSection(index, section),\"aria-description\":_vm.ariaForSection(section)},on:{\"drop\":function($event){return _vm.onDrop($event, section.dir)}},nativeOn:{\"click\":function($event){return _vm.onClick(section.to)},\"dragover\":function($event){return _vm.onDragOver($event, section.dir)}},scopedSlots:_vm._u([(index === 0)?{key:\"icon\",fn:function(){return [_c('NcIconSvgWrapper',{attrs:{\"size\":20,\"svg\":_vm.viewIcon}})]},proxy:true}:null],null,true)},'NcBreadcrumb',section,false))}),1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./BreadCrumbs.vue?vue&type=style&index=0&id=159e0cca&prod&lang=scss&scoped=true\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./BreadCrumbs.vue?vue&type=style&index=0&id=159e0cca&prod&lang=scss&scoped=true\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./BreadCrumbs.vue?vue&type=template&id=159e0cca&scoped=true\"\nimport script from \"./BreadCrumbs.vue?vue&type=script&lang=ts\"\nexport * from \"./BreadCrumbs.vue?vue&type=script&lang=ts\"\nimport style0 from \"./BreadCrumbs.vue?vue&type=style&index=0&id=159e0cca&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"159e0cca\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('VirtualList',{ref:\"table\",attrs:{\"data-component\":_vm.userConfig.grid_view ? _vm.FileEntryGrid : _vm.FileEntry,\"data-key\":'source',\"data-sources\":_vm.nodes,\"grid-mode\":_vm.userConfig.grid_view,\"extra-props\":{\n\t\tisMtimeAvailable: _vm.isMtimeAvailable,\n\t\tisSizeAvailable: _vm.isSizeAvailable,\n\t\tnodes: _vm.nodes,\n\t\tfilesListWidth: _vm.filesListWidth,\n\t},\"scroll-to-index\":_vm.scrollToIndex,\"caption\":_vm.caption},scopedSlots:_vm._u([(!_vm.isNoneSelected)?{key:\"header-overlay\",fn:function(){return [_c('FilesListTableHeaderActions',{attrs:{\"current-view\":_vm.currentView,\"selected-nodes\":_vm.selectedNodes}})]},proxy:true}:null,{key:\"before\",fn:function(){return _vm._l((_vm.sortedHeaders),function(header){return _c('FilesListHeader',{key:header.id,attrs:{\"current-folder\":_vm.currentFolder,\"current-view\":_vm.currentView,\"header\":header}})})},proxy:true},{key:\"header\",fn:function(){return [_c('FilesListTableHeader',{ref:\"thead\",attrs:{\"files-list-width\":_vm.filesListWidth,\"is-mtime-available\":_vm.isMtimeAvailable,\"is-size-available\":_vm.isSizeAvailable,\"nodes\":_vm.nodes}})]},proxy:true},{key:\"footer\",fn:function(){return [_c('FilesListTableFooter',{attrs:{\"files-list-width\":_vm.filesListWidth,\"is-mtime-available\":_vm.isMtimeAvailable,\"is-size-available\":_vm.isSizeAvailable,\"nodes\":_vm.nodes,\"summary\":_vm.summary}})]},proxy:true}],null,true)})\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { defineStore } from 'pinia';\nexport const useActionsMenuStore = defineStore('actionsmenu', {\n state: () => ({\n opened: null,\n }),\n});\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { defineStore } from 'pinia';\nimport { subscribe } from '@nextcloud/event-bus';\nexport const useRenamingStore = function (...args) {\n const store = defineStore('renaming', {\n state: () => ({\n renamingNode: undefined,\n newName: '',\n }),\n });\n const renamingStore = store(...args);\n // Make sure we only register the listeners once\n if (!renamingStore._initialized) {\n subscribe('files:node:rename', function (node) {\n renamingStore.renamingNode = node;\n renamingStore.newName = node.basename;\n });\n renamingStore._initialized = true;\n }\n return renamingStore;\n};\n","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon file-multiple-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M15,7H20.5L15,1.5V7M8,0H16L22,6V18A2,2 0 0,1 20,20H8C6.89,20 6,19.1 6,18V2A2,2 0 0,1 8,0M4,4V22H20V24H4A2,2 0 0,1 2,22V4H4Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"FileMultipleIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./FileMultiple.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./FileMultiple.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./FileMultiple.vue?vue&type=template&id=27b46e04\"\nimport script from \"./FileMultiple.vue?vue&type=script&lang=js\"\nexport * from \"./FileMultiple.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon file-multiple-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M15,7H20.5L15,1.5V7M8,0H16L22,6V18A2,2 0 0,1 20,20H8C6.89,20 6,19.1 6,18V2A2,2 0 0,1 8,0M4,4V22H20V24H4A2,2 0 0,1 2,22V4H4Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Folder.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Folder.vue?vue&type=script&lang=js\"","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon folder-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6H12L10,4Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"FolderIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import { render, staticRenderFns } from \"./Folder.vue?vue&type=template&id=07f089a4\"\nimport script from \"./Folder.vue?vue&type=script&lang=js\"\nexport * from \"./Folder.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon folder-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6H12L10,4Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('div',{staticClass:\"files-list-drag-image\"},[_c('span',{staticClass:\"files-list-drag-image__icon\"},[_c('span',{ref:\"previewImg\"}),_vm._v(\" \"),(_vm.isSingleFolder)?_c('FolderIcon'):_c('FileMultipleIcon')],1),_vm._v(\" \"),_c('span',{staticClass:\"files-list-drag-image__name\"},[_vm._v(_vm._s(_vm.name))])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropPreview.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropPreview.vue?vue&type=script&lang=ts\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropPreview.vue?vue&type=style&index=0&id=578d5cf6&prod&lang=scss\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropPreview.vue?vue&type=style&index=0&id=578d5cf6&prod&lang=scss\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./DragAndDropPreview.vue?vue&type=template&id=578d5cf6\"\nimport script from \"./DragAndDropPreview.vue?vue&type=script&lang=ts\"\nexport * from \"./DragAndDropPreview.vue?vue&type=script&lang=ts\"\nimport style0 from \"./DragAndDropPreview.vue?vue&type=style&index=0&id=578d5cf6&prod&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import DragAndDropPreview from '../components/DragAndDropPreview.vue';\nimport Vue from 'vue';\nconst Preview = Vue.extend(DragAndDropPreview);\nlet preview;\nexport const getDragAndDropPreview = async (nodes) => {\n return new Promise((resolve) => {\n if (!preview) {\n preview = new Preview().$mount();\n document.body.appendChild(preview.$el);\n }\n preview.update(nodes);\n preview.$on('loaded', () => {\n resolve(preview.$el);\n preview.$off('loaded');\n });\n });\n};\n","/**\n * @copyright Copyright (c) 2024 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { extname } from 'path';\nimport { FileType, Permission, Folder, File as NcFile, NodeStatus, Node, View } from '@nextcloud/files';\nimport { generateUrl } from '@nextcloud/router';\nimport { translate as t } from '@nextcloud/l10n';\nimport { vOnClickOutside } from '@vueuse/components';\nimport Vue, { defineComponent } from 'vue';\nimport { action as sidebarAction } from '../actions/sidebarAction.ts';\nimport { getDragAndDropPreview } from '../utils/dragUtils.ts';\nimport { hashCode } from '../utils/hashUtils.ts';\nimport { dataTransferToFileTree, onDropExternalFiles, onDropInternalFiles } from '../services/DropService.ts';\nimport logger from '../logger.js';\nimport { showError } from '@nextcloud/dialogs';\nVue.directive('onClickOutside', vOnClickOutside);\nexport default defineComponent({\n props: {\n source: {\n type: [Folder, NcFile, Node],\n required: true,\n },\n nodes: {\n type: Array,\n required: true,\n },\n filesListWidth: {\n type: Number,\n default: 0,\n },\n },\n data() {\n return {\n loading: '',\n dragover: false,\n gridMode: false,\n };\n },\n computed: {\n currentView() {\n return this.$navigation.active;\n },\n currentDir() {\n // Remove any trailing slash but leave root slash\n return (this.$route?.query?.dir?.toString() || '/').replace(/^(.+)\\/$/, '$1');\n },\n currentFileId() {\n return this.$route.params?.fileid || this.$route.query?.fileid || null;\n },\n fileid() {\n return this.source?.fileid;\n },\n uniqueId() {\n return hashCode(this.source.source);\n },\n isLoading() {\n return this.source.status === NodeStatus.LOADING;\n },\n extension() {\n if (this.source.attributes?.displayName) {\n return extname(this.source.attributes.displayName);\n }\n return this.source.extension || '';\n },\n displayName() {\n const ext = this.extension;\n const name = (this.source.attributes.displayName\n || this.source.basename);\n // Strip extension from name if defined\n return !ext ? name : name.slice(0, 0 - ext.length);\n },\n draggingFiles() {\n return this.draggingStore.dragging;\n },\n selectedFiles() {\n return this.selectionStore.selected;\n },\n isSelected() {\n return this.fileid && this.selectedFiles.includes(this.fileid);\n },\n isRenaming() {\n return this.renamingStore.renamingNode === this.source;\n },\n isRenamingSmallScreen() {\n return this.isRenaming && this.filesListWidth < 512;\n },\n isActive() {\n return this.fileid?.toString?.() === this.currentFileId?.toString?.();\n },\n canDrag() {\n if (this.isRenaming) {\n return false;\n }\n const canDrag = (node) => {\n return (node?.permissions & Permission.UPDATE) !== 0;\n };\n // If we're dragging a selection, we need to check all files\n if (this.selectedFiles.length > 0) {\n const nodes = this.selectedFiles.map(fileid => this.filesStore.getNode(fileid));\n return nodes.every(canDrag);\n }\n return canDrag(this.source);\n },\n canDrop() {\n if (this.source.type !== FileType.Folder) {\n return false;\n }\n // If the current folder is also being dragged, we can't drop it on itself\n if (this.fileid && this.draggingFiles.includes(this.fileid)) {\n return false;\n }\n return (this.source.permissions & Permission.CREATE) !== 0;\n },\n openedMenu: {\n get() {\n return this.actionsMenuStore.opened === this.uniqueId.toString();\n },\n set(opened) {\n // Only reset when opening a new menu\n if (opened) {\n // Reset any right click position override on close\n // Wait for css animation to be done\n const root = this.$el?.closest('main.app-content');\n root.style.removeProperty('--mouse-pos-x');\n root.style.removeProperty('--mouse-pos-y');\n }\n this.actionsMenuStore.opened = opened ? this.uniqueId.toString() : null;\n },\n },\n },\n watch: {\n /**\n * When the source changes, reset the preview\n * and fetch the new one.\n */\n source() {\n this.resetState();\n },\n },\n beforeDestroy() {\n this.resetState();\n },\n methods: {\n resetState() {\n // Reset loading state\n this.loading = '';\n this.$refs.preview.reset();\n // Close menu\n this.openedMenu = false;\n },\n // Open the actions menu on right click\n onRightClick(event) {\n // If already opened, fallback to default browser\n if (this.openedMenu) {\n return;\n }\n // The grid mode is compact enough to not care about\n // the actions menu mouse position\n if (!this.gridMode) {\n // Actions menu is contained within the app content\n const root = this.$el?.closest('main.app-content');\n const contentRect = root.getBoundingClientRect();\n // Using Math.min/max to prevent the menu from going out of the AppContent\n // 200 = max width of the menu\n root.style.setProperty('--mouse-pos-x', Math.max(0, event.clientX - contentRect.left - 200) + 'px');\n root.style.setProperty('--mouse-pos-y', Math.max(0, event.clientY - contentRect.top) + 'px');\n }\n // If the clicked row is in the selection, open global menu\n const isMoreThanOneSelected = this.selectedFiles.length > 1;\n this.actionsMenuStore.opened = this.isSelected && isMoreThanOneSelected ? 'global' : this.uniqueId.toString();\n // Prevent any browser defaults\n event.preventDefault();\n event.stopPropagation();\n },\n execDefaultAction(event) {\n if (event.ctrlKey || event.metaKey) {\n event.preventDefault();\n window.open(generateUrl('/f/{fileId}', { fileId: this.fileid }));\n return false;\n }\n this.$refs.actions.execDefaultAction(event);\n },\n openDetailsIfAvailable(event) {\n event.preventDefault();\n event.stopPropagation();\n if (sidebarAction?.enabled?.([this.source], this.currentView)) {\n sidebarAction.exec(this.source, this.currentView, this.currentDir);\n }\n },\n onDragOver(event) {\n this.dragover = this.canDrop;\n if (!this.canDrop) {\n event.dataTransfer.dropEffect = 'none';\n return;\n }\n // Handle copy/move drag and drop\n if (event.ctrlKey) {\n event.dataTransfer.dropEffect = 'copy';\n }\n else {\n event.dataTransfer.dropEffect = 'move';\n }\n },\n onDragLeave(event) {\n // Counter bubbling, make sure we're ending the drag\n // only when we're leaving the current element\n const currentTarget = event.currentTarget;\n if (currentTarget?.contains(event.relatedTarget)) {\n return;\n }\n this.dragover = false;\n },\n async onDragStart(event) {\n event.stopPropagation();\n if (!this.canDrag || !this.fileid) {\n event.preventDefault();\n event.stopPropagation();\n return;\n }\n logger.debug('Drag started', { event });\n // Make sure that we're not dragging a file like the preview\n event.dataTransfer?.clearData?.();\n // Reset any renaming\n this.renamingStore.$reset();\n // Dragging set of files, if we're dragging a file\n // that is already selected, we use the entire selection\n if (this.selectedFiles.includes(this.fileid)) {\n this.draggingStore.set(this.selectedFiles);\n }\n else {\n this.draggingStore.set([this.fileid]);\n }\n const nodes = this.draggingStore.dragging\n .map(fileid => this.filesStore.getNode(fileid));\n const image = await getDragAndDropPreview(nodes);\n event.dataTransfer?.setDragImage(image, -10, -10);\n },\n onDragEnd() {\n this.draggingStore.reset();\n this.dragover = false;\n logger.debug('Drag ended');\n },\n async onDrop(event) {\n // skip if native drop like text drag and drop from files names\n if (!this.draggingFiles && !event.dataTransfer?.items?.length) {\n return;\n }\n event.preventDefault();\n event.stopPropagation();\n // Caching the selection\n const selection = this.draggingFiles;\n const items = [...event.dataTransfer?.items || []];\n // We need to process the dataTransfer ASAP before the\n // browser clears it. This is why we cache the items too.\n const fileTree = await dataTransferToFileTree(items);\n // We might not have the target directory fetched yet\n const contents = await this.currentView?.getContents(this.source.path);\n const folder = contents?.folder;\n if (!folder) {\n showError(this.t('files', 'Target folder does not exist any more'));\n return;\n }\n // If another button is pressed, cancel it. This\n // allows cancelling the drag with the right click.\n if (!this.canDrop || event.button) {\n return;\n }\n const isCopy = event.ctrlKey;\n this.dragover = false;\n logger.debug('Dropped', { event, folder, selection, fileTree });\n // Check whether we're uploading files\n if (fileTree.contents.length > 0) {\n await onDropExternalFiles(fileTree, folder, contents.contents);\n return;\n }\n // Else we're moving/copying files\n const nodes = selection.map(fileid => this.filesStore.getNode(fileid));\n await onDropInternalFiles(nodes, folder, contents.contents, isCopy);\n // Reset selection after we dropped the files\n // if the dropped files are within the selection\n if (selection.some(fileid => this.selectedFiles.includes(fileid))) {\n logger.debug('Dropped selection, resetting select store...');\n this.selectionStore.reset();\n }\n },\n t,\n },\n});\n","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span')\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CustomElementRender.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CustomElementRender.vue?vue&type=script&lang=ts\"","import { render, staticRenderFns } from \"./CustomElementRender.vue?vue&type=template&id=08a118c6\"\nimport script from \"./CustomElementRender.vue?vue&type=script&lang=ts\"\nexport * from \"./CustomElementRender.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./ArrowLeft.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./ArrowLeft.vue?vue&type=script&lang=js\"","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon arrow-left-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"ArrowLeftIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import { render, staticRenderFns } from \"./ArrowLeft.vue?vue&type=template&id=214c9a86\"\nimport script from \"./ArrowLeft.vue?vue&type=script&lang=js\"\nexport * from \"./ArrowLeft.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon arrow-left-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./ChevronRight.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./ChevronRight.vue?vue&type=script&lang=js\"","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon chevron-right-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"ChevronRightIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import { render, staticRenderFns } from \"./ChevronRight.vue?vue&type=template&id=d6df4f34\"\nimport script from \"./ChevronRight.vue?vue&type=script&lang=js\"\nexport * from \"./ChevronRight.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon chevron-right-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('td',{staticClass:\"files-list__row-actions\",attrs:{\"data-cy-files-list-row-actions\":\"\"}},[_vm._l((_vm.enabledRenderActions),function(action){return _c('CustomElementRender',{key:action.id,staticClass:\"files-list__row-action--inline\",class:'files-list__row-action-' + action.id,attrs:{\"current-view\":_vm.currentView,\"render\":action.renderInline,\"source\":_vm.source}})}),_vm._v(\" \"),_c('NcActions',{ref:\"actionsMenu\",attrs:{\"boundaries-element\":_vm.getBoundariesElement,\"container\":_vm.getBoundariesElement,\"force-name\":true,\"type\":\"tertiary\",\"force-menu\":_vm.enabledInlineActions.length === 0 /* forceMenu only if no inline actions */,\"inline\":_vm.enabledInlineActions.length,\"open\":_vm.openedMenu},on:{\"update:open\":function($event){_vm.openedMenu=$event},\"close\":function($event){_vm.openedSubmenu = null}}},[_vm._l((_vm.enabledMenuActions),function(action){return _c('NcActionButton',{key:action.id,ref:`action-${action.id}`,refInFor:true,class:{\n\t\t\t\t[`files-list__row-action-${action.id}`]: true,\n\t\t\t\t[`files-list__row-action--menu`]: _vm.isMenu(action.id)\n\t\t\t},attrs:{\"close-after-click\":!_vm.isMenu(action.id),\"data-cy-files-list-row-action\":action.id,\"is-menu\":_vm.isMenu(action.id),\"title\":action.title?.([_vm.source], _vm.currentView)},on:{\"click\":function($event){return _vm.onActionClick(action)}},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.loading === action.id)?_c('NcLoadingIcon',{attrs:{\"size\":18}}):_c('NcIconSvgWrapper',{attrs:{\"svg\":action.iconSvgInline([_vm.source], _vm.currentView)}})]},proxy:true}],null,true)},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.mountType === 'shared' && action.id === 'sharing-status' ? '' : _vm.actionDisplayName(action))+\"\\n\\t\\t\")])}),_vm._v(\" \"),(_vm.openedSubmenu && _vm.enabledSubmenuActions[_vm.openedSubmenu?.id])?[_c('NcActionButton',{staticClass:\"files-list__row-action-back\",on:{\"click\":function($event){return _vm.onBackToMenuClick(_vm.openedSubmenu)}},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [_c('ArrowLeftIcon')]},proxy:true}],null,false,3001860362)},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.actionDisplayName(_vm.openedSubmenu))+\"\\n\\t\\t\\t\")]),_vm._v(\" \"),_c('NcActionSeparator'),_vm._v(\" \"),_vm._l((_vm.enabledSubmenuActions[_vm.openedSubmenu?.id]),function(action){return _c('NcActionButton',{key:action.id,staticClass:\"files-list__row-action--submenu\",class:`files-list__row-action-${action.id}`,attrs:{\"close-after-click\":false /* never close submenu, just go back */,\"data-cy-files-list-row-action\":action.id,\"title\":action.title?.([_vm.source], _vm.currentView)},on:{\"click\":function($event){return _vm.onActionClick(action)}},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.loading === action.id)?_c('NcLoadingIcon',{attrs:{\"size\":18}}):_c('NcIconSvgWrapper',{attrs:{\"svg\":action.iconSvgInline([_vm.source], _vm.currentView)}})]},proxy:true}],null,true)},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.actionDisplayName(action))+\"\\n\\t\\t\\t\")])})]:_vm._e()],2)],2)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryActions.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryActions.vue?vue&type=script&lang=ts\"","\n import API from \"!../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryActions.vue?vue&type=style&index=0&id=6168180a&prod&lang=scss\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryActions.vue?vue&type=style&index=0&id=6168180a&prod&lang=scss\";\n export default content && content.locals ? content.locals : undefined;\n","\n import API from \"!../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryActions.vue?vue&type=style&index=1&id=6168180a&prod&lang=scss&scoped=true\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryActions.vue?vue&type=style&index=1&id=6168180a&prod&lang=scss&scoped=true\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FileEntryActions.vue?vue&type=template&id=6168180a&scoped=true\"\nimport script from \"./FileEntryActions.vue?vue&type=script&lang=ts\"\nexport * from \"./FileEntryActions.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FileEntryActions.vue?vue&type=style&index=0&id=6168180a&prod&lang=scss\"\nimport style1 from \"./FileEntryActions.vue?vue&type=style&index=1&id=6168180a&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"6168180a\",\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryCheckbox.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryCheckbox.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('td',{staticClass:\"files-list__row-checkbox\",on:{\"keyup\":function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,\"esc\",27,$event.key,[\"Esc\",\"Escape\"]))return null;if($event.ctrlKey||$event.shiftKey||$event.altKey||$event.metaKey)return null;return _vm.resetSelection.apply(null, arguments)}}},[(_vm.isLoading)?_c('NcLoadingIcon'):_c('NcCheckboxRadioSwitch',{attrs:{\"aria-label\":_vm.ariaLabel,\"checked\":_vm.isSelected},on:{\"update:checked\":_vm.onSelectionChange}})],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { defineStore } from 'pinia';\nimport Vue from 'vue';\n/**\n * Observe various events and save the current\n * special keys states. Useful for checking the\n * current status of a key when executing a method.\n */\nexport const useKeyboardStore = function (...args) {\n const store = defineStore('keyboard', {\n state: () => ({\n altKey: false,\n ctrlKey: false,\n metaKey: false,\n shiftKey: false,\n }),\n actions: {\n onEvent(event) {\n if (!event) {\n event = window.event;\n }\n Vue.set(this, 'altKey', !!event.altKey);\n Vue.set(this, 'ctrlKey', !!event.ctrlKey);\n Vue.set(this, 'metaKey', !!event.metaKey);\n Vue.set(this, 'shiftKey', !!event.shiftKey);\n },\n },\n });\n const keyboardStore = store(...args);\n // Make sure we only register the listeners once\n if (!keyboardStore._initialized) {\n window.addEventListener('keydown', keyboardStore.onEvent);\n window.addEventListener('keyup', keyboardStore.onEvent);\n window.addEventListener('mousemove', keyboardStore.onEvent);\n keyboardStore._initialized = true;\n }\n return keyboardStore;\n};\n","import { render, staticRenderFns } from \"./FileEntryCheckbox.vue?vue&type=template&id=6992c304\"\nimport script from \"./FileEntryCheckbox.vue?vue&type=script&lang=ts\"\nexport * from \"./FileEntryCheckbox.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return (_vm.isRenaming)?_c('form',{directives:[{name:\"on-click-outside\",rawName:\"v-on-click-outside\",value:(_vm.stopRenaming),expression:\"stopRenaming\"}],staticClass:\"files-list__row-rename\",attrs:{\"aria-label\":_vm.t('files', 'Rename file')},on:{\"submit\":function($event){$event.preventDefault();$event.stopPropagation();return _vm.onRename.apply(null, arguments)}}},[_c('NcTextField',{ref:\"renameInput\",attrs:{\"label\":_vm.renameLabel,\"autofocus\":true,\"minlength\":1,\"required\":true,\"value\":_vm.newName,\"enterkeyhint\":\"done\"},on:{\"update:value\":function($event){_vm.newName=$event},\"keyup\":[_vm.checkInputValidity,function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,\"esc\",27,$event.key,[\"Esc\",\"Escape\"]))return null;return _vm.stopRenaming.apply(null, arguments)}]}})],1):_c(_vm.linkTo.is,_vm._b({ref:\"basename\",tag:\"component\",staticClass:\"files-list__row-name-link\",attrs:{\"aria-hidden\":_vm.isRenaming,\"data-cy-files-list-row-name-link\":\"\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'component',_vm.linkTo.params,false),[_c('span',{staticClass:\"files-list__row-name-text\"},[_c('span',{staticClass:\"files-list__row-name-\",domProps:{\"textContent\":_vm._s(_vm.displayName)}}),_vm._v(\" \"),_c('span',{staticClass:\"files-list__row-name-ext\",domProps:{\"textContent\":_vm._s(_vm.extension)}})])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryName.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryName.vue?vue&type=script&lang=ts\"","import { render, staticRenderFns } from \"./FileEntryName.vue?vue&type=template&id=637facfc\"\nimport script from \"./FileEntryName.vue?vue&type=script&lang=ts\"\nexport * from \"./FileEntryName.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('span',{staticClass:\"files-list__row-icon\"},[(_vm.source.type === 'folder')?[(_vm.dragover)?_vm._m(0):[_vm._m(1),_vm._v(\" \"),(_vm.folderOverlay)?_c(_vm.folderOverlay,{tag:\"OverlayIcon\",staticClass:\"files-list__row-icon-overlay\"}):_vm._e()]]:(_vm.previewUrl && _vm.backgroundFailed !== true)?_c('img',{ref:\"previewImg\",staticClass:\"files-list__row-icon-preview\",class:{'files-list__row-icon-preview--loaded': _vm.backgroundFailed === false},attrs:{\"alt\":\"\",\"loading\":\"lazy\",\"src\":_vm.previewUrl},on:{\"error\":function($event){_vm.backgroundFailed = true},\"load\":function($event){_vm.backgroundFailed = false}}}):_vm._m(2),_vm._v(\" \"),(_vm.isFavorite)?_c('span',{staticClass:\"files-list__row-icon-favorite\"},[_vm._m(3)],1):_vm._e(),_vm._v(\" \"),(_vm.fileOverlay)?_c(_vm.fileOverlay,{tag:\"OverlayIcon\",staticClass:\"files-list__row-icon-overlay files-list__row-icon-overlay--file\"}):_vm._e()],2)\n}\nvar staticRenderFns = [function (){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('FolderOpenIcon')\n},function (){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('FolderIcon')\n},function (){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('FileIcon')\n},function (){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('FavoriteIcon')\n}]\n\nexport { render, staticRenderFns }","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon file-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M13,9V3.5L18.5,9M6,2C4.89,2 4,2.89 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2H6Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"FileIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./File.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./File.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./File.vue?vue&type=template&id=e3c8d598\"\nimport script from \"./File.vue?vue&type=script&lang=js\"\nexport * from \"./File.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon file-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M13,9V3.5L18.5,9M6,2C4.89,2 4,2.89 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2H6Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./FolderOpen.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./FolderOpen.vue?vue&type=script&lang=js\"","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon folder-open-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M19,20H4C2.89,20 2,19.1 2,18V6C2,4.89 2.89,4 4,4H10L12,6H19A2,2 0 0,1 21,8H21L4,8V18L6.14,10H23.21L20.93,18.5C20.7,19.37 19.92,20 19,20Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"FolderOpenIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import { render, staticRenderFns } from \"./FolderOpen.vue?vue&type=template&id=79cee0a4\"\nimport script from \"./FolderOpen.vue?vue&type=script&lang=js\"\nexport * from \"./FolderOpen.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon folder-open-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M19,20H4C2.89,20 2,19.1 2,18V6C2,4.89 2.89,4 4,4H10L12,6H19A2,2 0 0,1 21,8H21L4,8V18L6.14,10H23.21L20.93,18.5C20.7,19.37 19.92,20 19,20Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Key.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Key.vue?vue&type=script&lang=js\"","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon key-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M7 14C5.9 14 5 13.1 5 12S5.9 10 7 10 9 10.9 9 12 8.1 14 7 14M12.6 10C11.8 7.7 9.6 6 7 6C3.7 6 1 8.7 1 12S3.7 18 7 18C9.6 18 11.8 16.3 12.6 14H16V18H20V14H23V10H12.6Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"KeyIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import { render, staticRenderFns } from \"./Key.vue?vue&type=template&id=01a06d54\"\nimport script from \"./Key.vue?vue&type=script&lang=js\"\nexport * from \"./Key.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon key-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M7 14C5.9 14 5 13.1 5 12S5.9 10 7 10 9 10.9 9 12 8.1 14 7 14M12.6 10C11.8 7.7 9.6 6 7 6C3.7 6 1 8.7 1 12S3.7 18 7 18C9.6 18 11.8 16.3 12.6 14H16V18H20V14H23V10H12.6Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Network.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Network.vue?vue&type=script&lang=js\"","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon network-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M17,3A2,2 0 0,1 19,5V15A2,2 0 0,1 17,17H13V19H14A1,1 0 0,1 15,20H22V22H15A1,1 0 0,1 14,23H10A1,1 0 0,1 9,22H2V20H9A1,1 0 0,1 10,19H11V17H7C5.89,17 5,16.1 5,15V5A2,2 0 0,1 7,3H17Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"NetworkIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import { render, staticRenderFns } from \"./Network.vue?vue&type=template&id=29f8873c\"\nimport script from \"./Network.vue?vue&type=script&lang=js\"\nexport * from \"./Network.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon network-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M17,3A2,2 0 0,1 19,5V15A2,2 0 0,1 17,17H13V19H14A1,1 0 0,1 15,20H22V22H15A1,1 0 0,1 14,23H10A1,1 0 0,1 9,22H2V20H9A1,1 0 0,1 10,19H11V17H7C5.89,17 5,16.1 5,15V5A2,2 0 0,1 7,3H17Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Tag.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Tag.vue?vue&type=script&lang=js\"","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon tag-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M5.5,7A1.5,1.5 0 0,1 4,5.5A1.5,1.5 0 0,1 5.5,4A1.5,1.5 0 0,1 7,5.5A1.5,1.5 0 0,1 5.5,7M21.41,11.58L12.41,2.58C12.05,2.22 11.55,2 11,2H4C2.89,2 2,2.89 2,4V11C2,11.55 2.22,12.05 2.59,12.41L11.58,21.41C11.95,21.77 12.45,22 13,22C13.55,22 14.05,21.77 14.41,21.41L21.41,14.41C21.78,14.05 22,13.55 22,13C22,12.44 21.77,11.94 21.41,11.58Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"TagIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import { render, staticRenderFns } from \"./Tag.vue?vue&type=template&id=75dd05e4\"\nimport script from \"./Tag.vue?vue&type=script&lang=js\"\nexport * from \"./Tag.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon tag-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M5.5,7A1.5,1.5 0 0,1 4,5.5A1.5,1.5 0 0,1 5.5,4A1.5,1.5 0 0,1 7,5.5A1.5,1.5 0 0,1 5.5,7M21.41,11.58L12.41,2.58C12.05,2.22 11.55,2 11,2H4C2.89,2 2,2.89 2,4V11C2,11.55 2.22,12.05 2.59,12.41L11.58,21.41C11.95,21.77 12.45,22 13,22C13.55,22 14.05,21.77 14.41,21.41L21.41,14.41C21.78,14.05 22,13.55 22,13C22,12.44 21.77,11.94 21.41,11.58Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./PlayCircle.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./PlayCircle.vue?vue&type=script&lang=js\"","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon play-circle-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M10,16.5V7.5L16,12M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"PlayCircleIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import { render, staticRenderFns } from \"./PlayCircle.vue?vue&type=template&id=6901b3e6\"\nimport script from \"./PlayCircle.vue?vue&type=script&lang=js\"\nexport * from \"./PlayCircle.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon play-circle-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M10,16.5V7.5L16,12M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CollectivesIcon.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CollectivesIcon.vue?vue&type=script&lang=js\"","<template>\n\t<span :aria-hidden=\"!title\"\n\t\t:aria-label=\"title\"\n\t\tclass=\"material-design-icon collectives-icon\"\n\t\trole=\"img\"\n\t\tv-bind=\"$attrs\"\n\t\t@click=\"$emit('click', $event)\">\n\t\t<svg :fill=\"fillColor\"\n\t\t\tclass=\"material-design-icon__svg\"\n\t\t\t:width=\"size\"\n\t\t\t:height=\"size\"\n\t\t\tviewBox=\"0 0 16 16\">\n\t\t\t<path d=\"M2.9,8.8c0-1.2,0.4-2.4,1.2-3.3L0.3,6c-0.2,0-0.3,0.3-0.1,0.4l2.7,2.6C2.9,9,2.9,8.9,2.9,8.8z\" />\n\t\t\t<path d=\"M8,3.7c0.7,0,1.3,0.1,1.9,0.4L8.2,0.6c-0.1-0.2-0.3-0.2-0.4,0L6.1,4C6.7,3.8,7.3,3.7,8,3.7z\" />\n\t\t\t<path d=\"M3.7,11.5L3,15.2c0,0.2,0.2,0.4,0.4,0.3l3.3-1.7C5.4,13.4,4.4,12.6,3.7,11.5z\" />\n\t\t\t<path d=\"M15.7,6l-3.7-0.5c0.7,0.9,1.2,2,1.2,3.3c0,0.1,0,0.2,0,0.3l2.7-2.6C15.9,6.3,15.9,6.1,15.7,6z\" />\n\t\t\t<path d=\"M12.3,11.5c-0.7,1.1-1.8,1.9-3,2.2l3.3,1.7c0.2,0.1,0.4-0.1,0.4-0.3L12.3,11.5z\" />\n\t\t\t<path d=\"M9.6,10.1c-0.4,0.5-1,0.8-1.6,0.8c-1.1,0-2-0.9-2.1-2C5.9,7.7,6.8,6.7,8,6.7c0.6,0,1.1,0.3,1.5,0.7 c0.1,0.1,0.1,0.1,0.2,0.1h1.4c0.2,0,0.4-0.2,0.3-0.5c-0.7-1.3-2.1-2.2-3.8-2.1C5.8,5,4.3,6.6,4.1,8.5C4,10.8,5.8,12.7,8,12.7 c1.6,0,2.9-0.9,3.5-2.3c0.1-0.2-0.1-0.4-0.3-0.4H9.9C9.8,10,9.7,10,9.6,10.1z\" />\n\t\t</svg>\n\t</span>\n</template>\n\n<script>\nexport default {\n\tname: 'CollectivesIcon',\n\tprops: {\n\t\ttitle: {\n\t\t\ttype: String,\n\t\t\tdefault: '',\n\t\t},\n\t\tfillColor: {\n\t\t\ttype: String,\n\t\t\tdefault: 'currentColor',\n\t\t},\n\t\tsize: {\n\t\t\ttype: Number,\n\t\t\tdefault: 24,\n\t\t},\n\t},\n}\n</script>\n","import { render, staticRenderFns } from \"./CollectivesIcon.vue?vue&type=template&id=18541dcc\"\nimport script from \"./CollectivesIcon.vue?vue&type=script&lang=js\"\nexport * from \"./CollectivesIcon.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon collectives-icon\",attrs:{\"aria-hidden\":!_vm.title,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 16 16\"}},[_c('path',{attrs:{\"d\":\"M2.9,8.8c0-1.2,0.4-2.4,1.2-3.3L0.3,6c-0.2,0-0.3,0.3-0.1,0.4l2.7,2.6C2.9,9,2.9,8.9,2.9,8.8z\"}}),_vm._v(\" \"),_c('path',{attrs:{\"d\":\"M8,3.7c0.7,0,1.3,0.1,1.9,0.4L8.2,0.6c-0.1-0.2-0.3-0.2-0.4,0L6.1,4C6.7,3.8,7.3,3.7,8,3.7z\"}}),_vm._v(\" \"),_c('path',{attrs:{\"d\":\"M3.7,11.5L3,15.2c0,0.2,0.2,0.4,0.4,0.3l3.3-1.7C5.4,13.4,4.4,12.6,3.7,11.5z\"}}),_vm._v(\" \"),_c('path',{attrs:{\"d\":\"M15.7,6l-3.7-0.5c0.7,0.9,1.2,2,1.2,3.3c0,0.1,0,0.2,0,0.3l2.7-2.6C15.9,6.3,15.9,6.1,15.7,6z\"}}),_vm._v(\" \"),_c('path',{attrs:{\"d\":\"M12.3,11.5c-0.7,1.1-1.8,1.9-3,2.2l3.3,1.7c0.2,0.1,0.4-0.1,0.4-0.3L12.3,11.5z\"}}),_vm._v(\" \"),_c('path',{attrs:{\"d\":\"M9.6,10.1c-0.4,0.5-1,0.8-1.6,0.8c-1.1,0-2-0.9-2.1-2C5.9,7.7,6.8,6.7,8,6.7c0.6,0,1.1,0.3,1.5,0.7 c0.1,0.1,0.1,0.1,0.2,0.1h1.4c0.2,0,0.4-0.2,0.3-0.5c-0.7-1.3-2.1-2.2-3.8-2.1C5.8,5,4.3,6.6,4.1,8.5C4,10.8,5.8,12.7,8,12.7 c1.6,0,2.9-0.9,3.5-2.3c0.1-0.2-0.1-0.4-0.3-0.4H9.9C9.8,10,9.7,10,9.6,10.1z\"}})])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FavoriteIcon.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FavoriteIcon.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcIconSvgWrapper',{staticClass:\"favorite-marker-icon\",attrs:{\"name\":_vm.t('files', 'Favorite'),\"svg\":_vm.StarSvg}})\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n import API from \"!../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FavoriteIcon.vue?vue&type=style&index=0&id=04e52abc&prod&lang=scss&scoped=true\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FavoriteIcon.vue?vue&type=style&index=0&id=04e52abc&prod&lang=scss&scoped=true\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FavoriteIcon.vue?vue&type=template&id=04e52abc&scoped=true\"\nimport script from \"./FavoriteIcon.vue?vue&type=script&lang=ts\"\nexport * from \"./FavoriteIcon.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FavoriteIcon.vue?vue&type=style&index=0&id=04e52abc&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"04e52abc\",\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryPreview.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryPreview.vue?vue&type=script&lang=ts\"","/**\n * @copyright Copyright (c) 2023 Louis Chmn <louis@chmn.me>\n *\n * @author Louis Chmn <louis@chmn.me>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { Node, registerDavProperty } from '@nextcloud/files';\nexport function initLivePhotos() {\n registerDavProperty('nc:metadata-files-live-photo', { nc: 'http://nextcloud.org/ns' });\n}\n/**\n * @param {Node} node - The node\n */\nexport function isLivePhoto(node) {\n return node.attributes['metadata-files-live-photo'] !== undefined;\n}\n","import { render, staticRenderFns } from \"./FileEntryPreview.vue?vue&type=template&id=3c23da48\"\nimport script from \"./FileEntryPreview.vue?vue&type=script&lang=ts\"\nexport * from \"./FileEntryPreview.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntry.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntry.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('tr',_vm._g({staticClass:\"files-list__row\",class:{\n\t\t'files-list__row--dragover': _vm.dragover,\n\t\t'files-list__row--loading': _vm.isLoading,\n\t\t'files-list__row--active': _vm.isActive,\n\t},attrs:{\"data-cy-files-list-row\":\"\",\"data-cy-files-list-row-fileid\":_vm.fileid,\"data-cy-files-list-row-name\":_vm.source.basename,\"draggable\":_vm.canDrag}},_vm.rowListeners),[(_vm.source.attributes.failed)?_c('span',{staticClass:\"files-list__row--failed\"}):_vm._e(),_vm._v(\" \"),_c('FileEntryCheckbox',{attrs:{\"fileid\":_vm.fileid,\"is-loading\":_vm.isLoading,\"nodes\":_vm.nodes,\"source\":_vm.source}}),_vm._v(\" \"),_c('td',{staticClass:\"files-list__row-name\",attrs:{\"data-cy-files-list-row-name\":\"\"}},[_c('FileEntryPreview',{ref:\"preview\",attrs:{\"source\":_vm.source,\"dragover\":_vm.dragover},nativeOn:{\"click\":function($event){return _vm.execDefaultAction.apply(null, arguments)}}}),_vm._v(\" \"),_c('FileEntryName',{ref:\"name\",attrs:{\"display-name\":_vm.displayName,\"extension\":_vm.extension,\"files-list-width\":_vm.filesListWidth,\"nodes\":_vm.nodes,\"source\":_vm.source},on:{\"click\":_vm.execDefaultAction}})],1),_vm._v(\" \"),_c('FileEntryActions',{directives:[{name:\"show\",rawName:\"v-show\",value:(!_vm.isRenamingSmallScreen),expression:\"!isRenamingSmallScreen\"}],ref:\"actions\",class:`files-list__row-actions-${_vm.uniqueId}`,attrs:{\"files-list-width\":_vm.filesListWidth,\"loading\":_vm.loading,\"opened\":_vm.openedMenu,\"source\":_vm.source},on:{\"update:loading\":function($event){_vm.loading=$event},\"update:opened\":function($event){_vm.openedMenu=$event}}}),_vm._v(\" \"),(!_vm.compact && _vm.isSizeAvailable)?_c('td',{staticClass:\"files-list__row-size\",style:(_vm.sizeOpacity),attrs:{\"data-cy-files-list-row-size\":\"\"},on:{\"click\":_vm.openDetailsIfAvailable}},[_c('span',[_vm._v(_vm._s(_vm.size))])]):_vm._e(),_vm._v(\" \"),(!_vm.compact && _vm.isMtimeAvailable)?_c('td',{staticClass:\"files-list__row-mtime\",style:(_vm.mtimeOpacity),attrs:{\"data-cy-files-list-row-mtime\":\"\"},on:{\"click\":_vm.openDetailsIfAvailable}},[_c('NcDateTime',{attrs:{\"timestamp\":_vm.source.mtime,\"ignore-seconds\":true}})],1):_vm._e(),_vm._v(\" \"),_vm._l((_vm.columns),function(column){return _c('td',{key:column.id,staticClass:\"files-list__row-column-custom\",class:`files-list__row-${_vm.currentView?.id}-${column.id}`,attrs:{\"data-cy-files-list-row-column-custom\":column.id},on:{\"click\":_vm.openDetailsIfAvailable}},[_c('CustomElementRender',{attrs:{\"current-view\":_vm.currentView,\"render\":column.render,\"source\":_vm.source}})],1)})],2)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import { render, staticRenderFns } from \"./FileEntry.vue?vue&type=template&id=6ae0d517\"\nimport script from \"./FileEntry.vue?vue&type=script&lang=ts\"\nexport * from \"./FileEntry.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryGrid.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryGrid.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('tr',{staticClass:\"files-list__row\",class:{'files-list__row--active': _vm.isActive, 'files-list__row--dragover': _vm.dragover, 'files-list__row--loading': _vm.isLoading},attrs:{\"data-cy-files-list-row\":\"\",\"data-cy-files-list-row-fileid\":_vm.fileid,\"data-cy-files-list-row-name\":_vm.source.basename,\"draggable\":_vm.canDrag},on:{\"contextmenu\":_vm.onRightClick,\"dragover\":_vm.onDragOver,\"dragleave\":_vm.onDragLeave,\"dragstart\":_vm.onDragStart,\"dragend\":_vm.onDragEnd,\"drop\":_vm.onDrop}},[(_vm.source.attributes.failed)?_c('span',{staticClass:\"files-list__row--failed\"}):_vm._e(),_vm._v(\" \"),_c('FileEntryCheckbox',{attrs:{\"fileid\":_vm.fileid,\"is-loading\":_vm.isLoading,\"nodes\":_vm.nodes,\"source\":_vm.source}}),_vm._v(\" \"),_c('td',{staticClass:\"files-list__row-name\",attrs:{\"data-cy-files-list-row-name\":\"\"}},[_c('FileEntryPreview',{ref:\"preview\",attrs:{\"dragover\":_vm.dragover,\"grid-mode\":true,\"source\":_vm.source},nativeOn:{\"click\":function($event){return _vm.execDefaultAction.apply(null, arguments)}}}),_vm._v(\" \"),_c('FileEntryName',{ref:\"name\",attrs:{\"display-name\":_vm.displayName,\"extension\":_vm.extension,\"files-list-width\":_vm.filesListWidth,\"grid-mode\":true,\"nodes\":_vm.nodes,\"source\":_vm.source},on:{\"click\":_vm.execDefaultAction}})],1),_vm._v(\" \"),_c('FileEntryActions',{ref:\"actions\",class:`files-list__row-actions-${_vm.uniqueId}`,attrs:{\"files-list-width\":_vm.filesListWidth,\"grid-mode\":true,\"loading\":_vm.loading,\"opened\":_vm.openedMenu,\"source\":_vm.source},on:{\"update:loading\":function($event){_vm.loading=$event},\"update:opened\":function($event){_vm.openedMenu=$event}}})],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import { render, staticRenderFns } from \"./FileEntryGrid.vue?vue&type=template&id=337076f0\"\nimport script from \"./FileEntryGrid.vue?vue&type=script&lang=ts\"\nexport * from \"./FileEntryGrid.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('div',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.enabled),expression:\"enabled\"}],class:`files-list__header-${_vm.header.id}`},[_c('span',{ref:\"mount\"})])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListHeader.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListHeader.vue?vue&type=script&lang=ts\"","import { render, staticRenderFns } from \"./FilesListHeader.vue?vue&type=template&id=0434f153\"\nimport script from \"./FilesListHeader.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesListHeader.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableFooter.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableFooter.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('tr',[_c('th',{staticClass:\"files-list__row-checkbox\"},[_c('span',{staticClass:\"hidden-visually\"},[_vm._v(_vm._s(_vm.t('files', 'Total rows summary')))])]),_vm._v(\" \"),_c('td',{staticClass:\"files-list__row-name\"},[_c('span',{staticClass:\"files-list__row-icon\"}),_vm._v(\" \"),_c('span',[_vm._v(_vm._s(_vm.summary))])]),_vm._v(\" \"),_c('td',{staticClass:\"files-list__row-actions\"}),_vm._v(\" \"),(_vm.isSizeAvailable)?_c('td',{staticClass:\"files-list__column files-list__row-size\"},[_c('span',[_vm._v(_vm._s(_vm.totalSize))])]):_vm._e(),_vm._v(\" \"),(_vm.isMtimeAvailable)?_c('td',{staticClass:\"files-list__column files-list__row-mtime\"}):_vm._e(),_vm._v(\" \"),_vm._l((_vm.columns),function(column){return _c('th',{key:column.id,class:_vm.classForColumn(column)},[_c('span',[_vm._v(_vm._s(column.summary?.(_vm.nodes, _vm.currentView)))])])})],2)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableFooter.vue?vue&type=style&index=0&id=a85bde20&prod&scoped=true&lang=scss\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableFooter.vue?vue&type=style&index=0&id=a85bde20&prod&scoped=true&lang=scss\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListTableFooter.vue?vue&type=template&id=a85bde20&scoped=true\"\nimport script from \"./FilesListTableFooter.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesListTableFooter.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FilesListTableFooter.vue?vue&type=style&index=0&id=a85bde20&prod&scoped=true&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"a85bde20\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('tr',{staticClass:\"files-list__row-head\"},[_c('th',{staticClass:\"files-list__column files-list__row-checkbox\",on:{\"keyup\":function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,\"esc\",27,$event.key,[\"Esc\",\"Escape\"]))return null;if($event.ctrlKey||$event.shiftKey||$event.altKey||$event.metaKey)return null;return _vm.resetSelection.apply(null, arguments)}}},[_c('NcCheckboxRadioSwitch',_vm._b({on:{\"update:checked\":_vm.onToggleAll}},'NcCheckboxRadioSwitch',_vm.selectAllBind,false))],1),_vm._v(\" \"),_c('th',{staticClass:\"files-list__column files-list__row-name files-list__column--sortable\",attrs:{\"aria-sort\":_vm.ariaSortForMode('basename')}},[_c('span',{staticClass:\"files-list__row-icon\"}),_vm._v(\" \"),_c('FilesListTableHeaderButton',{attrs:{\"name\":_vm.t('files', 'Name'),\"mode\":\"basename\"}})],1),_vm._v(\" \"),_c('th',{staticClass:\"files-list__row-actions\"}),_vm._v(\" \"),(_vm.isSizeAvailable)?_c('th',{staticClass:\"files-list__column files-list__row-size\",class:{ 'files-list__column--sortable': _vm.isSizeAvailable },attrs:{\"aria-sort\":_vm.ariaSortForMode('size')}},[_c('FilesListTableHeaderButton',{attrs:{\"name\":_vm.t('files', 'Size'),\"mode\":\"size\"}})],1):_vm._e(),_vm._v(\" \"),(_vm.isMtimeAvailable)?_c('th',{staticClass:\"files-list__column files-list__row-mtime\",class:{ 'files-list__column--sortable': _vm.isMtimeAvailable },attrs:{\"aria-sort\":_vm.ariaSortForMode('mtime')}},[_c('FilesListTableHeaderButton',{attrs:{\"name\":_vm.t('files', 'Modified'),\"mode\":\"mtime\"}})],1):_vm._e(),_vm._v(\" \"),_vm._l((_vm.columns),function(column){return _c('th',{key:column.id,class:_vm.classForColumn(column),attrs:{\"aria-sort\":_vm.ariaSortForMode(column.id)}},[(!!column.sort)?_c('FilesListTableHeaderButton',{attrs:{\"name\":column.title,\"mode\":column.id}}):_c('span',[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(column.title)+\"\\n\\t\\t\")])],1)})],2)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport Vue from 'vue';\nimport { mapState } from 'pinia';\nimport { useViewConfigStore } from '../store/viewConfig';\nimport { Navigation, View } from '@nextcloud/files';\nexport default Vue.extend({\n computed: {\n ...mapState(useViewConfigStore, ['getConfig', 'setSortingBy', 'toggleSortingDirection']),\n currentView() {\n return this.$navigation.active;\n },\n /**\n * Get the sorting mode for the current view\n */\n sortingMode() {\n return this.getConfig(this.currentView.id)?.sorting_mode\n || this.currentView?.defaultSortKey\n || 'basename';\n },\n /**\n * Get the sorting direction for the current view\n */\n isAscSorting() {\n const sortingDirection = this.getConfig(this.currentView.id)?.sorting_direction;\n return sortingDirection !== 'desc';\n },\n },\n methods: {\n toggleSortBy(key) {\n // If we're already sorting by this key, flip the direction\n if (this.sortingMode === key) {\n this.toggleSortingDirection(this.currentView.id);\n return;\n }\n // else sort ASC by this new key\n this.setSortingBy(key, this.currentView.id);\n },\n },\n});\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderButton.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderButton.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcButton',{class:['files-list__column-sort-button', {\n\t\t'files-list__column-sort-button--active': _vm.sortingMode === _vm.mode,\n\t\t'files-list__column-sort-button--size': _vm.sortingMode === 'size',\n\t}],attrs:{\"alignment\":_vm.mode === 'size' ? 'end' : 'start-reverse',\"type\":\"tertiary\"},on:{\"click\":function($event){return _vm.toggleSortBy(_vm.mode)}},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.sortingMode !== _vm.mode || _vm.isAscSorting)?_c('MenuUp',{staticClass:\"files-list__column-sort-button-icon\"}):_c('MenuDown',{staticClass:\"files-list__column-sort-button-icon\"})]},proxy:true}])},[_vm._v(\" \"),_c('span',{staticClass:\"files-list__column-sort-button-text\"},[_vm._v(_vm._s(_vm.name))])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderButton.vue?vue&type=style&index=0&id=097f69d4&prod&scoped=true&lang=scss\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderButton.vue?vue&type=style&index=0&id=097f69d4&prod&scoped=true&lang=scss\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListTableHeaderButton.vue?vue&type=template&id=097f69d4&scoped=true\"\nimport script from \"./FilesListTableHeaderButton.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesListTableHeaderButton.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FilesListTableHeaderButton.vue?vue&type=style&index=0&id=097f69d4&prod&scoped=true&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"097f69d4\",\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeader.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeader.vue?vue&type=script&lang=ts\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeader.vue?vue&type=style&index=0&id=952162c2&prod&scoped=true&lang=scss\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeader.vue?vue&type=style&index=0&id=952162c2&prod&scoped=true&lang=scss\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListTableHeader.vue?vue&type=template&id=952162c2&scoped=true\"\nimport script from \"./FilesListTableHeader.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesListTableHeader.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FilesListTableHeader.vue?vue&type=style&index=0&id=952162c2&prod&scoped=true&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"952162c2\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('div',{staticClass:\"files-list\",attrs:{\"data-cy-files-list\":\"\"}},[_c('div',{ref:\"before\",staticClass:\"files-list__before\"},[_vm._t(\"before\")],2),_vm._v(\" \"),(!!_vm.$scopedSlots['header-overlay'])?_c('div',{staticClass:\"files-list__thead-overlay\"},[_vm._t(\"header-overlay\")],2):_vm._e(),_vm._v(\" \"),_c('table',{staticClass:\"files-list__table\",class:{ 'files-list__table--with-thead-overlay': !!_vm.$scopedSlots['header-overlay'] }},[(_vm.caption)?_c('caption',{staticClass:\"hidden-visually\"},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.caption)+\"\\n\\t\\t\")]):_vm._e(),_vm._v(\" \"),_c('thead',{ref:\"thead\",staticClass:\"files-list__thead\",attrs:{\"data-cy-files-list-thead\":\"\"}},[_vm._t(\"header\")],2),_vm._v(\" \"),_c('tbody',{staticClass:\"files-list__tbody\",class:_vm.gridMode ? 'files-list__tbody--grid' : 'files-list__tbody--list',style:(_vm.tbodyStyle),attrs:{\"data-cy-files-list-tbody\":\"\"}},_vm._l((_vm.renderedItems),function({key, item},i){return _c(_vm.dataComponent,_vm._b({key:key,tag:\"component\",attrs:{\"source\":item,\"index\":i}},'component',_vm.extraProps,false))}),1),_vm._v(\" \"),_c('tfoot',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.isReady),expression:\"isReady\"}],staticClass:\"files-list__tfoot\",attrs:{\"data-cy-files-list-tfoot\":\"\"}},[_vm._t(\"footer\")],2)])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./VirtualList.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./VirtualList.vue?vue&type=script&lang=ts\"","import { render, staticRenderFns } from \"./VirtualList.vue?vue&type=template&id=6932388d\"\nimport script from \"./VirtualList.vue?vue&type=script&lang=ts\"\nexport * from \"./VirtualList.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('div',{staticClass:\"files-list__column files-list__row-actions-batch\"},[_c('NcActions',{ref:\"actionsMenu\",attrs:{\"disabled\":!!_vm.loading || _vm.areSomeNodesLoading,\"force-name\":true,\"inline\":_vm.inlineActions,\"menu-name\":_vm.inlineActions <= 1 ? _vm.t('files', 'Actions') : null,\"open\":_vm.openedMenu},on:{\"update:open\":function($event){_vm.openedMenu=$event}}},_vm._l((_vm.enabledActions),function(action){return _c('NcActionButton',{key:action.id,class:'files-list__row-actions-batch-' + action.id,on:{\"click\":function($event){return _vm.onActionClick(action)}},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.loading === action.id)?_c('NcLoadingIcon',{attrs:{\"size\":18}}):_c('NcIconSvgWrapper',{attrs:{\"svg\":action.iconSvgInline(_vm.nodes, _vm.currentView)}})]},proxy:true}],null,true)},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(action.displayName(_vm.nodes, _vm.currentView))+\"\\n\\t\\t\")])}),1)],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderActions.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderActions.vue?vue&type=script&lang=ts\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderActions.vue?vue&type=style&index=0&id=d939292c&prod&scoped=true&lang=scss\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderActions.vue?vue&type=style&index=0&id=d939292c&prod&scoped=true&lang=scss\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListTableHeaderActions.vue?vue&type=template&id=d939292c&scoped=true\"\nimport script from \"./FilesListTableHeaderActions.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesListTableHeaderActions.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FilesListTableHeaderActions.vue?vue&type=style&index=0&id=d939292c&prod&scoped=true&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"d939292c\",\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=script&lang=ts\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=style&index=0&id=2bbbfb12&prod&scoped=true&lang=scss\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=style&index=0&id=2bbbfb12&prod&scoped=true&lang=scss\";\n export default content && content.locals ? content.locals : undefined;\n","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=style&index=1&id=2bbbfb12&prod&lang=scss\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=style&index=1&id=2bbbfb12&prod&lang=scss\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListVirtual.vue?vue&type=template&id=2bbbfb12&scoped=true\"\nimport script from \"./FilesListVirtual.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesListVirtual.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FilesListVirtual.vue?vue&type=style&index=0&id=2bbbfb12&prod&scoped=true&lang=scss\"\nimport style1 from \"./FilesListVirtual.vue?vue&type=style&index=1&id=2bbbfb12&prod&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"2bbbfb12\",\n null\n \n)\n\nexport default component.exports","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./TrayArrowDown.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./TrayArrowDown.vue?vue&type=script&lang=js\"","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon tray-arrow-down-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M2 12H4V17H20V12H22V17C22 18.11 21.11 19 20 19H4C2.9 19 2 18.11 2 17V12M12 15L17.55 9.54L16.13 8.13L13 11.25V2H11V11.25L7.88 8.13L6.46 9.55L12 15Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"TrayArrowDownIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import { render, staticRenderFns } from \"./TrayArrowDown.vue?vue&type=template&id=447c2cd4\"\nimport script from \"./TrayArrowDown.vue?vue&type=script&lang=js\"\nexport * from \"./TrayArrowDown.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon tray-arrow-down-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M2 12H4V17H20V12H22V17C22 18.11 21.11 19 20 19H4C2.9 19 2 18.11 2 17V12M12 15L17.55 9.54L16.13 8.13L13 11.25V2H11V11.25L7.88 8.13L6.46 9.55L12 15Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropNotice.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropNotice.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('div',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.dragover),expression:\"dragover\"}],staticClass:\"files-list__drag-drop-notice\",attrs:{\"data-cy-files-drag-drop-area\":\"\"},on:{\"drop\":_vm.onDrop}},[_c('div',{staticClass:\"files-list__drag-drop-notice-wrapper\"},[(_vm.canUpload && !_vm.isQuotaExceeded)?[_c('TrayArrowDownIcon',{attrs:{\"size\":48}}),_vm._v(\" \"),_c('h3',{staticClass:\"files-list-drag-drop-notice__title\"},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('files', 'Drag and drop files here to upload'))+\"\\n\\t\\t\\t\")])]:[_c('h3',{staticClass:\"files-list-drag-drop-notice__title\"},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.cantUploadLabel)+\"\\n\\t\\t\\t\")])]],2)])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropNotice.vue?vue&type=style&index=0&id=02c943a6&prod&lang=scss&scoped=true\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropNotice.vue?vue&type=style&index=0&id=02c943a6&prod&lang=scss&scoped=true\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./DragAndDropNotice.vue?vue&type=template&id=02c943a6&scoped=true\"\nimport script from \"./DragAndDropNotice.vue?vue&type=script&lang=ts\"\nexport * from \"./DragAndDropNotice.vue?vue&type=script&lang=ts\"\nimport style0 from \"./DragAndDropNotice.vue?vue&type=style&index=0&id=02c943a6&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"02c943a6\",\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesList.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesList.vue?vue&type=script&lang=ts\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesList.vue?vue&type=style&index=0&id=1b7c1ce0&prod&scoped=true&lang=scss\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesList.vue?vue&type=style&index=0&id=1b7c1ce0&prod&scoped=true&lang=scss\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesList.vue?vue&type=template&id=1b7c1ce0&scoped=true\"\nimport script from \"./FilesList.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesList.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FilesList.vue?vue&type=style&index=0&id=1b7c1ce0&prod&scoped=true&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"1b7c1ce0\",\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesApp.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesApp.vue?vue&type=script&lang=ts\"","import { render, staticRenderFns } from \"./FilesApp.vue?vue&type=template&id=11e0f2dd\"\nimport script from \"./FilesApp.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesApp.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import Vue from 'vue';\nimport { createPinia, PiniaVuePlugin } from 'pinia';\nimport { getNavigation } from '@nextcloud/files';\nimport { getRequestToken } from '@nextcloud/auth';\nimport router from './router/router';\nimport RouterService from './services/RouterService';\nimport SettingsModel from './models/Setting.js';\nimport SettingsService from './services/Settings.js';\nimport FilesApp from './FilesApp.vue';\n// @ts-expect-error __webpack_nonce__ is injected by webpack\n__webpack_nonce__ = btoa(getRequestToken());\n// Init private and public Files namespace\nwindow.OCA.Files = window.OCA.Files ?? {};\nwindow.OCP.Files = window.OCP.Files ?? {};\n// Expose router\nconst Router = new RouterService(router);\nObject.assign(window.OCP.Files, { Router });\n// Init Pinia store\nVue.use(PiniaVuePlugin);\nconst pinia = createPinia();\n// Init Navigation Service\n// This only works with Vue 2 - with Vue 3 this will not modify the source but return just a oberserver\nconst Navigation = Vue.observable(getNavigation());\nVue.prototype.$navigation = Navigation;\n// Init Files App Settings Service\nconst Settings = new SettingsService();\nObject.assign(window.OCA.Files, { Settings });\nObject.assign(window.OCA.Files.Settings, { Setting: SettingsModel });\nconst FilesAppVue = Vue.extend(FilesApp);\nnew FilesAppVue({\n router,\n pinia,\n}).$mount('#content');\n","export default class RouterService {\n _router;\n constructor(router) {\n this._router = router;\n }\n get name() {\n return this._router.currentRoute.name;\n }\n get query() {\n return this._router.currentRoute.query || {};\n }\n get params() {\n return this._router.currentRoute.params || {};\n }\n /**\n * Trigger a route change on the files app\n *\n * @param path the url path, eg: '/trashbin?dir=/Deleted'\n * @param replace replace the current history\n * @see https://router.vuejs.org/guide/essentials/navigation.html#navigate-to-a-different-location\n */\n goTo(path, replace = false) {\n return this._router.push({\n path,\n replace,\n });\n }\n /**\n * Trigger a route change on the files App\n *\n * @param name the route name\n * @param params the route parameters\n * @param query the url query parameters\n * @param replace replace the current history\n * @see https://router.vuejs.org/guide/essentials/navigation.html#navigate-to-a-different-location\n */\n goToRoute(name, params, query, replace) {\n return this._router.push({\n name,\n query,\n params,\n replace,\n });\n }\n}\n","/**\n * @copyright Copyright (c) 2019 Gary Kim <gary@garykim.dev>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\nexport default class Settings {\n\n\t_settings\n\n\tconstructor() {\n\t\tthis._settings = []\n\t\tconsole.debug('OCA.Files.Settings initialized')\n\t}\n\n\t/**\n\t * Register a new setting\n\t *\n\t * @since 19.0.0\n\t * @param {OCA.Files.Settings.Setting} view element to add to settings\n\t * @return {boolean} whether registering was successful\n\t */\n\tregister(view) {\n\t\tif (this._settings.filter(e => e.name === view.name).length > 0) {\n\t\t\tconsole.error('A setting with the same name is already registered')\n\t\t\treturn false\n\t\t}\n\t\tthis._settings.push(view)\n\t\treturn true\n\t}\n\n\t/**\n\t * All settings elements\n\t *\n\t * @return {OCA.Files.Settings.Setting[]} All currently registered settings\n\t */\n\tget settings() {\n\t\treturn this._settings\n\t}\n\n}\n","/**\n * @copyright Copyright (c) 2019 Gary Kim <gary@garykim.dev>\n * @copyright Copyright (c) 2019 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\nexport default class Setting {\n\n\t_close\n\t_el\n\t_name\n\t_open\n\n\t/**\n\t * Create a new files app setting\n\t *\n\t * @since 19.0.0\n\t * @param {string} name the name of this setting\n\t * @param {object} component the component\n\t * @param {Function} component.el function that returns an unmounted dom element to be added\n\t * @param {Function} [component.open] callback for when setting is added\n\t * @param {Function} [component.close] callback for when setting is closed\n\t */\n\tconstructor(name, { el, open, close }) {\n\t\tthis._name = name\n\t\tthis._el = el\n\t\tthis._open = open\n\t\tthis._close = close\n\n\t\tif (typeof this._open !== 'function') {\n\t\t\tthis._open = () => {}\n\t\t}\n\n\t\tif (typeof this._close !== 'function') {\n\t\t\tthis._close = () => {}\n\t\t}\n\t}\n\n\tget name() {\n\t\treturn this._name\n\t}\n\n\tget el() {\n\t\treturn this._el\n\t}\n\n\tget open() {\n\t\treturn this._open\n\t}\n\n\tget close() {\n\t\treturn this._close\n\t}\n\n}\n","function _typeof(obj) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && \"function\" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }, _typeof(obj); }\n\n(function (global, factory) {\n if (typeof define === \"function\" && define.amd) {\n define([\"exports\"], factory);\n } else if (typeof exports !== \"undefined\") {\n factory(exports);\n } else {\n var mod = {\n exports: {}\n };\n factory(mod.exports);\n global.CancelablePromise = mod.exports;\n }\n})(typeof globalThis !== \"undefined\" ? globalThis : typeof self !== \"undefined\" ? self : this, function (_exports) {\n \"use strict\";\n\n Object.defineProperty(_exports, \"__esModule\", {\n value: true\n });\n _exports.CancelablePromise = void 0;\n _exports.cancelable = cancelable;\n _exports.default = void 0;\n _exports.isCancelablePromise = isCancelablePromise;\n\n function _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, \"prototype\", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\n function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\n function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\n function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } else if (call !== void 0) { throw new TypeError(\"Derived constructors may only return object or undefined\"); } return _assertThisInitialized(self); }\n\n function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\n function _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\n function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\n function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== \"undefined\" && o[Symbol.iterator] || o[\"@@iterator\"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === \"number\") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }\n\n function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\n\n function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\n function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\n function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, \"prototype\", { writable: false }); return Constructor; }\n\n function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\n function _classPrivateFieldInitSpec(obj, privateMap, value) { _checkPrivateRedeclaration(obj, privateMap); privateMap.set(obj, value); }\n\n function _checkPrivateRedeclaration(obj, privateCollection) { if (privateCollection.has(obj)) { throw new TypeError(\"Cannot initialize the same private elements twice on an object\"); } }\n\n function _classPrivateFieldGet(receiver, privateMap) { var descriptor = _classExtractFieldDescriptor(receiver, privateMap, \"get\"); return _classApplyDescriptorGet(receiver, descriptor); }\n\n function _classApplyDescriptorGet(receiver, descriptor) { if (descriptor.get) { return descriptor.get.call(receiver); } return descriptor.value; }\n\n function _classPrivateFieldSet(receiver, privateMap, value) { var descriptor = _classExtractFieldDescriptor(receiver, privateMap, \"set\"); _classApplyDescriptorSet(receiver, descriptor, value); return value; }\n\n function _classExtractFieldDescriptor(receiver, privateMap, action) { if (!privateMap.has(receiver)) { throw new TypeError(\"attempted to \" + action + \" private field on non-instance\"); } return privateMap.get(receiver); }\n\n function _classApplyDescriptorSet(receiver, descriptor, value) { if (descriptor.set) { descriptor.set.call(receiver, value); } else { if (!descriptor.writable) { throw new TypeError(\"attempted to set read only private field\"); } descriptor.value = value; } }\n\n var toStringTag = typeof Symbol !== 'undefined' ? Symbol.toStringTag : '@@toStringTag';\n\n var _internals = /*#__PURE__*/new WeakMap();\n\n var _promise = /*#__PURE__*/new WeakMap();\n\n var CancelablePromiseInternal = /*#__PURE__*/function () {\n function CancelablePromiseInternal(_ref) {\n var _ref$executor = _ref.executor,\n executor = _ref$executor === void 0 ? function () {} : _ref$executor,\n _ref$internals = _ref.internals,\n internals = _ref$internals === void 0 ? defaultInternals() : _ref$internals,\n _ref$promise = _ref.promise,\n promise = _ref$promise === void 0 ? new Promise(function (resolve, reject) {\n return executor(resolve, reject, function (onCancel) {\n internals.onCancelList.push(onCancel);\n });\n }) : _ref$promise;\n\n _classCallCheck(this, CancelablePromiseInternal);\n\n _classPrivateFieldInitSpec(this, _internals, {\n writable: true,\n value: void 0\n });\n\n _classPrivateFieldInitSpec(this, _promise, {\n writable: true,\n value: void 0\n });\n\n _defineProperty(this, toStringTag, 'CancelablePromise');\n\n this.cancel = this.cancel.bind(this);\n\n _classPrivateFieldSet(this, _internals, internals);\n\n _classPrivateFieldSet(this, _promise, promise || new Promise(function (resolve, reject) {\n return executor(resolve, reject, function (onCancel) {\n internals.onCancelList.push(onCancel);\n });\n }));\n }\n\n _createClass(CancelablePromiseInternal, [{\n key: \"then\",\n value: function then(onfulfilled, onrejected) {\n return makeCancelable(_classPrivateFieldGet(this, _promise).then(createCallback(onfulfilled, _classPrivateFieldGet(this, _internals)), createCallback(onrejected, _classPrivateFieldGet(this, _internals))), _classPrivateFieldGet(this, _internals));\n }\n }, {\n key: \"catch\",\n value: function _catch(onrejected) {\n return makeCancelable(_classPrivateFieldGet(this, _promise).catch(createCallback(onrejected, _classPrivateFieldGet(this, _internals))), _classPrivateFieldGet(this, _internals));\n }\n }, {\n key: \"finally\",\n value: function _finally(onfinally, runWhenCanceled) {\n var _this = this;\n\n if (runWhenCanceled) {\n _classPrivateFieldGet(this, _internals).onCancelList.push(onfinally);\n }\n\n return makeCancelable(_classPrivateFieldGet(this, _promise).finally(createCallback(function () {\n if (onfinally) {\n if (runWhenCanceled) {\n _classPrivateFieldGet(_this, _internals).onCancelList = _classPrivateFieldGet(_this, _internals).onCancelList.filter(function (callback) {\n return callback !== onfinally;\n });\n }\n\n return onfinally();\n }\n }, _classPrivateFieldGet(this, _internals))), _classPrivateFieldGet(this, _internals));\n }\n }, {\n key: \"cancel\",\n value: function cancel() {\n _classPrivateFieldGet(this, _internals).isCanceled = true;\n\n var callbacks = _classPrivateFieldGet(this, _internals).onCancelList;\n\n _classPrivateFieldGet(this, _internals).onCancelList = [];\n\n var _iterator = _createForOfIteratorHelper(callbacks),\n _step;\n\n try {\n for (_iterator.s(); !(_step = _iterator.n()).done;) {\n var callback = _step.value;\n\n if (typeof callback === 'function') {\n try {\n callback();\n } catch (err) {\n console.error(err);\n }\n }\n }\n } catch (err) {\n _iterator.e(err);\n } finally {\n _iterator.f();\n }\n }\n }, {\n key: \"isCanceled\",\n value: function isCanceled() {\n return _classPrivateFieldGet(this, _internals).isCanceled === true;\n }\n }]);\n\n return CancelablePromiseInternal;\n }();\n\n var CancelablePromise = /*#__PURE__*/function (_CancelablePromiseInt) {\n _inherits(CancelablePromise, _CancelablePromiseInt);\n\n var _super = _createSuper(CancelablePromise);\n\n function CancelablePromise(executor) {\n _classCallCheck(this, CancelablePromise);\n\n return _super.call(this, {\n executor: executor\n });\n }\n\n return _createClass(CancelablePromise);\n }(CancelablePromiseInternal);\n\n _exports.CancelablePromise = CancelablePromise;\n\n _defineProperty(CancelablePromise, \"all\", function all(iterable) {\n return makeAllCancelable(iterable, Promise.all(iterable));\n });\n\n _defineProperty(CancelablePromise, \"allSettled\", function allSettled(iterable) {\n return makeAllCancelable(iterable, Promise.allSettled(iterable));\n });\n\n _defineProperty(CancelablePromise, \"any\", function any(iterable) {\n return makeAllCancelable(iterable, Promise.any(iterable));\n });\n\n _defineProperty(CancelablePromise, \"race\", function race(iterable) {\n return makeAllCancelable(iterable, Promise.race(iterable));\n });\n\n _defineProperty(CancelablePromise, \"resolve\", function resolve(value) {\n return cancelable(Promise.resolve(value));\n });\n\n _defineProperty(CancelablePromise, \"reject\", function reject(reason) {\n return cancelable(Promise.reject(reason));\n });\n\n _defineProperty(CancelablePromise, \"isCancelable\", isCancelablePromise);\n\n var _default = CancelablePromise;\n _exports.default = _default;\n\n function cancelable(promise) {\n return makeCancelable(promise, defaultInternals());\n }\n\n function isCancelablePromise(promise) {\n return promise instanceof CancelablePromise || promise instanceof CancelablePromiseInternal;\n }\n\n function createCallback(onResult, internals) {\n if (onResult) {\n return function (arg) {\n if (!internals.isCanceled) {\n var result = onResult(arg);\n\n if (isCancelablePromise(result)) {\n internals.onCancelList.push(result.cancel);\n }\n\n return result;\n }\n\n return arg;\n };\n }\n }\n\n function makeCancelable(promise, internals) {\n return new CancelablePromiseInternal({\n internals: internals,\n promise: promise\n });\n }\n\n function makeAllCancelable(iterable, promise) {\n var internals = defaultInternals();\n internals.onCancelList.push(function () {\n var _iterator2 = _createForOfIteratorHelper(iterable),\n _step2;\n\n try {\n for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {\n var resolvable = _step2.value;\n\n if (isCancelablePromise(resolvable)) {\n resolvable.cancel();\n }\n }\n } catch (err) {\n _iterator2.e(err);\n } finally {\n _iterator2.f();\n }\n });\n return new CancelablePromiseInternal({\n internals: internals,\n promise: promise\n });\n }\n\n function defaultInternals() {\n return {\n isCanceled: false,\n onCancelList: []\n };\n }\n});\n//# sourceMappingURL=CancelablePromise.js.map","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../css-loader/dist/runtime/api.js\";\nimport ___CSS_LOADER_GET_URL_IMPORT___ from \"../../../css-loader/dist/runtime/getUrl.js\";\nvar ___CSS_LOADER_URL_IMPORT_0___ = new URL(\"data:image/svg+xml,%3csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20height=%2716%27%20width=%2716%27%3e%3cpath%20d=%27M14%2012.3L12.3%2014%208%209.7%203.7%2014%202%2012.3%206.3%208%202%203.7%203.7%202%208%206.3%2012.3%202%2014%203.7%209.7%208z%27/%3e%3c/svg%3e\", import.meta.url);\nvar ___CSS_LOADER_URL_IMPORT_1___ = new URL(\"data:image/svg+xml,%3csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20height=%2716%27%20width=%2716%27%3e%3cpath%20d=%27M14%2012.3L12.3%2014%208%209.7%203.7%2014%202%2012.3%206.3%208%202%203.7%203.7%202%208%206.3%2012.3%202%2014%203.7%209.7%208z%27%20style=%27fill-opacity:1;fill:%23ffffff%27/%3e%3c/svg%3e\", import.meta.url);\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\nvar ___CSS_LOADER_URL_REPLACEMENT_0___ = ___CSS_LOADER_GET_URL_IMPORT___(___CSS_LOADER_URL_IMPORT_0___);\nvar ___CSS_LOADER_URL_REPLACEMENT_1___ = ___CSS_LOADER_GET_URL_IMPORT___(___CSS_LOADER_URL_IMPORT_1___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `@charset \"UTF-8\";\n/**\n * @copyright Copyright (c) 2019 Julius Härtl <jus@bitgrid.net>\n *\n * @author Julius Härtl <jus@bitgrid.net>\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n */\n.toastify.dialogs {\n min-width: 200px;\n background: none;\n background-color: var(--color-main-background);\n color: var(--color-main-text);\n box-shadow: 0 0 6px 0 var(--color-box-shadow);\n padding: 0 12px;\n margin-top: 45px;\n position: fixed;\n z-index: 10100;\n border-radius: var(--border-radius);\n display: flex;\n align-items: center;\n}\n.toastify.dialogs .toast-undo-container {\n display: flex;\n align-items: center;\n}\n.toastify.dialogs .toast-undo-button,\n.toastify.dialogs .toast-close {\n position: static;\n overflow: hidden;\n box-sizing: border-box;\n min-width: 44px;\n height: 100%;\n padding: 12px;\n white-space: nowrap;\n background-repeat: no-repeat;\n background-position: center;\n background-color: transparent;\n min-height: 0;\n}\n.toastify.dialogs .toast-undo-button.toast-close,\n.toastify.dialogs .toast-close.toast-close {\n text-indent: 0;\n opacity: .4;\n border: none;\n min-height: 44px;\n margin-left: 10px;\n font-size: 0;\n}\n.toastify.dialogs .toast-undo-button.toast-close:before,\n.toastify.dialogs .toast-close.toast-close:before {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_0___});\n content: \" \";\n filter: var(--background-invert-if-dark);\n display: inline-block;\n width: 16px;\n height: 16px;\n}\n.toastify.dialogs .toast-undo-button.toast-undo-button,\n.toastify.dialogs .toast-close.toast-undo-button {\n height: calc(100% - 6px);\n margin: 3px 3px 3px 12px;\n}\n.toastify.dialogs .toast-undo-button:hover,\n.toastify.dialogs .toast-undo-button:focus,\n.toastify.dialogs .toast-undo-button:active,\n.toastify.dialogs .toast-close:hover,\n.toastify.dialogs .toast-close:focus,\n.toastify.dialogs .toast-close:active {\n cursor: pointer;\n opacity: 1;\n}\n.toastify.dialogs.toastify-top {\n right: 10px;\n}\n.toastify.dialogs.toast-with-click {\n cursor: pointer;\n}\n.toastify.dialogs.toast-error {\n border-left: 3px solid var(--color-error);\n}\n.toastify.dialogs.toast-info {\n border-left: 3px solid var(--color-primary);\n}\n.toastify.dialogs.toast-warning {\n border-left: 3px solid var(--color-warning);\n}\n.toastify.dialogs.toast-success,\n.toastify.dialogs.toast-undo {\n border-left: 3px solid var(--color-success);\n}\n.theme--dark .toastify.dialogs .toast-close.toast-close:before {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_1___});\n}\n._file-picker__file-icon_1vgv4_5 {\n width: 32px;\n height: 32px;\n min-width: 32px;\n min-height: 32px;\n background-repeat: no-repeat;\n background-size: contain;\n display: flex;\n justify-content: center;\n}\ntr.file-picker__row[data-v-6aded0d9] {\n height: var(--row-height, 50px);\n}\ntr.file-picker__row td[data-v-6aded0d9] {\n cursor: pointer;\n overflow: hidden;\n text-overflow: ellipsis;\n border-bottom: none;\n}\ntr.file-picker__row td.row-checkbox[data-v-6aded0d9] {\n padding: 0 2px;\n}\ntr.file-picker__row td[data-v-6aded0d9]:not(.row-checkbox) {\n padding-inline: 14px 0;\n}\ntr.file-picker__row td.row-size[data-v-6aded0d9] {\n text-align: end;\n padding-inline: 0 14px;\n}\ntr.file-picker__row td.row-name[data-v-6aded0d9] {\n padding-inline: 2px 0;\n}\n@keyframes gradient-6aded0d9 {\n 0% {\n background-position: 0% 50%;\n }\n 50% {\n background-position: 100% 50%;\n }\n to {\n background-position: 0% 50%;\n }\n}\n.loading-row .row-checkbox[data-v-6aded0d9] {\n text-align: center !important;\n}\n.loading-row span[data-v-6aded0d9] {\n display: inline-block;\n height: 24px;\n background: linear-gradient(to right, var(--color-background-darker), var(--color-text-maxcontrast), var(--color-background-darker));\n background-size: 600px 100%;\n border-radius: var(--border-radius);\n animation: gradient-6aded0d9 12s ease infinite;\n}\n.loading-row .row-wrapper[data-v-6aded0d9] {\n display: inline-flex;\n align-items: center;\n}\n.loading-row .row-checkbox span[data-v-6aded0d9] {\n width: 24px;\n}\n.loading-row .row-name span[data-v-6aded0d9]:last-of-type {\n margin-inline-start: 6px;\n width: 130px;\n}\n.loading-row .row-size span[data-v-6aded0d9] {\n width: 80px;\n}\n.loading-row .row-modified span[data-v-6aded0d9] {\n width: 90px;\n}\ntr.file-picker__row[data-v-48df4f27] {\n height: var(--row-height, 50px);\n}\ntr.file-picker__row td[data-v-48df4f27] {\n cursor: pointer;\n overflow: hidden;\n text-overflow: ellipsis;\n border-bottom: none;\n}\ntr.file-picker__row td.row-checkbox[data-v-48df4f27] {\n padding: 0 2px;\n}\ntr.file-picker__row td[data-v-48df4f27]:not(.row-checkbox) {\n padding-inline: 14px 0;\n}\ntr.file-picker__row td.row-size[data-v-48df4f27] {\n text-align: end;\n padding-inline: 0 14px;\n}\ntr.file-picker__row td.row-name[data-v-48df4f27] {\n padding-inline: 2px 0;\n}\n.file-picker__row--selected[data-v-48df4f27] {\n background-color: var(--color-background-dark);\n}\n.file-picker__row[data-v-48df4f27]:hover {\n background-color: var(--color-background-hover);\n}\n.file-picker__name-container[data-v-48df4f27] {\n display: flex;\n justify-content: start;\n align-items: center;\n height: 100%;\n}\n.file-picker__file-name[data-v-48df4f27] {\n padding-inline-start: 6px;\n min-width: 0;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.file-picker__file-extension[data-v-48df4f27] {\n color: var(--color-text-maxcontrast);\n min-width: fit-content;\n}\n.file-picker__header-preview[data-v-d3c94818] {\n width: 22px;\n height: 32px;\n flex: 0 0 auto;\n}\n.file-picker__files[data-v-d3c94818] {\n margin: 2px;\n margin-inline-start: 12px;\n overflow: scroll auto;\n}\n.file-picker__files table[data-v-d3c94818] {\n width: 100%;\n max-height: 100%;\n table-layout: fixed;\n}\n.file-picker__files th[data-v-d3c94818] {\n position: sticky;\n z-index: 1;\n top: 0;\n background-color: var(--color-main-background);\n padding: 2px;\n}\n.file-picker__files th .header-wrapper[data-v-d3c94818] {\n display: flex;\n}\n.file-picker__files th.row-checkbox[data-v-d3c94818] {\n width: 44px;\n}\n.file-picker__files th.row-name[data-v-d3c94818] {\n width: 230px;\n}\n.file-picker__files th.row-size[data-v-d3c94818] {\n width: 100px;\n}\n.file-picker__files th.row-modified[data-v-d3c94818] {\n width: 120px;\n}\n.file-picker__files th[data-v-d3c94818]:not(.row-size) .button-vue__wrapper {\n justify-content: start;\n flex-direction: row-reverse;\n}\n.file-picker__files th[data-v-d3c94818]:not(.row-size) .button-vue {\n padding-inline: 16px 4px;\n}\n.file-picker__files th.row-size[data-v-d3c94818] .button-vue__wrapper {\n justify-content: end;\n}\n.file-picker__files th[data-v-d3c94818] .button-vue__wrapper {\n color: var(--color-text-maxcontrast);\n}\n.file-picker__files th[data-v-d3c94818] .button-vue__wrapper .button-vue__text {\n font-weight: 400;\n}\n.file-picker__breadcrumbs[data-v-a25a2652] {\n flex-grow: 0 !important;\n}\n.file-picker__side[data-v-a06474d4] {\n display: flex;\n flex-direction: column;\n align-items: stretch;\n gap: .5rem;\n min-width: 200px;\n padding: 2px;\n margin-block-start: 7px;\n overflow: auto;\n}\n.file-picker__side[data-v-a06474d4] .button-vue__wrapper {\n justify-content: start;\n}\n.file-picker__filter-input[data-v-a06474d4] {\n margin-block: 7px;\n max-width: 260px;\n}\n@media (max-width: 736px) {\n .file-picker__side[data-v-a06474d4] {\n flex-direction: row;\n min-width: unset;\n }\n}\n@media (max-width: 512px) {\n .file-picker__side[data-v-a06474d4] {\n flex-direction: row;\n min-width: unset;\n }\n .file-picker__filter-input[data-v-a06474d4] {\n max-width: unset;\n }\n}\n.file-picker__navigation {\n padding-inline: 8px 2px;\n}\n.file-picker__navigation,\n.file-picker__navigation * {\n box-sizing: border-box;\n}\n.file-picker__navigation .v-select.select {\n min-width: 220px;\n}\n@media (min-width: 513px) and (max-width: 736px) {\n .file-picker__navigation {\n gap: 11px;\n }\n}\n@media (max-width: 512px) {\n .file-picker__navigation {\n flex-direction: column-reverse !important;\n }\n}\n.file-picker__view[data-v-9def3ca4] {\n height: 50px;\n display: flex;\n justify-content: start;\n align-items: center;\n}\n.file-picker__view h3[data-v-9def3ca4] {\n font-weight: 700;\n height: fit-content;\n margin: 0;\n}\n.file-picker__main[data-v-9def3ca4] {\n box-sizing: border-box;\n width: 100%;\n display: flex;\n flex-direction: column;\n min-height: 0;\n flex: 1;\n padding-inline: 2px;\n}\n.file-picker__main *[data-v-9def3ca4] {\n box-sizing: border-box;\n}\n[data-v-9def3ca4] .file-picker {\n height: min(80vh, 800px) !important;\n}\n@media (max-width: 512px) {\n [data-v-9def3ca4] .file-picker {\n height: calc(100% - 16px - var(--default-clickable-area)) !important;\n }\n}\n[data-v-9def3ca4] .file-picker__content {\n display: flex;\n flex-direction: column;\n overflow: hidden;\n}\n`, \"\",{\"version\":3,\"sources\":[\"webpack://./node_modules/@nextcloud/dialogs/dist/style.css\"],\"names\":[],\"mappings\":\"AAAA,gBAAgB;AAChB;;;;;;;;;;;;;;;;;;;;EAoBE;AACF;EACE,gBAAgB;EAChB,gBAAgB;EAChB,8CAA8C;EAC9C,6BAA6B;EAC7B,6CAA6C;EAC7C,eAAe;EACf,gBAAgB;EAChB,eAAe;EACf,cAAc;EACd,mCAAmC;EACnC,aAAa;EACb,mBAAmB;AACrB;AACA;EACE,aAAa;EACb,mBAAmB;AACrB;AACA;;EAEE,gBAAgB;EAChB,gBAAgB;EAChB,sBAAsB;EACtB,eAAe;EACf,YAAY;EACZ,aAAa;EACb,mBAAmB;EACnB,4BAA4B;EAC5B,2BAA2B;EAC3B,6BAA6B;EAC7B,aAAa;AACf;AACA;;EAEE,cAAc;EACd,WAAW;EACX,YAAY;EACZ,gBAAgB;EAChB,iBAAiB;EACjB,YAAY;AACd;AACA;;EAEE,yDAA8Q;EAC9Q,YAAY;EACZ,wCAAwC;EACxC,qBAAqB;EACrB,WAAW;EACX,YAAY;AACd;AACA;;EAEE,wBAAwB;EACxB,wBAAwB;AAC1B;AACA;;;;;;EAME,eAAe;EACf,UAAU;AACZ;AACA;EACE,WAAW;AACb;AACA;EACE,eAAe;AACjB;AACA;EACE,yCAAyC;AAC3C;AACA;EACE,2CAA2C;AAC7C;AACA;EACE,2CAA2C;AAC7C;AACA;;EAEE,2CAA2C;AAC7C;AACA;EACE,yDAAsT;AACxT;AACA;EACE,WAAW;EACX,YAAY;EACZ,eAAe;EACf,gBAAgB;EAChB,4BAA4B;EAC5B,wBAAwB;EACxB,aAAa;EACb,uBAAuB;AACzB;AACA;EACE,+BAA+B;AACjC;AACA;EACE,eAAe;EACf,gBAAgB;EAChB,uBAAuB;EACvB,mBAAmB;AACrB;AACA;EACE,cAAc;AAChB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,eAAe;EACf,sBAAsB;AACxB;AACA;EACE,qBAAqB;AACvB;AACA;EACE;IACE,2BAA2B;EAC7B;EACA;IACE,6BAA6B;EAC/B;EACA;IACE,2BAA2B;EAC7B;AACF;AACA;EACE,6BAA6B;AAC/B;AACA;EACE,qBAAqB;EACrB,YAAY;EACZ,oIAAoI;EACpI,2BAA2B;EAC3B,mCAAmC;EACnC,8CAA8C;AAChD;AACA;EACE,oBAAoB;EACpB,mBAAmB;AACrB;AACA;EACE,WAAW;AACb;AACA;EACE,wBAAwB;EACxB,YAAY;AACd;AACA;EACE,WAAW;AACb;AACA;EACE,WAAW;AACb;AACA;EACE,+BAA+B;AACjC;AACA;EACE,eAAe;EACf,gBAAgB;EAChB,uBAAuB;EACvB,mBAAmB;AACrB;AACA;EACE,cAAc;AAChB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,eAAe;EACf,sBAAsB;AACxB;AACA;EACE,qBAAqB;AACvB;AACA;EACE,8CAA8C;AAChD;AACA;EACE,+CAA+C;AACjD;AACA;EACE,aAAa;EACb,sBAAsB;EACtB,mBAAmB;EACnB,YAAY;AACd;AACA;EACE,yBAAyB;EACzB,YAAY;EACZ,gBAAgB;EAChB,uBAAuB;AACzB;AACA;EACE,oCAAoC;EACpC,sBAAsB;AACxB;AACA;EACE,WAAW;EACX,YAAY;EACZ,cAAc;AAChB;AACA;EACE,WAAW;EACX,yBAAyB;EACzB,qBAAqB;AACvB;AACA;EACE,WAAW;EACX,gBAAgB;EAChB,mBAAmB;AACrB;AACA;EACE,gBAAgB;EAChB,UAAU;EACV,MAAM;EACN,8CAA8C;EAC9C,YAAY;AACd;AACA;EACE,aAAa;AACf;AACA;EACE,WAAW;AACb;AACA;EACE,YAAY;AACd;AACA;EACE,YAAY;AACd;AACA;EACE,YAAY;AACd;AACA;EACE,sBAAsB;EACtB,2BAA2B;AAC7B;AACA;EACE,wBAAwB;AAC1B;AACA;EACE,oBAAoB;AACtB;AACA;EACE,oCAAoC;AACtC;AACA;EACE,gBAAgB;AAClB;AACA;EACE,uBAAuB;AACzB;AACA;EACE,aAAa;EACb,sBAAsB;EACtB,oBAAoB;EACpB,UAAU;EACV,gBAAgB;EAChB,YAAY;EACZ,uBAAuB;EACvB,cAAc;AAChB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,iBAAiB;EACjB,gBAAgB;AAClB;AACA;EACE;IACE,mBAAmB;IACnB,gBAAgB;EAClB;AACF;AACA;EACE;IACE,mBAAmB;IACnB,gBAAgB;EAClB;EACA;IACE,gBAAgB;EAClB;AACF;AACA;EACE,uBAAuB;AACzB;AACA;;EAEE,sBAAsB;AACxB;AACA;EACE,gBAAgB;AAClB;AACA;EACE;IACE,SAAS;EACX;AACF;AACA;EACE;IACE,yCAAyC;EAC3C;AACF;AACA;EACE,YAAY;EACZ,aAAa;EACb,sBAAsB;EACtB,mBAAmB;AACrB;AACA;EACE,gBAAgB;EAChB,mBAAmB;EACnB,SAAS;AACX;AACA;EACE,sBAAsB;EACtB,WAAW;EACX,aAAa;EACb,sBAAsB;EACtB,aAAa;EACb,OAAO;EACP,mBAAmB;AACrB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,mCAAmC;AACrC;AACA;EACE;IACE,oEAAoE;EACtE;AACF;AACA;EACE,aAAa;EACb,sBAAsB;EACtB,gBAAgB;AAClB\",\"sourcesContent\":[\"@charset \\\"UTF-8\\\";\\n/**\\n * @copyright Copyright (c) 2019 Julius Härtl <jus@bitgrid.net>\\n *\\n * @author Julius Härtl <jus@bitgrid.net>\\n * @author John Molakvoæ <skjnldsv@protonmail.com>\\n *\\n * @license GNU AGPL version 3 or any later version\\n *\\n * This program is free software: you can redistribute it and/or modify\\n * it under the terms of the GNU Affero General Public License as\\n * published by the Free Software Foundation, either version 3 of the\\n * License, or (at your option) any later version.\\n *\\n * This program is distributed in the hope that it will be useful,\\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\\n * GNU Affero General Public License for more details.\\n *\\n * You should have received a copy of the GNU Affero General Public License\\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\\n */\\n.toastify.dialogs {\\n min-width: 200px;\\n background: none;\\n background-color: var(--color-main-background);\\n color: var(--color-main-text);\\n box-shadow: 0 0 6px 0 var(--color-box-shadow);\\n padding: 0 12px;\\n margin-top: 45px;\\n position: fixed;\\n z-index: 10100;\\n border-radius: var(--border-radius);\\n display: flex;\\n align-items: center;\\n}\\n.toastify.dialogs .toast-undo-container {\\n display: flex;\\n align-items: center;\\n}\\n.toastify.dialogs .toast-undo-button,\\n.toastify.dialogs .toast-close {\\n position: static;\\n overflow: hidden;\\n box-sizing: border-box;\\n min-width: 44px;\\n height: 100%;\\n padding: 12px;\\n white-space: nowrap;\\n background-repeat: no-repeat;\\n background-position: center;\\n background-color: transparent;\\n min-height: 0;\\n}\\n.toastify.dialogs .toast-undo-button.toast-close,\\n.toastify.dialogs .toast-close.toast-close {\\n text-indent: 0;\\n opacity: .4;\\n border: none;\\n min-height: 44px;\\n margin-left: 10px;\\n font-size: 0;\\n}\\n.toastify.dialogs .toast-undo-button.toast-close:before,\\n.toastify.dialogs .toast-close.toast-close:before {\\n background-image: url(\\\"data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20height='16'%20width='16'%3e%3cpath%20d='M14%2012.3L12.3%2014%208%209.7%203.7%2014%202%2012.3%206.3%208%202%203.7%203.7%202%208%206.3%2012.3%202%2014%203.7%209.7%208z'/%3e%3c/svg%3e\\\");\\n content: \\\" \\\";\\n filter: var(--background-invert-if-dark);\\n display: inline-block;\\n width: 16px;\\n height: 16px;\\n}\\n.toastify.dialogs .toast-undo-button.toast-undo-button,\\n.toastify.dialogs .toast-close.toast-undo-button {\\n height: calc(100% - 6px);\\n margin: 3px 3px 3px 12px;\\n}\\n.toastify.dialogs .toast-undo-button:hover,\\n.toastify.dialogs .toast-undo-button:focus,\\n.toastify.dialogs .toast-undo-button:active,\\n.toastify.dialogs .toast-close:hover,\\n.toastify.dialogs .toast-close:focus,\\n.toastify.dialogs .toast-close:active {\\n cursor: pointer;\\n opacity: 1;\\n}\\n.toastify.dialogs.toastify-top {\\n right: 10px;\\n}\\n.toastify.dialogs.toast-with-click {\\n cursor: pointer;\\n}\\n.toastify.dialogs.toast-error {\\n border-left: 3px solid var(--color-error);\\n}\\n.toastify.dialogs.toast-info {\\n border-left: 3px solid var(--color-primary);\\n}\\n.toastify.dialogs.toast-warning {\\n border-left: 3px solid var(--color-warning);\\n}\\n.toastify.dialogs.toast-success,\\n.toastify.dialogs.toast-undo {\\n border-left: 3px solid var(--color-success);\\n}\\n.theme--dark .toastify.dialogs .toast-close.toast-close:before {\\n background-image: url(\\\"data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20height='16'%20width='16'%3e%3cpath%20d='M14%2012.3L12.3%2014%208%209.7%203.7%2014%202%2012.3%206.3%208%202%203.7%203.7%202%208%206.3%2012.3%202%2014%203.7%209.7%208z'%20style='fill-opacity:1;fill:%23ffffff'/%3e%3c/svg%3e\\\");\\n}\\n._file-picker__file-icon_1vgv4_5 {\\n width: 32px;\\n height: 32px;\\n min-width: 32px;\\n min-height: 32px;\\n background-repeat: no-repeat;\\n background-size: contain;\\n display: flex;\\n justify-content: center;\\n}\\ntr.file-picker__row[data-v-6aded0d9] {\\n height: var(--row-height, 50px);\\n}\\ntr.file-picker__row td[data-v-6aded0d9] {\\n cursor: pointer;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n border-bottom: none;\\n}\\ntr.file-picker__row td.row-checkbox[data-v-6aded0d9] {\\n padding: 0 2px;\\n}\\ntr.file-picker__row td[data-v-6aded0d9]:not(.row-checkbox) {\\n padding-inline: 14px 0;\\n}\\ntr.file-picker__row td.row-size[data-v-6aded0d9] {\\n text-align: end;\\n padding-inline: 0 14px;\\n}\\ntr.file-picker__row td.row-name[data-v-6aded0d9] {\\n padding-inline: 2px 0;\\n}\\n@keyframes gradient-6aded0d9 {\\n 0% {\\n background-position: 0% 50%;\\n }\\n 50% {\\n background-position: 100% 50%;\\n }\\n to {\\n background-position: 0% 50%;\\n }\\n}\\n.loading-row .row-checkbox[data-v-6aded0d9] {\\n text-align: center !important;\\n}\\n.loading-row span[data-v-6aded0d9] {\\n display: inline-block;\\n height: 24px;\\n background: linear-gradient(to right, var(--color-background-darker), var(--color-text-maxcontrast), var(--color-background-darker));\\n background-size: 600px 100%;\\n border-radius: var(--border-radius);\\n animation: gradient-6aded0d9 12s ease infinite;\\n}\\n.loading-row .row-wrapper[data-v-6aded0d9] {\\n display: inline-flex;\\n align-items: center;\\n}\\n.loading-row .row-checkbox span[data-v-6aded0d9] {\\n width: 24px;\\n}\\n.loading-row .row-name span[data-v-6aded0d9]:last-of-type {\\n margin-inline-start: 6px;\\n width: 130px;\\n}\\n.loading-row .row-size span[data-v-6aded0d9] {\\n width: 80px;\\n}\\n.loading-row .row-modified span[data-v-6aded0d9] {\\n width: 90px;\\n}\\ntr.file-picker__row[data-v-48df4f27] {\\n height: var(--row-height, 50px);\\n}\\ntr.file-picker__row td[data-v-48df4f27] {\\n cursor: pointer;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n border-bottom: none;\\n}\\ntr.file-picker__row td.row-checkbox[data-v-48df4f27] {\\n padding: 0 2px;\\n}\\ntr.file-picker__row td[data-v-48df4f27]:not(.row-checkbox) {\\n padding-inline: 14px 0;\\n}\\ntr.file-picker__row td.row-size[data-v-48df4f27] {\\n text-align: end;\\n padding-inline: 0 14px;\\n}\\ntr.file-picker__row td.row-name[data-v-48df4f27] {\\n padding-inline: 2px 0;\\n}\\n.file-picker__row--selected[data-v-48df4f27] {\\n background-color: var(--color-background-dark);\\n}\\n.file-picker__row[data-v-48df4f27]:hover {\\n background-color: var(--color-background-hover);\\n}\\n.file-picker__name-container[data-v-48df4f27] {\\n display: flex;\\n justify-content: start;\\n align-items: center;\\n height: 100%;\\n}\\n.file-picker__file-name[data-v-48df4f27] {\\n padding-inline-start: 6px;\\n min-width: 0;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n}\\n.file-picker__file-extension[data-v-48df4f27] {\\n color: var(--color-text-maxcontrast);\\n min-width: fit-content;\\n}\\n.file-picker__header-preview[data-v-d3c94818] {\\n width: 22px;\\n height: 32px;\\n flex: 0 0 auto;\\n}\\n.file-picker__files[data-v-d3c94818] {\\n margin: 2px;\\n margin-inline-start: 12px;\\n overflow: scroll auto;\\n}\\n.file-picker__files table[data-v-d3c94818] {\\n width: 100%;\\n max-height: 100%;\\n table-layout: fixed;\\n}\\n.file-picker__files th[data-v-d3c94818] {\\n position: sticky;\\n z-index: 1;\\n top: 0;\\n background-color: var(--color-main-background);\\n padding: 2px;\\n}\\n.file-picker__files th .header-wrapper[data-v-d3c94818] {\\n display: flex;\\n}\\n.file-picker__files th.row-checkbox[data-v-d3c94818] {\\n width: 44px;\\n}\\n.file-picker__files th.row-name[data-v-d3c94818] {\\n width: 230px;\\n}\\n.file-picker__files th.row-size[data-v-d3c94818] {\\n width: 100px;\\n}\\n.file-picker__files th.row-modified[data-v-d3c94818] {\\n width: 120px;\\n}\\n.file-picker__files th[data-v-d3c94818]:not(.row-size) .button-vue__wrapper {\\n justify-content: start;\\n flex-direction: row-reverse;\\n}\\n.file-picker__files th[data-v-d3c94818]:not(.row-size) .button-vue {\\n padding-inline: 16px 4px;\\n}\\n.file-picker__files th.row-size[data-v-d3c94818] .button-vue__wrapper {\\n justify-content: end;\\n}\\n.file-picker__files th[data-v-d3c94818] .button-vue__wrapper {\\n color: var(--color-text-maxcontrast);\\n}\\n.file-picker__files th[data-v-d3c94818] .button-vue__wrapper .button-vue__text {\\n font-weight: 400;\\n}\\n.file-picker__breadcrumbs[data-v-a25a2652] {\\n flex-grow: 0 !important;\\n}\\n.file-picker__side[data-v-a06474d4] {\\n display: flex;\\n flex-direction: column;\\n align-items: stretch;\\n gap: .5rem;\\n min-width: 200px;\\n padding: 2px;\\n margin-block-start: 7px;\\n overflow: auto;\\n}\\n.file-picker__side[data-v-a06474d4] .button-vue__wrapper {\\n justify-content: start;\\n}\\n.file-picker__filter-input[data-v-a06474d4] {\\n margin-block: 7px;\\n max-width: 260px;\\n}\\n@media (max-width: 736px) {\\n .file-picker__side[data-v-a06474d4] {\\n flex-direction: row;\\n min-width: unset;\\n }\\n}\\n@media (max-width: 512px) {\\n .file-picker__side[data-v-a06474d4] {\\n flex-direction: row;\\n min-width: unset;\\n }\\n .file-picker__filter-input[data-v-a06474d4] {\\n max-width: unset;\\n }\\n}\\n.file-picker__navigation {\\n padding-inline: 8px 2px;\\n}\\n.file-picker__navigation,\\n.file-picker__navigation * {\\n box-sizing: border-box;\\n}\\n.file-picker__navigation .v-select.select {\\n min-width: 220px;\\n}\\n@media (min-width: 513px) and (max-width: 736px) {\\n .file-picker__navigation {\\n gap: 11px;\\n }\\n}\\n@media (max-width: 512px) {\\n .file-picker__navigation {\\n flex-direction: column-reverse !important;\\n }\\n}\\n.file-picker__view[data-v-9def3ca4] {\\n height: 50px;\\n display: flex;\\n justify-content: start;\\n align-items: center;\\n}\\n.file-picker__view h3[data-v-9def3ca4] {\\n font-weight: 700;\\n height: fit-content;\\n margin: 0;\\n}\\n.file-picker__main[data-v-9def3ca4] {\\n box-sizing: border-box;\\n width: 100%;\\n display: flex;\\n flex-direction: column;\\n min-height: 0;\\n flex: 1;\\n padding-inline: 2px;\\n}\\n.file-picker__main *[data-v-9def3ca4] {\\n box-sizing: border-box;\\n}\\n[data-v-9def3ca4] .file-picker {\\n height: min(80vh, 800px) !important;\\n}\\n@media (max-width: 512px) {\\n [data-v-9def3ca4] .file-picker {\\n height: calc(100% - 16px - var(--default-clickable-area)) !important;\\n }\\n}\\n[data-v-9def3ca4] .file-picker__content {\\n display: flex;\\n flex-direction: column;\\n overflow: hidden;\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.upload-picker[data-v-eca9500a] {\n display: inline-flex;\n align-items: center;\n height: 44px;\n}\n.upload-picker__progress[data-v-eca9500a] {\n width: 200px;\n max-width: 0;\n transition: max-width var(--animation-quick) ease-in-out;\n margin-top: 8px;\n}\n.upload-picker__progress p[data-v-eca9500a] {\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.upload-picker--uploading .upload-picker__progress[data-v-eca9500a] {\n max-width: 200px;\n margin-right: 20px;\n margin-left: 8px;\n}\n.upload-picker--paused .upload-picker__progress[data-v-eca9500a] {\n animation: breathing-eca9500a 3s ease-out infinite normal;\n}\n@keyframes breathing-eca9500a {\n 0% {\n opacity: .5;\n }\n 25% {\n opacity: 1;\n }\n 60% {\n opacity: .5;\n }\n to {\n opacity: .5;\n }\n}\n`, \"\",{\"version\":3,\"sources\":[\"webpack://./node_modules/@nextcloud/upload/dist/assets/index-FLLHP6Jd.css\"],\"names\":[],\"mappings\":\"AAAA;EACE,oBAAoB;EACpB,mBAAmB;EACnB,YAAY;AACd;AACA;EACE,YAAY;EACZ,YAAY;EACZ,wDAAwD;EACxD,eAAe;AACjB;AACA;EACE,gBAAgB;EAChB,mBAAmB;EACnB,uBAAuB;AACzB;AACA;EACE,gBAAgB;EAChB,kBAAkB;EAClB,gBAAgB;AAClB;AACA;EACE,yDAAyD;AAC3D;AACA;EACE;IACE,WAAW;EACb;EACA;IACE,UAAU;EACZ;EACA;IACE,WAAW;EACb;EACA;IACE,WAAW;EACb;AACF\",\"sourcesContent\":[\".upload-picker[data-v-eca9500a] {\\n display: inline-flex;\\n align-items: center;\\n height: 44px;\\n}\\n.upload-picker__progress[data-v-eca9500a] {\\n width: 200px;\\n max-width: 0;\\n transition: max-width var(--animation-quick) ease-in-out;\\n margin-top: 8px;\\n}\\n.upload-picker__progress p[data-v-eca9500a] {\\n overflow: hidden;\\n white-space: nowrap;\\n text-overflow: ellipsis;\\n}\\n.upload-picker--uploading .upload-picker__progress[data-v-eca9500a] {\\n max-width: 200px;\\n margin-right: 20px;\\n margin-left: 8px;\\n}\\n.upload-picker--paused .upload-picker__progress[data-v-eca9500a] {\\n animation: breathing-eca9500a 3s ease-out infinite normal;\\n}\\n@keyframes breathing-eca9500a {\\n 0% {\\n opacity: .5;\\n }\\n 25% {\\n opacity: 1;\\n }\\n 60% {\\n opacity: .5;\\n }\\n to {\\n opacity: .5;\\n }\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.breadcrumb[data-v-159e0cca]{flex:1 1 100% !important;width:100%}.breadcrumb[data-v-159e0cca] a{cursor:pointer !important}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/BreadCrumbs.vue\"],\"names\":[],\"mappings\":\"AACA,6BAEC,wBAAA,CACA,UAAA,CAEA,+BACC,yBAAA\",\"sourcesContent\":[\"\\n.breadcrumb {\\n\\t// Take as much space as possible\\n\\tflex: 1 1 100% !important;\\n\\twidth: 100%;\\n\\n\\t::v-deep a {\\n\\t\\tcursor: pointer !important;\\n\\t}\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.files-list__drag-drop-notice[data-v-02c943a6]{display:flex;align-items:center;justify-content:center;width:100%;min-height:113px;margin:0;user-select:none;color:var(--color-text-maxcontrast);background-color:var(--color-main-background);border-color:#000}.files-list__drag-drop-notice h3[data-v-02c943a6]{margin-left:16px;color:inherit}.files-list__drag-drop-notice-wrapper[data-v-02c943a6]{display:flex;align-items:center;justify-content:center;height:15vh;max-height:70%;padding:0 5vw;border:2px var(--color-border-dark) dashed;border-radius:var(--border-radius-large)}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/DragAndDropNotice.vue\"],\"names\":[],\"mappings\":\"AACA,+CACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAEA,gBAAA,CACA,QAAA,CACA,gBAAA,CACA,mCAAA,CACA,6CAAA,CACA,iBAAA,CAEA,kDACC,gBAAA,CACA,aAAA,CAGD,uDACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,WAAA,CACA,cAAA,CACA,aAAA,CACA,0CAAA,CACA,wCAAA\",\"sourcesContent\":[\"\\n.files-list__drag-drop-notice {\\n\\tdisplay: flex;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n\\twidth: 100%;\\n\\t// Breadcrumbs height + row thead height\\n\\tmin-height: calc(58px + 55px);\\n\\tmargin: 0;\\n\\tuser-select: none;\\n\\tcolor: var(--color-text-maxcontrast);\\n\\tbackground-color: var(--color-main-background);\\n\\tborder-color: black;\\n\\n\\th3 {\\n\\t\\tmargin-left: 16px;\\n\\t\\tcolor: inherit;\\n\\t}\\n\\n\\t&-wrapper {\\n\\t\\tdisplay: flex;\\n\\t\\talign-items: center;\\n\\t\\tjustify-content: center;\\n\\t\\theight: 15vh;\\n\\t\\tmax-height: 70%;\\n\\t\\tpadding: 0 5vw;\\n\\t\\tborder: 2px var(--color-border-dark) dashed;\\n\\t\\tborder-radius: var(--border-radius-large);\\n\\t}\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.files-list-drag-image{position:absolute;top:-9999px;left:-9999px;display:flex;overflow:hidden;align-items:center;height:44px;padding:6px 12px;background:var(--color-main-background)}.files-list-drag-image__icon,.files-list-drag-image .files-list__row-icon{display:flex;overflow:hidden;align-items:center;justify-content:center;width:32px;height:32px;border-radius:var(--border-radius)}.files-list-drag-image__icon{overflow:visible;margin-right:12px}.files-list-drag-image__icon img{max-width:100%;max-height:100%}.files-list-drag-image__icon .material-design-icon{color:var(--color-text-maxcontrast)}.files-list-drag-image__icon .material-design-icon.folder-icon{color:var(--color-primary-element)}.files-list-drag-image__icon>span{display:flex}.files-list-drag-image__icon>span .files-list__row-icon+.files-list__row-icon{margin-top:6px;margin-left:-26px}.files-list-drag-image__icon>span .files-list__row-icon+.files-list__row-icon+.files-list__row-icon{margin-top:12px}.files-list-drag-image__icon>span:not(:empty)+*{display:none}.files-list-drag-image__name{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/DragAndDropPreview.vue\"],\"names\":[],\"mappings\":\"AAIA,uBACC,iBAAA,CACA,WAAA,CACA,YAAA,CACA,YAAA,CACA,eAAA,CACA,kBAAA,CACA,WAAA,CACA,gBAAA,CACA,uCAAA,CAEA,0EAEC,YAAA,CACA,eAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CACA,WAAA,CACA,kCAAA,CAGD,6BACC,gBAAA,CACA,iBAAA,CAEA,iCACC,cAAA,CACA,eAAA,CAGD,mDACC,mCAAA,CACA,+DACC,kCAAA,CAKF,kCACC,YAAA,CAGA,8EACC,cA9CU,CA+CV,iBAAA,CACA,oGACC,eAAA,CAKF,gDACC,YAAA,CAKH,6BACC,eAAA,CACA,kBAAA,CACA,sBAAA\",\"sourcesContent\":[\"\\n$size: 32px;\\n$stack-shift: 6px;\\n\\n.files-list-drag-image {\\n\\tposition: absolute;\\n\\ttop: -9999px;\\n\\tleft: -9999px;\\n\\tdisplay: flex;\\n\\toverflow: hidden;\\n\\talign-items: center;\\n\\theight: 44px;\\n\\tpadding: 6px 12px;\\n\\tbackground: var(--color-main-background);\\n\\n\\t&__icon,\\n\\t.files-list__row-icon {\\n\\t\\tdisplay: flex;\\n\\t\\toverflow: hidden;\\n\\t\\talign-items: center;\\n\\t\\tjustify-content: center;\\n\\t\\twidth: 32px;\\n\\t\\theight: 32px;\\n\\t\\tborder-radius: var(--border-radius);\\n\\t}\\n\\n\\t&__icon {\\n\\t\\toverflow: visible;\\n\\t\\tmargin-right: 12px;\\n\\n\\t\\timg {\\n\\t\\t\\tmax-width: 100%;\\n\\t\\t\\tmax-height: 100%;\\n\\t\\t}\\n\\n\\t\\t.material-design-icon {\\n\\t\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\t\\t&.folder-icon {\\n\\t\\t\\t\\tcolor: var(--color-primary-element);\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Previews container\\n\\t\\t> span {\\n\\t\\t\\tdisplay: flex;\\n\\n\\t\\t\\t// Stack effect if more than one element\\n\\t\\t\\t.files-list__row-icon + .files-list__row-icon {\\n\\t\\t\\t\\tmargin-top: $stack-shift;\\n\\t\\t\\t\\tmargin-left: $stack-shift - $size;\\n\\t\\t\\t\\t& + .files-list__row-icon {\\n\\t\\t\\t\\t\\tmargin-top: $stack-shift * 2;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t\\t// If we have manually clone the preview,\\n\\t\\t\\t// let's hide any fallback icons\\n\\t\\t\\t&:not(:empty) + * {\\n\\t\\t\\t\\tdisplay: none;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\t&__name {\\n\\t\\toverflow: hidden;\\n\\t\\twhite-space: nowrap;\\n\\t\\ttext-overflow: ellipsis;\\n\\t}\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.favorite-marker-icon[data-v-04e52abc]{color:#a08b00;min-width:unset !important;min-height:unset !important}.favorite-marker-icon[data-v-04e52abc] svg{width:26px !important;height:26px !important;max-width:unset !important;max-height:unset !important}.favorite-marker-icon[data-v-04e52abc] svg path{stroke:var(--color-main-background);stroke-width:8px;stroke-linejoin:round;paint-order:stroke}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FileEntry/FavoriteIcon.vue\"],\"names\":[],\"mappings\":\"AACA,uCACC,aAAA,CAEA,0BAAA,CACG,2BAAA,CAGF,4CAEC,qBAAA,CACA,sBAAA,CAGA,0BAAA,CACA,2BAAA,CAGA,iDACC,mCAAA,CACA,gBAAA,CACA,qBAAA,CACA,kBAAA\",\"sourcesContent\":[\"\\n.favorite-marker-icon {\\n\\tcolor: #a08b00;\\n\\t// Override NcIconSvgWrapper defaults (clickable area)\\n\\tmin-width: unset !important;\\n min-height: unset !important;\\n\\n\\t:deep() {\\n\\t\\tsvg {\\n\\t\\t\\t// We added a stroke for a11y so we must increase the size to include the stroke\\n\\t\\t\\twidth: 26px !important;\\n\\t\\t\\theight: 26px !important;\\n\\n\\t\\t\\t// Override NcIconSvgWrapper defaults of 20px\\n\\t\\t\\tmax-width: unset !important;\\n\\t\\t\\tmax-height: unset !important;\\n\\n\\t\\t\\t// Sow a border around the icon for better contrast\\n\\t\\t\\tpath {\\n\\t\\t\\t\\tstroke: var(--color-main-background);\\n\\t\\t\\t\\tstroke-width: 8px;\\n\\t\\t\\t\\tstroke-linejoin: round;\\n\\t\\t\\t\\tpaint-order: stroke;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `main.app-content[style*=mouse-pos-x] .v-popper__popper{transform:translate3d(var(--mouse-pos-x), var(--mouse-pos-y), 0px) !important}main.app-content[style*=mouse-pos-x] .v-popper__popper[data-popper-placement=top]{transform:translate3d(var(--mouse-pos-x), calc(var(--mouse-pos-y) - 50vh + 34px), 0px) !important}main.app-content[style*=mouse-pos-x] .v-popper__popper .v-popper__arrow-container{display:none}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FileEntry/FileEntryActions.vue\"],\"names\":[],\"mappings\":\"AAGA,uDACC,6EAAA,CAGA,kFAEC,iGAAA,CAGD,kFACC,YAAA\",\"sourcesContent\":[\"\\n// Allow right click to define the position of the menu\\n// only if defined\\nmain.app-content[style*=\\\"mouse-pos-x\\\"] .v-popper__popper {\\n\\ttransform: translate3d(var(--mouse-pos-x), var(--mouse-pos-y), 0px) !important;\\n\\n\\t// If the menu is too close to the bottom, we move it up\\n\\t&[data-popper-placement=\\\"top\\\"] {\\n\\t\\t// 34px added to align with the top of the cursor\\n\\t\\ttransform: translate3d(var(--mouse-pos-x), calc(var(--mouse-pos-y) - 50vh + 34px), 0px) !important;\\n\\t}\\n\\t// Hide arrow if floating\\n\\t.v-popper__arrow-container {\\n\\t\\tdisplay: none;\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `[data-v-6168180a] .button-vue--icon-and-text .button-vue__text{color:var(--color-primary-element)}[data-v-6168180a] .button-vue--icon-and-text .button-vue__icon{color:var(--color-primary-element)}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FileEntry/FileEntryActions.vue\"],\"names\":[],\"mappings\":\"AAEC,+DACC,kCAAA,CAED,+DACC,kCAAA\",\"sourcesContent\":[\"\\n:deep(.button-vue--icon-and-text, .files-list__row-action-sharing-status) {\\n\\t.button-vue__text {\\n\\t\\tcolor: var(--color-primary-element);\\n\\t}\\n\\t.button-vue__icon {\\n\\t\\tcolor: var(--color-primary-element);\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `tr[data-v-a85bde20]{margin-bottom:300px;border-top:1px solid var(--color-border);background-color:rgba(0,0,0,0) !important;border-bottom:none !important}tr td[data-v-a85bde20]{user-select:none;color:var(--color-text-maxcontrast) !important}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListTableFooter.vue\"],\"names\":[],\"mappings\":\"AAEA,oBACC,mBAAA,CACA,wCAAA,CAEA,yCAAA,CACA,6BAAA,CAEA,uBACC,gBAAA,CAEA,8CAAA\",\"sourcesContent\":[\"\\n// Scoped row\\ntr {\\n\\tmargin-bottom: 300px;\\n\\tborder-top: 1px solid var(--color-border);\\n\\t// Prevent hover effect on the whole row\\n\\tbackground-color: transparent !important;\\n\\tborder-bottom: none !important;\\n\\n\\ttd {\\n\\t\\tuser-select: none;\\n\\t\\t// Make sure the cell colors don't apply to column headers\\n\\t\\tcolor: var(--color-text-maxcontrast) !important;\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.files-list__column[data-v-952162c2]{user-select:none;color:var(--color-text-maxcontrast) !important}.files-list__column--sortable[data-v-952162c2]{cursor:pointer}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListTableHeader.vue\"],\"names\":[],\"mappings\":\"AACA,qCACC,gBAAA,CAEA,8CAAA,CAEA,+CACC,cAAA\",\"sourcesContent\":[\"\\n.files-list__column {\\n\\tuser-select: none;\\n\\t// Make sure the cell colors don't apply to column headers\\n\\tcolor: var(--color-text-maxcontrast) !important;\\n\\n\\t&--sortable {\\n\\t\\tcursor: pointer;\\n\\t}\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.files-list__row-actions-batch[data-v-d939292c]{flex:1 1 100% !important;max-width:100%}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListTableHeaderActions.vue\"],\"names\":[],\"mappings\":\"AACA,gDACC,wBAAA,CACA,cAAA\",\"sourcesContent\":[\"\\n.files-list__row-actions-batch {\\n\\tflex: 1 1 100% !important;\\n\\tmax-width: 100%;\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.files-list__column-sort-button[data-v-097f69d4]{margin:0 calc(var(--cell-margin)*-1);min-width:calc(100% - 3*var(--cell-margin)) !important}.files-list__column-sort-button-text[data-v-097f69d4]{color:var(--color-text-maxcontrast);font-weight:normal}.files-list__column-sort-button-icon[data-v-097f69d4]{color:var(--color-text-maxcontrast);opacity:0;transition:opacity var(--animation-quick);inset-inline-start:-10px}.files-list__column-sort-button--size .files-list__column-sort-button-icon[data-v-097f69d4]{inset-inline-start:10px}.files-list__column-sort-button--active .files-list__column-sort-button-icon[data-v-097f69d4],.files-list__column-sort-button:hover .files-list__column-sort-button-icon[data-v-097f69d4],.files-list__column-sort-button:focus .files-list__column-sort-button-icon[data-v-097f69d4],.files-list__column-sort-button:active .files-list__column-sort-button-icon[data-v-097f69d4]{opacity:1}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListTableHeaderButton.vue\"],\"names\":[],\"mappings\":\"AACA,iDAEC,oCAAA,CACA,sDAAA,CAEA,sDACC,mCAAA,CACA,kBAAA,CAGD,sDACC,mCAAA,CACA,SAAA,CACA,yCAAA,CACA,wBAAA,CAGD,4FACC,uBAAA,CAGD,mXAIC,SAAA\",\"sourcesContent\":[\"\\n.files-list__column-sort-button {\\n\\t// Compensate for cells margin\\n\\tmargin: 0 calc(var(--cell-margin) * -1);\\n\\tmin-width: calc(100% - 3 * var(--cell-margin))!important;\\n\\n\\t&-text {\\n\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\tfont-weight: normal;\\n\\t}\\n\\n\\t&-icon {\\n\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\topacity: 0;\\n\\t\\ttransition: opacity var(--animation-quick);\\n\\t\\tinset-inline-start: -10px;\\n\\t}\\n\\n\\t&--size &-icon {\\n\\t\\tinset-inline-start: 10px;\\n\\t}\\n\\n\\t&--active &-icon,\\n\\t&:hover &-icon,\\n\\t&:focus &-icon,\\n\\t&:active &-icon {\\n\\t\\topacity: 1;\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.files-list[data-v-2bbbfb12]{--row-height: 55px;--cell-margin: 14px;--checkbox-padding: calc((var(--row-height) - var(--checkbox-size)) / 2);--checkbox-size: 24px;--clickable-area: 44px;--icon-preview-size: 32px;overflow:auto;height:100%;will-change:scroll-position}.files-list[data-v-2bbbfb12] tbody{will-change:padding;contain:layout paint style;display:flex;flex-direction:column;width:100%;position:relative}.files-list[data-v-2bbbfb12] tbody tr{contain:strict}.files-list[data-v-2bbbfb12] tbody tr:hover,.files-list[data-v-2bbbfb12] tbody tr:focus{background-color:var(--color-background-dark)}.files-list[data-v-2bbbfb12] .files-list__before{display:flex;flex-direction:column}.files-list[data-v-2bbbfb12] .files-list__table{display:block}.files-list[data-v-2bbbfb12] .files-list__table.files-list__table--with-thead-overlay{margin-top:calc(-1*var(--row-height))}.files-list[data-v-2bbbfb12] .files-list__thead-overlay{position:sticky;top:0;margin-left:var(--row-height);z-index:20;display:flex;align-items:center;background-color:var(--color-main-background);border-bottom:1px solid var(--color-border);height:var(--row-height)}.files-list[data-v-2bbbfb12] .files-list__thead,.files-list[data-v-2bbbfb12] .files-list__tfoot{display:flex;flex-direction:column;width:100%;background-color:var(--color-main-background)}.files-list[data-v-2bbbfb12] .files-list__thead{position:sticky;z-index:10;top:0}.files-list[data-v-2bbbfb12] .files-list__tfoot{min-height:300px}.files-list[data-v-2bbbfb12] tr{position:relative;display:flex;align-items:center;width:100%;user-select:none;border-bottom:1px solid var(--color-border);box-sizing:border-box;user-select:none;height:var(--row-height)}.files-list[data-v-2bbbfb12] td,.files-list[data-v-2bbbfb12] th{display:flex;align-items:center;flex:0 0 auto;justify-content:left;width:var(--row-height);height:var(--row-height);margin:0;padding:0;color:var(--color-text-maxcontrast);border:none}.files-list[data-v-2bbbfb12] td span,.files-list[data-v-2bbbfb12] th span{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.files-list[data-v-2bbbfb12] .files-list__row--failed{position:absolute;display:block;top:0;left:0;right:0;bottom:0;opacity:.1;z-index:-1;background:var(--color-error)}.files-list[data-v-2bbbfb12] .files-list__row-checkbox{justify-content:center}.files-list[data-v-2bbbfb12] .files-list__row-checkbox .checkbox-radio-switch{display:flex;justify-content:center;--icon-size: var(--checkbox-size)}.files-list[data-v-2bbbfb12] .files-list__row-checkbox .checkbox-radio-switch label.checkbox-radio-switch__label{width:var(--clickable-area);height:var(--clickable-area);margin:0;padding:calc((var(--clickable-area) - var(--checkbox-size))/2)}.files-list[data-v-2bbbfb12] .files-list__row-checkbox .checkbox-radio-switch .checkbox-radio-switch__icon{margin:0 !important}.files-list[data-v-2bbbfb12] .files-list__row:hover,.files-list[data-v-2bbbfb12] .files-list__row:focus,.files-list[data-v-2bbbfb12] .files-list__row:active,.files-list[data-v-2bbbfb12] .files-list__row--active,.files-list[data-v-2bbbfb12] .files-list__row--dragover{background-color:var(--color-background-hover);--color-text-maxcontrast: var(--color-main-text)}.files-list[data-v-2bbbfb12] .files-list__row:hover>*,.files-list[data-v-2bbbfb12] .files-list__row:focus>*,.files-list[data-v-2bbbfb12] .files-list__row:active>*,.files-list[data-v-2bbbfb12] .files-list__row--active>*,.files-list[data-v-2bbbfb12] .files-list__row--dragover>*{--color-border: var(--color-border-dark)}.files-list[data-v-2bbbfb12] .files-list__row:hover .favorite-marker-icon svg path,.files-list[data-v-2bbbfb12] .files-list__row:focus .favorite-marker-icon svg path,.files-list[data-v-2bbbfb12] .files-list__row:active .favorite-marker-icon svg path,.files-list[data-v-2bbbfb12] .files-list__row--active .favorite-marker-icon svg path,.files-list[data-v-2bbbfb12] .files-list__row--dragover .favorite-marker-icon svg path{stroke:var(--color-background-hover)}.files-list[data-v-2bbbfb12] .files-list__row--dragover *{pointer-events:none}.files-list[data-v-2bbbfb12] .files-list__row-icon{position:relative;display:flex;overflow:visible;align-items:center;flex:0 0 var(--icon-preview-size);justify-content:center;width:var(--icon-preview-size);height:100%;margin-right:var(--checkbox-padding);color:var(--color-primary-element)}.files-list[data-v-2bbbfb12] .files-list__row-icon *{cursor:pointer}.files-list[data-v-2bbbfb12] .files-list__row-icon>span{justify-content:flex-start}.files-list[data-v-2bbbfb12] .files-list__row-icon>span:not(.files-list__row-icon-favorite) svg{width:var(--icon-preview-size);height:var(--icon-preview-size)}.files-list[data-v-2bbbfb12] .files-list__row-icon>span.folder-icon,.files-list[data-v-2bbbfb12] .files-list__row-icon>span.folder-open-icon{margin:-3px}.files-list[data-v-2bbbfb12] .files-list__row-icon>span.folder-icon svg,.files-list[data-v-2bbbfb12] .files-list__row-icon>span.folder-open-icon svg{width:calc(var(--icon-preview-size) + 6px);height:calc(var(--icon-preview-size) + 6px)}.files-list[data-v-2bbbfb12] .files-list__row-icon-preview{overflow:hidden;width:var(--icon-preview-size);height:var(--icon-preview-size);border-radius:var(--border-radius);object-fit:contain;object-position:center}.files-list[data-v-2bbbfb12] .files-list__row-icon-preview:not(.files-list__row-icon-preview--loaded){background:var(--color-loading-dark)}.files-list[data-v-2bbbfb12] .files-list__row-icon-favorite{position:absolute;top:0px;right:-10px}.files-list[data-v-2bbbfb12] .files-list__row-icon-overlay{position:absolute;max-height:calc(var(--icon-preview-size)*.5);max-width:calc(var(--icon-preview-size)*.5);color:var(--color-primary-element-text);margin-top:2px}.files-list[data-v-2bbbfb12] .files-list__row-icon-overlay--file{color:var(--color-main-text);background:var(--color-main-background);border-radius:100%}.files-list[data-v-2bbbfb12] .files-list__row-name{overflow:hidden;flex:1 1 auto}.files-list[data-v-2bbbfb12] .files-list__row-name a{display:flex;align-items:center;width:100%;height:100%;min-width:0}.files-list[data-v-2bbbfb12] .files-list__row-name a:focus-visible{outline:none}.files-list[data-v-2bbbfb12] .files-list__row-name a:focus .files-list__row-name-text{outline:2px solid var(--color-main-text) !important;border-radius:20px}.files-list[data-v-2bbbfb12] .files-list__row-name a:focus:not(:focus-visible) .files-list__row-name-text{outline:none !important}.files-list[data-v-2bbbfb12] .files-list__row-name .files-list__row-name-text{color:var(--color-main-text);padding:5px 10px;margin-left:-10px;display:inline-flex}.files-list[data-v-2bbbfb12] .files-list__row-name .files-list__row-name-ext{color:var(--color-text-maxcontrast);overflow:visible}.files-list[data-v-2bbbfb12] .files-list__row-rename{width:100%;max-width:600px}.files-list[data-v-2bbbfb12] .files-list__row-rename input{width:100%;margin-left:-8px;padding:2px 6px;border-width:2px}.files-list[data-v-2bbbfb12] .files-list__row-rename input:invalid{border-color:var(--color-error);color:red}.files-list[data-v-2bbbfb12] .files-list__row-actions{width:auto}.files-list[data-v-2bbbfb12] .files-list__row-actions~td,.files-list[data-v-2bbbfb12] .files-list__row-actions~th{margin:0 var(--cell-margin)}.files-list[data-v-2bbbfb12] .files-list__row-actions button .button-vue__text{font-weight:normal}.files-list[data-v-2bbbfb12] .files-list__row-action--inline{margin-right:7px}.files-list[data-v-2bbbfb12] .files-list__row-mtime,.files-list[data-v-2bbbfb12] .files-list__row-size{color:var(--color-text-maxcontrast)}.files-list[data-v-2bbbfb12] .files-list__row-size{width:calc(var(--row-height)*1.5);justify-content:flex-end}.files-list[data-v-2bbbfb12] .files-list__row-mtime{width:calc(var(--row-height)*2)}.files-list[data-v-2bbbfb12] .files-list__row-column-custom{width:calc(var(--row-height)*2)}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListVirtual.vue\"],\"names\":[],\"mappings\":\"AACA,6BACC,kBAAA,CACA,mBAAA,CAEA,wEAAA,CACA,qBAAA,CACA,sBAAA,CACA,yBAAA,CAEA,aAAA,CACA,WAAA,CACA,2BAAA,CAIC,oCACC,mBAAA,CACA,0BAAA,CACA,YAAA,CACA,qBAAA,CACA,UAAA,CAEA,iBAAA,CAGA,uCACC,cAAA,CACA,0FAEC,6CAAA,CAMH,kDACC,YAAA,CACA,qBAAA,CAGD,iDACC,aAAA,CAEA,uFAEC,qCAAA,CAIF,yDAEC,eAAA,CACA,KAAA,CAEA,6BAAA,CAEA,UAAA,CAEA,YAAA,CACA,kBAAA,CAGA,6CAAA,CACA,2CAAA,CACA,wBAAA,CAGD,kGAEC,YAAA,CACA,qBAAA,CACA,UAAA,CACA,6CAAA,CAKD,iDAEC,eAAA,CACA,UAAA,CACA,KAAA,CAID,iDACC,gBAAA,CAGD,iCACC,iBAAA,CACA,YAAA,CACA,kBAAA,CACA,UAAA,CACA,gBAAA,CACA,2CAAA,CACA,qBAAA,CACA,gBAAA,CACA,wBAAA,CAGD,kEACC,YAAA,CACA,kBAAA,CACA,aAAA,CACA,oBAAA,CACA,uBAAA,CACA,wBAAA,CACA,QAAA,CACA,SAAA,CACA,mCAAA,CACA,WAAA,CAKA,4EACC,eAAA,CACA,kBAAA,CACA,sBAAA,CAIF,uDACC,iBAAA,CACA,aAAA,CACA,KAAA,CACA,MAAA,CACA,OAAA,CACA,QAAA,CACA,UAAA,CACA,UAAA,CACA,6BAAA,CAGD,wDACC,sBAAA,CAEA,+EACC,YAAA,CACA,sBAAA,CAEA,iCAAA,CAEA,kHACC,2BAAA,CACA,4BAAA,CACA,QAAA,CACA,8DAAA,CAGD,4GACC,mBAAA,CAMF,gRAEC,8CAAA,CAGA,gDAAA,CACA,0RACC,wCAAA,CAID,2aACC,oCAAA,CAIF,2DAEC,mBAAA,CAKF,oDACC,iBAAA,CACA,YAAA,CACA,gBAAA,CACA,kBAAA,CAEA,iCAAA,CACA,sBAAA,CACA,8BAAA,CACA,WAAA,CAEA,oCAAA,CACA,kCAAA,CAGA,sDACC,cAAA,CAGD,yDACC,0BAAA,CAEA,iGACC,8BAAA,CACA,+BAAA,CAID,+IAEC,WAAA,CACA,uJACC,0CAAA,CACA,2CAAA,CAKH,4DACC,eAAA,CACA,8BAAA,CACA,+BAAA,CACA,kCAAA,CAEA,kBAAA,CACA,sBAAA,CAGA,uGACC,oCAAA,CAKF,6DACC,iBAAA,CACA,OAAA,CACA,WAAA,CAID,4DACC,iBAAA,CACA,4CAAA,CACA,2CAAA,CACA,uCAAA,CAEA,cAAA,CAGA,kEACC,4BAAA,CACA,uCAAA,CACA,kBAAA,CAMH,oDAEC,eAAA,CAEA,aAAA,CAEA,sDACC,YAAA,CACA,kBAAA,CAEA,UAAA,CACA,WAAA,CAEA,WAAA,CAGA,oEACC,YAAA,CAID,uFACC,mDAAA,CACA,kBAAA,CAED,2GACC,uBAAA,CAIF,+EACC,4BAAA,CAEA,gBAAA,CACA,iBAAA,CAEA,mBAAA,CAGD,8EACC,mCAAA,CAEA,gBAAA,CAKF,sDACC,UAAA,CACA,eAAA,CACA,4DACC,UAAA,CAEA,gBAAA,CACA,eAAA,CACA,gBAAA,CAEA,oEAEC,+BAAA,CACA,SAAA,CAKH,uDAEC,UAAA,CAGA,oHAEC,2BAAA,CAIA,gFAEC,kBAAA,CAKH,8DACC,gBAAA,CAGD,yGAEC,mCAAA,CAED,oDACC,iCAAA,CAEA,wBAAA,CAGD,qDACC,+BAAA,CAGD,6DACC,+BAAA\",\"sourcesContent\":[\"\\n.files-list {\\n\\t--row-height: 55px;\\n\\t--cell-margin: 14px;\\n\\n\\t--checkbox-padding: calc((var(--row-height) - var(--checkbox-size)) / 2);\\n\\t--checkbox-size: 24px;\\n\\t--clickable-area: 44px;\\n\\t--icon-preview-size: 32px;\\n\\n\\toverflow: auto;\\n\\theight: 100%;\\n\\twill-change: scroll-position;\\n\\n\\t& :deep() {\\n\\t\\t// Table head, body and footer\\n\\t\\ttbody {\\n\\t\\t\\twill-change: padding;\\n\\t\\t\\tcontain: layout paint style;\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\tflex-direction: column;\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\t// Necessary for virtual scrolling absolute\\n\\t\\t\\tposition: relative;\\n\\n\\t\\t\\t/* Hover effect on tbody lines only */\\n\\t\\t\\ttr {\\n\\t\\t\\t\\tcontain: strict;\\n\\t\\t\\t\\t&:hover,\\n\\t\\t\\t\\t&:focus {\\n\\t\\t\\t\\t\\tbackground-color: var(--color-background-dark);\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Before table and thead\\n\\t\\t.files-list__before {\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\tflex-direction: column;\\n\\t\\t}\\n\\n\\t\\t.files-list__table {\\n\\t\\t\\tdisplay: block;\\n\\n\\t\\t\\t&.files-list__table--with-thead-overlay {\\n\\t\\t\\t\\t// Hide the table header below the overlay\\n\\t\\t\\t\\tmargin-top: calc(-1 * var(--row-height));\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__thead-overlay {\\n\\t\\t\\t// Pinned on top when scrolling\\n\\t\\t\\tposition: sticky;\\n\\t\\t\\ttop: 0;\\n\\t\\t\\t// Save space for a row checkbox\\n\\t\\t\\tmargin-left: var(--row-height);\\n\\t\\t\\t// More than .files-list__thead\\n\\t\\t\\tz-index: 20;\\n\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\talign-items: center;\\n\\n\\t\\t\\t// Reuse row styles\\n\\t\\t\\tbackground-color: var(--color-main-background);\\n\\t\\t\\tborder-bottom: 1px solid var(--color-border);\\n\\t\\t\\theight: var(--row-height);\\n\\t\\t}\\n\\n\\t\\t.files-list__thead,\\n\\t\\t.files-list__tfoot {\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\tflex-direction: column;\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\tbackground-color: var(--color-main-background);\\n\\n\\t\\t}\\n\\n\\t\\t// Table header\\n\\t\\t.files-list__thead {\\n\\t\\t\\t// Pinned on top when scrolling\\n\\t\\t\\tposition: sticky;\\n\\t\\t\\tz-index: 10;\\n\\t\\t\\ttop: 0;\\n\\t\\t}\\n\\n\\t\\t// Table footer\\n\\t\\t.files-list__tfoot {\\n\\t\\t\\tmin-height: 300px;\\n\\t\\t}\\n\\n\\t\\ttr {\\n\\t\\t\\tposition: relative;\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\talign-items: center;\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\tuser-select: none;\\n\\t\\t\\tborder-bottom: 1px solid var(--color-border);\\n\\t\\t\\tbox-sizing: border-box;\\n\\t\\t\\tuser-select: none;\\n\\t\\t\\theight: var(--row-height);\\n\\t\\t}\\n\\n\\t\\ttd, th {\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\talign-items: center;\\n\\t\\t\\tflex: 0 0 auto;\\n\\t\\t\\tjustify-content: left;\\n\\t\\t\\twidth: var(--row-height);\\n\\t\\t\\theight: var(--row-height);\\n\\t\\t\\tmargin: 0;\\n\\t\\t\\tpadding: 0;\\n\\t\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\t\\tborder: none;\\n\\n\\t\\t\\t// Columns should try to add any text\\n\\t\\t\\t// node wrapped in a span. That should help\\n\\t\\t\\t// with the ellipsis on overflow.\\n\\t\\t\\tspan {\\n\\t\\t\\t\\toverflow: hidden;\\n\\t\\t\\t\\twhite-space: nowrap;\\n\\t\\t\\t\\ttext-overflow: ellipsis;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__row--failed {\\n\\t\\t\\tposition: absolute;\\n\\t\\t\\tdisplay: block;\\n\\t\\t\\ttop: 0;\\n\\t\\t\\tleft: 0;\\n\\t\\t\\tright: 0;\\n\\t\\t\\tbottom: 0;\\n\\t\\t\\topacity: .1;\\n\\t\\t\\tz-index: -1;\\n\\t\\t\\tbackground: var(--color-error);\\n\\t\\t}\\n\\n\\t\\t.files-list__row-checkbox {\\n\\t\\t\\tjustify-content: center;\\n\\n\\t\\t\\t.checkbox-radio-switch {\\n\\t\\t\\t\\tdisplay: flex;\\n\\t\\t\\t\\tjustify-content: center;\\n\\n\\t\\t\\t\\t--icon-size: var(--checkbox-size);\\n\\n\\t\\t\\t\\tlabel.checkbox-radio-switch__label {\\n\\t\\t\\t\\t\\twidth: var(--clickable-area);\\n\\t\\t\\t\\t\\theight: var(--clickable-area);\\n\\t\\t\\t\\t\\tmargin: 0;\\n\\t\\t\\t\\t\\tpadding: calc((var(--clickable-area) - var(--checkbox-size)) / 2);\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t.checkbox-radio-switch__icon {\\n\\t\\t\\t\\t\\tmargin: 0 !important;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__row {\\n\\t\\t\\t&:hover, &:focus, &:active, &--active, &--dragover {\\n\\t\\t\\t\\t// WCAG AA compliant\\n\\t\\t\\t\\tbackground-color: var(--color-background-hover);\\n\\t\\t\\t\\t// text-maxcontrast have been designed to pass WCAG AA over\\n\\t\\t\\t\\t// a white background, we need to adjust then.\\n\\t\\t\\t\\t--color-text-maxcontrast: var(--color-main-text);\\n\\t\\t\\t\\t> * {\\n\\t\\t\\t\\t\\t--color-border: var(--color-border-dark);\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t// Hover state of the row should also change the favorite markers background\\n\\t\\t\\t\\t.favorite-marker-icon svg path {\\n\\t\\t\\t\\t\\tstroke: var(--color-background-hover);\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\t&--dragover * {\\n\\t\\t\\t\\t// Prevent dropping on row children\\n\\t\\t\\t\\tpointer-events: none;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Entry preview or mime icon\\n\\t\\t.files-list__row-icon {\\n\\t\\t\\tposition: relative;\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\toverflow: visible;\\n\\t\\t\\talign-items: center;\\n\\t\\t\\t// No shrinking or growing allowed\\n\\t\\t\\tflex: 0 0 var(--icon-preview-size);\\n\\t\\t\\tjustify-content: center;\\n\\t\\t\\twidth: var(--icon-preview-size);\\n\\t\\t\\theight: 100%;\\n\\t\\t\\t// Show same padding as the checkbox right padding for visual balance\\n\\t\\t\\tmargin-right: var(--checkbox-padding);\\n\\t\\t\\tcolor: var(--color-primary-element);\\n\\n\\t\\t\\t// Icon is also clickable\\n\\t\\t\\t* {\\n\\t\\t\\t\\tcursor: pointer;\\n\\t\\t\\t}\\n\\n\\t\\t\\t& > span {\\n\\t\\t\\t\\tjustify-content: flex-start;\\n\\n\\t\\t\\t\\t&:not(.files-list__row-icon-favorite) svg {\\n\\t\\t\\t\\t\\twidth: var(--icon-preview-size);\\n\\t\\t\\t\\t\\theight: var(--icon-preview-size);\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t// Slightly increase the size of the folder icon\\n\\t\\t\\t\\t&.folder-icon,\\n\\t\\t\\t\\t&.folder-open-icon {\\n\\t\\t\\t\\t\\tmargin: -3px;\\n\\t\\t\\t\\t\\tsvg {\\n\\t\\t\\t\\t\\t\\twidth: calc(var(--icon-preview-size) + 6px);\\n\\t\\t\\t\\t\\t\\theight: calc(var(--icon-preview-size) + 6px);\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\t&-preview {\\n\\t\\t\\t\\toverflow: hidden;\\n\\t\\t\\t\\twidth: var(--icon-preview-size);\\n\\t\\t\\t\\theight: var(--icon-preview-size);\\n\\t\\t\\t\\tborder-radius: var(--border-radius);\\n\\t\\t\\t\\t// Center and contain the preview\\n\\t\\t\\t\\tobject-fit: contain;\\n\\t\\t\\t\\tobject-position: center;\\n\\n\\t\\t\\t\\t/* Preview not loaded animation effect */\\n\\t\\t\\t\\t&:not(.files-list__row-icon-preview--loaded) {\\n\\t\\t\\t\\t\\tbackground: var(--color-loading-dark);\\n\\t\\t\\t\\t\\t// animation: preview-gradient-fade 1.2s ease-in-out infinite;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\t&-favorite {\\n\\t\\t\\t\\tposition: absolute;\\n\\t\\t\\t\\ttop: 0px;\\n\\t\\t\\t\\tright: -10px;\\n\\t\\t\\t}\\n\\n\\t\\t\\t// File and folder overlay\\n\\t\\t\\t&-overlay {\\n\\t\\t\\t\\tposition: absolute;\\n\\t\\t\\t\\tmax-height: calc(var(--icon-preview-size) * 0.5);\\n\\t\\t\\t\\tmax-width: calc(var(--icon-preview-size) * 0.5);\\n\\t\\t\\t\\tcolor: var(--color-primary-element-text);\\n\\t\\t\\t\\t// better alignment with the folder icon\\n\\t\\t\\t\\tmargin-top: 2px;\\n\\n\\t\\t\\t\\t// Improve icon contrast with a background for files\\n\\t\\t\\t\\t&--file {\\n\\t\\t\\t\\t\\tcolor: var(--color-main-text);\\n\\t\\t\\t\\t\\tbackground: var(--color-main-background);\\n\\t\\t\\t\\t\\tborder-radius: 100%;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Entry link\\n\\t\\t.files-list__row-name {\\n\\t\\t\\t// Prevent link from overflowing\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\t// Take as much space as possible\\n\\t\\t\\tflex: 1 1 auto;\\n\\n\\t\\t\\ta {\\n\\t\\t\\t\\tdisplay: flex;\\n\\t\\t\\t\\talign-items: center;\\n\\t\\t\\t\\t// Fill cell height and width\\n\\t\\t\\t\\twidth: 100%;\\n\\t\\t\\t\\theight: 100%;\\n\\t\\t\\t\\t// Necessary for flex grow to work\\n\\t\\t\\t\\tmin-width: 0;\\n\\n\\t\\t\\t\\t// Already added to the inner text, see rule below\\n\\t\\t\\t\\t&:focus-visible {\\n\\t\\t\\t\\t\\toutline: none;\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t// Keyboard indicator a11y\\n\\t\\t\\t\\t&:focus .files-list__row-name-text {\\n\\t\\t\\t\\t\\toutline: 2px solid var(--color-main-text) !important;\\n\\t\\t\\t\\t\\tborder-radius: 20px;\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\t&:focus:not(:focus-visible) .files-list__row-name-text {\\n\\t\\t\\t\\t\\toutline: none !important;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\t.files-list__row-name-text {\\n\\t\\t\\t\\tcolor: var(--color-main-text);\\n\\t\\t\\t\\t// Make some space for the outline\\n\\t\\t\\t\\tpadding: 5px 10px;\\n\\t\\t\\t\\tmargin-left: -10px;\\n\\t\\t\\t\\t// Align two name and ext\\n\\t\\t\\t\\tdisplay: inline-flex;\\n\\t\\t\\t}\\n\\n\\t\\t\\t.files-list__row-name-ext {\\n\\t\\t\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\t\\t\\t// always show the extension\\n\\t\\t\\t\\toverflow: visible;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Rename form\\n\\t\\t.files-list__row-rename {\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\tmax-width: 600px;\\n\\t\\t\\tinput {\\n\\t\\t\\t\\twidth: 100%;\\n\\t\\t\\t\\t// Align with text, 0 - padding - border\\n\\t\\t\\t\\tmargin-left: -8px;\\n\\t\\t\\t\\tpadding: 2px 6px;\\n\\t\\t\\t\\tborder-width: 2px;\\n\\n\\t\\t\\t\\t&:invalid {\\n\\t\\t\\t\\t\\t// Show red border on invalid input\\n\\t\\t\\t\\t\\tborder-color: var(--color-error);\\n\\t\\t\\t\\t\\tcolor: red;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__row-actions {\\n\\t\\t\\t// take as much space as necessary\\n\\t\\t\\twidth: auto;\\n\\n\\t\\t\\t// Add margin to all cells after the actions\\n\\t\\t\\t& ~ td,\\n\\t\\t\\t& ~ th {\\n\\t\\t\\t\\tmargin: 0 var(--cell-margin);\\n\\t\\t\\t}\\n\\n\\t\\t\\tbutton {\\n\\t\\t\\t\\t.button-vue__text {\\n\\t\\t\\t\\t\\t// Remove bold from default button styling\\n\\t\\t\\t\\t\\tfont-weight: normal;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__row-action--inline {\\n\\t\\t\\tmargin-right: 7px;\\n\\t\\t}\\n\\n\\t\\t.files-list__row-mtime,\\n\\t\\t.files-list__row-size {\\n\\t\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\t}\\n\\t\\t.files-list__row-size {\\n\\t\\t\\twidth: calc(var(--row-height) * 1.5);\\n\\t\\t\\t// Right align content/text\\n\\t\\t\\tjustify-content: flex-end;\\n\\t\\t}\\n\\n\\t\\t.files-list__row-mtime {\\n\\t\\t\\twidth: calc(var(--row-height) * 2);\\n\\t\\t}\\n\\n\\t\\t.files-list__row-column-custom {\\n\\t\\t\\twidth: calc(var(--row-height) * 2);\\n\\t\\t}\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `tbody.files-list__tbody.files-list__tbody--grid{--half-clickable-area: calc(var(--clickable-area) / 2);--row-width: 160px;--row-height: calc(var(--row-width) - var(--half-clickable-area));--icon-preview-size: calc(var(--row-width) - var(--clickable-area));--checkbox-padding: 0px;display:grid;grid-template-columns:repeat(auto-fill, var(--row-width));grid-gap:15px;row-gap:15px;align-content:center;align-items:center;justify-content:space-around;justify-items:center}tbody.files-list__tbody.files-list__tbody--grid tr{width:var(--row-width);height:calc(var(--row-height) + var(--clickable-area));border:none;border-radius:var(--border-radius)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-checkbox{position:absolute;z-index:9;top:0;left:0;overflow:hidden;width:var(--clickable-area);height:var(--clickable-area);border-radius:var(--half-clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-icon-favorite{position:absolute;top:0;right:0;display:flex;align-items:center;justify-content:center;width:var(--clickable-area);height:var(--clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name{display:grid;justify-content:stretch;width:100%;height:100%;grid-auto-rows:var(--row-height) var(--clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name span.files-list__row-icon{width:100%;height:100%;padding-top:var(--half-clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name a.files-list__row-name-link{width:calc(100% - var(--clickable-area));height:var(--clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name .files-list__row-name-text{margin:0;padding-right:0}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-actions{position:absolute;right:0;bottom:0;width:var(--clickable-area);height:var(--clickable-area)}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListVirtual.vue\"],\"names\":[],\"mappings\":\"AAEA,gDACC,sDAAA,CACA,kBAAA,CAEA,iEAAA,CACA,mEAAA,CACA,uBAAA,CAEA,YAAA,CACA,yDAAA,CACA,aAAA,CACA,YAAA,CAEA,oBAAA,CACA,kBAAA,CACA,4BAAA,CACA,oBAAA,CAEA,mDACC,sBAAA,CACA,sDAAA,CACA,WAAA,CACA,kCAAA,CAID,0EACC,iBAAA,CACA,SAAA,CACA,KAAA,CACA,MAAA,CACA,eAAA,CACA,2BAAA,CACA,4BAAA,CACA,wCAAA,CAID,+EACC,iBAAA,CACA,KAAA,CACA,OAAA,CACA,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,2BAAA,CACA,4BAAA,CAGD,sEACC,YAAA,CACA,uBAAA,CACA,UAAA,CACA,WAAA,CACA,sDAAA,CAEA,gGACC,UAAA,CACA,WAAA,CAGA,sCAAA,CAGD,kGAEC,wCAAA,CACA,4BAAA,CAGD,iGACC,QAAA,CACA,eAAA,CAIF,yEACC,iBAAA,CACA,OAAA,CACA,QAAA,CACA,2BAAA,CACA,4BAAA\",\"sourcesContent\":[\"\\n// Grid mode\\ntbody.files-list__tbody.files-list__tbody--grid {\\n\\t--half-clickable-area: calc(var(--clickable-area) / 2);\\n\\t--row-width: 160px;\\n\\t// We use half of the clickable area as visual balance margin\\n\\t--row-height: calc(var(--row-width) - var(--half-clickable-area));\\n\\t--icon-preview-size: calc(var(--row-width) - var(--clickable-area));\\n\\t--checkbox-padding: 0px;\\n\\n\\tdisplay: grid;\\n\\tgrid-template-columns: repeat(auto-fill, var(--row-width));\\n\\tgrid-gap: 15px;\\n\\trow-gap: 15px;\\n\\n\\talign-content: center;\\n\\talign-items: center;\\n\\tjustify-content: space-around;\\n\\tjustify-items: center;\\n\\n\\ttr {\\n\\t\\twidth: var(--row-width);\\n\\t\\theight: calc(var(--row-height) + var(--clickable-area));\\n\\t\\tborder: none;\\n\\t\\tborder-radius: var(--border-radius);\\n\\t}\\n\\n\\t// Checkbox in the top left\\n\\t.files-list__row-checkbox {\\n\\t\\tposition: absolute;\\n\\t\\tz-index: 9;\\n\\t\\ttop: 0;\\n\\t\\tleft: 0;\\n\\t\\toverflow: hidden;\\n\\t\\twidth: var(--clickable-area);\\n\\t\\theight: var(--clickable-area);\\n\\t\\tborder-radius: var(--half-clickable-area);\\n\\t}\\n\\n\\t// Star icon in the top right\\n\\t.files-list__row-icon-favorite {\\n\\t\\tposition: absolute;\\n\\t\\ttop: 0;\\n\\t\\tright: 0;\\n\\t\\tdisplay: flex;\\n\\t\\talign-items: center;\\n\\t\\tjustify-content: center;\\n\\t\\twidth: var(--clickable-area);\\n\\t\\theight: var(--clickable-area);\\n\\t}\\n\\n\\t.files-list__row-name {\\n\\t\\tdisplay: grid;\\n\\t\\tjustify-content: stretch;\\n\\t\\twidth: 100%;\\n\\t\\theight: 100%;\\n\\t\\tgrid-auto-rows: var(--row-height) var(--clickable-area);\\n\\n\\t\\tspan.files-list__row-icon {\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\theight: 100%;\\n\\t\\t\\t// Visual balance, we use half of the clickable area\\n\\t\\t\\t// as a margin around the preview\\n\\t\\t\\tpadding-top: var(--half-clickable-area);\\n\\t\\t}\\n\\n\\t\\ta.files-list__row-name-link {\\n\\t\\t\\t// Minus action menu\\n\\t\\t\\twidth: calc(100% - var(--clickable-area));\\n\\t\\t\\theight: var(--clickable-area);\\n\\t\\t}\\n\\n\\t\\t.files-list__row-name-text {\\n\\t\\t\\tmargin: 0;\\n\\t\\t\\tpadding-right: 0;\\n\\t\\t}\\n\\t}\\n\\n\\t.files-list__row-actions {\\n\\t\\tposition: absolute;\\n\\t\\tright: 0;\\n\\t\\tbottom: 0;\\n\\t\\twidth: var(--clickable-area);\\n\\t\\theight: var(--clickable-area);\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.app-navigation-entry__settings-quota--not-unlimited[data-v-063ed938] .app-navigation-entry__name{margin-top:-6px}.app-navigation-entry__settings-quota progress[data-v-063ed938]{position:absolute;bottom:12px;margin-left:44px;width:calc(100% - 44px - 22px)}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/NavigationQuota.vue\"],\"names\":[],\"mappings\":\"AAIC,kGACC,eAAA,CAGD,gEACC,iBAAA,CACA,WAAA,CACA,gBAAA,CACA,8BAAA\",\"sourcesContent\":[\"\\n// User storage stats display\\n.app-navigation-entry__settings-quota {\\n\\t// Align title with progress and icon\\n\\t&--not-unlimited::v-deep .app-navigation-entry__name {\\n\\t\\tmargin-top: -6px;\\n\\t}\\n\\n\\tprogress {\\n\\t\\tposition: absolute;\\n\\t\\tbottom: 12px;\\n\\t\\tmargin-left: 44px;\\n\\t\\twidth: calc(100% - 44px - 22px);\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.app-content[data-v-1b7c1ce0]{display:flex;overflow:hidden;flex-direction:column;max-height:100%;position:relative !important}.files-list__header[data-v-1b7c1ce0]{display:flex;align-items:center;flex:0 0;margin:4px 4px 4px 50px;max-width:100%}.files-list__header>*[data-v-1b7c1ce0]{flex:0 0}.files-list__header-share-button[data-v-1b7c1ce0]{color:var(--color-text-maxcontrast) !important}.files-list__header-share-button--shared[data-v-1b7c1ce0]{color:var(--color-main-text) !important}.files-list__refresh-icon[data-v-1b7c1ce0]{flex:0 0 44px;width:44px;height:44px}.files-list__loading-icon[data-v-1b7c1ce0]{margin:auto}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/views/FilesList.vue\"],\"names\":[],\"mappings\":\"AACA,8BAEC,YAAA,CACA,eAAA,CACA,qBAAA,CACA,eAAA,CACA,4BAAA,CAOA,qCACC,YAAA,CACA,kBAAA,CAEA,QAAA,CAEA,uBAAA,CACA,cAAA,CAEA,uCAGC,QAAA,CAGD,kDACC,8CAAA,CAEA,0DACC,uCAAA,CAKH,2CACC,aAAA,CACA,UAAA,CACA,WAAA,CAGD,2CACC,WAAA\",\"sourcesContent\":[\"\\n.app-content {\\n\\t// Virtual list needs to be full height and is scrollable\\n\\tdisplay: flex;\\n\\toverflow: hidden;\\n\\tflex-direction: column;\\n\\tmax-height: 100%;\\n\\tposition: relative !important;\\n}\\n\\n$margin: 4px;\\n$navigationToggleSize: 50px;\\n\\n.files-list {\\n\\t&__header {\\n\\t\\tdisplay: flex;\\n\\t\\talign-items: center;\\n\\t\\t// Do not grow or shrink (vertically)\\n\\t\\tflex: 0 0;\\n\\t\\t// Align with the navigation toggle icon\\n\\t\\tmargin: $margin $margin $margin $navigationToggleSize;\\n\\t\\tmax-width: 100%;\\n\\n\\t\\t>* {\\n\\t\\t\\t// Do not grow or shrink (horizontally)\\n\\t\\t\\t// Only the breadcrumbs shrinks\\n\\t\\t\\tflex: 0 0;\\n\\t\\t}\\n\\n\\t\\t&-share-button {\\n\\t\\t\\tcolor: var(--color-text-maxcontrast) !important;\\n\\n\\t\\t\\t&--shared {\\n\\t\\t\\t\\tcolor: var(--color-main-text) !important;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\t&__refresh-icon {\\n\\t\\tflex: 0 0 44px;\\n\\t\\twidth: 44px;\\n\\t\\theight: 44px;\\n\\t}\\n\\n\\t&__loading-icon {\\n\\t\\tmargin: auto;\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.app-navigation[data-v-8291caa8] .app-navigation-entry-icon{background-repeat:no-repeat;background-position:center}.app-navigation[data-v-8291caa8] .app-navigation-entry.active .button-vue.icon-collapse:not(:hover){color:var(--color-primary-element-text)}.app-navigation>ul.app-navigation__list[data-v-8291caa8]{padding-bottom:var(--default-grid-baseline, 4px)}.app-navigation-entry__settings[data-v-8291caa8]{height:auto !important;overflow:hidden !important;padding-top:0 !important;flex:0 0 auto}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/views/Navigation.vue\"],\"names\":[],\"mappings\":\"AAEA,4DACC,2BAAA,CACA,0BAAA,CAGD,oGACC,uCAAA,CAGD,yDAEC,gDAAA,CAGD,iDACC,sBAAA,CACA,0BAAA,CACA,wBAAA,CAEA,aAAA\",\"sourcesContent\":[\"\\n// TODO: remove when https://github.com/nextcloud/nextcloud-vue/pull/3539 is in\\n.app-navigation::v-deep .app-navigation-entry-icon {\\n\\tbackground-repeat: no-repeat;\\n\\tbackground-position: center;\\n}\\n\\n.app-navigation::v-deep .app-navigation-entry.active .button-vue.icon-collapse:not(:hover) {\\n\\tcolor: var(--color-primary-element-text);\\n}\\n\\n.app-navigation > ul.app-navigation__list {\\n\\t// Use flex gap value for more elegant spacing\\n\\tpadding-bottom: var(--default-grid-baseline, 4px);\\n}\\n\\n.app-navigation-entry__settings {\\n\\theight: auto !important;\\n\\toverflow: hidden !important;\\n\\tpadding-top: 0 !important;\\n\\t// Prevent shrinking or growing\\n\\tflex: 0 0 auto;\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.setting-link[data-v-6d63c120]:hover{text-decoration:underline}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/views/Settings.vue\"],\"names\":[],\"mappings\":\"AACA,qCACC,yBAAA\",\"sourcesContent\":[\"\\n.setting-link:hover {\\n\\ttext-decoration: underline;\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n",";(function (sax) { // wrapper for non-node envs\n sax.parser = function (strict, opt) { return new SAXParser(strict, opt) }\n sax.SAXParser = SAXParser\n sax.SAXStream = SAXStream\n sax.createStream = createStream\n\n // When we pass the MAX_BUFFER_LENGTH position, start checking for buffer overruns.\n // When we check, schedule the next check for MAX_BUFFER_LENGTH - (max(buffer lengths)),\n // since that's the earliest that a buffer overrun could occur. This way, checks are\n // as rare as required, but as often as necessary to ensure never crossing this bound.\n // Furthermore, buffers are only tested at most once per write(), so passing a very\n // large string into write() might have undesirable effects, but this is manageable by\n // the caller, so it is assumed to be safe. Thus, a call to write() may, in the extreme\n // edge case, result in creating at most one complete copy of the string passed in.\n // Set to Infinity to have unlimited buffers.\n sax.MAX_BUFFER_LENGTH = 64 * 1024\n\n var buffers = [\n 'comment', 'sgmlDecl', 'textNode', 'tagName', 'doctype',\n 'procInstName', 'procInstBody', 'entity', 'attribName',\n 'attribValue', 'cdata', 'script'\n ]\n\n sax.EVENTS = [\n 'text',\n 'processinginstruction',\n 'sgmldeclaration',\n 'doctype',\n 'comment',\n 'opentagstart',\n 'attribute',\n 'opentag',\n 'closetag',\n 'opencdata',\n 'cdata',\n 'closecdata',\n 'error',\n 'end',\n 'ready',\n 'script',\n 'opennamespace',\n 'closenamespace'\n ]\n\n function SAXParser (strict, opt) {\n if (!(this instanceof SAXParser)) {\n return new SAXParser(strict, opt)\n }\n\n var parser = this\n clearBuffers(parser)\n parser.q = parser.c = ''\n parser.bufferCheckPosition = sax.MAX_BUFFER_LENGTH\n parser.opt = opt || {}\n parser.opt.lowercase = parser.opt.lowercase || parser.opt.lowercasetags\n parser.looseCase = parser.opt.lowercase ? 'toLowerCase' : 'toUpperCase'\n parser.tags = []\n parser.closed = parser.closedRoot = parser.sawRoot = false\n parser.tag = parser.error = null\n parser.strict = !!strict\n parser.noscript = !!(strict || parser.opt.noscript)\n parser.state = S.BEGIN\n parser.strictEntities = parser.opt.strictEntities\n parser.ENTITIES = parser.strictEntities ? Object.create(sax.XML_ENTITIES) : Object.create(sax.ENTITIES)\n parser.attribList = []\n\n // namespaces form a prototype chain.\n // it always points at the current tag,\n // which protos to its parent tag.\n if (parser.opt.xmlns) {\n parser.ns = Object.create(rootNS)\n }\n\n // mostly just for error reporting\n parser.trackPosition = parser.opt.position !== false\n if (parser.trackPosition) {\n parser.position = parser.line = parser.column = 0\n }\n emit(parser, 'onready')\n }\n\n if (!Object.create) {\n Object.create = function (o) {\n function F () {}\n F.prototype = o\n var newf = new F()\n return newf\n }\n }\n\n if (!Object.keys) {\n Object.keys = function (o) {\n var a = []\n for (var i in o) if (o.hasOwnProperty(i)) a.push(i)\n return a\n }\n }\n\n function checkBufferLength (parser) {\n var maxAllowed = Math.max(sax.MAX_BUFFER_LENGTH, 10)\n var maxActual = 0\n for (var i = 0, l = buffers.length; i < l; i++) {\n var len = parser[buffers[i]].length\n if (len > maxAllowed) {\n // Text/cdata nodes can get big, and since they're buffered,\n // we can get here under normal conditions.\n // Avoid issues by emitting the text node now,\n // so at least it won't get any bigger.\n switch (buffers[i]) {\n case 'textNode':\n closeText(parser)\n break\n\n case 'cdata':\n emitNode(parser, 'oncdata', parser.cdata)\n parser.cdata = ''\n break\n\n case 'script':\n emitNode(parser, 'onscript', parser.script)\n parser.script = ''\n break\n\n default:\n error(parser, 'Max buffer length exceeded: ' + buffers[i])\n }\n }\n maxActual = Math.max(maxActual, len)\n }\n // schedule the next check for the earliest possible buffer overrun.\n var m = sax.MAX_BUFFER_LENGTH - maxActual\n parser.bufferCheckPosition = m + parser.position\n }\n\n function clearBuffers (parser) {\n for (var i = 0, l = buffers.length; i < l; i++) {\n parser[buffers[i]] = ''\n }\n }\n\n function flushBuffers (parser) {\n closeText(parser)\n if (parser.cdata !== '') {\n emitNode(parser, 'oncdata', parser.cdata)\n parser.cdata = ''\n }\n if (parser.script !== '') {\n emitNode(parser, 'onscript', parser.script)\n parser.script = ''\n }\n }\n\n SAXParser.prototype = {\n end: function () { end(this) },\n write: write,\n resume: function () { this.error = null; return this },\n close: function () { return this.write(null) },\n flush: function () { flushBuffers(this) }\n }\n\n var Stream\n try {\n Stream = require('stream').Stream\n } catch (ex) {\n Stream = function () {}\n }\n if (!Stream) Stream = function () {}\n\n var streamWraps = sax.EVENTS.filter(function (ev) {\n return ev !== 'error' && ev !== 'end'\n })\n\n function createStream (strict, opt) {\n return new SAXStream(strict, opt)\n }\n\n function SAXStream (strict, opt) {\n if (!(this instanceof SAXStream)) {\n return new SAXStream(strict, opt)\n }\n\n Stream.apply(this)\n\n this._parser = new SAXParser(strict, opt)\n this.writable = true\n this.readable = true\n\n var me = this\n\n this._parser.onend = function () {\n me.emit('end')\n }\n\n this._parser.onerror = function (er) {\n me.emit('error', er)\n\n // if didn't throw, then means error was handled.\n // go ahead and clear error, so we can write again.\n me._parser.error = null\n }\n\n this._decoder = null\n\n streamWraps.forEach(function (ev) {\n Object.defineProperty(me, 'on' + ev, {\n get: function () {\n return me._parser['on' + ev]\n },\n set: function (h) {\n if (!h) {\n me.removeAllListeners(ev)\n me._parser['on' + ev] = h\n return h\n }\n me.on(ev, h)\n },\n enumerable: true,\n configurable: false\n })\n })\n }\n\n SAXStream.prototype = Object.create(Stream.prototype, {\n constructor: {\n value: SAXStream\n }\n })\n\n SAXStream.prototype.write = function (data) {\n if (typeof Buffer === 'function' &&\n typeof Buffer.isBuffer === 'function' &&\n Buffer.isBuffer(data)) {\n if (!this._decoder) {\n var SD = require('string_decoder').StringDecoder\n this._decoder = new SD('utf8')\n }\n data = this._decoder.write(data)\n }\n\n this._parser.write(data.toString())\n this.emit('data', data)\n return true\n }\n\n SAXStream.prototype.end = function (chunk) {\n if (chunk && chunk.length) {\n this.write(chunk)\n }\n this._parser.end()\n return true\n }\n\n SAXStream.prototype.on = function (ev, handler) {\n var me = this\n if (!me._parser['on' + ev] && streamWraps.indexOf(ev) !== -1) {\n me._parser['on' + ev] = function () {\n var args = arguments.length === 1 ? [arguments[0]] : Array.apply(null, arguments)\n args.splice(0, 0, ev)\n me.emit.apply(me, args)\n }\n }\n\n return Stream.prototype.on.call(me, ev, handler)\n }\n\n // this really needs to be replaced with character classes.\n // XML allows all manner of ridiculous numbers and digits.\n var CDATA = '[CDATA['\n var DOCTYPE = 'DOCTYPE'\n var XML_NAMESPACE = 'http://www.w3.org/XML/1998/namespace'\n var XMLNS_NAMESPACE = 'http://www.w3.org/2000/xmlns/'\n var rootNS = { xml: XML_NAMESPACE, xmlns: XMLNS_NAMESPACE }\n\n // http://www.w3.org/TR/REC-xml/#NT-NameStartChar\n // This implementation works on strings, a single character at a time\n // as such, it cannot ever support astral-plane characters (10000-EFFFF)\n // without a significant breaking change to either this parser, or the\n // JavaScript language. Implementation of an emoji-capable xml parser\n // is left as an exercise for the reader.\n var nameStart = /[:_A-Za-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD]/\n\n var nameBody = /[:_A-Za-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\u00B7\\u0300-\\u036F\\u203F-\\u2040.\\d-]/\n\n var entityStart = /[#:_A-Za-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD]/\n var entityBody = /[#:_A-Za-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\u00B7\\u0300-\\u036F\\u203F-\\u2040.\\d-]/\n\n function isWhitespace (c) {\n return c === ' ' || c === '\\n' || c === '\\r' || c === '\\t'\n }\n\n function isQuote (c) {\n return c === '\"' || c === '\\''\n }\n\n function isAttribEnd (c) {\n return c === '>' || isWhitespace(c)\n }\n\n function isMatch (regex, c) {\n return regex.test(c)\n }\n\n function notMatch (regex, c) {\n return !isMatch(regex, c)\n }\n\n var S = 0\n sax.STATE = {\n BEGIN: S++, // leading byte order mark or whitespace\n BEGIN_WHITESPACE: S++, // leading whitespace\n TEXT: S++, // general stuff\n TEXT_ENTITY: S++, // &amp and such.\n OPEN_WAKA: S++, // <\n SGML_DECL: S++, // <!BLARG\n SGML_DECL_QUOTED: S++, // <!BLARG foo \"bar\n DOCTYPE: S++, // <!DOCTYPE\n DOCTYPE_QUOTED: S++, // <!DOCTYPE \"//blah\n DOCTYPE_DTD: S++, // <!DOCTYPE \"//blah\" [ ...\n DOCTYPE_DTD_QUOTED: S++, // <!DOCTYPE \"//blah\" [ \"foo\n COMMENT_STARTING: S++, // <!-\n COMMENT: S++, // <!--\n COMMENT_ENDING: S++, // <!-- blah -\n COMMENT_ENDED: S++, // <!-- blah --\n CDATA: S++, // <![CDATA[ something\n CDATA_ENDING: S++, // ]\n CDATA_ENDING_2: S++, // ]]\n PROC_INST: S++, // <?hi\n PROC_INST_BODY: S++, // <?hi there\n PROC_INST_ENDING: S++, // <?hi \"there\" ?\n OPEN_TAG: S++, // <strong\n OPEN_TAG_SLASH: S++, // <strong /\n ATTRIB: S++, // <a\n ATTRIB_NAME: S++, // <a foo\n ATTRIB_NAME_SAW_WHITE: S++, // <a foo _\n ATTRIB_VALUE: S++, // <a foo=\n ATTRIB_VALUE_QUOTED: S++, // <a foo=\"bar\n ATTRIB_VALUE_CLOSED: S++, // <a foo=\"bar\"\n ATTRIB_VALUE_UNQUOTED: S++, // <a foo=bar\n ATTRIB_VALUE_ENTITY_Q: S++, // <foo bar=\"&quot;\"\n ATTRIB_VALUE_ENTITY_U: S++, // <foo bar=&quot\n CLOSE_TAG: S++, // </a\n CLOSE_TAG_SAW_WHITE: S++, // </a >\n SCRIPT: S++, // <script> ...\n SCRIPT_ENDING: S++ // <script> ... <\n }\n\n sax.XML_ENTITIES = {\n 'amp': '&',\n 'gt': '>',\n 'lt': '<',\n 'quot': '\"',\n 'apos': \"'\"\n }\n\n sax.ENTITIES = {\n 'amp': '&',\n 'gt': '>',\n 'lt': '<',\n 'quot': '\"',\n 'apos': \"'\",\n 'AElig': 198,\n 'Aacute': 193,\n 'Acirc': 194,\n 'Agrave': 192,\n 'Aring': 197,\n 'Atilde': 195,\n 'Auml': 196,\n 'Ccedil': 199,\n 'ETH': 208,\n 'Eacute': 201,\n 'Ecirc': 202,\n 'Egrave': 200,\n 'Euml': 203,\n 'Iacute': 205,\n 'Icirc': 206,\n 'Igrave': 204,\n 'Iuml': 207,\n 'Ntilde': 209,\n 'Oacute': 211,\n 'Ocirc': 212,\n 'Ograve': 210,\n 'Oslash': 216,\n 'Otilde': 213,\n 'Ouml': 214,\n 'THORN': 222,\n 'Uacute': 218,\n 'Ucirc': 219,\n 'Ugrave': 217,\n 'Uuml': 220,\n 'Yacute': 221,\n 'aacute': 225,\n 'acirc': 226,\n 'aelig': 230,\n 'agrave': 224,\n 'aring': 229,\n 'atilde': 227,\n 'auml': 228,\n 'ccedil': 231,\n 'eacute': 233,\n 'ecirc': 234,\n 'egrave': 232,\n 'eth': 240,\n 'euml': 235,\n 'iacute': 237,\n 'icirc': 238,\n 'igrave': 236,\n 'iuml': 239,\n 'ntilde': 241,\n 'oacute': 243,\n 'ocirc': 244,\n 'ograve': 242,\n 'oslash': 248,\n 'otilde': 245,\n 'ouml': 246,\n 'szlig': 223,\n 'thorn': 254,\n 'uacute': 250,\n 'ucirc': 251,\n 'ugrave': 249,\n 'uuml': 252,\n 'yacute': 253,\n 'yuml': 255,\n 'copy': 169,\n 'reg': 174,\n 'nbsp': 160,\n 'iexcl': 161,\n 'cent': 162,\n 'pound': 163,\n 'curren': 164,\n 'yen': 165,\n 'brvbar': 166,\n 'sect': 167,\n 'uml': 168,\n 'ordf': 170,\n 'laquo': 171,\n 'not': 172,\n 'shy': 173,\n 'macr': 175,\n 'deg': 176,\n 'plusmn': 177,\n 'sup1': 185,\n 'sup2': 178,\n 'sup3': 179,\n 'acute': 180,\n 'micro': 181,\n 'para': 182,\n 'middot': 183,\n 'cedil': 184,\n 'ordm': 186,\n 'raquo': 187,\n 'frac14': 188,\n 'frac12': 189,\n 'frac34': 190,\n 'iquest': 191,\n 'times': 215,\n 'divide': 247,\n 'OElig': 338,\n 'oelig': 339,\n 'Scaron': 352,\n 'scaron': 353,\n 'Yuml': 376,\n 'fnof': 402,\n 'circ': 710,\n 'tilde': 732,\n 'Alpha': 913,\n 'Beta': 914,\n 'Gamma': 915,\n 'Delta': 916,\n 'Epsilon': 917,\n 'Zeta': 918,\n 'Eta': 919,\n 'Theta': 920,\n 'Iota': 921,\n 'Kappa': 922,\n 'Lambda': 923,\n 'Mu': 924,\n 'Nu': 925,\n 'Xi': 926,\n 'Omicron': 927,\n 'Pi': 928,\n 'Rho': 929,\n 'Sigma': 931,\n 'Tau': 932,\n 'Upsilon': 933,\n 'Phi': 934,\n 'Chi': 935,\n 'Psi': 936,\n 'Omega': 937,\n 'alpha': 945,\n 'beta': 946,\n 'gamma': 947,\n 'delta': 948,\n 'epsilon': 949,\n 'zeta': 950,\n 'eta': 951,\n 'theta': 952,\n 'iota': 953,\n 'kappa': 954,\n 'lambda': 955,\n 'mu': 956,\n 'nu': 957,\n 'xi': 958,\n 'omicron': 959,\n 'pi': 960,\n 'rho': 961,\n 'sigmaf': 962,\n 'sigma': 963,\n 'tau': 964,\n 'upsilon': 965,\n 'phi': 966,\n 'chi': 967,\n 'psi': 968,\n 'omega': 969,\n 'thetasym': 977,\n 'upsih': 978,\n 'piv': 982,\n 'ensp': 8194,\n 'emsp': 8195,\n 'thinsp': 8201,\n 'zwnj': 8204,\n 'zwj': 8205,\n 'lrm': 8206,\n 'rlm': 8207,\n 'ndash': 8211,\n 'mdash': 8212,\n 'lsquo': 8216,\n 'rsquo': 8217,\n 'sbquo': 8218,\n 'ldquo': 8220,\n 'rdquo': 8221,\n 'bdquo': 8222,\n 'dagger': 8224,\n 'Dagger': 8225,\n 'bull': 8226,\n 'hellip': 8230,\n 'permil': 8240,\n 'prime': 8242,\n 'Prime': 8243,\n 'lsaquo': 8249,\n 'rsaquo': 8250,\n 'oline': 8254,\n 'frasl': 8260,\n 'euro': 8364,\n 'image': 8465,\n 'weierp': 8472,\n 'real': 8476,\n 'trade': 8482,\n 'alefsym': 8501,\n 'larr': 8592,\n 'uarr': 8593,\n 'rarr': 8594,\n 'darr': 8595,\n 'harr': 8596,\n 'crarr': 8629,\n 'lArr': 8656,\n 'uArr': 8657,\n 'rArr': 8658,\n 'dArr': 8659,\n 'hArr': 8660,\n 'forall': 8704,\n 'part': 8706,\n 'exist': 8707,\n 'empty': 8709,\n 'nabla': 8711,\n 'isin': 8712,\n 'notin': 8713,\n 'ni': 8715,\n 'prod': 8719,\n 'sum': 8721,\n 'minus': 8722,\n 'lowast': 8727,\n 'radic': 8730,\n 'prop': 8733,\n 'infin': 8734,\n 'ang': 8736,\n 'and': 8743,\n 'or': 8744,\n 'cap': 8745,\n 'cup': 8746,\n 'int': 8747,\n 'there4': 8756,\n 'sim': 8764,\n 'cong': 8773,\n 'asymp': 8776,\n 'ne': 8800,\n 'equiv': 8801,\n 'le': 8804,\n 'ge': 8805,\n 'sub': 8834,\n 'sup': 8835,\n 'nsub': 8836,\n 'sube': 8838,\n 'supe': 8839,\n 'oplus': 8853,\n 'otimes': 8855,\n 'perp': 8869,\n 'sdot': 8901,\n 'lceil': 8968,\n 'rceil': 8969,\n 'lfloor': 8970,\n 'rfloor': 8971,\n 'lang': 9001,\n 'rang': 9002,\n 'loz': 9674,\n 'spades': 9824,\n 'clubs': 9827,\n 'hearts': 9829,\n 'diams': 9830\n }\n\n Object.keys(sax.ENTITIES).forEach(function (key) {\n var e = sax.ENTITIES[key]\n var s = typeof e === 'number' ? String.fromCharCode(e) : e\n sax.ENTITIES[key] = s\n })\n\n for (var s in sax.STATE) {\n sax.STATE[sax.STATE[s]] = s\n }\n\n // shorthand\n S = sax.STATE\n\n function emit (parser, event, data) {\n parser[event] && parser[event](data)\n }\n\n function emitNode (parser, nodeType, data) {\n if (parser.textNode) closeText(parser)\n emit(parser, nodeType, data)\n }\n\n function closeText (parser) {\n parser.textNode = textopts(parser.opt, parser.textNode)\n if (parser.textNode) emit(parser, 'ontext', parser.textNode)\n parser.textNode = ''\n }\n\n function textopts (opt, text) {\n if (opt.trim) text = text.trim()\n if (opt.normalize) text = text.replace(/\\s+/g, ' ')\n return text\n }\n\n function error (parser, er) {\n closeText(parser)\n if (parser.trackPosition) {\n er += '\\nLine: ' + parser.line +\n '\\nColumn: ' + parser.column +\n '\\nChar: ' + parser.c\n }\n er = new Error(er)\n parser.error = er\n emit(parser, 'onerror', er)\n return parser\n }\n\n function end (parser) {\n if (parser.sawRoot && !parser.closedRoot) strictFail(parser, 'Unclosed root tag')\n if ((parser.state !== S.BEGIN) &&\n (parser.state !== S.BEGIN_WHITESPACE) &&\n (parser.state !== S.TEXT)) {\n error(parser, 'Unexpected end')\n }\n closeText(parser)\n parser.c = ''\n parser.closed = true\n emit(parser, 'onend')\n SAXParser.call(parser, parser.strict, parser.opt)\n return parser\n }\n\n function strictFail (parser, message) {\n if (typeof parser !== 'object' || !(parser instanceof SAXParser)) {\n throw new Error('bad call to strictFail')\n }\n if (parser.strict) {\n error(parser, message)\n }\n }\n\n function newTag (parser) {\n if (!parser.strict) parser.tagName = parser.tagName[parser.looseCase]()\n var parent = parser.tags[parser.tags.length - 1] || parser\n var tag = parser.tag = { name: parser.tagName, attributes: {} }\n\n // will be overridden if tag contails an xmlns=\"foo\" or xmlns:foo=\"bar\"\n if (parser.opt.xmlns) {\n tag.ns = parent.ns\n }\n parser.attribList.length = 0\n emitNode(parser, 'onopentagstart', tag)\n }\n\n function qname (name, attribute) {\n var i = name.indexOf(':')\n var qualName = i < 0 ? [ '', name ] : name.split(':')\n var prefix = qualName[0]\n var local = qualName[1]\n\n // <x \"xmlns\"=\"http://foo\">\n if (attribute && name === 'xmlns') {\n prefix = 'xmlns'\n local = ''\n }\n\n return { prefix: prefix, local: local }\n }\n\n function attrib (parser) {\n if (!parser.strict) {\n parser.attribName = parser.attribName[parser.looseCase]()\n }\n\n if (parser.attribList.indexOf(parser.attribName) !== -1 ||\n parser.tag.attributes.hasOwnProperty(parser.attribName)) {\n parser.attribName = parser.attribValue = ''\n return\n }\n\n if (parser.opt.xmlns) {\n var qn = qname(parser.attribName, true)\n var prefix = qn.prefix\n var local = qn.local\n\n if (prefix === 'xmlns') {\n // namespace binding attribute. push the binding into scope\n if (local === 'xml' && parser.attribValue !== XML_NAMESPACE) {\n strictFail(parser,\n 'xml: prefix must be bound to ' + XML_NAMESPACE + '\\n' +\n 'Actual: ' + parser.attribValue)\n } else if (local === 'xmlns' && parser.attribValue !== XMLNS_NAMESPACE) {\n strictFail(parser,\n 'xmlns: prefix must be bound to ' + XMLNS_NAMESPACE + '\\n' +\n 'Actual: ' + parser.attribValue)\n } else {\n var tag = parser.tag\n var parent = parser.tags[parser.tags.length - 1] || parser\n if (tag.ns === parent.ns) {\n tag.ns = Object.create(parent.ns)\n }\n tag.ns[local] = parser.attribValue\n }\n }\n\n // defer onattribute events until all attributes have been seen\n // so any new bindings can take effect. preserve attribute order\n // so deferred events can be emitted in document order\n parser.attribList.push([parser.attribName, parser.attribValue])\n } else {\n // in non-xmlns mode, we can emit the event right away\n parser.tag.attributes[parser.attribName] = parser.attribValue\n emitNode(parser, 'onattribute', {\n name: parser.attribName,\n value: parser.attribValue\n })\n }\n\n parser.attribName = parser.attribValue = ''\n }\n\n function openTag (parser, selfClosing) {\n if (parser.opt.xmlns) {\n // emit namespace binding events\n var tag = parser.tag\n\n // add namespace info to tag\n var qn = qname(parser.tagName)\n tag.prefix = qn.prefix\n tag.local = qn.local\n tag.uri = tag.ns[qn.prefix] || ''\n\n if (tag.prefix && !tag.uri) {\n strictFail(parser, 'Unbound namespace prefix: ' +\n JSON.stringify(parser.tagName))\n tag.uri = qn.prefix\n }\n\n var parent = parser.tags[parser.tags.length - 1] || parser\n if (tag.ns && parent.ns !== tag.ns) {\n Object.keys(tag.ns).forEach(function (p) {\n emitNode(parser, 'onopennamespace', {\n prefix: p,\n uri: tag.ns[p]\n })\n })\n }\n\n // handle deferred onattribute events\n // Note: do not apply default ns to attributes:\n // http://www.w3.org/TR/REC-xml-names/#defaulting\n for (var i = 0, l = parser.attribList.length; i < l; i++) {\n var nv = parser.attribList[i]\n var name = nv[0]\n var value = nv[1]\n var qualName = qname(name, true)\n var prefix = qualName.prefix\n var local = qualName.local\n var uri = prefix === '' ? '' : (tag.ns[prefix] || '')\n var a = {\n name: name,\n value: value,\n prefix: prefix,\n local: local,\n uri: uri\n }\n\n // if there's any attributes with an undefined namespace,\n // then fail on them now.\n if (prefix && prefix !== 'xmlns' && !uri) {\n strictFail(parser, 'Unbound namespace prefix: ' +\n JSON.stringify(prefix))\n a.uri = prefix\n }\n parser.tag.attributes[name] = a\n emitNode(parser, 'onattribute', a)\n }\n parser.attribList.length = 0\n }\n\n parser.tag.isSelfClosing = !!selfClosing\n\n // process the tag\n parser.sawRoot = true\n parser.tags.push(parser.tag)\n emitNode(parser, 'onopentag', parser.tag)\n if (!selfClosing) {\n // special case for <script> in non-strict mode.\n if (!parser.noscript && parser.tagName.toLowerCase() === 'script') {\n parser.state = S.SCRIPT\n } else {\n parser.state = S.TEXT\n }\n parser.tag = null\n parser.tagName = ''\n }\n parser.attribName = parser.attribValue = ''\n parser.attribList.length = 0\n }\n\n function closeTag (parser) {\n if (!parser.tagName) {\n strictFail(parser, 'Weird empty close tag.')\n parser.textNode += '</>'\n parser.state = S.TEXT\n return\n }\n\n if (parser.script) {\n if (parser.tagName !== 'script') {\n parser.script += '</' + parser.tagName + '>'\n parser.tagName = ''\n parser.state = S.SCRIPT\n return\n }\n emitNode(parser, 'onscript', parser.script)\n parser.script = ''\n }\n\n // first make sure that the closing tag actually exists.\n // <a><b></c></b></a> will close everything, otherwise.\n var t = parser.tags.length\n var tagName = parser.tagName\n if (!parser.strict) {\n tagName = tagName[parser.looseCase]()\n }\n var closeTo = tagName\n while (t--) {\n var close = parser.tags[t]\n if (close.name !== closeTo) {\n // fail the first time in strict mode\n strictFail(parser, 'Unexpected close tag')\n } else {\n break\n }\n }\n\n // didn't find it. we already failed for strict, so just abort.\n if (t < 0) {\n strictFail(parser, 'Unmatched closing tag: ' + parser.tagName)\n parser.textNode += '</' + parser.tagName + '>'\n parser.state = S.TEXT\n return\n }\n parser.tagName = tagName\n var s = parser.tags.length\n while (s-- > t) {\n var tag = parser.tag = parser.tags.pop()\n parser.tagName = parser.tag.name\n emitNode(parser, 'onclosetag', parser.tagName)\n\n var x = {}\n for (var i in tag.ns) {\n x[i] = tag.ns[i]\n }\n\n var parent = parser.tags[parser.tags.length - 1] || parser\n if (parser.opt.xmlns && tag.ns !== parent.ns) {\n // remove namespace bindings introduced by tag\n Object.keys(tag.ns).forEach(function (p) {\n var n = tag.ns[p]\n emitNode(parser, 'onclosenamespace', { prefix: p, uri: n })\n })\n }\n }\n if (t === 0) parser.closedRoot = true\n parser.tagName = parser.attribValue = parser.attribName = ''\n parser.attribList.length = 0\n parser.state = S.TEXT\n }\n\n function parseEntity (parser) {\n var entity = parser.entity\n var entityLC = entity.toLowerCase()\n var num\n var numStr = ''\n\n if (parser.ENTITIES[entity]) {\n return parser.ENTITIES[entity]\n }\n if (parser.ENTITIES[entityLC]) {\n return parser.ENTITIES[entityLC]\n }\n entity = entityLC\n if (entity.charAt(0) === '#') {\n if (entity.charAt(1) === 'x') {\n entity = entity.slice(2)\n num = parseInt(entity, 16)\n numStr = num.toString(16)\n } else {\n entity = entity.slice(1)\n num = parseInt(entity, 10)\n numStr = num.toString(10)\n }\n }\n entity = entity.replace(/^0+/, '')\n if (isNaN(num) || numStr.toLowerCase() !== entity) {\n strictFail(parser, 'Invalid character entity')\n return '&' + parser.entity + ';'\n }\n\n return String.fromCodePoint(num)\n }\n\n function beginWhiteSpace (parser, c) {\n if (c === '<') {\n parser.state = S.OPEN_WAKA\n parser.startTagPosition = parser.position\n } else if (!isWhitespace(c)) {\n // have to process this as a text node.\n // weird, but happens.\n strictFail(parser, 'Non-whitespace before first tag.')\n parser.textNode = c\n parser.state = S.TEXT\n }\n }\n\n function charAt (chunk, i) {\n var result = ''\n if (i < chunk.length) {\n result = chunk.charAt(i)\n }\n return result\n }\n\n function write (chunk) {\n var parser = this\n if (this.error) {\n throw this.error\n }\n if (parser.closed) {\n return error(parser,\n 'Cannot write after close. Assign an onready handler.')\n }\n if (chunk === null) {\n return end(parser)\n }\n if (typeof chunk === 'object') {\n chunk = chunk.toString()\n }\n var i = 0\n var c = ''\n while (true) {\n c = charAt(chunk, i++)\n parser.c = c\n\n if (!c) {\n break\n }\n\n if (parser.trackPosition) {\n parser.position++\n if (c === '\\n') {\n parser.line++\n parser.column = 0\n } else {\n parser.column++\n }\n }\n\n switch (parser.state) {\n case S.BEGIN:\n parser.state = S.BEGIN_WHITESPACE\n if (c === '\\uFEFF') {\n continue\n }\n beginWhiteSpace(parser, c)\n continue\n\n case S.BEGIN_WHITESPACE:\n beginWhiteSpace(parser, c)\n continue\n\n case S.TEXT:\n if (parser.sawRoot && !parser.closedRoot) {\n var starti = i - 1\n while (c && c !== '<' && c !== '&') {\n c = charAt(chunk, i++)\n if (c && parser.trackPosition) {\n parser.position++\n if (c === '\\n') {\n parser.line++\n parser.column = 0\n } else {\n parser.column++\n }\n }\n }\n parser.textNode += chunk.substring(starti, i - 1)\n }\n if (c === '<' && !(parser.sawRoot && parser.closedRoot && !parser.strict)) {\n parser.state = S.OPEN_WAKA\n parser.startTagPosition = parser.position\n } else {\n if (!isWhitespace(c) && (!parser.sawRoot || parser.closedRoot)) {\n strictFail(parser, 'Text data outside of root node.')\n }\n if (c === '&') {\n parser.state = S.TEXT_ENTITY\n } else {\n parser.textNode += c\n }\n }\n continue\n\n case S.SCRIPT:\n // only non-strict\n if (c === '<') {\n parser.state = S.SCRIPT_ENDING\n } else {\n parser.script += c\n }\n continue\n\n case S.SCRIPT_ENDING:\n if (c === '/') {\n parser.state = S.CLOSE_TAG\n } else {\n parser.script += '<' + c\n parser.state = S.SCRIPT\n }\n continue\n\n case S.OPEN_WAKA:\n // either a /, ?, !, or text is coming next.\n if (c === '!') {\n parser.state = S.SGML_DECL\n parser.sgmlDecl = ''\n } else if (isWhitespace(c)) {\n // wait for it...\n } else if (isMatch(nameStart, c)) {\n parser.state = S.OPEN_TAG\n parser.tagName = c\n } else if (c === '/') {\n parser.state = S.CLOSE_TAG\n parser.tagName = ''\n } else if (c === '?') {\n parser.state = S.PROC_INST\n parser.procInstName = parser.procInstBody = ''\n } else {\n strictFail(parser, 'Unencoded <')\n // if there was some whitespace, then add that in.\n if (parser.startTagPosition + 1 < parser.position) {\n var pad = parser.position - parser.startTagPosition\n c = new Array(pad).join(' ') + c\n }\n parser.textNode += '<' + c\n parser.state = S.TEXT\n }\n continue\n\n case S.SGML_DECL:\n if ((parser.sgmlDecl + c).toUpperCase() === CDATA) {\n emitNode(parser, 'onopencdata')\n parser.state = S.CDATA\n parser.sgmlDecl = ''\n parser.cdata = ''\n } else if (parser.sgmlDecl + c === '--') {\n parser.state = S.COMMENT\n parser.comment = ''\n parser.sgmlDecl = ''\n } else if ((parser.sgmlDecl + c).toUpperCase() === DOCTYPE) {\n parser.state = S.DOCTYPE\n if (parser.doctype || parser.sawRoot) {\n strictFail(parser,\n 'Inappropriately located doctype declaration')\n }\n parser.doctype = ''\n parser.sgmlDecl = ''\n } else if (c === '>') {\n emitNode(parser, 'onsgmldeclaration', parser.sgmlDecl)\n parser.sgmlDecl = ''\n parser.state = S.TEXT\n } else if (isQuote(c)) {\n parser.state = S.SGML_DECL_QUOTED\n parser.sgmlDecl += c\n } else {\n parser.sgmlDecl += c\n }\n continue\n\n case S.SGML_DECL_QUOTED:\n if (c === parser.q) {\n parser.state = S.SGML_DECL\n parser.q = ''\n }\n parser.sgmlDecl += c\n continue\n\n case S.DOCTYPE:\n if (c === '>') {\n parser.state = S.TEXT\n emitNode(parser, 'ondoctype', parser.doctype)\n parser.doctype = true // just remember that we saw it.\n } else {\n parser.doctype += c\n if (c === '[') {\n parser.state = S.DOCTYPE_DTD\n } else if (isQuote(c)) {\n parser.state = S.DOCTYPE_QUOTED\n parser.q = c\n }\n }\n continue\n\n case S.DOCTYPE_QUOTED:\n parser.doctype += c\n if (c === parser.q) {\n parser.q = ''\n parser.state = S.DOCTYPE\n }\n continue\n\n case S.DOCTYPE_DTD:\n parser.doctype += c\n if (c === ']') {\n parser.state = S.DOCTYPE\n } else if (isQuote(c)) {\n parser.state = S.DOCTYPE_DTD_QUOTED\n parser.q = c\n }\n continue\n\n case S.DOCTYPE_DTD_QUOTED:\n parser.doctype += c\n if (c === parser.q) {\n parser.state = S.DOCTYPE_DTD\n parser.q = ''\n }\n continue\n\n case S.COMMENT:\n if (c === '-') {\n parser.state = S.COMMENT_ENDING\n } else {\n parser.comment += c\n }\n continue\n\n case S.COMMENT_ENDING:\n if (c === '-') {\n parser.state = S.COMMENT_ENDED\n parser.comment = textopts(parser.opt, parser.comment)\n if (parser.comment) {\n emitNode(parser, 'oncomment', parser.comment)\n }\n parser.comment = ''\n } else {\n parser.comment += '-' + c\n parser.state = S.COMMENT\n }\n continue\n\n case S.COMMENT_ENDED:\n if (c !== '>') {\n strictFail(parser, 'Malformed comment')\n // allow <!-- blah -- bloo --> in non-strict mode,\n // which is a comment of \" blah -- bloo \"\n parser.comment += '--' + c\n parser.state = S.COMMENT\n } else {\n parser.state = S.TEXT\n }\n continue\n\n case S.CDATA:\n if (c === ']') {\n parser.state = S.CDATA_ENDING\n } else {\n parser.cdata += c\n }\n continue\n\n case S.CDATA_ENDING:\n if (c === ']') {\n parser.state = S.CDATA_ENDING_2\n } else {\n parser.cdata += ']' + c\n parser.state = S.CDATA\n }\n continue\n\n case S.CDATA_ENDING_2:\n if (c === '>') {\n if (parser.cdata) {\n emitNode(parser, 'oncdata', parser.cdata)\n }\n emitNode(parser, 'onclosecdata')\n parser.cdata = ''\n parser.state = S.TEXT\n } else if (c === ']') {\n parser.cdata += ']'\n } else {\n parser.cdata += ']]' + c\n parser.state = S.CDATA\n }\n continue\n\n case S.PROC_INST:\n if (c === '?') {\n parser.state = S.PROC_INST_ENDING\n } else if (isWhitespace(c)) {\n parser.state = S.PROC_INST_BODY\n } else {\n parser.procInstName += c\n }\n continue\n\n case S.PROC_INST_BODY:\n if (!parser.procInstBody && isWhitespace(c)) {\n continue\n } else if (c === '?') {\n parser.state = S.PROC_INST_ENDING\n } else {\n parser.procInstBody += c\n }\n continue\n\n case S.PROC_INST_ENDING:\n if (c === '>') {\n emitNode(parser, 'onprocessinginstruction', {\n name: parser.procInstName,\n body: parser.procInstBody\n })\n parser.procInstName = parser.procInstBody = ''\n parser.state = S.TEXT\n } else {\n parser.procInstBody += '?' + c\n parser.state = S.PROC_INST_BODY\n }\n continue\n\n case S.OPEN_TAG:\n if (isMatch(nameBody, c)) {\n parser.tagName += c\n } else {\n newTag(parser)\n if (c === '>') {\n openTag(parser)\n } else if (c === '/') {\n parser.state = S.OPEN_TAG_SLASH\n } else {\n if (!isWhitespace(c)) {\n strictFail(parser, 'Invalid character in tag name')\n }\n parser.state = S.ATTRIB\n }\n }\n continue\n\n case S.OPEN_TAG_SLASH:\n if (c === '>') {\n openTag(parser, true)\n closeTag(parser)\n } else {\n strictFail(parser, 'Forward-slash in opening tag not followed by >')\n parser.state = S.ATTRIB\n }\n continue\n\n case S.ATTRIB:\n // haven't read the attribute name yet.\n if (isWhitespace(c)) {\n continue\n } else if (c === '>') {\n openTag(parser)\n } else if (c === '/') {\n parser.state = S.OPEN_TAG_SLASH\n } else if (isMatch(nameStart, c)) {\n parser.attribName = c\n parser.attribValue = ''\n parser.state = S.ATTRIB_NAME\n } else {\n strictFail(parser, 'Invalid attribute name')\n }\n continue\n\n case S.ATTRIB_NAME:\n if (c === '=') {\n parser.state = S.ATTRIB_VALUE\n } else if (c === '>') {\n strictFail(parser, 'Attribute without value')\n parser.attribValue = parser.attribName\n attrib(parser)\n openTag(parser)\n } else if (isWhitespace(c)) {\n parser.state = S.ATTRIB_NAME_SAW_WHITE\n } else if (isMatch(nameBody, c)) {\n parser.attribName += c\n } else {\n strictFail(parser, 'Invalid attribute name')\n }\n continue\n\n case S.ATTRIB_NAME_SAW_WHITE:\n if (c === '=') {\n parser.state = S.ATTRIB_VALUE\n } else if (isWhitespace(c)) {\n continue\n } else {\n strictFail(parser, 'Attribute without value')\n parser.tag.attributes[parser.attribName] = ''\n parser.attribValue = ''\n emitNode(parser, 'onattribute', {\n name: parser.attribName,\n value: ''\n })\n parser.attribName = ''\n if (c === '>') {\n openTag(parser)\n } else if (isMatch(nameStart, c)) {\n parser.attribName = c\n parser.state = S.ATTRIB_NAME\n } else {\n strictFail(parser, 'Invalid attribute name')\n parser.state = S.ATTRIB\n }\n }\n continue\n\n case S.ATTRIB_VALUE:\n if (isWhitespace(c)) {\n continue\n } else if (isQuote(c)) {\n parser.q = c\n parser.state = S.ATTRIB_VALUE_QUOTED\n } else {\n strictFail(parser, 'Unquoted attribute value')\n parser.state = S.ATTRIB_VALUE_UNQUOTED\n parser.attribValue = c\n }\n continue\n\n case S.ATTRIB_VALUE_QUOTED:\n if (c !== parser.q) {\n if (c === '&') {\n parser.state = S.ATTRIB_VALUE_ENTITY_Q\n } else {\n parser.attribValue += c\n }\n continue\n }\n attrib(parser)\n parser.q = ''\n parser.state = S.ATTRIB_VALUE_CLOSED\n continue\n\n case S.ATTRIB_VALUE_CLOSED:\n if (isWhitespace(c)) {\n parser.state = S.ATTRIB\n } else if (c === '>') {\n openTag(parser)\n } else if (c === '/') {\n parser.state = S.OPEN_TAG_SLASH\n } else if (isMatch(nameStart, c)) {\n strictFail(parser, 'No whitespace between attributes')\n parser.attribName = c\n parser.attribValue = ''\n parser.state = S.ATTRIB_NAME\n } else {\n strictFail(parser, 'Invalid attribute name')\n }\n continue\n\n case S.ATTRIB_VALUE_UNQUOTED:\n if (!isAttribEnd(c)) {\n if (c === '&') {\n parser.state = S.ATTRIB_VALUE_ENTITY_U\n } else {\n parser.attribValue += c\n }\n continue\n }\n attrib(parser)\n if (c === '>') {\n openTag(parser)\n } else {\n parser.state = S.ATTRIB\n }\n continue\n\n case S.CLOSE_TAG:\n if (!parser.tagName) {\n if (isWhitespace(c)) {\n continue\n } else if (notMatch(nameStart, c)) {\n if (parser.script) {\n parser.script += '</' + c\n parser.state = S.SCRIPT\n } else {\n strictFail(parser, 'Invalid tagname in closing tag.')\n }\n } else {\n parser.tagName = c\n }\n } else if (c === '>') {\n closeTag(parser)\n } else if (isMatch(nameBody, c)) {\n parser.tagName += c\n } else if (parser.script) {\n parser.script += '</' + parser.tagName\n parser.tagName = ''\n parser.state = S.SCRIPT\n } else {\n if (!isWhitespace(c)) {\n strictFail(parser, 'Invalid tagname in closing tag')\n }\n parser.state = S.CLOSE_TAG_SAW_WHITE\n }\n continue\n\n case S.CLOSE_TAG_SAW_WHITE:\n if (isWhitespace(c)) {\n continue\n }\n if (c === '>') {\n closeTag(parser)\n } else {\n strictFail(parser, 'Invalid characters in closing tag')\n }\n continue\n\n case S.TEXT_ENTITY:\n case S.ATTRIB_VALUE_ENTITY_Q:\n case S.ATTRIB_VALUE_ENTITY_U:\n var returnState\n var buffer\n switch (parser.state) {\n case S.TEXT_ENTITY:\n returnState = S.TEXT\n buffer = 'textNode'\n break\n\n case S.ATTRIB_VALUE_ENTITY_Q:\n returnState = S.ATTRIB_VALUE_QUOTED\n buffer = 'attribValue'\n break\n\n case S.ATTRIB_VALUE_ENTITY_U:\n returnState = S.ATTRIB_VALUE_UNQUOTED\n buffer = 'attribValue'\n break\n }\n\n if (c === ';') {\n if (parser.opt.unparsedEntities) {\n var parsedEntity = parseEntity(parser)\n parser.entity = ''\n parser.state = returnState\n parser.write(parsedEntity)\n } else {\n parser[buffer] += parseEntity(parser)\n parser.entity = ''\n parser.state = returnState\n }\n } else if (isMatch(parser.entity.length ? entityBody : entityStart, c)) {\n parser.entity += c\n } else {\n strictFail(parser, 'Invalid character in entity name')\n parser[buffer] += '&' + parser.entity + c\n parser.entity = ''\n parser.state = returnState\n }\n\n continue\n\n default: /* istanbul ignore next */ {\n throw new Error(parser, 'Unknown state: ' + parser.state)\n }\n }\n } // while\n\n if (parser.position >= parser.bufferCheckPosition) {\n checkBufferLength(parser)\n }\n return parser\n }\n\n /*! http://mths.be/fromcodepoint v0.1.0 by @mathias */\n /* istanbul ignore next */\n if (!String.fromCodePoint) {\n (function () {\n var stringFromCharCode = String.fromCharCode\n var floor = Math.floor\n var fromCodePoint = function () {\n var MAX_SIZE = 0x4000\n var codeUnits = []\n var highSurrogate\n var lowSurrogate\n var index = -1\n var length = arguments.length\n if (!length) {\n return ''\n }\n var result = ''\n while (++index < length) {\n var codePoint = Number(arguments[index])\n if (\n !isFinite(codePoint) || // `NaN`, `+Infinity`, or `-Infinity`\n codePoint < 0 || // not a valid Unicode code point\n codePoint > 0x10FFFF || // not a valid Unicode code point\n floor(codePoint) !== codePoint // not an integer\n ) {\n throw RangeError('Invalid code point: ' + codePoint)\n }\n if (codePoint <= 0xFFFF) { // BMP code point\n codeUnits.push(codePoint)\n } else { // Astral code point; split in surrogate halves\n // http://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae\n codePoint -= 0x10000\n highSurrogate = (codePoint >> 10) + 0xD800\n lowSurrogate = (codePoint % 0x400) + 0xDC00\n codeUnits.push(highSurrogate, lowSurrogate)\n }\n if (index + 1 === length || codeUnits.length > MAX_SIZE) {\n result += stringFromCharCode.apply(null, codeUnits)\n codeUnits.length = 0\n }\n }\n return result\n }\n /* istanbul ignore next */\n if (Object.defineProperty) {\n Object.defineProperty(String, 'fromCodePoint', {\n value: fromCodePoint,\n configurable: true,\n writable: true\n })\n } else {\n String.fromCodePoint = fromCodePoint\n }\n }())\n }\n})(typeof exports === 'undefined' ? this.sax = {} : exports)\n","(function (global, undefined) {\n \"use strict\";\n\n if (global.setImmediate) {\n return;\n }\n\n var nextHandle = 1; // Spec says greater than zero\n var tasksByHandle = {};\n var currentlyRunningATask = false;\n var doc = global.document;\n var registerImmediate;\n\n function setImmediate(callback) {\n // Callback can either be a function or a string\n if (typeof callback !== \"function\") {\n callback = new Function(\"\" + callback);\n }\n // Copy function arguments\n var args = new Array(arguments.length - 1);\n for (var i = 0; i < args.length; i++) {\n args[i] = arguments[i + 1];\n }\n // Store and register the task\n var task = { callback: callback, args: args };\n tasksByHandle[nextHandle] = task;\n registerImmediate(nextHandle);\n return nextHandle++;\n }\n\n function clearImmediate(handle) {\n delete tasksByHandle[handle];\n }\n\n function run(task) {\n var callback = task.callback;\n var args = task.args;\n switch (args.length) {\n case 0:\n callback();\n break;\n case 1:\n callback(args[0]);\n break;\n case 2:\n callback(args[0], args[1]);\n break;\n case 3:\n callback(args[0], args[1], args[2]);\n break;\n default:\n callback.apply(undefined, args);\n break;\n }\n }\n\n function runIfPresent(handle) {\n // From the spec: \"Wait until any invocations of this algorithm started before this one have completed.\"\n // So if we're currently running a task, we'll need to delay this invocation.\n if (currentlyRunningATask) {\n // Delay by doing a setTimeout. setImmediate was tried instead, but in Firefox 7 it generated a\n // \"too much recursion\" error.\n setTimeout(runIfPresent, 0, handle);\n } else {\n var task = tasksByHandle[handle];\n if (task) {\n currentlyRunningATask = true;\n try {\n run(task);\n } finally {\n clearImmediate(handle);\n currentlyRunningATask = false;\n }\n }\n }\n }\n\n function installNextTickImplementation() {\n registerImmediate = function(handle) {\n process.nextTick(function () { runIfPresent(handle); });\n };\n }\n\n function canUsePostMessage() {\n // The test against `importScripts` prevents this implementation from being installed inside a web worker,\n // where `global.postMessage` means something completely different and can't be used for this purpose.\n if (global.postMessage && !global.importScripts) {\n var postMessageIsAsynchronous = true;\n var oldOnMessage = global.onmessage;\n global.onmessage = function() {\n postMessageIsAsynchronous = false;\n };\n global.postMessage(\"\", \"*\");\n global.onmessage = oldOnMessage;\n return postMessageIsAsynchronous;\n }\n }\n\n function installPostMessageImplementation() {\n // Installs an event handler on `global` for the `message` event: see\n // * https://developer.mozilla.org/en/DOM/window.postMessage\n // * http://www.whatwg.org/specs/web-apps/current-work/multipage/comms.html#crossDocumentMessages\n\n var messagePrefix = \"setImmediate$\" + Math.random() + \"$\";\n var onGlobalMessage = function(event) {\n if (event.source === global &&\n typeof event.data === \"string\" &&\n event.data.indexOf(messagePrefix) === 0) {\n runIfPresent(+event.data.slice(messagePrefix.length));\n }\n };\n\n if (global.addEventListener) {\n global.addEventListener(\"message\", onGlobalMessage, false);\n } else {\n global.attachEvent(\"onmessage\", onGlobalMessage);\n }\n\n registerImmediate = function(handle) {\n global.postMessage(messagePrefix + handle, \"*\");\n };\n }\n\n function installMessageChannelImplementation() {\n var channel = new MessageChannel();\n channel.port1.onmessage = function(event) {\n var handle = event.data;\n runIfPresent(handle);\n };\n\n registerImmediate = function(handle) {\n channel.port2.postMessage(handle);\n };\n }\n\n function installReadyStateChangeImplementation() {\n var html = doc.documentElement;\n registerImmediate = function(handle) {\n // Create a <script> element; its readystatechange event will be fired asynchronously once it is inserted\n // into the document. Do so, thus queuing up the task. Remember to clean up once it's been called.\n var script = doc.createElement(\"script\");\n script.onreadystatechange = function () {\n runIfPresent(handle);\n script.onreadystatechange = null;\n html.removeChild(script);\n script = null;\n };\n html.appendChild(script);\n };\n }\n\n function installSetTimeoutImplementation() {\n registerImmediate = function(handle) {\n setTimeout(runIfPresent, 0, handle);\n };\n }\n\n // If supported, we should attach to the prototype of global, since that is where setTimeout et al. live.\n var attachTo = Object.getPrototypeOf && Object.getPrototypeOf(global);\n attachTo = attachTo && attachTo.setTimeout ? attachTo : global;\n\n // Don't get fooled by e.g. browserify environments.\n if ({}.toString.call(global.process) === \"[object process]\") {\n // For Node.js before 0.9\n installNextTickImplementation();\n\n } else if (canUsePostMessage()) {\n // For non-IE10 modern browsers\n installPostMessageImplementation();\n\n } else if (global.MessageChannel) {\n // For web workers, where supported\n installMessageChannelImplementation();\n\n } else if (doc && \"onreadystatechange\" in doc.createElement(\"script\")) {\n // For IE 6–8\n installReadyStateChangeImplementation();\n\n } else {\n // For older browsers\n installSetTimeoutImplementation();\n }\n\n attachTo.setImmediate = setImmediate;\n attachTo.clearImmediate = clearImmediate;\n}(typeof self === \"undefined\" ? typeof global === \"undefined\" ? this : global : self));\n","// @flow\n\n/*::\ntype Options = {\n max?: number,\n min?: number,\n historyTimeConstant?: number,\n autostart?: boolean,\n ignoreSameProgress?: boolean,\n}\n*/\n\nfunction makeLowPassFilter(RC/*: number*/) {\n return function (previousOutput, input, dt) {\n const alpha = dt / (dt + RC);\n return previousOutput + alpha * (input - previousOutput);\n }\n}\n\nfunction def/*:: <T>*/(x/*: ?T*/, d/*: T*/)/*: T*/ {\n return (x === undefined || x === null) ? d : x;\n}\n\nfunction makeEta(options/*::?: Options */) {\n options = options || {};\n var max = def(options.max, 1);\n var min = def(options.min, 0);\n var autostart = def(options.autostart, true);\n var ignoreSameProgress = def(options.ignoreSameProgress, false);\n\n var rate/*: number | null */ = null;\n var lastTimestamp/*: number | null */ = null;\n var lastProgress/*: number | null */ = null;\n\n var filter = makeLowPassFilter(def(options.historyTimeConstant, 2.5));\n\n function start() {\n report(min);\n }\n\n function reset() {\n rate = null;\n lastTimestamp = null;\n lastProgress = null;\n if (autostart) {\n start();\n }\n }\n\n function report(progress /*: number */, timestamp/*::?: number */) {\n if (typeof timestamp !== 'number') {\n timestamp = Date.now();\n }\n\n if (lastTimestamp === timestamp) { return; }\n if (ignoreSameProgress && lastProgress === progress) { return; }\n\n if (lastTimestamp === null || lastProgress === null) {\n lastProgress = progress;\n lastTimestamp = timestamp;\n return;\n }\n\n var deltaProgress = progress - lastProgress;\n var deltaTimestamp = 0.001 * (timestamp - lastTimestamp);\n var currentRate = deltaProgress / deltaTimestamp;\n\n rate = rate === null\n ? currentRate\n : filter(rate, currentRate, deltaTimestamp);\n lastProgress = progress;\n lastTimestamp = timestamp;\n }\n\n function estimate(timestamp/*::?: number*/) {\n if (lastProgress === null) { return Infinity; }\n if (lastProgress >= max) { return 0; }\n if (rate === null) { return Infinity; }\n\n var estimatedTime = (max - lastProgress) / rate;\n if (typeof timestamp === 'number' && typeof lastTimestamp === 'number') {\n estimatedTime -= (timestamp - lastTimestamp) * 0.001;\n }\n return Math.max(0, estimatedTime);\n }\n\n function getRate() {\n return rate === null ? 0 : rate;\n }\n\n return {\n start: start,\n reset: reset,\n report: report,\n estimate: estimate,\n rate: getRate,\n }\n}\n\nmodule.exports = makeEta;\n","var scope = (typeof global !== \"undefined\" && global) ||\n (typeof self !== \"undefined\" && self) ||\n window;\nvar apply = Function.prototype.apply;\n\n// DOM APIs, for completeness\n\nexports.setTimeout = function() {\n return new Timeout(apply.call(setTimeout, scope, arguments), clearTimeout);\n};\nexports.setInterval = function() {\n return new Timeout(apply.call(setInterval, scope, arguments), clearInterval);\n};\nexports.clearTimeout =\nexports.clearInterval = function(timeout) {\n if (timeout) {\n timeout.close();\n }\n};\n\nfunction Timeout(id, clearFn) {\n this._id = id;\n this._clearFn = clearFn;\n}\nTimeout.prototype.unref = Timeout.prototype.ref = function() {};\nTimeout.prototype.close = function() {\n this._clearFn.call(scope, this._id);\n};\n\n// Does not start the time, just sets up the members needed.\nexports.enroll = function(item, msecs) {\n clearTimeout(item._idleTimeoutId);\n item._idleTimeout = msecs;\n};\n\nexports.unenroll = function(item) {\n clearTimeout(item._idleTimeoutId);\n item._idleTimeout = -1;\n};\n\nexports._unrefActive = exports.active = function(item) {\n clearTimeout(item._idleTimeoutId);\n\n var msecs = item._idleTimeout;\n if (msecs >= 0) {\n item._idleTimeoutId = setTimeout(function onTimeout() {\n if (item._onTimeout)\n item._onTimeout();\n }, msecs);\n }\n};\n\n// setimmediate attaches itself to the global object\nrequire(\"setimmediate\");\n// On some exotic environments, it's not clear which object `setimmediate` was\n// able to install onto. Search each possibility in the same order as the\n// `setimmediate` library.\nexports.setImmediate = (typeof self !== \"undefined\" && self.setImmediate) ||\n (typeof global !== \"undefined\" && global.setImmediate) ||\n (this && this.setImmediate);\nexports.clearImmediate = (typeof self !== \"undefined\" && self.clearImmediate) ||\n (typeof global !== \"undefined\" && global.clearImmediate) ||\n (this && this.clearImmediate);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n \"use strict\";\n exports.stripBOM = function(str) {\n if (str[0] === '\\uFEFF') {\n return str.substring(1);\n } else {\n return str;\n }\n };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n \"use strict\";\n var builder, defaults, escapeCDATA, requiresCDATA, wrapCDATA,\n hasProp = {}.hasOwnProperty;\n\n builder = require('xmlbuilder');\n\n defaults = require('./defaults').defaults;\n\n requiresCDATA = function(entry) {\n return typeof entry === \"string\" && (entry.indexOf('&') >= 0 || entry.indexOf('>') >= 0 || entry.indexOf('<') >= 0);\n };\n\n wrapCDATA = function(entry) {\n return \"<![CDATA[\" + (escapeCDATA(entry)) + \"]]>\";\n };\n\n escapeCDATA = function(entry) {\n return entry.replace(']]>', ']]]]><![CDATA[>');\n };\n\n exports.Builder = (function() {\n function Builder(opts) {\n var key, ref, value;\n this.options = {};\n ref = defaults[\"0.2\"];\n for (key in ref) {\n if (!hasProp.call(ref, key)) continue;\n value = ref[key];\n this.options[key] = value;\n }\n for (key in opts) {\n if (!hasProp.call(opts, key)) continue;\n value = opts[key];\n this.options[key] = value;\n }\n }\n\n Builder.prototype.buildObject = function(rootObj) {\n var attrkey, charkey, render, rootElement, rootName;\n attrkey = this.options.attrkey;\n charkey = this.options.charkey;\n if ((Object.keys(rootObj).length === 1) && (this.options.rootName === defaults['0.2'].rootName)) {\n rootName = Object.keys(rootObj)[0];\n rootObj = rootObj[rootName];\n } else {\n rootName = this.options.rootName;\n }\n render = (function(_this) {\n return function(element, obj) {\n var attr, child, entry, index, key, value;\n if (typeof obj !== 'object') {\n if (_this.options.cdata && requiresCDATA(obj)) {\n element.raw(wrapCDATA(obj));\n } else {\n element.txt(obj);\n }\n } else if (Array.isArray(obj)) {\n for (index in obj) {\n if (!hasProp.call(obj, index)) continue;\n child = obj[index];\n for (key in child) {\n entry = child[key];\n element = render(element.ele(key), entry).up();\n }\n }\n } else {\n for (key in obj) {\n if (!hasProp.call(obj, key)) continue;\n child = obj[key];\n if (key === attrkey) {\n if (typeof child === \"object\") {\n for (attr in child) {\n value = child[attr];\n element = element.att(attr, value);\n }\n }\n } else if (key === charkey) {\n if (_this.options.cdata && requiresCDATA(child)) {\n element = element.raw(wrapCDATA(child));\n } else {\n element = element.txt(child);\n }\n } else if (Array.isArray(child)) {\n for (index in child) {\n if (!hasProp.call(child, index)) continue;\n entry = child[index];\n if (typeof entry === 'string') {\n if (_this.options.cdata && requiresCDATA(entry)) {\n element = element.ele(key).raw(wrapCDATA(entry)).up();\n } else {\n element = element.ele(key, entry).up();\n }\n } else {\n element = render(element.ele(key), entry).up();\n }\n }\n } else if (typeof child === \"object\") {\n element = render(element.ele(key), child).up();\n } else {\n if (typeof child === 'string' && _this.options.cdata && requiresCDATA(child)) {\n element = element.ele(key).raw(wrapCDATA(child)).up();\n } else {\n if (child == null) {\n child = '';\n }\n element = element.ele(key, child.toString()).up();\n }\n }\n }\n }\n return element;\n };\n })(this);\n rootElement = builder.create(rootName, this.options.xmldec, this.options.doctype, {\n headless: this.options.headless,\n allowSurrogateChars: this.options.allowSurrogateChars\n });\n return render(rootElement, rootObj).end(this.options.renderOpts);\n };\n\n return Builder;\n\n })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n exports.defaults = {\n \"0.1\": {\n explicitCharkey: false,\n trim: true,\n normalize: true,\n normalizeTags: false,\n attrkey: \"@\",\n charkey: \"#\",\n explicitArray: false,\n ignoreAttrs: false,\n mergeAttrs: false,\n explicitRoot: false,\n validator: null,\n xmlns: false,\n explicitChildren: false,\n childkey: '@@',\n charsAsChildren: false,\n includeWhiteChars: false,\n async: false,\n strict: true,\n attrNameProcessors: null,\n attrValueProcessors: null,\n tagNameProcessors: null,\n valueProcessors: null,\n emptyTag: ''\n },\n \"0.2\": {\n explicitCharkey: false,\n trim: false,\n normalize: false,\n normalizeTags: false,\n attrkey: \"$\",\n charkey: \"_\",\n explicitArray: true,\n ignoreAttrs: false,\n mergeAttrs: false,\n explicitRoot: true,\n validator: null,\n xmlns: false,\n explicitChildren: false,\n preserveChildrenOrder: false,\n childkey: '$$',\n charsAsChildren: false,\n includeWhiteChars: false,\n async: false,\n strict: true,\n attrNameProcessors: null,\n attrValueProcessors: null,\n tagNameProcessors: null,\n valueProcessors: null,\n rootName: 'root',\n xmldec: {\n 'version': '1.0',\n 'encoding': 'UTF-8',\n 'standalone': true\n },\n doctype: null,\n renderOpts: {\n 'pretty': true,\n 'indent': ' ',\n 'newline': '\\n'\n },\n headless: false,\n chunkSize: 10000,\n emptyTag: '',\n cdata: false\n }\n };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n \"use strict\";\n var bom, defaults, defineProperty, events, isEmpty, processItem, processors, sax, setImmediate,\n bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; },\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n sax = require('sax');\n\n events = require('events');\n\n bom = require('./bom');\n\n processors = require('./processors');\n\n setImmediate = require('timers').setImmediate;\n\n defaults = require('./defaults').defaults;\n\n isEmpty = function(thing) {\n return typeof thing === \"object\" && (thing != null) && Object.keys(thing).length === 0;\n };\n\n processItem = function(processors, item, key) {\n var i, len, process;\n for (i = 0, len = processors.length; i < len; i++) {\n process = processors[i];\n item = process(item, key);\n }\n return item;\n };\n\n defineProperty = function(obj, key, value) {\n var descriptor;\n descriptor = Object.create(null);\n descriptor.value = value;\n descriptor.writable = true;\n descriptor.enumerable = true;\n descriptor.configurable = true;\n return Object.defineProperty(obj, key, descriptor);\n };\n\n exports.Parser = (function(superClass) {\n extend(Parser, superClass);\n\n function Parser(opts) {\n this.parseStringPromise = bind(this.parseStringPromise, this);\n this.parseString = bind(this.parseString, this);\n this.reset = bind(this.reset, this);\n this.assignOrPush = bind(this.assignOrPush, this);\n this.processAsync = bind(this.processAsync, this);\n var key, ref, value;\n if (!(this instanceof exports.Parser)) {\n return new exports.Parser(opts);\n }\n this.options = {};\n ref = defaults[\"0.2\"];\n for (key in ref) {\n if (!hasProp.call(ref, key)) continue;\n value = ref[key];\n this.options[key] = value;\n }\n for (key in opts) {\n if (!hasProp.call(opts, key)) continue;\n value = opts[key];\n this.options[key] = value;\n }\n if (this.options.xmlns) {\n this.options.xmlnskey = this.options.attrkey + \"ns\";\n }\n if (this.options.normalizeTags) {\n if (!this.options.tagNameProcessors) {\n this.options.tagNameProcessors = [];\n }\n this.options.tagNameProcessors.unshift(processors.normalize);\n }\n this.reset();\n }\n\n Parser.prototype.processAsync = function() {\n var chunk, err;\n try {\n if (this.remaining.length <= this.options.chunkSize) {\n chunk = this.remaining;\n this.remaining = '';\n this.saxParser = this.saxParser.write(chunk);\n return this.saxParser.close();\n } else {\n chunk = this.remaining.substr(0, this.options.chunkSize);\n this.remaining = this.remaining.substr(this.options.chunkSize, this.remaining.length);\n this.saxParser = this.saxParser.write(chunk);\n return setImmediate(this.processAsync);\n }\n } catch (error1) {\n err = error1;\n if (!this.saxParser.errThrown) {\n this.saxParser.errThrown = true;\n return this.emit(err);\n }\n }\n };\n\n Parser.prototype.assignOrPush = function(obj, key, newValue) {\n if (!(key in obj)) {\n if (!this.options.explicitArray) {\n return defineProperty(obj, key, newValue);\n } else {\n return defineProperty(obj, key, [newValue]);\n }\n } else {\n if (!(obj[key] instanceof Array)) {\n defineProperty(obj, key, [obj[key]]);\n }\n return obj[key].push(newValue);\n }\n };\n\n Parser.prototype.reset = function() {\n var attrkey, charkey, ontext, stack;\n this.removeAllListeners();\n this.saxParser = sax.parser(this.options.strict, {\n trim: false,\n normalize: false,\n xmlns: this.options.xmlns\n });\n this.saxParser.errThrown = false;\n this.saxParser.onerror = (function(_this) {\n return function(error) {\n _this.saxParser.resume();\n if (!_this.saxParser.errThrown) {\n _this.saxParser.errThrown = true;\n return _this.emit(\"error\", error);\n }\n };\n })(this);\n this.saxParser.onend = (function(_this) {\n return function() {\n if (!_this.saxParser.ended) {\n _this.saxParser.ended = true;\n return _this.emit(\"end\", _this.resultObject);\n }\n };\n })(this);\n this.saxParser.ended = false;\n this.EXPLICIT_CHARKEY = this.options.explicitCharkey;\n this.resultObject = null;\n stack = [];\n attrkey = this.options.attrkey;\n charkey = this.options.charkey;\n this.saxParser.onopentag = (function(_this) {\n return function(node) {\n var key, newValue, obj, processedKey, ref;\n obj = {};\n obj[charkey] = \"\";\n if (!_this.options.ignoreAttrs) {\n ref = node.attributes;\n for (key in ref) {\n if (!hasProp.call(ref, key)) continue;\n if (!(attrkey in obj) && !_this.options.mergeAttrs) {\n obj[attrkey] = {};\n }\n newValue = _this.options.attrValueProcessors ? processItem(_this.options.attrValueProcessors, node.attributes[key], key) : node.attributes[key];\n processedKey = _this.options.attrNameProcessors ? processItem(_this.options.attrNameProcessors, key) : key;\n if (_this.options.mergeAttrs) {\n _this.assignOrPush(obj, processedKey, newValue);\n } else {\n defineProperty(obj[attrkey], processedKey, newValue);\n }\n }\n }\n obj[\"#name\"] = _this.options.tagNameProcessors ? processItem(_this.options.tagNameProcessors, node.name) : node.name;\n if (_this.options.xmlns) {\n obj[_this.options.xmlnskey] = {\n uri: node.uri,\n local: node.local\n };\n }\n return stack.push(obj);\n };\n })(this);\n this.saxParser.onclosetag = (function(_this) {\n return function() {\n var cdata, emptyStr, key, node, nodeName, obj, objClone, old, s, xpath;\n obj = stack.pop();\n nodeName = obj[\"#name\"];\n if (!_this.options.explicitChildren || !_this.options.preserveChildrenOrder) {\n delete obj[\"#name\"];\n }\n if (obj.cdata === true) {\n cdata = obj.cdata;\n delete obj.cdata;\n }\n s = stack[stack.length - 1];\n if (obj[charkey].match(/^\\s*$/) && !cdata) {\n emptyStr = obj[charkey];\n delete obj[charkey];\n } else {\n if (_this.options.trim) {\n obj[charkey] = obj[charkey].trim();\n }\n if (_this.options.normalize) {\n obj[charkey] = obj[charkey].replace(/\\s{2,}/g, \" \").trim();\n }\n obj[charkey] = _this.options.valueProcessors ? processItem(_this.options.valueProcessors, obj[charkey], nodeName) : obj[charkey];\n if (Object.keys(obj).length === 1 && charkey in obj && !_this.EXPLICIT_CHARKEY) {\n obj = obj[charkey];\n }\n }\n if (isEmpty(obj)) {\n if (typeof _this.options.emptyTag === 'function') {\n obj = _this.options.emptyTag();\n } else {\n obj = _this.options.emptyTag !== '' ? _this.options.emptyTag : emptyStr;\n }\n }\n if (_this.options.validator != null) {\n xpath = \"/\" + ((function() {\n var i, len, results;\n results = [];\n for (i = 0, len = stack.length; i < len; i++) {\n node = stack[i];\n results.push(node[\"#name\"]);\n }\n return results;\n })()).concat(nodeName).join(\"/\");\n (function() {\n var err;\n try {\n return obj = _this.options.validator(xpath, s && s[nodeName], obj);\n } catch (error1) {\n err = error1;\n return _this.emit(\"error\", err);\n }\n })();\n }\n if (_this.options.explicitChildren && !_this.options.mergeAttrs && typeof obj === 'object') {\n if (!_this.options.preserveChildrenOrder) {\n node = {};\n if (_this.options.attrkey in obj) {\n node[_this.options.attrkey] = obj[_this.options.attrkey];\n delete obj[_this.options.attrkey];\n }\n if (!_this.options.charsAsChildren && _this.options.charkey in obj) {\n node[_this.options.charkey] = obj[_this.options.charkey];\n delete obj[_this.options.charkey];\n }\n if (Object.getOwnPropertyNames(obj).length > 0) {\n node[_this.options.childkey] = obj;\n }\n obj = node;\n } else if (s) {\n s[_this.options.childkey] = s[_this.options.childkey] || [];\n objClone = {};\n for (key in obj) {\n if (!hasProp.call(obj, key)) continue;\n defineProperty(objClone, key, obj[key]);\n }\n s[_this.options.childkey].push(objClone);\n delete obj[\"#name\"];\n if (Object.keys(obj).length === 1 && charkey in obj && !_this.EXPLICIT_CHARKEY) {\n obj = obj[charkey];\n }\n }\n }\n if (stack.length > 0) {\n return _this.assignOrPush(s, nodeName, obj);\n } else {\n if (_this.options.explicitRoot) {\n old = obj;\n obj = {};\n defineProperty(obj, nodeName, old);\n }\n _this.resultObject = obj;\n _this.saxParser.ended = true;\n return _this.emit(\"end\", _this.resultObject);\n }\n };\n })(this);\n ontext = (function(_this) {\n return function(text) {\n var charChild, s;\n s = stack[stack.length - 1];\n if (s) {\n s[charkey] += text;\n if (_this.options.explicitChildren && _this.options.preserveChildrenOrder && _this.options.charsAsChildren && (_this.options.includeWhiteChars || text.replace(/\\\\n/g, '').trim() !== '')) {\n s[_this.options.childkey] = s[_this.options.childkey] || [];\n charChild = {\n '#name': '__text__'\n };\n charChild[charkey] = text;\n if (_this.options.normalize) {\n charChild[charkey] = charChild[charkey].replace(/\\s{2,}/g, \" \").trim();\n }\n s[_this.options.childkey].push(charChild);\n }\n return s;\n }\n };\n })(this);\n this.saxParser.ontext = ontext;\n return this.saxParser.oncdata = (function(_this) {\n return function(text) {\n var s;\n s = ontext(text);\n if (s) {\n return s.cdata = true;\n }\n };\n })(this);\n };\n\n Parser.prototype.parseString = function(str, cb) {\n var err;\n if ((cb != null) && typeof cb === \"function\") {\n this.on(\"end\", function(result) {\n this.reset();\n return cb(null, result);\n });\n this.on(\"error\", function(err) {\n this.reset();\n return cb(err);\n });\n }\n try {\n str = str.toString();\n if (str.trim() === '') {\n this.emit(\"end\", null);\n return true;\n }\n str = bom.stripBOM(str);\n if (this.options.async) {\n this.remaining = str;\n setImmediate(this.processAsync);\n return this.saxParser;\n }\n return this.saxParser.write(str).close();\n } catch (error1) {\n err = error1;\n if (!(this.saxParser.errThrown || this.saxParser.ended)) {\n this.emit('error', err);\n return this.saxParser.errThrown = true;\n } else if (this.saxParser.ended) {\n throw err;\n }\n }\n };\n\n Parser.prototype.parseStringPromise = function(str) {\n return new Promise((function(_this) {\n return function(resolve, reject) {\n return _this.parseString(str, function(err, value) {\n if (err) {\n return reject(err);\n } else {\n return resolve(value);\n }\n });\n };\n })(this));\n };\n\n return Parser;\n\n })(events);\n\n exports.parseString = function(str, a, b) {\n var cb, options, parser;\n if (b != null) {\n if (typeof b === 'function') {\n cb = b;\n }\n if (typeof a === 'object') {\n options = a;\n }\n } else {\n if (typeof a === 'function') {\n cb = a;\n }\n options = {};\n }\n parser = new exports.Parser(options);\n return parser.parseString(str, cb);\n };\n\n exports.parseStringPromise = function(str, a) {\n var options, parser;\n if (typeof a === 'object') {\n options = a;\n }\n parser = new exports.Parser(options);\n return parser.parseStringPromise(str);\n };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n \"use strict\";\n var prefixMatch;\n\n prefixMatch = new RegExp(/(?!xmlns)^.*:/);\n\n exports.normalize = function(str) {\n return str.toLowerCase();\n };\n\n exports.firstCharLowerCase = function(str) {\n return str.charAt(0).toLowerCase() + str.slice(1);\n };\n\n exports.stripPrefix = function(str) {\n return str.replace(prefixMatch, '');\n };\n\n exports.parseNumbers = function(str) {\n if (!isNaN(str)) {\n str = str % 1 === 0 ? parseInt(str, 10) : parseFloat(str);\n }\n return str;\n };\n\n exports.parseBooleans = function(str) {\n if (/^(?:true|false)$/i.test(str)) {\n str = str.toLowerCase() === 'true';\n }\n return str;\n };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n \"use strict\";\n var builder, defaults, parser, processors,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n defaults = require('./defaults');\n\n builder = require('./builder');\n\n parser = require('./parser');\n\n processors = require('./processors');\n\n exports.defaults = defaults.defaults;\n\n exports.processors = processors;\n\n exports.ValidationError = (function(superClass) {\n extend(ValidationError, superClass);\n\n function ValidationError(message) {\n this.message = message;\n }\n\n return ValidationError;\n\n })(Error);\n\n exports.Builder = builder.Builder;\n\n exports.Parser = parser.Parser;\n\n exports.parseString = parser.parseString;\n\n exports.parseStringPromise = parser.parseStringPromise;\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n module.exports = {\n Disconnected: 1,\n Preceding: 2,\n Following: 4,\n Contains: 8,\n ContainedBy: 16,\n ImplementationSpecific: 32\n };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n module.exports = {\n Element: 1,\n Attribute: 2,\n Text: 3,\n CData: 4,\n EntityReference: 5,\n EntityDeclaration: 6,\n ProcessingInstruction: 7,\n Comment: 8,\n Document: 9,\n DocType: 10,\n DocumentFragment: 11,\n NotationDeclaration: 12,\n Declaration: 201,\n Raw: 202,\n AttributeDeclaration: 203,\n ElementDeclaration: 204,\n Dummy: 205\n };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var assign, getValue, isArray, isEmpty, isFunction, isObject, isPlainObject,\n slice = [].slice,\n hasProp = {}.hasOwnProperty;\n\n assign = function() {\n var i, key, len, source, sources, target;\n target = arguments[0], sources = 2 <= arguments.length ? slice.call(arguments, 1) : [];\n if (isFunction(Object.assign)) {\n Object.assign.apply(null, arguments);\n } else {\n for (i = 0, len = sources.length; i < len; i++) {\n source = sources[i];\n if (source != null) {\n for (key in source) {\n if (!hasProp.call(source, key)) continue;\n target[key] = source[key];\n }\n }\n }\n }\n return target;\n };\n\n isFunction = function(val) {\n return !!val && Object.prototype.toString.call(val) === '[object Function]';\n };\n\n isObject = function(val) {\n var ref;\n return !!val && ((ref = typeof val) === 'function' || ref === 'object');\n };\n\n isArray = function(val) {\n if (isFunction(Array.isArray)) {\n return Array.isArray(val);\n } else {\n return Object.prototype.toString.call(val) === '[object Array]';\n }\n };\n\n isEmpty = function(val) {\n var key;\n if (isArray(val)) {\n return !val.length;\n } else {\n for (key in val) {\n if (!hasProp.call(val, key)) continue;\n return false;\n }\n return true;\n }\n };\n\n isPlainObject = function(val) {\n var ctor, proto;\n return isObject(val) && (proto = Object.getPrototypeOf(val)) && (ctor = proto.constructor) && (typeof ctor === 'function') && (ctor instanceof ctor) && (Function.prototype.toString.call(ctor) === Function.prototype.toString.call(Object));\n };\n\n getValue = function(obj) {\n if (isFunction(obj.valueOf)) {\n return obj.valueOf();\n } else {\n return obj;\n }\n };\n\n module.exports.assign = assign;\n\n module.exports.isFunction = isFunction;\n\n module.exports.isObject = isObject;\n\n module.exports.isArray = isArray;\n\n module.exports.isEmpty = isEmpty;\n\n module.exports.isPlainObject = isPlainObject;\n\n module.exports.getValue = getValue;\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n module.exports = {\n None: 0,\n OpenTag: 1,\n InsideTag: 2,\n CloseTag: 3\n };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLAttribute, XMLNode;\n\n NodeType = require('./NodeType');\n\n XMLNode = require('./XMLNode');\n\n module.exports = XMLAttribute = (function() {\n function XMLAttribute(parent, name, value) {\n this.parent = parent;\n if (this.parent) {\n this.options = this.parent.options;\n this.stringify = this.parent.stringify;\n }\n if (name == null) {\n throw new Error(\"Missing attribute name. \" + this.debugInfo(name));\n }\n this.name = this.stringify.name(name);\n this.value = this.stringify.attValue(value);\n this.type = NodeType.Attribute;\n this.isId = false;\n this.schemaTypeInfo = null;\n }\n\n Object.defineProperty(XMLAttribute.prototype, 'nodeType', {\n get: function() {\n return this.type;\n }\n });\n\n Object.defineProperty(XMLAttribute.prototype, 'ownerElement', {\n get: function() {\n return this.parent;\n }\n });\n\n Object.defineProperty(XMLAttribute.prototype, 'textContent', {\n get: function() {\n return this.value;\n },\n set: function(value) {\n return this.value = value || '';\n }\n });\n\n Object.defineProperty(XMLAttribute.prototype, 'namespaceURI', {\n get: function() {\n return '';\n }\n });\n\n Object.defineProperty(XMLAttribute.prototype, 'prefix', {\n get: function() {\n return '';\n }\n });\n\n Object.defineProperty(XMLAttribute.prototype, 'localName', {\n get: function() {\n return this.name;\n }\n });\n\n Object.defineProperty(XMLAttribute.prototype, 'specified', {\n get: function() {\n return true;\n }\n });\n\n XMLAttribute.prototype.clone = function() {\n return Object.create(this);\n };\n\n XMLAttribute.prototype.toString = function(options) {\n return this.options.writer.attribute(this, this.options.writer.filterOptions(options));\n };\n\n XMLAttribute.prototype.debugInfo = function(name) {\n name = name || this.name;\n if (name == null) {\n return \"parent: <\" + this.parent.name + \">\";\n } else {\n return \"attribute: {\" + name + \"}, parent: <\" + this.parent.name + \">\";\n }\n };\n\n XMLAttribute.prototype.isEqualNode = function(node) {\n if (node.namespaceURI !== this.namespaceURI) {\n return false;\n }\n if (node.prefix !== this.prefix) {\n return false;\n }\n if (node.localName !== this.localName) {\n return false;\n }\n if (node.value !== this.value) {\n return false;\n }\n return true;\n };\n\n return XMLAttribute;\n\n })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLCData, XMLCharacterData,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n NodeType = require('./NodeType');\n\n XMLCharacterData = require('./XMLCharacterData');\n\n module.exports = XMLCData = (function(superClass) {\n extend(XMLCData, superClass);\n\n function XMLCData(parent, text) {\n XMLCData.__super__.constructor.call(this, parent);\n if (text == null) {\n throw new Error(\"Missing CDATA text. \" + this.debugInfo());\n }\n this.name = \"#cdata-section\";\n this.type = NodeType.CData;\n this.value = this.stringify.cdata(text);\n }\n\n XMLCData.prototype.clone = function() {\n return Object.create(this);\n };\n\n XMLCData.prototype.toString = function(options) {\n return this.options.writer.cdata(this, this.options.writer.filterOptions(options));\n };\n\n return XMLCData;\n\n })(XMLCharacterData);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var XMLCharacterData, XMLNode,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n XMLNode = require('./XMLNode');\n\n module.exports = XMLCharacterData = (function(superClass) {\n extend(XMLCharacterData, superClass);\n\n function XMLCharacterData(parent) {\n XMLCharacterData.__super__.constructor.call(this, parent);\n this.value = '';\n }\n\n Object.defineProperty(XMLCharacterData.prototype, 'data', {\n get: function() {\n return this.value;\n },\n set: function(value) {\n return this.value = value || '';\n }\n });\n\n Object.defineProperty(XMLCharacterData.prototype, 'length', {\n get: function() {\n return this.value.length;\n }\n });\n\n Object.defineProperty(XMLCharacterData.prototype, 'textContent', {\n get: function() {\n return this.value;\n },\n set: function(value) {\n return this.value = value || '';\n }\n });\n\n XMLCharacterData.prototype.clone = function() {\n return Object.create(this);\n };\n\n XMLCharacterData.prototype.substringData = function(offset, count) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLCharacterData.prototype.appendData = function(arg) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLCharacterData.prototype.insertData = function(offset, arg) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLCharacterData.prototype.deleteData = function(offset, count) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLCharacterData.prototype.replaceData = function(offset, count, arg) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLCharacterData.prototype.isEqualNode = function(node) {\n if (!XMLCharacterData.__super__.isEqualNode.apply(this, arguments).isEqualNode(node)) {\n return false;\n }\n if (node.data !== this.data) {\n return false;\n }\n return true;\n };\n\n return XMLCharacterData;\n\n })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLCharacterData, XMLComment,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n NodeType = require('./NodeType');\n\n XMLCharacterData = require('./XMLCharacterData');\n\n module.exports = XMLComment = (function(superClass) {\n extend(XMLComment, superClass);\n\n function XMLComment(parent, text) {\n XMLComment.__super__.constructor.call(this, parent);\n if (text == null) {\n throw new Error(\"Missing comment text. \" + this.debugInfo());\n }\n this.name = \"#comment\";\n this.type = NodeType.Comment;\n this.value = this.stringify.comment(text);\n }\n\n XMLComment.prototype.clone = function() {\n return Object.create(this);\n };\n\n XMLComment.prototype.toString = function(options) {\n return this.options.writer.comment(this, this.options.writer.filterOptions(options));\n };\n\n return XMLComment;\n\n })(XMLCharacterData);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var XMLDOMConfiguration, XMLDOMErrorHandler, XMLDOMStringList;\n\n XMLDOMErrorHandler = require('./XMLDOMErrorHandler');\n\n XMLDOMStringList = require('./XMLDOMStringList');\n\n module.exports = XMLDOMConfiguration = (function() {\n function XMLDOMConfiguration() {\n var clonedSelf;\n this.defaultParams = {\n \"canonical-form\": false,\n \"cdata-sections\": false,\n \"comments\": false,\n \"datatype-normalization\": false,\n \"element-content-whitespace\": true,\n \"entities\": true,\n \"error-handler\": new XMLDOMErrorHandler(),\n \"infoset\": true,\n \"validate-if-schema\": false,\n \"namespaces\": true,\n \"namespace-declarations\": true,\n \"normalize-characters\": false,\n \"schema-location\": '',\n \"schema-type\": '',\n \"split-cdata-sections\": true,\n \"validate\": false,\n \"well-formed\": true\n };\n this.params = clonedSelf = Object.create(this.defaultParams);\n }\n\n Object.defineProperty(XMLDOMConfiguration.prototype, 'parameterNames', {\n get: function() {\n return new XMLDOMStringList(Object.keys(this.defaultParams));\n }\n });\n\n XMLDOMConfiguration.prototype.getParameter = function(name) {\n if (this.params.hasOwnProperty(name)) {\n return this.params[name];\n } else {\n return null;\n }\n };\n\n XMLDOMConfiguration.prototype.canSetParameter = function(name, value) {\n return true;\n };\n\n XMLDOMConfiguration.prototype.setParameter = function(name, value) {\n if (value != null) {\n return this.params[name] = value;\n } else {\n return delete this.params[name];\n }\n };\n\n return XMLDOMConfiguration;\n\n })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var XMLDOMErrorHandler;\n\n module.exports = XMLDOMErrorHandler = (function() {\n function XMLDOMErrorHandler() {}\n\n XMLDOMErrorHandler.prototype.handleError = function(error) {\n throw new Error(error);\n };\n\n return XMLDOMErrorHandler;\n\n })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var XMLDOMImplementation;\n\n module.exports = XMLDOMImplementation = (function() {\n function XMLDOMImplementation() {}\n\n XMLDOMImplementation.prototype.hasFeature = function(feature, version) {\n return true;\n };\n\n XMLDOMImplementation.prototype.createDocumentType = function(qualifiedName, publicId, systemId) {\n throw new Error(\"This DOM method is not implemented.\");\n };\n\n XMLDOMImplementation.prototype.createDocument = function(namespaceURI, qualifiedName, doctype) {\n throw new Error(\"This DOM method is not implemented.\");\n };\n\n XMLDOMImplementation.prototype.createHTMLDocument = function(title) {\n throw new Error(\"This DOM method is not implemented.\");\n };\n\n XMLDOMImplementation.prototype.getFeature = function(feature, version) {\n throw new Error(\"This DOM method is not implemented.\");\n };\n\n return XMLDOMImplementation;\n\n })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var XMLDOMStringList;\n\n module.exports = XMLDOMStringList = (function() {\n function XMLDOMStringList(arr) {\n this.arr = arr || [];\n }\n\n Object.defineProperty(XMLDOMStringList.prototype, 'length', {\n get: function() {\n return this.arr.length;\n }\n });\n\n XMLDOMStringList.prototype.item = function(index) {\n return this.arr[index] || null;\n };\n\n XMLDOMStringList.prototype.contains = function(str) {\n return this.arr.indexOf(str) !== -1;\n };\n\n return XMLDOMStringList;\n\n })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLDTDAttList, XMLNode,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n XMLNode = require('./XMLNode');\n\n NodeType = require('./NodeType');\n\n module.exports = XMLDTDAttList = (function(superClass) {\n extend(XMLDTDAttList, superClass);\n\n function XMLDTDAttList(parent, elementName, attributeName, attributeType, defaultValueType, defaultValue) {\n XMLDTDAttList.__super__.constructor.call(this, parent);\n if (elementName == null) {\n throw new Error(\"Missing DTD element name. \" + this.debugInfo());\n }\n if (attributeName == null) {\n throw new Error(\"Missing DTD attribute name. \" + this.debugInfo(elementName));\n }\n if (!attributeType) {\n throw new Error(\"Missing DTD attribute type. \" + this.debugInfo(elementName));\n }\n if (!defaultValueType) {\n throw new Error(\"Missing DTD attribute default. \" + this.debugInfo(elementName));\n }\n if (defaultValueType.indexOf('#') !== 0) {\n defaultValueType = '#' + defaultValueType;\n }\n if (!defaultValueType.match(/^(#REQUIRED|#IMPLIED|#FIXED|#DEFAULT)$/)) {\n throw new Error(\"Invalid default value type; expected: #REQUIRED, #IMPLIED, #FIXED or #DEFAULT. \" + this.debugInfo(elementName));\n }\n if (defaultValue && !defaultValueType.match(/^(#FIXED|#DEFAULT)$/)) {\n throw new Error(\"Default value only applies to #FIXED or #DEFAULT. \" + this.debugInfo(elementName));\n }\n this.elementName = this.stringify.name(elementName);\n this.type = NodeType.AttributeDeclaration;\n this.attributeName = this.stringify.name(attributeName);\n this.attributeType = this.stringify.dtdAttType(attributeType);\n if (defaultValue) {\n this.defaultValue = this.stringify.dtdAttDefault(defaultValue);\n }\n this.defaultValueType = defaultValueType;\n }\n\n XMLDTDAttList.prototype.toString = function(options) {\n return this.options.writer.dtdAttList(this, this.options.writer.filterOptions(options));\n };\n\n return XMLDTDAttList;\n\n })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLDTDElement, XMLNode,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n XMLNode = require('./XMLNode');\n\n NodeType = require('./NodeType');\n\n module.exports = XMLDTDElement = (function(superClass) {\n extend(XMLDTDElement, superClass);\n\n function XMLDTDElement(parent, name, value) {\n XMLDTDElement.__super__.constructor.call(this, parent);\n if (name == null) {\n throw new Error(\"Missing DTD element name. \" + this.debugInfo());\n }\n if (!value) {\n value = '(#PCDATA)';\n }\n if (Array.isArray(value)) {\n value = '(' + value.join(',') + ')';\n }\n this.name = this.stringify.name(name);\n this.type = NodeType.ElementDeclaration;\n this.value = this.stringify.dtdElementValue(value);\n }\n\n XMLDTDElement.prototype.toString = function(options) {\n return this.options.writer.dtdElement(this, this.options.writer.filterOptions(options));\n };\n\n return XMLDTDElement;\n\n })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLDTDEntity, XMLNode, isObject,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n isObject = require('./Utility').isObject;\n\n XMLNode = require('./XMLNode');\n\n NodeType = require('./NodeType');\n\n module.exports = XMLDTDEntity = (function(superClass) {\n extend(XMLDTDEntity, superClass);\n\n function XMLDTDEntity(parent, pe, name, value) {\n XMLDTDEntity.__super__.constructor.call(this, parent);\n if (name == null) {\n throw new Error(\"Missing DTD entity name. \" + this.debugInfo(name));\n }\n if (value == null) {\n throw new Error(\"Missing DTD entity value. \" + this.debugInfo(name));\n }\n this.pe = !!pe;\n this.name = this.stringify.name(name);\n this.type = NodeType.EntityDeclaration;\n if (!isObject(value)) {\n this.value = this.stringify.dtdEntityValue(value);\n this.internal = true;\n } else {\n if (!value.pubID && !value.sysID) {\n throw new Error(\"Public and/or system identifiers are required for an external entity. \" + this.debugInfo(name));\n }\n if (value.pubID && !value.sysID) {\n throw new Error(\"System identifier is required for a public external entity. \" + this.debugInfo(name));\n }\n this.internal = false;\n if (value.pubID != null) {\n this.pubID = this.stringify.dtdPubID(value.pubID);\n }\n if (value.sysID != null) {\n this.sysID = this.stringify.dtdSysID(value.sysID);\n }\n if (value.nData != null) {\n this.nData = this.stringify.dtdNData(value.nData);\n }\n if (this.pe && this.nData) {\n throw new Error(\"Notation declaration is not allowed in a parameter entity. \" + this.debugInfo(name));\n }\n }\n }\n\n Object.defineProperty(XMLDTDEntity.prototype, 'publicId', {\n get: function() {\n return this.pubID;\n }\n });\n\n Object.defineProperty(XMLDTDEntity.prototype, 'systemId', {\n get: function() {\n return this.sysID;\n }\n });\n\n Object.defineProperty(XMLDTDEntity.prototype, 'notationName', {\n get: function() {\n return this.nData || null;\n }\n });\n\n Object.defineProperty(XMLDTDEntity.prototype, 'inputEncoding', {\n get: function() {\n return null;\n }\n });\n\n Object.defineProperty(XMLDTDEntity.prototype, 'xmlEncoding', {\n get: function() {\n return null;\n }\n });\n\n Object.defineProperty(XMLDTDEntity.prototype, 'xmlVersion', {\n get: function() {\n return null;\n }\n });\n\n XMLDTDEntity.prototype.toString = function(options) {\n return this.options.writer.dtdEntity(this, this.options.writer.filterOptions(options));\n };\n\n return XMLDTDEntity;\n\n })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLDTDNotation, XMLNode,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n XMLNode = require('./XMLNode');\n\n NodeType = require('./NodeType');\n\n module.exports = XMLDTDNotation = (function(superClass) {\n extend(XMLDTDNotation, superClass);\n\n function XMLDTDNotation(parent, name, value) {\n XMLDTDNotation.__super__.constructor.call(this, parent);\n if (name == null) {\n throw new Error(\"Missing DTD notation name. \" + this.debugInfo(name));\n }\n if (!value.pubID && !value.sysID) {\n throw new Error(\"Public or system identifiers are required for an external entity. \" + this.debugInfo(name));\n }\n this.name = this.stringify.name(name);\n this.type = NodeType.NotationDeclaration;\n if (value.pubID != null) {\n this.pubID = this.stringify.dtdPubID(value.pubID);\n }\n if (value.sysID != null) {\n this.sysID = this.stringify.dtdSysID(value.sysID);\n }\n }\n\n Object.defineProperty(XMLDTDNotation.prototype, 'publicId', {\n get: function() {\n return this.pubID;\n }\n });\n\n Object.defineProperty(XMLDTDNotation.prototype, 'systemId', {\n get: function() {\n return this.sysID;\n }\n });\n\n XMLDTDNotation.prototype.toString = function(options) {\n return this.options.writer.dtdNotation(this, this.options.writer.filterOptions(options));\n };\n\n return XMLDTDNotation;\n\n })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLDeclaration, XMLNode, isObject,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n isObject = require('./Utility').isObject;\n\n XMLNode = require('./XMLNode');\n\n NodeType = require('./NodeType');\n\n module.exports = XMLDeclaration = (function(superClass) {\n extend(XMLDeclaration, superClass);\n\n function XMLDeclaration(parent, version, encoding, standalone) {\n var ref;\n XMLDeclaration.__super__.constructor.call(this, parent);\n if (isObject(version)) {\n ref = version, version = ref.version, encoding = ref.encoding, standalone = ref.standalone;\n }\n if (!version) {\n version = '1.0';\n }\n this.type = NodeType.Declaration;\n this.version = this.stringify.xmlVersion(version);\n if (encoding != null) {\n this.encoding = this.stringify.xmlEncoding(encoding);\n }\n if (standalone != null) {\n this.standalone = this.stringify.xmlStandalone(standalone);\n }\n }\n\n XMLDeclaration.prototype.toString = function(options) {\n return this.options.writer.declaration(this, this.options.writer.filterOptions(options));\n };\n\n return XMLDeclaration;\n\n })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLDTDAttList, XMLDTDElement, XMLDTDEntity, XMLDTDNotation, XMLDocType, XMLNamedNodeMap, XMLNode, isObject,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n isObject = require('./Utility').isObject;\n\n XMLNode = require('./XMLNode');\n\n NodeType = require('./NodeType');\n\n XMLDTDAttList = require('./XMLDTDAttList');\n\n XMLDTDEntity = require('./XMLDTDEntity');\n\n XMLDTDElement = require('./XMLDTDElement');\n\n XMLDTDNotation = require('./XMLDTDNotation');\n\n XMLNamedNodeMap = require('./XMLNamedNodeMap');\n\n module.exports = XMLDocType = (function(superClass) {\n extend(XMLDocType, superClass);\n\n function XMLDocType(parent, pubID, sysID) {\n var child, i, len, ref, ref1, ref2;\n XMLDocType.__super__.constructor.call(this, parent);\n this.type = NodeType.DocType;\n if (parent.children) {\n ref = parent.children;\n for (i = 0, len = ref.length; i < len; i++) {\n child = ref[i];\n if (child.type === NodeType.Element) {\n this.name = child.name;\n break;\n }\n }\n }\n this.documentObject = parent;\n if (isObject(pubID)) {\n ref1 = pubID, pubID = ref1.pubID, sysID = ref1.sysID;\n }\n if (sysID == null) {\n ref2 = [pubID, sysID], sysID = ref2[0], pubID = ref2[1];\n }\n if (pubID != null) {\n this.pubID = this.stringify.dtdPubID(pubID);\n }\n if (sysID != null) {\n this.sysID = this.stringify.dtdSysID(sysID);\n }\n }\n\n Object.defineProperty(XMLDocType.prototype, 'entities', {\n get: function() {\n var child, i, len, nodes, ref;\n nodes = {};\n ref = this.children;\n for (i = 0, len = ref.length; i < len; i++) {\n child = ref[i];\n if ((child.type === NodeType.EntityDeclaration) && !child.pe) {\n nodes[child.name] = child;\n }\n }\n return new XMLNamedNodeMap(nodes);\n }\n });\n\n Object.defineProperty(XMLDocType.prototype, 'notations', {\n get: function() {\n var child, i, len, nodes, ref;\n nodes = {};\n ref = this.children;\n for (i = 0, len = ref.length; i < len; i++) {\n child = ref[i];\n if (child.type === NodeType.NotationDeclaration) {\n nodes[child.name] = child;\n }\n }\n return new XMLNamedNodeMap(nodes);\n }\n });\n\n Object.defineProperty(XMLDocType.prototype, 'publicId', {\n get: function() {\n return this.pubID;\n }\n });\n\n Object.defineProperty(XMLDocType.prototype, 'systemId', {\n get: function() {\n return this.sysID;\n }\n });\n\n Object.defineProperty(XMLDocType.prototype, 'internalSubset', {\n get: function() {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n }\n });\n\n XMLDocType.prototype.element = function(name, value) {\n var child;\n child = new XMLDTDElement(this, name, value);\n this.children.push(child);\n return this;\n };\n\n XMLDocType.prototype.attList = function(elementName, attributeName, attributeType, defaultValueType, defaultValue) {\n var child;\n child = new XMLDTDAttList(this, elementName, attributeName, attributeType, defaultValueType, defaultValue);\n this.children.push(child);\n return this;\n };\n\n XMLDocType.prototype.entity = function(name, value) {\n var child;\n child = new XMLDTDEntity(this, false, name, value);\n this.children.push(child);\n return this;\n };\n\n XMLDocType.prototype.pEntity = function(name, value) {\n var child;\n child = new XMLDTDEntity(this, true, name, value);\n this.children.push(child);\n return this;\n };\n\n XMLDocType.prototype.notation = function(name, value) {\n var child;\n child = new XMLDTDNotation(this, name, value);\n this.children.push(child);\n return this;\n };\n\n XMLDocType.prototype.toString = function(options) {\n return this.options.writer.docType(this, this.options.writer.filterOptions(options));\n };\n\n XMLDocType.prototype.ele = function(name, value) {\n return this.element(name, value);\n };\n\n XMLDocType.prototype.att = function(elementName, attributeName, attributeType, defaultValueType, defaultValue) {\n return this.attList(elementName, attributeName, attributeType, defaultValueType, defaultValue);\n };\n\n XMLDocType.prototype.ent = function(name, value) {\n return this.entity(name, value);\n };\n\n XMLDocType.prototype.pent = function(name, value) {\n return this.pEntity(name, value);\n };\n\n XMLDocType.prototype.not = function(name, value) {\n return this.notation(name, value);\n };\n\n XMLDocType.prototype.up = function() {\n return this.root() || this.documentObject;\n };\n\n XMLDocType.prototype.isEqualNode = function(node) {\n if (!XMLDocType.__super__.isEqualNode.apply(this, arguments).isEqualNode(node)) {\n return false;\n }\n if (node.name !== this.name) {\n return false;\n }\n if (node.publicId !== this.publicId) {\n return false;\n }\n if (node.systemId !== this.systemId) {\n return false;\n }\n return true;\n };\n\n return XMLDocType;\n\n })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLDOMConfiguration, XMLDOMImplementation, XMLDocument, XMLNode, XMLStringWriter, XMLStringifier, isPlainObject,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n isPlainObject = require('./Utility').isPlainObject;\n\n XMLDOMImplementation = require('./XMLDOMImplementation');\n\n XMLDOMConfiguration = require('./XMLDOMConfiguration');\n\n XMLNode = require('./XMLNode');\n\n NodeType = require('./NodeType');\n\n XMLStringifier = require('./XMLStringifier');\n\n XMLStringWriter = require('./XMLStringWriter');\n\n module.exports = XMLDocument = (function(superClass) {\n extend(XMLDocument, superClass);\n\n function XMLDocument(options) {\n XMLDocument.__super__.constructor.call(this, null);\n this.name = \"#document\";\n this.type = NodeType.Document;\n this.documentURI = null;\n this.domConfig = new XMLDOMConfiguration();\n options || (options = {});\n if (!options.writer) {\n options.writer = new XMLStringWriter();\n }\n this.options = options;\n this.stringify = new XMLStringifier(options);\n }\n\n Object.defineProperty(XMLDocument.prototype, 'implementation', {\n value: new XMLDOMImplementation()\n });\n\n Object.defineProperty(XMLDocument.prototype, 'doctype', {\n get: function() {\n var child, i, len, ref;\n ref = this.children;\n for (i = 0, len = ref.length; i < len; i++) {\n child = ref[i];\n if (child.type === NodeType.DocType) {\n return child;\n }\n }\n return null;\n }\n });\n\n Object.defineProperty(XMLDocument.prototype, 'documentElement', {\n get: function() {\n return this.rootObject || null;\n }\n });\n\n Object.defineProperty(XMLDocument.prototype, 'inputEncoding', {\n get: function() {\n return null;\n }\n });\n\n Object.defineProperty(XMLDocument.prototype, 'strictErrorChecking', {\n get: function() {\n return false;\n }\n });\n\n Object.defineProperty(XMLDocument.prototype, 'xmlEncoding', {\n get: function() {\n if (this.children.length !== 0 && this.children[0].type === NodeType.Declaration) {\n return this.children[0].encoding;\n } else {\n return null;\n }\n }\n });\n\n Object.defineProperty(XMLDocument.prototype, 'xmlStandalone', {\n get: function() {\n if (this.children.length !== 0 && this.children[0].type === NodeType.Declaration) {\n return this.children[0].standalone === 'yes';\n } else {\n return false;\n }\n }\n });\n\n Object.defineProperty(XMLDocument.prototype, 'xmlVersion', {\n get: function() {\n if (this.children.length !== 0 && this.children[0].type === NodeType.Declaration) {\n return this.children[0].version;\n } else {\n return \"1.0\";\n }\n }\n });\n\n Object.defineProperty(XMLDocument.prototype, 'URL', {\n get: function() {\n return this.documentURI;\n }\n });\n\n Object.defineProperty(XMLDocument.prototype, 'origin', {\n get: function() {\n return null;\n }\n });\n\n Object.defineProperty(XMLDocument.prototype, 'compatMode', {\n get: function() {\n return null;\n }\n });\n\n Object.defineProperty(XMLDocument.prototype, 'characterSet', {\n get: function() {\n return null;\n }\n });\n\n Object.defineProperty(XMLDocument.prototype, 'contentType', {\n get: function() {\n return null;\n }\n });\n\n XMLDocument.prototype.end = function(writer) {\n var writerOptions;\n writerOptions = {};\n if (!writer) {\n writer = this.options.writer;\n } else if (isPlainObject(writer)) {\n writerOptions = writer;\n writer = this.options.writer;\n }\n return writer.document(this, writer.filterOptions(writerOptions));\n };\n\n XMLDocument.prototype.toString = function(options) {\n return this.options.writer.document(this, this.options.writer.filterOptions(options));\n };\n\n XMLDocument.prototype.createElement = function(tagName) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.createDocumentFragment = function() {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.createTextNode = function(data) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.createComment = function(data) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.createCDATASection = function(data) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.createProcessingInstruction = function(target, data) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.createAttribute = function(name) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.createEntityReference = function(name) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.getElementsByTagName = function(tagname) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.importNode = function(importedNode, deep) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.createElementNS = function(namespaceURI, qualifiedName) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.createAttributeNS = function(namespaceURI, qualifiedName) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.getElementsByTagNameNS = function(namespaceURI, localName) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.getElementById = function(elementId) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.adoptNode = function(source) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.normalizeDocument = function() {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.renameNode = function(node, namespaceURI, qualifiedName) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.getElementsByClassName = function(classNames) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.createEvent = function(eventInterface) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.createRange = function() {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.createNodeIterator = function(root, whatToShow, filter) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.createTreeWalker = function(root, whatToShow, filter) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n return XMLDocument;\n\n })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, WriterState, XMLAttribute, XMLCData, XMLComment, XMLDTDAttList, XMLDTDElement, XMLDTDEntity, XMLDTDNotation, XMLDeclaration, XMLDocType, XMLDocument, XMLDocumentCB, XMLElement, XMLProcessingInstruction, XMLRaw, XMLStringWriter, XMLStringifier, XMLText, getValue, isFunction, isObject, isPlainObject, ref,\n hasProp = {}.hasOwnProperty;\n\n ref = require('./Utility'), isObject = ref.isObject, isFunction = ref.isFunction, isPlainObject = ref.isPlainObject, getValue = ref.getValue;\n\n NodeType = require('./NodeType');\n\n XMLDocument = require('./XMLDocument');\n\n XMLElement = require('./XMLElement');\n\n XMLCData = require('./XMLCData');\n\n XMLComment = require('./XMLComment');\n\n XMLRaw = require('./XMLRaw');\n\n XMLText = require('./XMLText');\n\n XMLProcessingInstruction = require('./XMLProcessingInstruction');\n\n XMLDeclaration = require('./XMLDeclaration');\n\n XMLDocType = require('./XMLDocType');\n\n XMLDTDAttList = require('./XMLDTDAttList');\n\n XMLDTDEntity = require('./XMLDTDEntity');\n\n XMLDTDElement = require('./XMLDTDElement');\n\n XMLDTDNotation = require('./XMLDTDNotation');\n\n XMLAttribute = require('./XMLAttribute');\n\n XMLStringifier = require('./XMLStringifier');\n\n XMLStringWriter = require('./XMLStringWriter');\n\n WriterState = require('./WriterState');\n\n module.exports = XMLDocumentCB = (function() {\n function XMLDocumentCB(options, onData, onEnd) {\n var writerOptions;\n this.name = \"?xml\";\n this.type = NodeType.Document;\n options || (options = {});\n writerOptions = {};\n if (!options.writer) {\n options.writer = new XMLStringWriter();\n } else if (isPlainObject(options.writer)) {\n writerOptions = options.writer;\n options.writer = new XMLStringWriter();\n }\n this.options = options;\n this.writer = options.writer;\n this.writerOptions = this.writer.filterOptions(writerOptions);\n this.stringify = new XMLStringifier(options);\n this.onDataCallback = onData || function() {};\n this.onEndCallback = onEnd || function() {};\n this.currentNode = null;\n this.currentLevel = -1;\n this.openTags = {};\n this.documentStarted = false;\n this.documentCompleted = false;\n this.root = null;\n }\n\n XMLDocumentCB.prototype.createChildNode = function(node) {\n var att, attName, attributes, child, i, len, ref1, ref2;\n switch (node.type) {\n case NodeType.CData:\n this.cdata(node.value);\n break;\n case NodeType.Comment:\n this.comment(node.value);\n break;\n case NodeType.Element:\n attributes = {};\n ref1 = node.attribs;\n for (attName in ref1) {\n if (!hasProp.call(ref1, attName)) continue;\n att = ref1[attName];\n attributes[attName] = att.value;\n }\n this.node(node.name, attributes);\n break;\n case NodeType.Dummy:\n this.dummy();\n break;\n case NodeType.Raw:\n this.raw(node.value);\n break;\n case NodeType.Text:\n this.text(node.value);\n break;\n case NodeType.ProcessingInstruction:\n this.instruction(node.target, node.value);\n break;\n default:\n throw new Error(\"This XML node type is not supported in a JS object: \" + node.constructor.name);\n }\n ref2 = node.children;\n for (i = 0, len = ref2.length; i < len; i++) {\n child = ref2[i];\n this.createChildNode(child);\n if (child.type === NodeType.Element) {\n this.up();\n }\n }\n return this;\n };\n\n XMLDocumentCB.prototype.dummy = function() {\n return this;\n };\n\n XMLDocumentCB.prototype.node = function(name, attributes, text) {\n var ref1;\n if (name == null) {\n throw new Error(\"Missing node name.\");\n }\n if (this.root && this.currentLevel === -1) {\n throw new Error(\"Document can only have one root node. \" + this.debugInfo(name));\n }\n this.openCurrent();\n name = getValue(name);\n if (attributes == null) {\n attributes = {};\n }\n attributes = getValue(attributes);\n if (!isObject(attributes)) {\n ref1 = [attributes, text], text = ref1[0], attributes = ref1[1];\n }\n this.currentNode = new XMLElement(this, name, attributes);\n this.currentNode.children = false;\n this.currentLevel++;\n this.openTags[this.currentLevel] = this.currentNode;\n if (text != null) {\n this.text(text);\n }\n return this;\n };\n\n XMLDocumentCB.prototype.element = function(name, attributes, text) {\n var child, i, len, oldValidationFlag, ref1, root;\n if (this.currentNode && this.currentNode.type === NodeType.DocType) {\n this.dtdElement.apply(this, arguments);\n } else {\n if (Array.isArray(name) || isObject(name) || isFunction(name)) {\n oldValidationFlag = this.options.noValidation;\n this.options.noValidation = true;\n root = new XMLDocument(this.options).element('TEMP_ROOT');\n root.element(name);\n this.options.noValidation = oldValidationFlag;\n ref1 = root.children;\n for (i = 0, len = ref1.length; i < len; i++) {\n child = ref1[i];\n this.createChildNode(child);\n if (child.type === NodeType.Element) {\n this.up();\n }\n }\n } else {\n this.node(name, attributes, text);\n }\n }\n return this;\n };\n\n XMLDocumentCB.prototype.attribute = function(name, value) {\n var attName, attValue;\n if (!this.currentNode || this.currentNode.children) {\n throw new Error(\"att() can only be used immediately after an ele() call in callback mode. \" + this.debugInfo(name));\n }\n if (name != null) {\n name = getValue(name);\n }\n if (isObject(name)) {\n for (attName in name) {\n if (!hasProp.call(name, attName)) continue;\n attValue = name[attName];\n this.attribute(attName, attValue);\n }\n } else {\n if (isFunction(value)) {\n value = value.apply();\n }\n if (this.options.keepNullAttributes && (value == null)) {\n this.currentNode.attribs[name] = new XMLAttribute(this, name, \"\");\n } else if (value != null) {\n this.currentNode.attribs[name] = new XMLAttribute(this, name, value);\n }\n }\n return this;\n };\n\n XMLDocumentCB.prototype.text = function(value) {\n var node;\n this.openCurrent();\n node = new XMLText(this, value);\n this.onData(this.writer.text(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n return this;\n };\n\n XMLDocumentCB.prototype.cdata = function(value) {\n var node;\n this.openCurrent();\n node = new XMLCData(this, value);\n this.onData(this.writer.cdata(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n return this;\n };\n\n XMLDocumentCB.prototype.comment = function(value) {\n var node;\n this.openCurrent();\n node = new XMLComment(this, value);\n this.onData(this.writer.comment(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n return this;\n };\n\n XMLDocumentCB.prototype.raw = function(value) {\n var node;\n this.openCurrent();\n node = new XMLRaw(this, value);\n this.onData(this.writer.raw(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n return this;\n };\n\n XMLDocumentCB.prototype.instruction = function(target, value) {\n var i, insTarget, insValue, len, node;\n this.openCurrent();\n if (target != null) {\n target = getValue(target);\n }\n if (value != null) {\n value = getValue(value);\n }\n if (Array.isArray(target)) {\n for (i = 0, len = target.length; i < len; i++) {\n insTarget = target[i];\n this.instruction(insTarget);\n }\n } else if (isObject(target)) {\n for (insTarget in target) {\n if (!hasProp.call(target, insTarget)) continue;\n insValue = target[insTarget];\n this.instruction(insTarget, insValue);\n }\n } else {\n if (isFunction(value)) {\n value = value.apply();\n }\n node = new XMLProcessingInstruction(this, target, value);\n this.onData(this.writer.processingInstruction(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n }\n return this;\n };\n\n XMLDocumentCB.prototype.declaration = function(version, encoding, standalone) {\n var node;\n this.openCurrent();\n if (this.documentStarted) {\n throw new Error(\"declaration() must be the first node.\");\n }\n node = new XMLDeclaration(this, version, encoding, standalone);\n this.onData(this.writer.declaration(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n return this;\n };\n\n XMLDocumentCB.prototype.doctype = function(root, pubID, sysID) {\n this.openCurrent();\n if (root == null) {\n throw new Error(\"Missing root node name.\");\n }\n if (this.root) {\n throw new Error(\"dtd() must come before the root node.\");\n }\n this.currentNode = new XMLDocType(this, pubID, sysID);\n this.currentNode.rootNodeName = root;\n this.currentNode.children = false;\n this.currentLevel++;\n this.openTags[this.currentLevel] = this.currentNode;\n return this;\n };\n\n XMLDocumentCB.prototype.dtdElement = function(name, value) {\n var node;\n this.openCurrent();\n node = new XMLDTDElement(this, name, value);\n this.onData(this.writer.dtdElement(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n return this;\n };\n\n XMLDocumentCB.prototype.attList = function(elementName, attributeName, attributeType, defaultValueType, defaultValue) {\n var node;\n this.openCurrent();\n node = new XMLDTDAttList(this, elementName, attributeName, attributeType, defaultValueType, defaultValue);\n this.onData(this.writer.dtdAttList(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n return this;\n };\n\n XMLDocumentCB.prototype.entity = function(name, value) {\n var node;\n this.openCurrent();\n node = new XMLDTDEntity(this, false, name, value);\n this.onData(this.writer.dtdEntity(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n return this;\n };\n\n XMLDocumentCB.prototype.pEntity = function(name, value) {\n var node;\n this.openCurrent();\n node = new XMLDTDEntity(this, true, name, value);\n this.onData(this.writer.dtdEntity(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n return this;\n };\n\n XMLDocumentCB.prototype.notation = function(name, value) {\n var node;\n this.openCurrent();\n node = new XMLDTDNotation(this, name, value);\n this.onData(this.writer.dtdNotation(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n return this;\n };\n\n XMLDocumentCB.prototype.up = function() {\n if (this.currentLevel < 0) {\n throw new Error(\"The document node has no parent.\");\n }\n if (this.currentNode) {\n if (this.currentNode.children) {\n this.closeNode(this.currentNode);\n } else {\n this.openNode(this.currentNode);\n }\n this.currentNode = null;\n } else {\n this.closeNode(this.openTags[this.currentLevel]);\n }\n delete this.openTags[this.currentLevel];\n this.currentLevel--;\n return this;\n };\n\n XMLDocumentCB.prototype.end = function() {\n while (this.currentLevel >= 0) {\n this.up();\n }\n return this.onEnd();\n };\n\n XMLDocumentCB.prototype.openCurrent = function() {\n if (this.currentNode) {\n this.currentNode.children = true;\n return this.openNode(this.currentNode);\n }\n };\n\n XMLDocumentCB.prototype.openNode = function(node) {\n var att, chunk, name, ref1;\n if (!node.isOpen) {\n if (!this.root && this.currentLevel === 0 && node.type === NodeType.Element) {\n this.root = node;\n }\n chunk = '';\n if (node.type === NodeType.Element) {\n this.writerOptions.state = WriterState.OpenTag;\n chunk = this.writer.indent(node, this.writerOptions, this.currentLevel) + '<' + node.name;\n ref1 = node.attribs;\n for (name in ref1) {\n if (!hasProp.call(ref1, name)) continue;\n att = ref1[name];\n chunk += this.writer.attribute(att, this.writerOptions, this.currentLevel);\n }\n chunk += (node.children ? '>' : '/>') + this.writer.endline(node, this.writerOptions, this.currentLevel);\n this.writerOptions.state = WriterState.InsideTag;\n } else {\n this.writerOptions.state = WriterState.OpenTag;\n chunk = this.writer.indent(node, this.writerOptions, this.currentLevel) + '<!DOCTYPE ' + node.rootNodeName;\n if (node.pubID && node.sysID) {\n chunk += ' PUBLIC \"' + node.pubID + '\" \"' + node.sysID + '\"';\n } else if (node.sysID) {\n chunk += ' SYSTEM \"' + node.sysID + '\"';\n }\n if (node.children) {\n chunk += ' [';\n this.writerOptions.state = WriterState.InsideTag;\n } else {\n this.writerOptions.state = WriterState.CloseTag;\n chunk += '>';\n }\n chunk += this.writer.endline(node, this.writerOptions, this.currentLevel);\n }\n this.onData(chunk, this.currentLevel);\n return node.isOpen = true;\n }\n };\n\n XMLDocumentCB.prototype.closeNode = function(node) {\n var chunk;\n if (!node.isClosed) {\n chunk = '';\n this.writerOptions.state = WriterState.CloseTag;\n if (node.type === NodeType.Element) {\n chunk = this.writer.indent(node, this.writerOptions, this.currentLevel) + '</' + node.name + '>' + this.writer.endline(node, this.writerOptions, this.currentLevel);\n } else {\n chunk = this.writer.indent(node, this.writerOptions, this.currentLevel) + ']>' + this.writer.endline(node, this.writerOptions, this.currentLevel);\n }\n this.writerOptions.state = WriterState.None;\n this.onData(chunk, this.currentLevel);\n return node.isClosed = true;\n }\n };\n\n XMLDocumentCB.prototype.onData = function(chunk, level) {\n this.documentStarted = true;\n return this.onDataCallback(chunk, level + 1);\n };\n\n XMLDocumentCB.prototype.onEnd = function() {\n this.documentCompleted = true;\n return this.onEndCallback();\n };\n\n XMLDocumentCB.prototype.debugInfo = function(name) {\n if (name == null) {\n return \"\";\n } else {\n return \"node: <\" + name + \">\";\n }\n };\n\n XMLDocumentCB.prototype.ele = function() {\n return this.element.apply(this, arguments);\n };\n\n XMLDocumentCB.prototype.nod = function(name, attributes, text) {\n return this.node(name, attributes, text);\n };\n\n XMLDocumentCB.prototype.txt = function(value) {\n return this.text(value);\n };\n\n XMLDocumentCB.prototype.dat = function(value) {\n return this.cdata(value);\n };\n\n XMLDocumentCB.prototype.com = function(value) {\n return this.comment(value);\n };\n\n XMLDocumentCB.prototype.ins = function(target, value) {\n return this.instruction(target, value);\n };\n\n XMLDocumentCB.prototype.dec = function(version, encoding, standalone) {\n return this.declaration(version, encoding, standalone);\n };\n\n XMLDocumentCB.prototype.dtd = function(root, pubID, sysID) {\n return this.doctype(root, pubID, sysID);\n };\n\n XMLDocumentCB.prototype.e = function(name, attributes, text) {\n return this.element(name, attributes, text);\n };\n\n XMLDocumentCB.prototype.n = function(name, attributes, text) {\n return this.node(name, attributes, text);\n };\n\n XMLDocumentCB.prototype.t = function(value) {\n return this.text(value);\n };\n\n XMLDocumentCB.prototype.d = function(value) {\n return this.cdata(value);\n };\n\n XMLDocumentCB.prototype.c = function(value) {\n return this.comment(value);\n };\n\n XMLDocumentCB.prototype.r = function(value) {\n return this.raw(value);\n };\n\n XMLDocumentCB.prototype.i = function(target, value) {\n return this.instruction(target, value);\n };\n\n XMLDocumentCB.prototype.att = function() {\n if (this.currentNode && this.currentNode.type === NodeType.DocType) {\n return this.attList.apply(this, arguments);\n } else {\n return this.attribute.apply(this, arguments);\n }\n };\n\n XMLDocumentCB.prototype.a = function() {\n if (this.currentNode && this.currentNode.type === NodeType.DocType) {\n return this.attList.apply(this, arguments);\n } else {\n return this.attribute.apply(this, arguments);\n }\n };\n\n XMLDocumentCB.prototype.ent = function(name, value) {\n return this.entity(name, value);\n };\n\n XMLDocumentCB.prototype.pent = function(name, value) {\n return this.pEntity(name, value);\n };\n\n XMLDocumentCB.prototype.not = function(name, value) {\n return this.notation(name, value);\n };\n\n return XMLDocumentCB;\n\n })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLDummy, XMLNode,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n XMLNode = require('./XMLNode');\n\n NodeType = require('./NodeType');\n\n module.exports = XMLDummy = (function(superClass) {\n extend(XMLDummy, superClass);\n\n function XMLDummy(parent) {\n XMLDummy.__super__.constructor.call(this, parent);\n this.type = NodeType.Dummy;\n }\n\n XMLDummy.prototype.clone = function() {\n return Object.create(this);\n };\n\n XMLDummy.prototype.toString = function(options) {\n return '';\n };\n\n return XMLDummy;\n\n })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLAttribute, XMLElement, XMLNamedNodeMap, XMLNode, getValue, isFunction, isObject, ref,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n ref = require('./Utility'), isObject = ref.isObject, isFunction = ref.isFunction, getValue = ref.getValue;\n\n XMLNode = require('./XMLNode');\n\n NodeType = require('./NodeType');\n\n XMLAttribute = require('./XMLAttribute');\n\n XMLNamedNodeMap = require('./XMLNamedNodeMap');\n\n module.exports = XMLElement = (function(superClass) {\n extend(XMLElement, superClass);\n\n function XMLElement(parent, name, attributes) {\n var child, j, len, ref1;\n XMLElement.__super__.constructor.call(this, parent);\n if (name == null) {\n throw new Error(\"Missing element name. \" + this.debugInfo());\n }\n this.name = this.stringify.name(name);\n this.type = NodeType.Element;\n this.attribs = {};\n this.schemaTypeInfo = null;\n if (attributes != null) {\n this.attribute(attributes);\n }\n if (parent.type === NodeType.Document) {\n this.isRoot = true;\n this.documentObject = parent;\n parent.rootObject = this;\n if (parent.children) {\n ref1 = parent.children;\n for (j = 0, len = ref1.length; j < len; j++) {\n child = ref1[j];\n if (child.type === NodeType.DocType) {\n child.name = this.name;\n break;\n }\n }\n }\n }\n }\n\n Object.defineProperty(XMLElement.prototype, 'tagName', {\n get: function() {\n return this.name;\n }\n });\n\n Object.defineProperty(XMLElement.prototype, 'namespaceURI', {\n get: function() {\n return '';\n }\n });\n\n Object.defineProperty(XMLElement.prototype, 'prefix', {\n get: function() {\n return '';\n }\n });\n\n Object.defineProperty(XMLElement.prototype, 'localName', {\n get: function() {\n return this.name;\n }\n });\n\n Object.defineProperty(XMLElement.prototype, 'id', {\n get: function() {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n }\n });\n\n Object.defineProperty(XMLElement.prototype, 'className', {\n get: function() {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n }\n });\n\n Object.defineProperty(XMLElement.prototype, 'classList', {\n get: function() {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n }\n });\n\n Object.defineProperty(XMLElement.prototype, 'attributes', {\n get: function() {\n if (!this.attributeMap || !this.attributeMap.nodes) {\n this.attributeMap = new XMLNamedNodeMap(this.attribs);\n }\n return this.attributeMap;\n }\n });\n\n XMLElement.prototype.clone = function() {\n var att, attName, clonedSelf, ref1;\n clonedSelf = Object.create(this);\n if (clonedSelf.isRoot) {\n clonedSelf.documentObject = null;\n }\n clonedSelf.attribs = {};\n ref1 = this.attribs;\n for (attName in ref1) {\n if (!hasProp.call(ref1, attName)) continue;\n att = ref1[attName];\n clonedSelf.attribs[attName] = att.clone();\n }\n clonedSelf.children = [];\n this.children.forEach(function(child) {\n var clonedChild;\n clonedChild = child.clone();\n clonedChild.parent = clonedSelf;\n return clonedSelf.children.push(clonedChild);\n });\n return clonedSelf;\n };\n\n XMLElement.prototype.attribute = function(name, value) {\n var attName, attValue;\n if (name != null) {\n name = getValue(name);\n }\n if (isObject(name)) {\n for (attName in name) {\n if (!hasProp.call(name, attName)) continue;\n attValue = name[attName];\n this.attribute(attName, attValue);\n }\n } else {\n if (isFunction(value)) {\n value = value.apply();\n }\n if (this.options.keepNullAttributes && (value == null)) {\n this.attribs[name] = new XMLAttribute(this, name, \"\");\n } else if (value != null) {\n this.attribs[name] = new XMLAttribute(this, name, value);\n }\n }\n return this;\n };\n\n XMLElement.prototype.removeAttribute = function(name) {\n var attName, j, len;\n if (name == null) {\n throw new Error(\"Missing attribute name. \" + this.debugInfo());\n }\n name = getValue(name);\n if (Array.isArray(name)) {\n for (j = 0, len = name.length; j < len; j++) {\n attName = name[j];\n delete this.attribs[attName];\n }\n } else {\n delete this.attribs[name];\n }\n return this;\n };\n\n XMLElement.prototype.toString = function(options) {\n return this.options.writer.element(this, this.options.writer.filterOptions(options));\n };\n\n XMLElement.prototype.att = function(name, value) {\n return this.attribute(name, value);\n };\n\n XMLElement.prototype.a = function(name, value) {\n return this.attribute(name, value);\n };\n\n XMLElement.prototype.getAttribute = function(name) {\n if (this.attribs.hasOwnProperty(name)) {\n return this.attribs[name].value;\n } else {\n return null;\n }\n };\n\n XMLElement.prototype.setAttribute = function(name, value) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.getAttributeNode = function(name) {\n if (this.attribs.hasOwnProperty(name)) {\n return this.attribs[name];\n } else {\n return null;\n }\n };\n\n XMLElement.prototype.setAttributeNode = function(newAttr) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.removeAttributeNode = function(oldAttr) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.getElementsByTagName = function(name) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.getAttributeNS = function(namespaceURI, localName) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.setAttributeNS = function(namespaceURI, qualifiedName, value) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.removeAttributeNS = function(namespaceURI, localName) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.getAttributeNodeNS = function(namespaceURI, localName) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.setAttributeNodeNS = function(newAttr) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.getElementsByTagNameNS = function(namespaceURI, localName) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.hasAttribute = function(name) {\n return this.attribs.hasOwnProperty(name);\n };\n\n XMLElement.prototype.hasAttributeNS = function(namespaceURI, localName) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.setIdAttribute = function(name, isId) {\n if (this.attribs.hasOwnProperty(name)) {\n return this.attribs[name].isId;\n } else {\n return isId;\n }\n };\n\n XMLElement.prototype.setIdAttributeNS = function(namespaceURI, localName, isId) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.setIdAttributeNode = function(idAttr, isId) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.getElementsByTagName = function(tagname) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.getElementsByTagNameNS = function(namespaceURI, localName) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.getElementsByClassName = function(classNames) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.isEqualNode = function(node) {\n var i, j, ref1;\n if (!XMLElement.__super__.isEqualNode.apply(this, arguments).isEqualNode(node)) {\n return false;\n }\n if (node.namespaceURI !== this.namespaceURI) {\n return false;\n }\n if (node.prefix !== this.prefix) {\n return false;\n }\n if (node.localName !== this.localName) {\n return false;\n }\n if (node.attribs.length !== this.attribs.length) {\n return false;\n }\n for (i = j = 0, ref1 = this.attribs.length - 1; 0 <= ref1 ? j <= ref1 : j >= ref1; i = 0 <= ref1 ? ++j : --j) {\n if (!this.attribs[i].isEqualNode(node.attribs[i])) {\n return false;\n }\n }\n return true;\n };\n\n return XMLElement;\n\n })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var XMLNamedNodeMap;\n\n module.exports = XMLNamedNodeMap = (function() {\n function XMLNamedNodeMap(nodes) {\n this.nodes = nodes;\n }\n\n Object.defineProperty(XMLNamedNodeMap.prototype, 'length', {\n get: function() {\n return Object.keys(this.nodes).length || 0;\n }\n });\n\n XMLNamedNodeMap.prototype.clone = function() {\n return this.nodes = null;\n };\n\n XMLNamedNodeMap.prototype.getNamedItem = function(name) {\n return this.nodes[name];\n };\n\n XMLNamedNodeMap.prototype.setNamedItem = function(node) {\n var oldNode;\n oldNode = this.nodes[node.nodeName];\n this.nodes[node.nodeName] = node;\n return oldNode || null;\n };\n\n XMLNamedNodeMap.prototype.removeNamedItem = function(name) {\n var oldNode;\n oldNode = this.nodes[name];\n delete this.nodes[name];\n return oldNode || null;\n };\n\n XMLNamedNodeMap.prototype.item = function(index) {\n return this.nodes[Object.keys(this.nodes)[index]] || null;\n };\n\n XMLNamedNodeMap.prototype.getNamedItemNS = function(namespaceURI, localName) {\n throw new Error(\"This DOM method is not implemented.\");\n };\n\n XMLNamedNodeMap.prototype.setNamedItemNS = function(node) {\n throw new Error(\"This DOM method is not implemented.\");\n };\n\n XMLNamedNodeMap.prototype.removeNamedItemNS = function(namespaceURI, localName) {\n throw new Error(\"This DOM method is not implemented.\");\n };\n\n return XMLNamedNodeMap;\n\n })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var DocumentPosition, NodeType, XMLCData, XMLComment, XMLDeclaration, XMLDocType, XMLDummy, XMLElement, XMLNamedNodeMap, XMLNode, XMLNodeList, XMLProcessingInstruction, XMLRaw, XMLText, getValue, isEmpty, isFunction, isObject, ref1,\n hasProp = {}.hasOwnProperty;\n\n ref1 = require('./Utility'), isObject = ref1.isObject, isFunction = ref1.isFunction, isEmpty = ref1.isEmpty, getValue = ref1.getValue;\n\n XMLElement = null;\n\n XMLCData = null;\n\n XMLComment = null;\n\n XMLDeclaration = null;\n\n XMLDocType = null;\n\n XMLRaw = null;\n\n XMLText = null;\n\n XMLProcessingInstruction = null;\n\n XMLDummy = null;\n\n NodeType = null;\n\n XMLNodeList = null;\n\n XMLNamedNodeMap = null;\n\n DocumentPosition = null;\n\n module.exports = XMLNode = (function() {\n function XMLNode(parent1) {\n this.parent = parent1;\n if (this.parent) {\n this.options = this.parent.options;\n this.stringify = this.parent.stringify;\n }\n this.value = null;\n this.children = [];\n this.baseURI = null;\n if (!XMLElement) {\n XMLElement = require('./XMLElement');\n XMLCData = require('./XMLCData');\n XMLComment = require('./XMLComment');\n XMLDeclaration = require('./XMLDeclaration');\n XMLDocType = require('./XMLDocType');\n XMLRaw = require('./XMLRaw');\n XMLText = require('./XMLText');\n XMLProcessingInstruction = require('./XMLProcessingInstruction');\n XMLDummy = require('./XMLDummy');\n NodeType = require('./NodeType');\n XMLNodeList = require('./XMLNodeList');\n XMLNamedNodeMap = require('./XMLNamedNodeMap');\n DocumentPosition = require('./DocumentPosition');\n }\n }\n\n Object.defineProperty(XMLNode.prototype, 'nodeName', {\n get: function() {\n return this.name;\n }\n });\n\n Object.defineProperty(XMLNode.prototype, 'nodeType', {\n get: function() {\n return this.type;\n }\n });\n\n Object.defineProperty(XMLNode.prototype, 'nodeValue', {\n get: function() {\n return this.value;\n }\n });\n\n Object.defineProperty(XMLNode.prototype, 'parentNode', {\n get: function() {\n return this.parent;\n }\n });\n\n Object.defineProperty(XMLNode.prototype, 'childNodes', {\n get: function() {\n if (!this.childNodeList || !this.childNodeList.nodes) {\n this.childNodeList = new XMLNodeList(this.children);\n }\n return this.childNodeList;\n }\n });\n\n Object.defineProperty(XMLNode.prototype, 'firstChild', {\n get: function() {\n return this.children[0] || null;\n }\n });\n\n Object.defineProperty(XMLNode.prototype, 'lastChild', {\n get: function() {\n return this.children[this.children.length - 1] || null;\n }\n });\n\n Object.defineProperty(XMLNode.prototype, 'previousSibling', {\n get: function() {\n var i;\n i = this.parent.children.indexOf(this);\n return this.parent.children[i - 1] || null;\n }\n });\n\n Object.defineProperty(XMLNode.prototype, 'nextSibling', {\n get: function() {\n var i;\n i = this.parent.children.indexOf(this);\n return this.parent.children[i + 1] || null;\n }\n });\n\n Object.defineProperty(XMLNode.prototype, 'ownerDocument', {\n get: function() {\n return this.document() || null;\n }\n });\n\n Object.defineProperty(XMLNode.prototype, 'textContent', {\n get: function() {\n var child, j, len, ref2, str;\n if (this.nodeType === NodeType.Element || this.nodeType === NodeType.DocumentFragment) {\n str = '';\n ref2 = this.children;\n for (j = 0, len = ref2.length; j < len; j++) {\n child = ref2[j];\n if (child.textContent) {\n str += child.textContent;\n }\n }\n return str;\n } else {\n return null;\n }\n },\n set: function(value) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n }\n });\n\n XMLNode.prototype.setParent = function(parent) {\n var child, j, len, ref2, results;\n this.parent = parent;\n if (parent) {\n this.options = parent.options;\n this.stringify = parent.stringify;\n }\n ref2 = this.children;\n results = [];\n for (j = 0, len = ref2.length; j < len; j++) {\n child = ref2[j];\n results.push(child.setParent(this));\n }\n return results;\n };\n\n XMLNode.prototype.element = function(name, attributes, text) {\n var childNode, item, j, k, key, lastChild, len, len1, ref2, ref3, val;\n lastChild = null;\n if (attributes === null && (text == null)) {\n ref2 = [{}, null], attributes = ref2[0], text = ref2[1];\n }\n if (attributes == null) {\n attributes = {};\n }\n attributes = getValue(attributes);\n if (!isObject(attributes)) {\n ref3 = [attributes, text], text = ref3[0], attributes = ref3[1];\n }\n if (name != null) {\n name = getValue(name);\n }\n if (Array.isArray(name)) {\n for (j = 0, len = name.length; j < len; j++) {\n item = name[j];\n lastChild = this.element(item);\n }\n } else if (isFunction(name)) {\n lastChild = this.element(name.apply());\n } else if (isObject(name)) {\n for (key in name) {\n if (!hasProp.call(name, key)) continue;\n val = name[key];\n if (isFunction(val)) {\n val = val.apply();\n }\n if (!this.options.ignoreDecorators && this.stringify.convertAttKey && key.indexOf(this.stringify.convertAttKey) === 0) {\n lastChild = this.attribute(key.substr(this.stringify.convertAttKey.length), val);\n } else if (!this.options.separateArrayItems && Array.isArray(val) && isEmpty(val)) {\n lastChild = this.dummy();\n } else if (isObject(val) && isEmpty(val)) {\n lastChild = this.element(key);\n } else if (!this.options.keepNullNodes && (val == null)) {\n lastChild = this.dummy();\n } else if (!this.options.separateArrayItems && Array.isArray(val)) {\n for (k = 0, len1 = val.length; k < len1; k++) {\n item = val[k];\n childNode = {};\n childNode[key] = item;\n lastChild = this.element(childNode);\n }\n } else if (isObject(val)) {\n if (!this.options.ignoreDecorators && this.stringify.convertTextKey && key.indexOf(this.stringify.convertTextKey) === 0) {\n lastChild = this.element(val);\n } else {\n lastChild = this.element(key);\n lastChild.element(val);\n }\n } else {\n lastChild = this.element(key, val);\n }\n }\n } else if (!this.options.keepNullNodes && text === null) {\n lastChild = this.dummy();\n } else {\n if (!this.options.ignoreDecorators && this.stringify.convertTextKey && name.indexOf(this.stringify.convertTextKey) === 0) {\n lastChild = this.text(text);\n } else if (!this.options.ignoreDecorators && this.stringify.convertCDataKey && name.indexOf(this.stringify.convertCDataKey) === 0) {\n lastChild = this.cdata(text);\n } else if (!this.options.ignoreDecorators && this.stringify.convertCommentKey && name.indexOf(this.stringify.convertCommentKey) === 0) {\n lastChild = this.comment(text);\n } else if (!this.options.ignoreDecorators && this.stringify.convertRawKey && name.indexOf(this.stringify.convertRawKey) === 0) {\n lastChild = this.raw(text);\n } else if (!this.options.ignoreDecorators && this.stringify.convertPIKey && name.indexOf(this.stringify.convertPIKey) === 0) {\n lastChild = this.instruction(name.substr(this.stringify.convertPIKey.length), text);\n } else {\n lastChild = this.node(name, attributes, text);\n }\n }\n if (lastChild == null) {\n throw new Error(\"Could not create any elements with: \" + name + \". \" + this.debugInfo());\n }\n return lastChild;\n };\n\n XMLNode.prototype.insertBefore = function(name, attributes, text) {\n var child, i, newChild, refChild, removed;\n if (name != null ? name.type : void 0) {\n newChild = name;\n refChild = attributes;\n newChild.setParent(this);\n if (refChild) {\n i = children.indexOf(refChild);\n removed = children.splice(i);\n children.push(newChild);\n Array.prototype.push.apply(children, removed);\n } else {\n children.push(newChild);\n }\n return newChild;\n } else {\n if (this.isRoot) {\n throw new Error(\"Cannot insert elements at root level. \" + this.debugInfo(name));\n }\n i = this.parent.children.indexOf(this);\n removed = this.parent.children.splice(i);\n child = this.parent.element(name, attributes, text);\n Array.prototype.push.apply(this.parent.children, removed);\n return child;\n }\n };\n\n XMLNode.prototype.insertAfter = function(name, attributes, text) {\n var child, i, removed;\n if (this.isRoot) {\n throw new Error(\"Cannot insert elements at root level. \" + this.debugInfo(name));\n }\n i = this.parent.children.indexOf(this);\n removed = this.parent.children.splice(i + 1);\n child = this.parent.element(name, attributes, text);\n Array.prototype.push.apply(this.parent.children, removed);\n return child;\n };\n\n XMLNode.prototype.remove = function() {\n var i, ref2;\n if (this.isRoot) {\n throw new Error(\"Cannot remove the root element. \" + this.debugInfo());\n }\n i = this.parent.children.indexOf(this);\n [].splice.apply(this.parent.children, [i, i - i + 1].concat(ref2 = [])), ref2;\n return this.parent;\n };\n\n XMLNode.prototype.node = function(name, attributes, text) {\n var child, ref2;\n if (name != null) {\n name = getValue(name);\n }\n attributes || (attributes = {});\n attributes = getValue(attributes);\n if (!isObject(attributes)) {\n ref2 = [attributes, text], text = ref2[0], attributes = ref2[1];\n }\n child = new XMLElement(this, name, attributes);\n if (text != null) {\n child.text(text);\n }\n this.children.push(child);\n return child;\n };\n\n XMLNode.prototype.text = function(value) {\n var child;\n if (isObject(value)) {\n this.element(value);\n }\n child = new XMLText(this, value);\n this.children.push(child);\n return this;\n };\n\n XMLNode.prototype.cdata = function(value) {\n var child;\n child = new XMLCData(this, value);\n this.children.push(child);\n return this;\n };\n\n XMLNode.prototype.comment = function(value) {\n var child;\n child = new XMLComment(this, value);\n this.children.push(child);\n return this;\n };\n\n XMLNode.prototype.commentBefore = function(value) {\n var child, i, removed;\n i = this.parent.children.indexOf(this);\n removed = this.parent.children.splice(i);\n child = this.parent.comment(value);\n Array.prototype.push.apply(this.parent.children, removed);\n return this;\n };\n\n XMLNode.prototype.commentAfter = function(value) {\n var child, i, removed;\n i = this.parent.children.indexOf(this);\n removed = this.parent.children.splice(i + 1);\n child = this.parent.comment(value);\n Array.prototype.push.apply(this.parent.children, removed);\n return this;\n };\n\n XMLNode.prototype.raw = function(value) {\n var child;\n child = new XMLRaw(this, value);\n this.children.push(child);\n return this;\n };\n\n XMLNode.prototype.dummy = function() {\n var child;\n child = new XMLDummy(this);\n return child;\n };\n\n XMLNode.prototype.instruction = function(target, value) {\n var insTarget, insValue, instruction, j, len;\n if (target != null) {\n target = getValue(target);\n }\n if (value != null) {\n value = getValue(value);\n }\n if (Array.isArray(target)) {\n for (j = 0, len = target.length; j < len; j++) {\n insTarget = target[j];\n this.instruction(insTarget);\n }\n } else if (isObject(target)) {\n for (insTarget in target) {\n if (!hasProp.call(target, insTarget)) continue;\n insValue = target[insTarget];\n this.instruction(insTarget, insValue);\n }\n } else {\n if (isFunction(value)) {\n value = value.apply();\n }\n instruction = new XMLProcessingInstruction(this, target, value);\n this.children.push(instruction);\n }\n return this;\n };\n\n XMLNode.prototype.instructionBefore = function(target, value) {\n var child, i, removed;\n i = this.parent.children.indexOf(this);\n removed = this.parent.children.splice(i);\n child = this.parent.instruction(target, value);\n Array.prototype.push.apply(this.parent.children, removed);\n return this;\n };\n\n XMLNode.prototype.instructionAfter = function(target, value) {\n var child, i, removed;\n i = this.parent.children.indexOf(this);\n removed = this.parent.children.splice(i + 1);\n child = this.parent.instruction(target, value);\n Array.prototype.push.apply(this.parent.children, removed);\n return this;\n };\n\n XMLNode.prototype.declaration = function(version, encoding, standalone) {\n var doc, xmldec;\n doc = this.document();\n xmldec = new XMLDeclaration(doc, version, encoding, standalone);\n if (doc.children.length === 0) {\n doc.children.unshift(xmldec);\n } else if (doc.children[0].type === NodeType.Declaration) {\n doc.children[0] = xmldec;\n } else {\n doc.children.unshift(xmldec);\n }\n return doc.root() || doc;\n };\n\n XMLNode.prototype.dtd = function(pubID, sysID) {\n var child, doc, doctype, i, j, k, len, len1, ref2, ref3;\n doc = this.document();\n doctype = new XMLDocType(doc, pubID, sysID);\n ref2 = doc.children;\n for (i = j = 0, len = ref2.length; j < len; i = ++j) {\n child = ref2[i];\n if (child.type === NodeType.DocType) {\n doc.children[i] = doctype;\n return doctype;\n }\n }\n ref3 = doc.children;\n for (i = k = 0, len1 = ref3.length; k < len1; i = ++k) {\n child = ref3[i];\n if (child.isRoot) {\n doc.children.splice(i, 0, doctype);\n return doctype;\n }\n }\n doc.children.push(doctype);\n return doctype;\n };\n\n XMLNode.prototype.up = function() {\n if (this.isRoot) {\n throw new Error(\"The root node has no parent. Use doc() if you need to get the document object.\");\n }\n return this.parent;\n };\n\n XMLNode.prototype.root = function() {\n var node;\n node = this;\n while (node) {\n if (node.type === NodeType.Document) {\n return node.rootObject;\n } else if (node.isRoot) {\n return node;\n } else {\n node = node.parent;\n }\n }\n };\n\n XMLNode.prototype.document = function() {\n var node;\n node = this;\n while (node) {\n if (node.type === NodeType.Document) {\n return node;\n } else {\n node = node.parent;\n }\n }\n };\n\n XMLNode.prototype.end = function(options) {\n return this.document().end(options);\n };\n\n XMLNode.prototype.prev = function() {\n var i;\n i = this.parent.children.indexOf(this);\n if (i < 1) {\n throw new Error(\"Already at the first node. \" + this.debugInfo());\n }\n return this.parent.children[i - 1];\n };\n\n XMLNode.prototype.next = function() {\n var i;\n i = this.parent.children.indexOf(this);\n if (i === -1 || i === this.parent.children.length - 1) {\n throw new Error(\"Already at the last node. \" + this.debugInfo());\n }\n return this.parent.children[i + 1];\n };\n\n XMLNode.prototype.importDocument = function(doc) {\n var clonedRoot;\n clonedRoot = doc.root().clone();\n clonedRoot.parent = this;\n clonedRoot.isRoot = false;\n this.children.push(clonedRoot);\n return this;\n };\n\n XMLNode.prototype.debugInfo = function(name) {\n var ref2, ref3;\n name = name || this.name;\n if ((name == null) && !((ref2 = this.parent) != null ? ref2.name : void 0)) {\n return \"\";\n } else if (name == null) {\n return \"parent: <\" + this.parent.name + \">\";\n } else if (!((ref3 = this.parent) != null ? ref3.name : void 0)) {\n return \"node: <\" + name + \">\";\n } else {\n return \"node: <\" + name + \">, parent: <\" + this.parent.name + \">\";\n }\n };\n\n XMLNode.prototype.ele = function(name, attributes, text) {\n return this.element(name, attributes, text);\n };\n\n XMLNode.prototype.nod = function(name, attributes, text) {\n return this.node(name, attributes, text);\n };\n\n XMLNode.prototype.txt = function(value) {\n return this.text(value);\n };\n\n XMLNode.prototype.dat = function(value) {\n return this.cdata(value);\n };\n\n XMLNode.prototype.com = function(value) {\n return this.comment(value);\n };\n\n XMLNode.prototype.ins = function(target, value) {\n return this.instruction(target, value);\n };\n\n XMLNode.prototype.doc = function() {\n return this.document();\n };\n\n XMLNode.prototype.dec = function(version, encoding, standalone) {\n return this.declaration(version, encoding, standalone);\n };\n\n XMLNode.prototype.e = function(name, attributes, text) {\n return this.element(name, attributes, text);\n };\n\n XMLNode.prototype.n = function(name, attributes, text) {\n return this.node(name, attributes, text);\n };\n\n XMLNode.prototype.t = function(value) {\n return this.text(value);\n };\n\n XMLNode.prototype.d = function(value) {\n return this.cdata(value);\n };\n\n XMLNode.prototype.c = function(value) {\n return this.comment(value);\n };\n\n XMLNode.prototype.r = function(value) {\n return this.raw(value);\n };\n\n XMLNode.prototype.i = function(target, value) {\n return this.instruction(target, value);\n };\n\n XMLNode.prototype.u = function() {\n return this.up();\n };\n\n XMLNode.prototype.importXMLBuilder = function(doc) {\n return this.importDocument(doc);\n };\n\n XMLNode.prototype.replaceChild = function(newChild, oldChild) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLNode.prototype.removeChild = function(oldChild) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLNode.prototype.appendChild = function(newChild) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLNode.prototype.hasChildNodes = function() {\n return this.children.length !== 0;\n };\n\n XMLNode.prototype.cloneNode = function(deep) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLNode.prototype.normalize = function() {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLNode.prototype.isSupported = function(feature, version) {\n return true;\n };\n\n XMLNode.prototype.hasAttributes = function() {\n return this.attribs.length !== 0;\n };\n\n XMLNode.prototype.compareDocumentPosition = function(other) {\n var ref, res;\n ref = this;\n if (ref === other) {\n return 0;\n } else if (this.document() !== other.document()) {\n res = DocumentPosition.Disconnected | DocumentPosition.ImplementationSpecific;\n if (Math.random() < 0.5) {\n res |= DocumentPosition.Preceding;\n } else {\n res |= DocumentPosition.Following;\n }\n return res;\n } else if (ref.isAncestor(other)) {\n return DocumentPosition.Contains | DocumentPosition.Preceding;\n } else if (ref.isDescendant(other)) {\n return DocumentPosition.Contains | DocumentPosition.Following;\n } else if (ref.isPreceding(other)) {\n return DocumentPosition.Preceding;\n } else {\n return DocumentPosition.Following;\n }\n };\n\n XMLNode.prototype.isSameNode = function(other) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLNode.prototype.lookupPrefix = function(namespaceURI) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLNode.prototype.isDefaultNamespace = function(namespaceURI) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLNode.prototype.lookupNamespaceURI = function(prefix) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLNode.prototype.isEqualNode = function(node) {\n var i, j, ref2;\n if (node.nodeType !== this.nodeType) {\n return false;\n }\n if (node.children.length !== this.children.length) {\n return false;\n }\n for (i = j = 0, ref2 = this.children.length - 1; 0 <= ref2 ? j <= ref2 : j >= ref2; i = 0 <= ref2 ? ++j : --j) {\n if (!this.children[i].isEqualNode(node.children[i])) {\n return false;\n }\n }\n return true;\n };\n\n XMLNode.prototype.getFeature = function(feature, version) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLNode.prototype.setUserData = function(key, data, handler) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLNode.prototype.getUserData = function(key) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLNode.prototype.contains = function(other) {\n if (!other) {\n return false;\n }\n return other === this || this.isDescendant(other);\n };\n\n XMLNode.prototype.isDescendant = function(node) {\n var child, isDescendantChild, j, len, ref2;\n ref2 = this.children;\n for (j = 0, len = ref2.length; j < len; j++) {\n child = ref2[j];\n if (node === child) {\n return true;\n }\n isDescendantChild = child.isDescendant(node);\n if (isDescendantChild) {\n return true;\n }\n }\n return false;\n };\n\n XMLNode.prototype.isAncestor = function(node) {\n return node.isDescendant(this);\n };\n\n XMLNode.prototype.isPreceding = function(node) {\n var nodePos, thisPos;\n nodePos = this.treePosition(node);\n thisPos = this.treePosition(this);\n if (nodePos === -1 || thisPos === -1) {\n return false;\n } else {\n return nodePos < thisPos;\n }\n };\n\n XMLNode.prototype.isFollowing = function(node) {\n var nodePos, thisPos;\n nodePos = this.treePosition(node);\n thisPos = this.treePosition(this);\n if (nodePos === -1 || thisPos === -1) {\n return false;\n } else {\n return nodePos > thisPos;\n }\n };\n\n XMLNode.prototype.treePosition = function(node) {\n var found, pos;\n pos = 0;\n found = false;\n this.foreachTreeNode(this.document(), function(childNode) {\n pos++;\n if (!found && childNode === node) {\n return found = true;\n }\n });\n if (found) {\n return pos;\n } else {\n return -1;\n }\n };\n\n XMLNode.prototype.foreachTreeNode = function(node, func) {\n var child, j, len, ref2, res;\n node || (node = this.document());\n ref2 = node.children;\n for (j = 0, len = ref2.length; j < len; j++) {\n child = ref2[j];\n if (res = func(child)) {\n return res;\n } else {\n res = this.foreachTreeNode(child, func);\n if (res) {\n return res;\n }\n }\n }\n };\n\n return XMLNode;\n\n })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var XMLNodeList;\n\n module.exports = XMLNodeList = (function() {\n function XMLNodeList(nodes) {\n this.nodes = nodes;\n }\n\n Object.defineProperty(XMLNodeList.prototype, 'length', {\n get: function() {\n return this.nodes.length || 0;\n }\n });\n\n XMLNodeList.prototype.clone = function() {\n return this.nodes = null;\n };\n\n XMLNodeList.prototype.item = function(index) {\n return this.nodes[index] || null;\n };\n\n return XMLNodeList;\n\n })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLCharacterData, XMLProcessingInstruction,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n NodeType = require('./NodeType');\n\n XMLCharacterData = require('./XMLCharacterData');\n\n module.exports = XMLProcessingInstruction = (function(superClass) {\n extend(XMLProcessingInstruction, superClass);\n\n function XMLProcessingInstruction(parent, target, value) {\n XMLProcessingInstruction.__super__.constructor.call(this, parent);\n if (target == null) {\n throw new Error(\"Missing instruction target. \" + this.debugInfo());\n }\n this.type = NodeType.ProcessingInstruction;\n this.target = this.stringify.insTarget(target);\n this.name = this.target;\n if (value) {\n this.value = this.stringify.insValue(value);\n }\n }\n\n XMLProcessingInstruction.prototype.clone = function() {\n return Object.create(this);\n };\n\n XMLProcessingInstruction.prototype.toString = function(options) {\n return this.options.writer.processingInstruction(this, this.options.writer.filterOptions(options));\n };\n\n XMLProcessingInstruction.prototype.isEqualNode = function(node) {\n if (!XMLProcessingInstruction.__super__.isEqualNode.apply(this, arguments).isEqualNode(node)) {\n return false;\n }\n if (node.target !== this.target) {\n return false;\n }\n return true;\n };\n\n return XMLProcessingInstruction;\n\n })(XMLCharacterData);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLNode, XMLRaw,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n NodeType = require('./NodeType');\n\n XMLNode = require('./XMLNode');\n\n module.exports = XMLRaw = (function(superClass) {\n extend(XMLRaw, superClass);\n\n function XMLRaw(parent, text) {\n XMLRaw.__super__.constructor.call(this, parent);\n if (text == null) {\n throw new Error(\"Missing raw text. \" + this.debugInfo());\n }\n this.type = NodeType.Raw;\n this.value = this.stringify.raw(text);\n }\n\n XMLRaw.prototype.clone = function() {\n return Object.create(this);\n };\n\n XMLRaw.prototype.toString = function(options) {\n return this.options.writer.raw(this, this.options.writer.filterOptions(options));\n };\n\n return XMLRaw;\n\n })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, WriterState, XMLStreamWriter, XMLWriterBase,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n NodeType = require('./NodeType');\n\n XMLWriterBase = require('./XMLWriterBase');\n\n WriterState = require('./WriterState');\n\n module.exports = XMLStreamWriter = (function(superClass) {\n extend(XMLStreamWriter, superClass);\n\n function XMLStreamWriter(stream, options) {\n this.stream = stream;\n XMLStreamWriter.__super__.constructor.call(this, options);\n }\n\n XMLStreamWriter.prototype.endline = function(node, options, level) {\n if (node.isLastRootNode && options.state === WriterState.CloseTag) {\n return '';\n } else {\n return XMLStreamWriter.__super__.endline.call(this, node, options, level);\n }\n };\n\n XMLStreamWriter.prototype.document = function(doc, options) {\n var child, i, j, k, len, len1, ref, ref1, results;\n ref = doc.children;\n for (i = j = 0, len = ref.length; j < len; i = ++j) {\n child = ref[i];\n child.isLastRootNode = i === doc.children.length - 1;\n }\n options = this.filterOptions(options);\n ref1 = doc.children;\n results = [];\n for (k = 0, len1 = ref1.length; k < len1; k++) {\n child = ref1[k];\n results.push(this.writeChildNode(child, options, 0));\n }\n return results;\n };\n\n XMLStreamWriter.prototype.attribute = function(att, options, level) {\n return this.stream.write(XMLStreamWriter.__super__.attribute.call(this, att, options, level));\n };\n\n XMLStreamWriter.prototype.cdata = function(node, options, level) {\n return this.stream.write(XMLStreamWriter.__super__.cdata.call(this, node, options, level));\n };\n\n XMLStreamWriter.prototype.comment = function(node, options, level) {\n return this.stream.write(XMLStreamWriter.__super__.comment.call(this, node, options, level));\n };\n\n XMLStreamWriter.prototype.declaration = function(node, options, level) {\n return this.stream.write(XMLStreamWriter.__super__.declaration.call(this, node, options, level));\n };\n\n XMLStreamWriter.prototype.docType = function(node, options, level) {\n var child, j, len, ref;\n level || (level = 0);\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n this.stream.write(this.indent(node, options, level));\n this.stream.write('<!DOCTYPE ' + node.root().name);\n if (node.pubID && node.sysID) {\n this.stream.write(' PUBLIC \"' + node.pubID + '\" \"' + node.sysID + '\"');\n } else if (node.sysID) {\n this.stream.write(' SYSTEM \"' + node.sysID + '\"');\n }\n if (node.children.length > 0) {\n this.stream.write(' [');\n this.stream.write(this.endline(node, options, level));\n options.state = WriterState.InsideTag;\n ref = node.children;\n for (j = 0, len = ref.length; j < len; j++) {\n child = ref[j];\n this.writeChildNode(child, options, level + 1);\n }\n options.state = WriterState.CloseTag;\n this.stream.write(']');\n }\n options.state = WriterState.CloseTag;\n this.stream.write(options.spaceBeforeSlash + '>');\n this.stream.write(this.endline(node, options, level));\n options.state = WriterState.None;\n return this.closeNode(node, options, level);\n };\n\n XMLStreamWriter.prototype.element = function(node, options, level) {\n var att, child, childNodeCount, firstChildNode, j, len, name, prettySuppressed, ref, ref1;\n level || (level = 0);\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n this.stream.write(this.indent(node, options, level) + '<' + node.name);\n ref = node.attribs;\n for (name in ref) {\n if (!hasProp.call(ref, name)) continue;\n att = ref[name];\n this.attribute(att, options, level);\n }\n childNodeCount = node.children.length;\n firstChildNode = childNodeCount === 0 ? null : node.children[0];\n if (childNodeCount === 0 || node.children.every(function(e) {\n return (e.type === NodeType.Text || e.type === NodeType.Raw) && e.value === '';\n })) {\n if (options.allowEmpty) {\n this.stream.write('>');\n options.state = WriterState.CloseTag;\n this.stream.write('</' + node.name + '>');\n } else {\n options.state = WriterState.CloseTag;\n this.stream.write(options.spaceBeforeSlash + '/>');\n }\n } else if (options.pretty && childNodeCount === 1 && (firstChildNode.type === NodeType.Text || firstChildNode.type === NodeType.Raw) && (firstChildNode.value != null)) {\n this.stream.write('>');\n options.state = WriterState.InsideTag;\n options.suppressPrettyCount++;\n prettySuppressed = true;\n this.writeChildNode(firstChildNode, options, level + 1);\n options.suppressPrettyCount--;\n prettySuppressed = false;\n options.state = WriterState.CloseTag;\n this.stream.write('</' + node.name + '>');\n } else {\n this.stream.write('>' + this.endline(node, options, level));\n options.state = WriterState.InsideTag;\n ref1 = node.children;\n for (j = 0, len = ref1.length; j < len; j++) {\n child = ref1[j];\n this.writeChildNode(child, options, level + 1);\n }\n options.state = WriterState.CloseTag;\n this.stream.write(this.indent(node, options, level) + '</' + node.name + '>');\n }\n this.stream.write(this.endline(node, options, level));\n options.state = WriterState.None;\n return this.closeNode(node, options, level);\n };\n\n XMLStreamWriter.prototype.processingInstruction = function(node, options, level) {\n return this.stream.write(XMLStreamWriter.__super__.processingInstruction.call(this, node, options, level));\n };\n\n XMLStreamWriter.prototype.raw = function(node, options, level) {\n return this.stream.write(XMLStreamWriter.__super__.raw.call(this, node, options, level));\n };\n\n XMLStreamWriter.prototype.text = function(node, options, level) {\n return this.stream.write(XMLStreamWriter.__super__.text.call(this, node, options, level));\n };\n\n XMLStreamWriter.prototype.dtdAttList = function(node, options, level) {\n return this.stream.write(XMLStreamWriter.__super__.dtdAttList.call(this, node, options, level));\n };\n\n XMLStreamWriter.prototype.dtdElement = function(node, options, level) {\n return this.stream.write(XMLStreamWriter.__super__.dtdElement.call(this, node, options, level));\n };\n\n XMLStreamWriter.prototype.dtdEntity = function(node, options, level) {\n return this.stream.write(XMLStreamWriter.__super__.dtdEntity.call(this, node, options, level));\n };\n\n XMLStreamWriter.prototype.dtdNotation = function(node, options, level) {\n return this.stream.write(XMLStreamWriter.__super__.dtdNotation.call(this, node, options, level));\n };\n\n return XMLStreamWriter;\n\n })(XMLWriterBase);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var XMLStringWriter, XMLWriterBase,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n XMLWriterBase = require('./XMLWriterBase');\n\n module.exports = XMLStringWriter = (function(superClass) {\n extend(XMLStringWriter, superClass);\n\n function XMLStringWriter(options) {\n XMLStringWriter.__super__.constructor.call(this, options);\n }\n\n XMLStringWriter.prototype.document = function(doc, options) {\n var child, i, len, r, ref;\n options = this.filterOptions(options);\n r = '';\n ref = doc.children;\n for (i = 0, len = ref.length; i < len; i++) {\n child = ref[i];\n r += this.writeChildNode(child, options, 0);\n }\n if (options.pretty && r.slice(-options.newline.length) === options.newline) {\n r = r.slice(0, -options.newline.length);\n }\n return r;\n };\n\n return XMLStringWriter;\n\n })(XMLWriterBase);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var XMLStringifier,\n bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; },\n hasProp = {}.hasOwnProperty;\n\n module.exports = XMLStringifier = (function() {\n function XMLStringifier(options) {\n this.assertLegalName = bind(this.assertLegalName, this);\n this.assertLegalChar = bind(this.assertLegalChar, this);\n var key, ref, value;\n options || (options = {});\n this.options = options;\n if (!this.options.version) {\n this.options.version = '1.0';\n }\n ref = options.stringify || {};\n for (key in ref) {\n if (!hasProp.call(ref, key)) continue;\n value = ref[key];\n this[key] = value;\n }\n }\n\n XMLStringifier.prototype.name = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n return this.assertLegalName('' + val || '');\n };\n\n XMLStringifier.prototype.text = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n return this.assertLegalChar(this.textEscape('' + val || ''));\n };\n\n XMLStringifier.prototype.cdata = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n val = '' + val || '';\n val = val.replace(']]>', ']]]]><![CDATA[>');\n return this.assertLegalChar(val);\n };\n\n XMLStringifier.prototype.comment = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n val = '' + val || '';\n if (val.match(/--/)) {\n throw new Error(\"Comment text cannot contain double-hypen: \" + val);\n }\n return this.assertLegalChar(val);\n };\n\n XMLStringifier.prototype.raw = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n return '' + val || '';\n };\n\n XMLStringifier.prototype.attValue = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n return this.assertLegalChar(this.attEscape(val = '' + val || ''));\n };\n\n XMLStringifier.prototype.insTarget = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n return this.assertLegalChar('' + val || '');\n };\n\n XMLStringifier.prototype.insValue = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n val = '' + val || '';\n if (val.match(/\\?>/)) {\n throw new Error(\"Invalid processing instruction value: \" + val);\n }\n return this.assertLegalChar(val);\n };\n\n XMLStringifier.prototype.xmlVersion = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n val = '' + val || '';\n if (!val.match(/1\\.[0-9]+/)) {\n throw new Error(\"Invalid version number: \" + val);\n }\n return val;\n };\n\n XMLStringifier.prototype.xmlEncoding = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n val = '' + val || '';\n if (!val.match(/^[A-Za-z](?:[A-Za-z0-9._-])*$/)) {\n throw new Error(\"Invalid encoding: \" + val);\n }\n return this.assertLegalChar(val);\n };\n\n XMLStringifier.prototype.xmlStandalone = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n if (val) {\n return \"yes\";\n } else {\n return \"no\";\n }\n };\n\n XMLStringifier.prototype.dtdPubID = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n return this.assertLegalChar('' + val || '');\n };\n\n XMLStringifier.prototype.dtdSysID = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n return this.assertLegalChar('' + val || '');\n };\n\n XMLStringifier.prototype.dtdElementValue = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n return this.assertLegalChar('' + val || '');\n };\n\n XMLStringifier.prototype.dtdAttType = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n return this.assertLegalChar('' + val || '');\n };\n\n XMLStringifier.prototype.dtdAttDefault = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n return this.assertLegalChar('' + val || '');\n };\n\n XMLStringifier.prototype.dtdEntityValue = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n return this.assertLegalChar('' + val || '');\n };\n\n XMLStringifier.prototype.dtdNData = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n return this.assertLegalChar('' + val || '');\n };\n\n XMLStringifier.prototype.convertAttKey = '@';\n\n XMLStringifier.prototype.convertPIKey = '?';\n\n XMLStringifier.prototype.convertTextKey = '#text';\n\n XMLStringifier.prototype.convertCDataKey = '#cdata';\n\n XMLStringifier.prototype.convertCommentKey = '#comment';\n\n XMLStringifier.prototype.convertRawKey = '#raw';\n\n XMLStringifier.prototype.assertLegalChar = function(str) {\n var regex, res;\n if (this.options.noValidation) {\n return str;\n }\n regex = '';\n if (this.options.version === '1.0') {\n regex = /[\\0-\\x08\\x0B\\f\\x0E-\\x1F\\uFFFE\\uFFFF]|[\\uD800-\\uDBFF](?![\\uDC00-\\uDFFF])|(?:[^\\uD800-\\uDBFF]|^)[\\uDC00-\\uDFFF]/;\n if (res = str.match(regex)) {\n throw new Error(\"Invalid character in string: \" + str + \" at index \" + res.index);\n }\n } else if (this.options.version === '1.1') {\n regex = /[\\0\\uFFFE\\uFFFF]|[\\uD800-\\uDBFF](?![\\uDC00-\\uDFFF])|(?:[^\\uD800-\\uDBFF]|^)[\\uDC00-\\uDFFF]/;\n if (res = str.match(regex)) {\n throw new Error(\"Invalid character in string: \" + str + \" at index \" + res.index);\n }\n }\n return str;\n };\n\n XMLStringifier.prototype.assertLegalName = function(str) {\n var regex;\n if (this.options.noValidation) {\n return str;\n }\n this.assertLegalChar(str);\n regex = /^([:A-Z_a-z\\xC0-\\xD6\\xD8-\\xF6\\xF8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD]|[\\uD800-\\uDB7F][\\uDC00-\\uDFFF])([\\x2D\\.0-:A-Z_a-z\\xB7\\xC0-\\xD6\\xD8-\\xF6\\xF8-\\u037D\\u037F-\\u1FFF\\u200C\\u200D\\u203F\\u2040\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD]|[\\uD800-\\uDB7F][\\uDC00-\\uDFFF])*$/;\n if (!str.match(regex)) {\n throw new Error(\"Invalid character in name\");\n }\n return str;\n };\n\n XMLStringifier.prototype.textEscape = function(str) {\n var ampregex;\n if (this.options.noValidation) {\n return str;\n }\n ampregex = this.options.noDoubleEncoding ? /(?!&\\S+;)&/g : /&/g;\n return str.replace(ampregex, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/\\r/g, '&#xD;');\n };\n\n XMLStringifier.prototype.attEscape = function(str) {\n var ampregex;\n if (this.options.noValidation) {\n return str;\n }\n ampregex = this.options.noDoubleEncoding ? /(?!&\\S+;)&/g : /&/g;\n return str.replace(ampregex, '&amp;').replace(/</g, '&lt;').replace(/\"/g, '&quot;').replace(/\\t/g, '&#x9;').replace(/\\n/g, '&#xA;').replace(/\\r/g, '&#xD;');\n };\n\n return XMLStringifier;\n\n })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLCharacterData, XMLText,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n NodeType = require('./NodeType');\n\n XMLCharacterData = require('./XMLCharacterData');\n\n module.exports = XMLText = (function(superClass) {\n extend(XMLText, superClass);\n\n function XMLText(parent, text) {\n XMLText.__super__.constructor.call(this, parent);\n if (text == null) {\n throw new Error(\"Missing element text. \" + this.debugInfo());\n }\n this.name = \"#text\";\n this.type = NodeType.Text;\n this.value = this.stringify.text(text);\n }\n\n Object.defineProperty(XMLText.prototype, 'isElementContentWhitespace', {\n get: function() {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n }\n });\n\n Object.defineProperty(XMLText.prototype, 'wholeText', {\n get: function() {\n var next, prev, str;\n str = '';\n prev = this.previousSibling;\n while (prev) {\n str = prev.data + str;\n prev = prev.previousSibling;\n }\n str += this.data;\n next = this.nextSibling;\n while (next) {\n str = str + next.data;\n next = next.nextSibling;\n }\n return str;\n }\n });\n\n XMLText.prototype.clone = function() {\n return Object.create(this);\n };\n\n XMLText.prototype.toString = function(options) {\n return this.options.writer.text(this, this.options.writer.filterOptions(options));\n };\n\n XMLText.prototype.splitText = function(offset) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLText.prototype.replaceWholeText = function(content) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n return XMLText;\n\n })(XMLCharacterData);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, WriterState, XMLCData, XMLComment, XMLDTDAttList, XMLDTDElement, XMLDTDEntity, XMLDTDNotation, XMLDeclaration, XMLDocType, XMLDummy, XMLElement, XMLProcessingInstruction, XMLRaw, XMLText, XMLWriterBase, assign,\n hasProp = {}.hasOwnProperty;\n\n assign = require('./Utility').assign;\n\n NodeType = require('./NodeType');\n\n XMLDeclaration = require('./XMLDeclaration');\n\n XMLDocType = require('./XMLDocType');\n\n XMLCData = require('./XMLCData');\n\n XMLComment = require('./XMLComment');\n\n XMLElement = require('./XMLElement');\n\n XMLRaw = require('./XMLRaw');\n\n XMLText = require('./XMLText');\n\n XMLProcessingInstruction = require('./XMLProcessingInstruction');\n\n XMLDummy = require('./XMLDummy');\n\n XMLDTDAttList = require('./XMLDTDAttList');\n\n XMLDTDElement = require('./XMLDTDElement');\n\n XMLDTDEntity = require('./XMLDTDEntity');\n\n XMLDTDNotation = require('./XMLDTDNotation');\n\n WriterState = require('./WriterState');\n\n module.exports = XMLWriterBase = (function() {\n function XMLWriterBase(options) {\n var key, ref, value;\n options || (options = {});\n this.options = options;\n ref = options.writer || {};\n for (key in ref) {\n if (!hasProp.call(ref, key)) continue;\n value = ref[key];\n this[\"_\" + key] = this[key];\n this[key] = value;\n }\n }\n\n XMLWriterBase.prototype.filterOptions = function(options) {\n var filteredOptions, ref, ref1, ref2, ref3, ref4, ref5, ref6;\n options || (options = {});\n options = assign({}, this.options, options);\n filteredOptions = {\n writer: this\n };\n filteredOptions.pretty = options.pretty || false;\n filteredOptions.allowEmpty = options.allowEmpty || false;\n filteredOptions.indent = (ref = options.indent) != null ? ref : ' ';\n filteredOptions.newline = (ref1 = options.newline) != null ? ref1 : '\\n';\n filteredOptions.offset = (ref2 = options.offset) != null ? ref2 : 0;\n filteredOptions.dontPrettyTextNodes = (ref3 = (ref4 = options.dontPrettyTextNodes) != null ? ref4 : options.dontprettytextnodes) != null ? ref3 : 0;\n filteredOptions.spaceBeforeSlash = (ref5 = (ref6 = options.spaceBeforeSlash) != null ? ref6 : options.spacebeforeslash) != null ? ref5 : '';\n if (filteredOptions.spaceBeforeSlash === true) {\n filteredOptions.spaceBeforeSlash = ' ';\n }\n filteredOptions.suppressPrettyCount = 0;\n filteredOptions.user = {};\n filteredOptions.state = WriterState.None;\n return filteredOptions;\n };\n\n XMLWriterBase.prototype.indent = function(node, options, level) {\n var indentLevel;\n if (!options.pretty || options.suppressPrettyCount) {\n return '';\n } else if (options.pretty) {\n indentLevel = (level || 0) + options.offset + 1;\n if (indentLevel > 0) {\n return new Array(indentLevel).join(options.indent);\n }\n }\n return '';\n };\n\n XMLWriterBase.prototype.endline = function(node, options, level) {\n if (!options.pretty || options.suppressPrettyCount) {\n return '';\n } else {\n return options.newline;\n }\n };\n\n XMLWriterBase.prototype.attribute = function(att, options, level) {\n var r;\n this.openAttribute(att, options, level);\n r = ' ' + att.name + '=\"' + att.value + '\"';\n this.closeAttribute(att, options, level);\n return r;\n };\n\n XMLWriterBase.prototype.cdata = function(node, options, level) {\n var r;\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n r = this.indent(node, options, level) + '<![CDATA[';\n options.state = WriterState.InsideTag;\n r += node.value;\n options.state = WriterState.CloseTag;\n r += ']]>' + this.endline(node, options, level);\n options.state = WriterState.None;\n this.closeNode(node, options, level);\n return r;\n };\n\n XMLWriterBase.prototype.comment = function(node, options, level) {\n var r;\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n r = this.indent(node, options, level) + '<!-- ';\n options.state = WriterState.InsideTag;\n r += node.value;\n options.state = WriterState.CloseTag;\n r += ' -->' + this.endline(node, options, level);\n options.state = WriterState.None;\n this.closeNode(node, options, level);\n return r;\n };\n\n XMLWriterBase.prototype.declaration = function(node, options, level) {\n var r;\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n r = this.indent(node, options, level) + '<?xml';\n options.state = WriterState.InsideTag;\n r += ' version=\"' + node.version + '\"';\n if (node.encoding != null) {\n r += ' encoding=\"' + node.encoding + '\"';\n }\n if (node.standalone != null) {\n r += ' standalone=\"' + node.standalone + '\"';\n }\n options.state = WriterState.CloseTag;\n r += options.spaceBeforeSlash + '?>';\n r += this.endline(node, options, level);\n options.state = WriterState.None;\n this.closeNode(node, options, level);\n return r;\n };\n\n XMLWriterBase.prototype.docType = function(node, options, level) {\n var child, i, len, r, ref;\n level || (level = 0);\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n r = this.indent(node, options, level);\n r += '<!DOCTYPE ' + node.root().name;\n if (node.pubID && node.sysID) {\n r += ' PUBLIC \"' + node.pubID + '\" \"' + node.sysID + '\"';\n } else if (node.sysID) {\n r += ' SYSTEM \"' + node.sysID + '\"';\n }\n if (node.children.length > 0) {\n r += ' [';\n r += this.endline(node, options, level);\n options.state = WriterState.InsideTag;\n ref = node.children;\n for (i = 0, len = ref.length; i < len; i++) {\n child = ref[i];\n r += this.writeChildNode(child, options, level + 1);\n }\n options.state = WriterState.CloseTag;\n r += ']';\n }\n options.state = WriterState.CloseTag;\n r += options.spaceBeforeSlash + '>';\n r += this.endline(node, options, level);\n options.state = WriterState.None;\n this.closeNode(node, options, level);\n return r;\n };\n\n XMLWriterBase.prototype.element = function(node, options, level) {\n var att, child, childNodeCount, firstChildNode, i, j, len, len1, name, prettySuppressed, r, ref, ref1, ref2;\n level || (level = 0);\n prettySuppressed = false;\n r = '';\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n r += this.indent(node, options, level) + '<' + node.name;\n ref = node.attribs;\n for (name in ref) {\n if (!hasProp.call(ref, name)) continue;\n att = ref[name];\n r += this.attribute(att, options, level);\n }\n childNodeCount = node.children.length;\n firstChildNode = childNodeCount === 0 ? null : node.children[0];\n if (childNodeCount === 0 || node.children.every(function(e) {\n return (e.type === NodeType.Text || e.type === NodeType.Raw) && e.value === '';\n })) {\n if (options.allowEmpty) {\n r += '>';\n options.state = WriterState.CloseTag;\n r += '</' + node.name + '>' + this.endline(node, options, level);\n } else {\n options.state = WriterState.CloseTag;\n r += options.spaceBeforeSlash + '/>' + this.endline(node, options, level);\n }\n } else if (options.pretty && childNodeCount === 1 && (firstChildNode.type === NodeType.Text || firstChildNode.type === NodeType.Raw) && (firstChildNode.value != null)) {\n r += '>';\n options.state = WriterState.InsideTag;\n options.suppressPrettyCount++;\n prettySuppressed = true;\n r += this.writeChildNode(firstChildNode, options, level + 1);\n options.suppressPrettyCount--;\n prettySuppressed = false;\n options.state = WriterState.CloseTag;\n r += '</' + node.name + '>' + this.endline(node, options, level);\n } else {\n if (options.dontPrettyTextNodes) {\n ref1 = node.children;\n for (i = 0, len = ref1.length; i < len; i++) {\n child = ref1[i];\n if ((child.type === NodeType.Text || child.type === NodeType.Raw) && (child.value != null)) {\n options.suppressPrettyCount++;\n prettySuppressed = true;\n break;\n }\n }\n }\n r += '>' + this.endline(node, options, level);\n options.state = WriterState.InsideTag;\n ref2 = node.children;\n for (j = 0, len1 = ref2.length; j < len1; j++) {\n child = ref2[j];\n r += this.writeChildNode(child, options, level + 1);\n }\n options.state = WriterState.CloseTag;\n r += this.indent(node, options, level) + '</' + node.name + '>';\n if (prettySuppressed) {\n options.suppressPrettyCount--;\n }\n r += this.endline(node, options, level);\n options.state = WriterState.None;\n }\n this.closeNode(node, options, level);\n return r;\n };\n\n XMLWriterBase.prototype.writeChildNode = function(node, options, level) {\n switch (node.type) {\n case NodeType.CData:\n return this.cdata(node, options, level);\n case NodeType.Comment:\n return this.comment(node, options, level);\n case NodeType.Element:\n return this.element(node, options, level);\n case NodeType.Raw:\n return this.raw(node, options, level);\n case NodeType.Text:\n return this.text(node, options, level);\n case NodeType.ProcessingInstruction:\n return this.processingInstruction(node, options, level);\n case NodeType.Dummy:\n return '';\n case NodeType.Declaration:\n return this.declaration(node, options, level);\n case NodeType.DocType:\n return this.docType(node, options, level);\n case NodeType.AttributeDeclaration:\n return this.dtdAttList(node, options, level);\n case NodeType.ElementDeclaration:\n return this.dtdElement(node, options, level);\n case NodeType.EntityDeclaration:\n return this.dtdEntity(node, options, level);\n case NodeType.NotationDeclaration:\n return this.dtdNotation(node, options, level);\n default:\n throw new Error(\"Unknown XML node type: \" + node.constructor.name);\n }\n };\n\n XMLWriterBase.prototype.processingInstruction = function(node, options, level) {\n var r;\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n r = this.indent(node, options, level) + '<?';\n options.state = WriterState.InsideTag;\n r += node.target;\n if (node.value) {\n r += ' ' + node.value;\n }\n options.state = WriterState.CloseTag;\n r += options.spaceBeforeSlash + '?>';\n r += this.endline(node, options, level);\n options.state = WriterState.None;\n this.closeNode(node, options, level);\n return r;\n };\n\n XMLWriterBase.prototype.raw = function(node, options, level) {\n var r;\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n r = this.indent(node, options, level);\n options.state = WriterState.InsideTag;\n r += node.value;\n options.state = WriterState.CloseTag;\n r += this.endline(node, options, level);\n options.state = WriterState.None;\n this.closeNode(node, options, level);\n return r;\n };\n\n XMLWriterBase.prototype.text = function(node, options, level) {\n var r;\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n r = this.indent(node, options, level);\n options.state = WriterState.InsideTag;\n r += node.value;\n options.state = WriterState.CloseTag;\n r += this.endline(node, options, level);\n options.state = WriterState.None;\n this.closeNode(node, options, level);\n return r;\n };\n\n XMLWriterBase.prototype.dtdAttList = function(node, options, level) {\n var r;\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n r = this.indent(node, options, level) + '<!ATTLIST';\n options.state = WriterState.InsideTag;\n r += ' ' + node.elementName + ' ' + node.attributeName + ' ' + node.attributeType;\n if (node.defaultValueType !== '#DEFAULT') {\n r += ' ' + node.defaultValueType;\n }\n if (node.defaultValue) {\n r += ' \"' + node.defaultValue + '\"';\n }\n options.state = WriterState.CloseTag;\n r += options.spaceBeforeSlash + '>' + this.endline(node, options, level);\n options.state = WriterState.None;\n this.closeNode(node, options, level);\n return r;\n };\n\n XMLWriterBase.prototype.dtdElement = function(node, options, level) {\n var r;\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n r = this.indent(node, options, level) + '<!ELEMENT';\n options.state = WriterState.InsideTag;\n r += ' ' + node.name + ' ' + node.value;\n options.state = WriterState.CloseTag;\n r += options.spaceBeforeSlash + '>' + this.endline(node, options, level);\n options.state = WriterState.None;\n this.closeNode(node, options, level);\n return r;\n };\n\n XMLWriterBase.prototype.dtdEntity = function(node, options, level) {\n var r;\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n r = this.indent(node, options, level) + '<!ENTITY';\n options.state = WriterState.InsideTag;\n if (node.pe) {\n r += ' %';\n }\n r += ' ' + node.name;\n if (node.value) {\n r += ' \"' + node.value + '\"';\n } else {\n if (node.pubID && node.sysID) {\n r += ' PUBLIC \"' + node.pubID + '\" \"' + node.sysID + '\"';\n } else if (node.sysID) {\n r += ' SYSTEM \"' + node.sysID + '\"';\n }\n if (node.nData) {\n r += ' NDATA ' + node.nData;\n }\n }\n options.state = WriterState.CloseTag;\n r += options.spaceBeforeSlash + '>' + this.endline(node, options, level);\n options.state = WriterState.None;\n this.closeNode(node, options, level);\n return r;\n };\n\n XMLWriterBase.prototype.dtdNotation = function(node, options, level) {\n var r;\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n r = this.indent(node, options, level) + '<!NOTATION';\n options.state = WriterState.InsideTag;\n r += ' ' + node.name;\n if (node.pubID && node.sysID) {\n r += ' PUBLIC \"' + node.pubID + '\" \"' + node.sysID + '\"';\n } else if (node.pubID) {\n r += ' PUBLIC \"' + node.pubID + '\"';\n } else if (node.sysID) {\n r += ' SYSTEM \"' + node.sysID + '\"';\n }\n options.state = WriterState.CloseTag;\n r += options.spaceBeforeSlash + '>' + this.endline(node, options, level);\n options.state = WriterState.None;\n this.closeNode(node, options, level);\n return r;\n };\n\n XMLWriterBase.prototype.openNode = function(node, options, level) {};\n\n XMLWriterBase.prototype.closeNode = function(node, options, level) {};\n\n XMLWriterBase.prototype.openAttribute = function(att, options, level) {};\n\n XMLWriterBase.prototype.closeAttribute = function(att, options, level) {};\n\n return XMLWriterBase;\n\n })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, WriterState, XMLDOMImplementation, XMLDocument, XMLDocumentCB, XMLStreamWriter, XMLStringWriter, assign, isFunction, ref;\n\n ref = require('./Utility'), assign = ref.assign, isFunction = ref.isFunction;\n\n XMLDOMImplementation = require('./XMLDOMImplementation');\n\n XMLDocument = require('./XMLDocument');\n\n XMLDocumentCB = require('./XMLDocumentCB');\n\n XMLStringWriter = require('./XMLStringWriter');\n\n XMLStreamWriter = require('./XMLStreamWriter');\n\n NodeType = require('./NodeType');\n\n WriterState = require('./WriterState');\n\n module.exports.create = function(name, xmldec, doctype, options) {\n var doc, root;\n if (name == null) {\n throw new Error(\"Root element needs a name.\");\n }\n options = assign({}, xmldec, doctype, options);\n doc = new XMLDocument(options);\n root = doc.element(name);\n if (!options.headless) {\n doc.declaration(options);\n if ((options.pubID != null) || (options.sysID != null)) {\n doc.dtd(options);\n }\n }\n return root;\n };\n\n module.exports.begin = function(options, onData, onEnd) {\n var ref1;\n if (isFunction(options)) {\n ref1 = [options, onData], onData = ref1[0], onEnd = ref1[1];\n options = {};\n }\n if (onData) {\n return new XMLDocumentCB(options, onData, onEnd);\n } else {\n return new XMLDocument(options);\n }\n };\n\n module.exports.stringWriter = function(options) {\n return new XMLStringWriter(options);\n };\n\n module.exports.streamWriter = function(stream, options) {\n return new XMLStreamWriter(stream, options);\n };\n\n module.exports.implementation = new XMLDOMImplementation();\n\n module.exports.nodeType = NodeType;\n\n module.exports.writerState = WriterState;\n\n}).call(this);\n","import { getCurrentUser as A, onRequestTokenUpdate as ue, getRequestToken as de } from \"@nextcloud/auth\";\nimport { getLoggerBuilder as B } from \"@nextcloud/logger\";\nimport { getCanonicalLocale as ae } from \"@nextcloud/l10n\";\nimport { join as le, basename as fe, extname as ce, dirname as I } from \"path\";\nimport { encodePath as he } from \"@nextcloud/paths\";\nimport { generateRemoteUrl as pe } from \"@nextcloud/router\";\nimport { createClient as ge, getPatcher as we } from \"webdav\";\n/**\n * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @author Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst me = (e) => e === null ? B().setApp(\"files\").build() : B().setApp(\"files\").setUid(e.uid).build(), m = me(A());\n/**\n * @copyright Copyright (c) 2021 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nclass Ne {\n _entries = [];\n registerEntry(t) {\n this.validateEntry(t), this._entries.push(t);\n }\n unregisterEntry(t) {\n const r = typeof t == \"string\" ? this.getEntryIndex(t) : this.getEntryIndex(t.id);\n if (r === -1) {\n m.warn(\"Entry not found, nothing removed\", { entry: t, entries: this.getEntries() });\n return;\n }\n this._entries.splice(r, 1);\n }\n /**\n * Get the list of registered entries\n *\n * @param {Folder} context the creation context. Usually the current folder\n */\n getEntries(t) {\n return t ? this._entries.filter((r) => typeof r.enabled == \"function\" ? r.enabled(t) : !0) : this._entries;\n }\n getEntryIndex(t) {\n return this._entries.findIndex((r) => r.id === t);\n }\n validateEntry(t) {\n if (!t.id || !t.displayName || !(t.iconSvgInline || t.iconClass) || !t.handler)\n throw new Error(\"Invalid entry\");\n if (typeof t.id != \"string\" || typeof t.displayName != \"string\")\n throw new Error(\"Invalid id or displayName property\");\n if (t.iconClass && typeof t.iconClass != \"string\" || t.iconSvgInline && typeof t.iconSvgInline != \"string\")\n throw new Error(\"Invalid icon provided\");\n if (t.enabled !== void 0 && typeof t.enabled != \"function\")\n throw new Error(\"Invalid enabled property\");\n if (typeof t.handler != \"function\")\n throw new Error(\"Invalid handler property\");\n if (\"order\" in t && typeof t.order != \"number\")\n throw new Error(\"Invalid order property\");\n if (this.getEntryIndex(t.id) !== -1)\n throw new Error(\"Duplicate entry\");\n }\n}\nconst F = function() {\n return typeof window._nc_newfilemenu > \"u\" && (window._nc_newfilemenu = new Ne(), m.debug(\"NewFileMenu initialized\")), window._nc_newfilemenu;\n};\n/**\n * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @author Christoph Wurst <christoph@winzerhof-wurst.at>\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst C = [\"B\", \"KB\", \"MB\", \"GB\", \"TB\", \"PB\"], P = [\"B\", \"KiB\", \"MiB\", \"GiB\", \"TiB\", \"PiB\"];\nfunction Yt(e, t = !1, r = !1, s = !1) {\n r = r && !s, typeof e == \"string\" && (e = Number(e));\n let n = e > 0 ? Math.floor(Math.log(e) / Math.log(s ? 1e3 : 1024)) : 0;\n n = Math.min((r ? P.length : C.length) - 1, n);\n const i = r ? P[n] : C[n];\n let d = (e / Math.pow(s ? 1e3 : 1024, n)).toFixed(1);\n return t === !0 && n === 0 ? (d !== \"0.0\" ? \"< 1 \" : \"0 \") + (r ? P[1] : C[1]) : (n < 2 ? d = parseFloat(d).toFixed(0) : d = parseFloat(d).toLocaleString(ae()), d + \" \" + i);\n}\nfunction Jt(e, t = !1) {\n try {\n e = `${e}`.toLocaleLowerCase().replaceAll(/\\s+/g, \"\").replaceAll(\",\", \".\");\n } catch {\n return null;\n }\n const r = e.match(/^([0-9]*(\\.[0-9]*)?)([kmgtp]?)(i?)b?$/);\n if (r === null || r[1] === \".\" || r[1] === \"\")\n return null;\n const s = {\n \"\": 0,\n k: 1,\n m: 2,\n g: 3,\n t: 4,\n p: 5,\n e: 6\n }, n = `${r[1]}`, i = r[4] === \"i\" || t ? 1024 : 1e3;\n return Math.round(Number.parseFloat(n) * i ** s[r[3]]);\n}\n/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nvar W = /* @__PURE__ */ ((e) => (e.DEFAULT = \"default\", e.HIDDEN = \"hidden\", e))(W || {});\nclass Qt {\n _action;\n constructor(t) {\n this.validateAction(t), this._action = t;\n }\n get id() {\n return this._action.id;\n }\n get displayName() {\n return this._action.displayName;\n }\n get title() {\n return this._action.title;\n }\n get iconSvgInline() {\n return this._action.iconSvgInline;\n }\n get enabled() {\n return this._action.enabled;\n }\n get exec() {\n return this._action.exec;\n }\n get execBatch() {\n return this._action.execBatch;\n }\n get order() {\n return this._action.order;\n }\n get parent() {\n return this._action.parent;\n }\n get default() {\n return this._action.default;\n }\n get inline() {\n return this._action.inline;\n }\n get renderInline() {\n return this._action.renderInline;\n }\n validateAction(t) {\n if (!t.id || typeof t.id != \"string\")\n throw new Error(\"Invalid id\");\n if (!t.displayName || typeof t.displayName != \"function\")\n throw new Error(\"Invalid displayName function\");\n if (\"title\" in t && typeof t.title != \"function\")\n throw new Error(\"Invalid title function\");\n if (!t.iconSvgInline || typeof t.iconSvgInline != \"function\")\n throw new Error(\"Invalid iconSvgInline function\");\n if (!t.exec || typeof t.exec != \"function\")\n throw new Error(\"Invalid exec function\");\n if (\"enabled\" in t && typeof t.enabled != \"function\")\n throw new Error(\"Invalid enabled function\");\n if (\"execBatch\" in t && typeof t.execBatch != \"function\")\n throw new Error(\"Invalid execBatch function\");\n if (\"order\" in t && typeof t.order != \"number\")\n throw new Error(\"Invalid order\");\n if (\"parent\" in t && typeof t.parent != \"string\")\n throw new Error(\"Invalid parent\");\n if (t.default && !Object.values(W).includes(t.default))\n throw new Error(\"Invalid default\");\n if (\"inline\" in t && typeof t.inline != \"function\")\n throw new Error(\"Invalid inline function\");\n if (\"renderInline\" in t && typeof t.renderInline != \"function\")\n throw new Error(\"Invalid renderInline function\");\n }\n}\nconst Dt = function(e) {\n if (typeof window._nc_fileactions > \"u\" && (window._nc_fileactions = [], m.debug(\"FileActions initialized\")), window._nc_fileactions.find((t) => t.id === e.id)) {\n m.error(`FileAction ${e.id} already registered`, { action: e });\n return;\n }\n window._nc_fileactions.push(e);\n}, er = function() {\n return typeof window._nc_fileactions > \"u\" && (window._nc_fileactions = [], m.debug(\"FileActions initialized\")), window._nc_fileactions;\n};\n/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nclass tr {\n _header;\n constructor(t) {\n this.validateHeader(t), this._header = t;\n }\n get id() {\n return this._header.id;\n }\n get order() {\n return this._header.order;\n }\n get enabled() {\n return this._header.enabled;\n }\n get render() {\n return this._header.render;\n }\n get updated() {\n return this._header.updated;\n }\n validateHeader(t) {\n if (!t.id || !t.render || !t.updated)\n throw new Error(\"Invalid header: id, render and updated are required\");\n if (typeof t.id != \"string\")\n throw new Error(\"Invalid id property\");\n if (t.enabled !== void 0 && typeof t.enabled != \"function\")\n throw new Error(\"Invalid enabled property\");\n if (t.render && typeof t.render != \"function\")\n throw new Error(\"Invalid render property\");\n if (t.updated && typeof t.updated != \"function\")\n throw new Error(\"Invalid updated property\");\n }\n}\nconst rr = function(e) {\n if (typeof window._nc_filelistheader > \"u\" && (window._nc_filelistheader = [], m.debug(\"FileListHeaders initialized\")), window._nc_filelistheader.find((t) => t.id === e.id)) {\n m.error(`Header ${e.id} already registered`, { header: e });\n return;\n }\n window._nc_filelistheader.push(e);\n}, nr = function() {\n return typeof window._nc_filelistheader > \"u\" && (window._nc_filelistheader = [], m.debug(\"FileListHeaders initialized\")), window._nc_filelistheader;\n};\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nvar N = /* @__PURE__ */ ((e) => (e[e.NONE = 0] = \"NONE\", e[e.CREATE = 4] = \"CREATE\", e[e.READ = 1] = \"READ\", e[e.UPDATE = 2] = \"UPDATE\", e[e.DELETE = 8] = \"DELETE\", e[e.SHARE = 16] = \"SHARE\", e[e.ALL = 31] = \"ALL\", e))(N || {});\n/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n * @author Ferdinand Thiessen <opensource@fthiessen.de>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst Z = [\n \"d:getcontentlength\",\n \"d:getcontenttype\",\n \"d:getetag\",\n \"d:getlastmodified\",\n \"d:quota-available-bytes\",\n \"d:resourcetype\",\n \"nc:has-preview\",\n \"nc:is-encrypted\",\n \"nc:mount-type\",\n \"oc:comments-unread\",\n \"oc:favorite\",\n \"oc:fileid\",\n \"oc:owner-display-name\",\n \"oc:owner-id\",\n \"oc:permissions\",\n \"oc:size\"\n], j = {\n d: \"DAV:\",\n nc: \"http://nextcloud.org/ns\",\n oc: \"http://owncloud.org/ns\",\n ocs: \"http://open-collaboration-services.org/ns\"\n}, ir = function(e, t = { nc: \"http://nextcloud.org/ns\" }) {\n typeof window._nc_dav_properties > \"u\" && (window._nc_dav_properties = [...Z], window._nc_dav_namespaces = { ...j });\n const r = { ...window._nc_dav_namespaces, ...t };\n if (window._nc_dav_properties.find((n) => n === e))\n return m.warn(`${e} already registered`, { prop: e }), !1;\n if (e.startsWith(\"<\") || e.split(\":\").length !== 2)\n return m.error(`${e} is not valid. See example: 'oc:fileid'`, { prop: e }), !1;\n const s = e.split(\":\")[0];\n return r[s] ? (window._nc_dav_properties.push(e), window._nc_dav_namespaces = r, !0) : (m.error(`${e} namespace unknown`, { prop: e, namespaces: r }), !1);\n}, V = function() {\n return typeof window._nc_dav_properties > \"u\" && (window._nc_dav_properties = [...Z]), window._nc_dav_properties.map((e) => `<${e} />`).join(\" \");\n}, L = function() {\n return typeof window._nc_dav_namespaces > \"u\" && (window._nc_dav_namespaces = { ...j }), Object.keys(window._nc_dav_namespaces).map((e) => `xmlns:${e}=\"${window._nc_dav_namespaces?.[e]}\"`).join(\" \");\n}, sr = function() {\n return `<?xml version=\"1.0\"?>\n\t\t<d:propfind ${L()}>\n\t\t\t<d:prop>\n\t\t\t\t${V()}\n\t\t\t</d:prop>\n\t\t</d:propfind>`;\n}, Ee = function() {\n return `<?xml version=\"1.0\"?>\n\t\t<oc:filter-files ${L()}>\n\t\t\t<d:prop>\n\t\t\t\t${V()}\n\t\t\t</d:prop>\n\t\t\t<oc:filter-rules>\n\t\t\t\t<oc:favorite>1</oc:favorite>\n\t\t\t</oc:filter-rules>\n\t\t</oc:filter-files>`;\n}, or = function(e) {\n return `<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<d:searchrequest ${L()}\n\txmlns:ns=\"https://github.com/icewind1991/SearchDAV/ns\">\n\t<d:basicsearch>\n\t\t<d:select>\n\t\t\t<d:prop>\n\t\t\t\t${V()}\n\t\t\t</d:prop>\n\t\t</d:select>\n\t\t<d:from>\n\t\t\t<d:scope>\n\t\t\t\t<d:href>/files/${A()?.uid}/</d:href>\n\t\t\t\t<d:depth>infinity</d:depth>\n\t\t\t</d:scope>\n\t\t</d:from>\n\t\t<d:where>\n\t\t\t<d:and>\n\t\t\t\t<d:or>\n\t\t\t\t\t<d:not>\n\t\t\t\t\t\t<d:eq>\n\t\t\t\t\t\t\t<d:prop>\n\t\t\t\t\t\t\t\t<d:getcontenttype/>\n\t\t\t\t\t\t\t</d:prop>\n\t\t\t\t\t\t\t<d:literal>httpd/unix-directory</d:literal>\n\t\t\t\t\t\t</d:eq>\n\t\t\t\t\t</d:not>\n\t\t\t\t\t<d:eq>\n\t\t\t\t\t\t<d:prop>\n\t\t\t\t\t\t\t<oc:size/>\n\t\t\t\t\t\t</d:prop>\n\t\t\t\t\t\t<d:literal>0</d:literal>\n\t\t\t\t\t</d:eq>\n\t\t\t\t</d:or>\n\t\t\t\t<d:gt>\n\t\t\t\t\t<d:prop>\n\t\t\t\t\t\t<d:getlastmodified/>\n\t\t\t\t\t</d:prop>\n\t\t\t\t\t<d:literal>${e}</d:literal>\n\t\t\t\t</d:gt>\n\t\t\t</d:and>\n\t\t</d:where>\n\t\t<d:orderby>\n\t\t\t<d:order>\n\t\t\t\t<d:prop>\n\t\t\t\t\t<d:getlastmodified/>\n\t\t\t\t</d:prop>\n\t\t\t\t<d:descending/>\n\t\t\t</d:order>\n\t\t</d:orderby>\n\t\t<d:limit>\n\t\t\t<d:nresults>100</d:nresults>\n\t\t\t<ns:firstresult>0</ns:firstresult>\n\t\t</d:limit>\n\t</d:basicsearch>\n</d:searchrequest>`;\n};\n/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n * @author Ferdinand Thiessen <opensource@fthiessen.de>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst be = function(e = \"\") {\n let t = N.NONE;\n return e && ((e.includes(\"C\") || e.includes(\"K\")) && (t |= N.CREATE), e.includes(\"G\") && (t |= N.READ), (e.includes(\"W\") || e.includes(\"N\") || e.includes(\"V\")) && (t |= N.UPDATE), e.includes(\"D\") && (t |= N.DELETE), e.includes(\"R\") && (t |= N.SHARE)), t;\n};\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nvar S = /* @__PURE__ */ ((e) => (e.Folder = \"folder\", e.File = \"file\", e))(S || {});\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst Y = function(e, t) {\n return e.match(t) !== null;\n}, q = (e, t) => {\n if (e.id && typeof e.id != \"number\")\n throw new Error(\"Invalid id type of value\");\n if (!e.source)\n throw new Error(\"Missing mandatory source\");\n try {\n new URL(e.source);\n } catch {\n throw new Error(\"Invalid source format, source must be a valid URL\");\n }\n if (!e.source.startsWith(\"http\"))\n throw new Error(\"Invalid source format, only http(s) is supported\");\n if (e.mtime && !(e.mtime instanceof Date))\n throw new Error(\"Invalid mtime type\");\n if (e.crtime && !(e.crtime instanceof Date))\n throw new Error(\"Invalid crtime type\");\n if (!e.mime || typeof e.mime != \"string\" || !e.mime.match(/^[-\\w.]+\\/[-+\\w.]+$/gi))\n throw new Error(\"Missing or invalid mandatory mime\");\n if (\"size\" in e && typeof e.size != \"number\" && e.size !== void 0)\n throw new Error(\"Invalid size type\");\n if (\"permissions\" in e && e.permissions !== void 0 && !(typeof e.permissions == \"number\" && e.permissions >= N.NONE && e.permissions <= N.ALL))\n throw new Error(\"Invalid permissions\");\n if (e.owner && e.owner !== null && typeof e.owner != \"string\")\n throw new Error(\"Invalid owner type\");\n if (e.attributes && typeof e.attributes != \"object\")\n throw new Error(\"Invalid attributes type\");\n if (e.root && typeof e.root != \"string\")\n throw new Error(\"Invalid root type\");\n if (e.root && !e.root.startsWith(\"/\"))\n throw new Error(\"Root must start with a leading slash\");\n if (e.root && !e.source.includes(e.root))\n throw new Error(\"Root must be part of the source\");\n if (e.root && Y(e.source, t)) {\n const r = e.source.match(t)[0];\n if (!e.source.includes(le(r, e.root)))\n throw new Error(\"The root must be relative to the service. e.g /files/emma\");\n }\n if (e.status && !Object.values(J).includes(e.status))\n throw new Error(\"Status must be a valid NodeStatus\");\n};\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nvar J = /* @__PURE__ */ ((e) => (e.NEW = \"new\", e.FAILED = \"failed\", e.LOADING = \"loading\", e.LOCKED = \"locked\", e))(J || {});\nclass Q {\n _data;\n _attributes;\n _knownDavService = /(remote|public)\\.php\\/(web)?dav/i;\n constructor(t, r) {\n q(t, r || this._knownDavService), this._data = t;\n const s = {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n set: (n, i, d) => (this.updateMtime(), Reflect.set(n, i, d)),\n deleteProperty: (n, i) => (this.updateMtime(), Reflect.deleteProperty(n, i))\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n };\n this._attributes = new Proxy(t.attributes || {}, s), delete this._data.attributes, r && (this._knownDavService = r);\n }\n /**\n * Get the source url to this object\n */\n get source() {\n return this._data.source.replace(/\\/$/i, \"\");\n }\n /**\n * Get the encoded source url to this object for requests purposes\n */\n get encodedSource() {\n const { origin: t } = new URL(this.source);\n return t + he(this.source.slice(t.length));\n }\n /**\n * Get this object name\n */\n get basename() {\n return fe(this.source);\n }\n /**\n * Get this object's extension\n */\n get extension() {\n return ce(this.source);\n }\n /**\n * Get the directory path leading to this object\n * Will use the relative path to root if available\n */\n get dirname() {\n if (this.root) {\n let r = this.source;\n this.isDavRessource && (r = r.split(this._knownDavService).pop());\n const s = r.indexOf(this.root), n = this.root.replace(/\\/$/, \"\");\n return I(r.slice(s + n.length) || \"/\");\n }\n const t = new URL(this.source);\n return I(t.pathname);\n }\n /**\n * Get the file mime\n */\n get mime() {\n return this._data.mime;\n }\n /**\n * Get the file modification time\n */\n get mtime() {\n return this._data.mtime;\n }\n /**\n * Get the file creation time\n */\n get crtime() {\n return this._data.crtime;\n }\n /**\n * Get the file size\n */\n get size() {\n return this._data.size;\n }\n /**\n * Get the file attribute\n */\n get attributes() {\n return this._attributes;\n }\n /**\n * Get the file permissions\n */\n get permissions() {\n return this.owner === null && !this.isDavRessource ? N.READ : this._data.permissions !== void 0 ? this._data.permissions : N.NONE;\n }\n /**\n * Get the file owner\n */\n get owner() {\n return this.isDavRessource ? this._data.owner : null;\n }\n /**\n * Is this a dav-related ressource ?\n */\n get isDavRessource() {\n return Y(this.source, this._knownDavService);\n }\n /**\n * Get the dav root of this object\n */\n get root() {\n return this._data.root ? this._data.root.replace(/^(.+)\\/$/, \"$1\") : this.isDavRessource && I(this.source).split(this._knownDavService).pop() || null;\n }\n /**\n * Get the absolute path of this object relative to the root\n */\n get path() {\n if (this.root) {\n let t = this.source;\n this.isDavRessource && (t = t.split(this._knownDavService).pop());\n const r = t.indexOf(this.root), s = this.root.replace(/\\/$/, \"\");\n return t.slice(r + s.length) || \"/\";\n }\n return (this.dirname + \"/\" + this.basename).replace(/\\/\\//g, \"/\");\n }\n /**\n * Get the node id if defined.\n * Will look for the fileid in attributes if undefined.\n */\n get fileid() {\n return this._data?.id || this.attributes?.fileid;\n }\n /**\n * Get the node status.\n */\n get status() {\n return this._data?.status;\n }\n /**\n * Set the node status.\n */\n set status(t) {\n this._data.status = t;\n }\n /**\n * Move the node to a new destination\n *\n * @param {string} destination the new source.\n * e.g. https://cloud.domain.com/remote.php/dav/files/emma/Photos/picture.jpg\n */\n move(t) {\n q({ ...this._data, source: t }, this._knownDavService), this._data.source = t, this.updateMtime();\n }\n /**\n * Rename the node\n * This aliases the move method for easier usage\n *\n * @param basename The new name of the node\n */\n rename(t) {\n if (t.includes(\"/\"))\n throw new Error(\"Invalid basename\");\n this.move(I(this.source) + \"/\" + t);\n }\n /**\n * Update the mtime if exists.\n */\n updateMtime() {\n this._data.mtime && (this._data.mtime = /* @__PURE__ */ new Date());\n }\n}\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nclass ye extends Q {\n get type() {\n return S.File;\n }\n}\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nclass _e extends Q {\n constructor(t) {\n super({\n ...t,\n mime: \"httpd/unix-directory\"\n });\n }\n get type() {\n return S.Folder;\n }\n get extension() {\n return null;\n }\n get mime() {\n return \"httpd/unix-directory\";\n }\n}\n/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n * @author Ferdinand Thiessen <opensource@fthiessen.de>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst D = `/files/${A()?.uid}`, ee = pe(\"dav\"), ur = function(e = ee, t = {}) {\n const r = ge(e, { headers: t });\n function s(i) {\n r.setHeaders({\n ...t,\n // Add this so the server knows it is an request from the browser\n \"X-Requested-With\": \"XMLHttpRequest\",\n // Inject user auth\n requesttoken: i ?? \"\"\n });\n }\n return ue(s), s(de()), we().patch(\"fetch\", (i, d) => {\n const u = d.headers;\n return u?.method && (d.method = u.method, delete u.method), fetch(i, d);\n }), r;\n}, dr = async (e, t = \"/\", r = D) => (await e.getDirectoryContents(`${r}${t}`, {\n details: !0,\n data: Ee(),\n headers: {\n // see davGetClient for patched webdav client\n method: \"REPORT\"\n },\n includeSelf: !0\n})).data.filter((n) => n.filename !== t).map((n) => ve(n, r)), ve = function(e, t = D, r = ee) {\n const s = A()?.uid;\n if (!s)\n throw new Error(\"No user id found\");\n const n = e.props, i = be(n?.permissions), d = (n?.[\"owner-id\"] || s).toString(), u = {\n id: n?.fileid || 0,\n source: `${r}${e.filename}`,\n mtime: new Date(Date.parse(e.lastmod)),\n mime: e.mime || \"application/octet-stream\",\n size: n?.size || Number.parseInt(n.getcontentlength || \"0\"),\n permissions: i,\n owner: d,\n root: t,\n attributes: {\n ...e,\n ...n,\n hasPreview: n?.[\"has-preview\"]\n }\n };\n return delete u.attributes?.props, e.type === \"file\" ? new ye(u) : new _e(u);\n};\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nclass Te {\n _views = [];\n _currentView = null;\n register(t) {\n if (this._views.find((r) => r.id === t.id))\n throw new Error(`View id ${t.id} is already registered`);\n this._views.push(t);\n }\n remove(t) {\n const r = this._views.findIndex((s) => s.id === t);\n r !== -1 && this._views.splice(r, 1);\n }\n get views() {\n return this._views;\n }\n setActive(t) {\n this._currentView = t;\n }\n get active() {\n return this._currentView;\n }\n}\nconst ar = function() {\n return typeof window._nc_navigation > \"u\" && (window._nc_navigation = new Te(), m.debug(\"Navigation service initialized\")), window._nc_navigation;\n};\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nclass Ie {\n _column;\n constructor(t) {\n Ae(t), this._column = t;\n }\n get id() {\n return this._column.id;\n }\n get title() {\n return this._column.title;\n }\n get render() {\n return this._column.render;\n }\n get sort() {\n return this._column.sort;\n }\n get summary() {\n return this._column.summary;\n }\n}\nconst Ae = function(e) {\n if (!e.id || typeof e.id != \"string\")\n throw new Error(\"A column id is required\");\n if (!e.title || typeof e.title != \"string\")\n throw new Error(\"A column title is required\");\n if (!e.render || typeof e.render != \"function\")\n throw new Error(\"A render function is required\");\n if (e.sort && typeof e.sort != \"function\")\n throw new Error(\"Column sortFunction must be a function\");\n if (e.summary && typeof e.summary != \"function\")\n throw new Error(\"Column summary must be a function\");\n return !0;\n};\nvar R = {}, O = {};\n(function(e) {\n const t = \":A-Za-z_\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD\", r = t + \"\\\\-.\\\\d\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040\", s = \"[\" + t + \"][\" + r + \"]*\", n = new RegExp(\"^\" + s + \"$\"), i = function(u, o) {\n const a = [];\n let l = o.exec(u);\n for (; l; ) {\n const f = [];\n f.startIndex = o.lastIndex - l[0].length;\n const c = l.length;\n for (let g = 0; g < c; g++)\n f.push(l[g]);\n a.push(f), l = o.exec(u);\n }\n return a;\n }, d = function(u) {\n const o = n.exec(u);\n return !(o === null || typeof o > \"u\");\n };\n e.isExist = function(u) {\n return typeof u < \"u\";\n }, e.isEmptyObject = function(u) {\n return Object.keys(u).length === 0;\n }, e.merge = function(u, o, a) {\n if (o) {\n const l = Object.keys(o), f = l.length;\n for (let c = 0; c < f; c++)\n a === \"strict\" ? u[l[c]] = [o[l[c]]] : u[l[c]] = o[l[c]];\n }\n }, e.getValue = function(u) {\n return e.isExist(u) ? u : \"\";\n }, e.isName = d, e.getAllMatches = i, e.nameRegexp = s;\n})(O);\nconst M = O, Oe = {\n allowBooleanAttributes: !1,\n //A tag can have attributes without any value\n unpairedTags: []\n};\nR.validate = function(e, t) {\n t = Object.assign({}, Oe, t);\n const r = [];\n let s = !1, n = !1;\n e[0] === \"\\uFEFF\" && (e = e.substr(1));\n for (let i = 0; i < e.length; i++)\n if (e[i] === \"<\" && e[i + 1] === \"?\") {\n if (i += 2, i = U(e, i), i.err)\n return i;\n } else if (e[i] === \"<\") {\n let d = i;\n if (i++, e[i] === \"!\") {\n i = G(e, i);\n continue;\n } else {\n let u = !1;\n e[i] === \"/\" && (u = !0, i++);\n let o = \"\";\n for (; i < e.length && e[i] !== \">\" && e[i] !== \" \" && e[i] !== \"\t\" && e[i] !== `\n` && e[i] !== \"\\r\"; i++)\n o += e[i];\n if (o = o.trim(), o[o.length - 1] === \"/\" && (o = o.substring(0, o.length - 1), i--), !Se(o)) {\n let f;\n return o.trim().length === 0 ? f = \"Invalid space after '<'.\" : f = \"Tag '\" + o + \"' is an invalid name.\", p(\"InvalidTag\", f, w(e, i));\n }\n const a = xe(e, i);\n if (a === !1)\n return p(\"InvalidAttr\", \"Attributes for '\" + o + \"' have open quote.\", w(e, i));\n let l = a.value;\n if (i = a.index, l[l.length - 1] === \"/\") {\n const f = i - l.length;\n l = l.substring(0, l.length - 1);\n const c = z(l, t);\n if (c === !0)\n s = !0;\n else\n return p(c.err.code, c.err.msg, w(e, f + c.err.line));\n } else if (u)\n if (a.tagClosed) {\n if (l.trim().length > 0)\n return p(\"InvalidTag\", \"Closing tag '\" + o + \"' can't have attributes or invalid starting.\", w(e, d));\n {\n const f = r.pop();\n if (o !== f.tagName) {\n let c = w(e, f.tagStartPos);\n return p(\n \"InvalidTag\",\n \"Expected closing tag '\" + f.tagName + \"' (opened in line \" + c.line + \", col \" + c.col + \") instead of closing tag '\" + o + \"'.\",\n w(e, d)\n );\n }\n r.length == 0 && (n = !0);\n }\n } else\n return p(\"InvalidTag\", \"Closing tag '\" + o + \"' doesn't have proper closing.\", w(e, i));\n else {\n const f = z(l, t);\n if (f !== !0)\n return p(f.err.code, f.err.msg, w(e, i - l.length + f.err.line));\n if (n === !0)\n return p(\"InvalidXml\", \"Multiple possible root nodes found.\", w(e, i));\n t.unpairedTags.indexOf(o) !== -1 || r.push({ tagName: o, tagStartPos: d }), s = !0;\n }\n for (i++; i < e.length; i++)\n if (e[i] === \"<\")\n if (e[i + 1] === \"!\") {\n i++, i = G(e, i);\n continue;\n } else if (e[i + 1] === \"?\") {\n if (i = U(e, ++i), i.err)\n return i;\n } else\n break;\n else if (e[i] === \"&\") {\n const f = Ve(e, i);\n if (f == -1)\n return p(\"InvalidChar\", \"char '&' is not expected.\", w(e, i));\n i = f;\n } else if (n === !0 && !X(e[i]))\n return p(\"InvalidXml\", \"Extra text at the end\", w(e, i));\n e[i] === \"<\" && i--;\n }\n } else {\n if (X(e[i]))\n continue;\n return p(\"InvalidChar\", \"char '\" + e[i] + \"' is not expected.\", w(e, i));\n }\n if (s) {\n if (r.length == 1)\n return p(\"InvalidTag\", \"Unclosed tag '\" + r[0].tagName + \"'.\", w(e, r[0].tagStartPos));\n if (r.length > 0)\n return p(\"InvalidXml\", \"Invalid '\" + JSON.stringify(r.map((i) => i.tagName), null, 4).replace(/\\r?\\n/g, \"\") + \"' found.\", { line: 1, col: 1 });\n } else\n return p(\"InvalidXml\", \"Start tag expected.\", 1);\n return !0;\n};\nfunction X(e) {\n return e === \" \" || e === \"\t\" || e === `\n` || e === \"\\r\";\n}\nfunction U(e, t) {\n const r = t;\n for (; t < e.length; t++)\n if (e[t] == \"?\" || e[t] == \" \") {\n const s = e.substr(r, t - r);\n if (t > 5 && s === \"xml\")\n return p(\"InvalidXml\", \"XML declaration allowed only at the start of the document.\", w(e, t));\n if (e[t] == \"?\" && e[t + 1] == \">\") {\n t++;\n break;\n } else\n continue;\n }\n return t;\n}\nfunction G(e, t) {\n if (e.length > t + 5 && e[t + 1] === \"-\" && e[t + 2] === \"-\") {\n for (t += 3; t < e.length; t++)\n if (e[t] === \"-\" && e[t + 1] === \"-\" && e[t + 2] === \">\") {\n t += 2;\n break;\n }\n } else if (e.length > t + 8 && e[t + 1] === \"D\" && e[t + 2] === \"O\" && e[t + 3] === \"C\" && e[t + 4] === \"T\" && e[t + 5] === \"Y\" && e[t + 6] === \"P\" && e[t + 7] === \"E\") {\n let r = 1;\n for (t += 8; t < e.length; t++)\n if (e[t] === \"<\")\n r++;\n else if (e[t] === \">\" && (r--, r === 0))\n break;\n } else if (e.length > t + 9 && e[t + 1] === \"[\" && e[t + 2] === \"C\" && e[t + 3] === \"D\" && e[t + 4] === \"A\" && e[t + 5] === \"T\" && e[t + 6] === \"A\" && e[t + 7] === \"[\") {\n for (t += 8; t < e.length; t++)\n if (e[t] === \"]\" && e[t + 1] === \"]\" && e[t + 2] === \">\") {\n t += 2;\n break;\n }\n }\n return t;\n}\nconst Ce = '\"', Pe = \"'\";\nfunction xe(e, t) {\n let r = \"\", s = \"\", n = !1;\n for (; t < e.length; t++) {\n if (e[t] === Ce || e[t] === Pe)\n s === \"\" ? s = e[t] : s !== e[t] || (s = \"\");\n else if (e[t] === \">\" && s === \"\") {\n n = !0;\n break;\n }\n r += e[t];\n }\n return s !== \"\" ? !1 : {\n value: r,\n index: t,\n tagClosed: n\n };\n}\nconst $e = new RegExp(`(\\\\s*)([^\\\\s=]+)(\\\\s*=)?(\\\\s*(['\"])(([\\\\s\\\\S])*?)\\\\5)?`, \"g\");\nfunction z(e, t) {\n const r = M.getAllMatches(e, $e), s = {};\n for (let n = 0; n < r.length; n++) {\n if (r[n][1].length === 0)\n return p(\"InvalidAttr\", \"Attribute '\" + r[n][2] + \"' has no space in starting.\", v(r[n]));\n if (r[n][3] !== void 0 && r[n][4] === void 0)\n return p(\"InvalidAttr\", \"Attribute '\" + r[n][2] + \"' is without value.\", v(r[n]));\n if (r[n][3] === void 0 && !t.allowBooleanAttributes)\n return p(\"InvalidAttr\", \"boolean attribute '\" + r[n][2] + \"' is not allowed.\", v(r[n]));\n const i = r[n][2];\n if (!Le(i))\n return p(\"InvalidAttr\", \"Attribute '\" + i + \"' is an invalid name.\", v(r[n]));\n if (!s.hasOwnProperty(i))\n s[i] = 1;\n else\n return p(\"InvalidAttr\", \"Attribute '\" + i + \"' is repeated.\", v(r[n]));\n }\n return !0;\n}\nfunction Fe(e, t) {\n let r = /\\d/;\n for (e[t] === \"x\" && (t++, r = /[\\da-fA-F]/); t < e.length; t++) {\n if (e[t] === \";\")\n return t;\n if (!e[t].match(r))\n break;\n }\n return -1;\n}\nfunction Ve(e, t) {\n if (t++, e[t] === \";\")\n return -1;\n if (e[t] === \"#\")\n return t++, Fe(e, t);\n let r = 0;\n for (; t < e.length; t++, r++)\n if (!(e[t].match(/\\w/) && r < 20)) {\n if (e[t] === \";\")\n break;\n return -1;\n }\n return t;\n}\nfunction p(e, t, r) {\n return {\n err: {\n code: e,\n msg: t,\n line: r.line || r,\n col: r.col\n }\n };\n}\nfunction Le(e) {\n return M.isName(e);\n}\nfunction Se(e) {\n return M.isName(e);\n}\nfunction w(e, t) {\n const r = e.substring(0, t).split(/\\r?\\n/);\n return {\n line: r.length,\n // column number is last line's length + 1, because column numbering starts at 1:\n col: r[r.length - 1].length + 1\n };\n}\nfunction v(e) {\n return e.startIndex + e[1].length;\n}\nvar k = {};\nconst te = {\n preserveOrder: !1,\n attributeNamePrefix: \"@_\",\n attributesGroupName: !1,\n textNodeName: \"#text\",\n ignoreAttributes: !0,\n removeNSPrefix: !1,\n // remove NS from tag name or attribute name if true\n allowBooleanAttributes: !1,\n //a tag can have attributes without any value\n //ignoreRootElement : false,\n parseTagValue: !0,\n parseAttributeValue: !1,\n trimValues: !0,\n //Trim string values of tag and attributes\n cdataPropName: !1,\n numberParseOptions: {\n hex: !0,\n leadingZeros: !0,\n eNotation: !0\n },\n tagValueProcessor: function(e, t) {\n return t;\n },\n attributeValueProcessor: function(e, t) {\n return t;\n },\n stopNodes: [],\n //nested tags will not be parsed even for errors\n alwaysCreateTextNode: !1,\n isArray: () => !1,\n commentPropName: !1,\n unpairedTags: [],\n processEntities: !0,\n htmlEntities: !1,\n ignoreDeclaration: !1,\n ignorePiTags: !1,\n transformTagName: !1,\n transformAttributeName: !1,\n updateTag: function(e, t, r) {\n return e;\n }\n // skipEmptyListItem: false\n}, Re = function(e) {\n return Object.assign({}, te, e);\n};\nk.buildOptions = Re;\nk.defaultOptions = te;\nclass Me {\n constructor(t) {\n this.tagname = t, this.child = [], this[\":@\"] = {};\n }\n add(t, r) {\n t === \"__proto__\" && (t = \"#__proto__\"), this.child.push({ [t]: r });\n }\n addChild(t) {\n t.tagname === \"__proto__\" && (t.tagname = \"#__proto__\"), t[\":@\"] && Object.keys(t[\":@\"]).length > 0 ? this.child.push({ [t.tagname]: t.child, \":@\": t[\":@\"] }) : this.child.push({ [t.tagname]: t.child });\n }\n}\nvar ke = Me;\nconst Be = O;\nfunction qe(e, t) {\n const r = {};\n if (e[t + 3] === \"O\" && e[t + 4] === \"C\" && e[t + 5] === \"T\" && e[t + 6] === \"Y\" && e[t + 7] === \"P\" && e[t + 8] === \"E\") {\n t = t + 9;\n let s = 1, n = !1, i = !1, d = \"\";\n for (; t < e.length; t++)\n if (e[t] === \"<\" && !i) {\n if (n && Ge(e, t))\n t += 7, [entityName, val, t] = Xe(e, t + 1), val.indexOf(\"&\") === -1 && (r[We(entityName)] = {\n regx: RegExp(`&${entityName};`, \"g\"),\n val\n });\n else if (n && ze(e, t))\n t += 8;\n else if (n && He(e, t))\n t += 8;\n else if (n && Ke(e, t))\n t += 9;\n else if (Ue)\n i = !0;\n else\n throw new Error(\"Invalid DOCTYPE\");\n s++, d = \"\";\n } else if (e[t] === \">\") {\n if (i ? e[t - 1] === \"-\" && e[t - 2] === \"-\" && (i = !1, s--) : s--, s === 0)\n break;\n } else\n e[t] === \"[\" ? n = !0 : d += e[t];\n if (s !== 0)\n throw new Error(\"Unclosed DOCTYPE\");\n } else\n throw new Error(\"Invalid Tag instead of DOCTYPE\");\n return { entities: r, i: t };\n}\nfunction Xe(e, t) {\n let r = \"\";\n for (; t < e.length && e[t] !== \"'\" && e[t] !== '\"'; t++)\n r += e[t];\n if (r = r.trim(), r.indexOf(\" \") !== -1)\n throw new Error(\"External entites are not supported\");\n const s = e[t++];\n let n = \"\";\n for (; t < e.length && e[t] !== s; t++)\n n += e[t];\n return [r, n, t];\n}\nfunction Ue(e, t) {\n return e[t + 1] === \"!\" && e[t + 2] === \"-\" && e[t + 3] === \"-\";\n}\nfunction Ge(e, t) {\n return e[t + 1] === \"!\" && e[t + 2] === \"E\" && e[t + 3] === \"N\" && e[t + 4] === \"T\" && e[t + 5] === \"I\" && e[t + 6] === \"T\" && e[t + 7] === \"Y\";\n}\nfunction ze(e, t) {\n return e[t + 1] === \"!\" && e[t + 2] === \"E\" && e[t + 3] === \"L\" && e[t + 4] === \"E\" && e[t + 5] === \"M\" && e[t + 6] === \"E\" && e[t + 7] === \"N\" && e[t + 8] === \"T\";\n}\nfunction He(e, t) {\n return e[t + 1] === \"!\" && e[t + 2] === \"A\" && e[t + 3] === \"T\" && e[t + 4] === \"T\" && e[t + 5] === \"L\" && e[t + 6] === \"I\" && e[t + 7] === \"S\" && e[t + 8] === \"T\";\n}\nfunction Ke(e, t) {\n return e[t + 1] === \"!\" && e[t + 2] === \"N\" && e[t + 3] === \"O\" && e[t + 4] === \"T\" && e[t + 5] === \"A\" && e[t + 6] === \"T\" && e[t + 7] === \"I\" && e[t + 8] === \"O\" && e[t + 9] === \"N\";\n}\nfunction We(e) {\n if (Be.isName(e))\n return e;\n throw new Error(`Invalid entity name ${e}`);\n}\nvar Ze = qe;\nconst je = /^[-+]?0x[a-fA-F0-9]+$/, Ye = /^([\\-\\+])?(0*)(\\.[0-9]+([eE]\\-?[0-9]+)?|[0-9]+(\\.[0-9]+([eE]\\-?[0-9]+)?)?)$/;\n!Number.parseInt && window.parseInt && (Number.parseInt = window.parseInt);\n!Number.parseFloat && window.parseFloat && (Number.parseFloat = window.parseFloat);\nconst Je = {\n hex: !0,\n leadingZeros: !0,\n decimalPoint: \".\",\n eNotation: !0\n //skipLike: /regex/\n};\nfunction Qe(e, t = {}) {\n if (t = Object.assign({}, Je, t), !e || typeof e != \"string\")\n return e;\n let r = e.trim();\n if (t.skipLike !== void 0 && t.skipLike.test(r))\n return e;\n if (t.hex && je.test(r))\n return Number.parseInt(r, 16);\n {\n const s = Ye.exec(r);\n if (s) {\n const n = s[1], i = s[2];\n let d = De(s[3]);\n const u = s[4] || s[6];\n if (!t.leadingZeros && i.length > 0 && n && r[2] !== \".\")\n return e;\n if (!t.leadingZeros && i.length > 0 && !n && r[1] !== \".\")\n return e;\n {\n const o = Number(r), a = \"\" + o;\n return a.search(/[eE]/) !== -1 || u ? t.eNotation ? o : e : r.indexOf(\".\") !== -1 ? a === \"0\" && d === \"\" || a === d || n && a === \"-\" + d ? o : e : i ? d === a || n + d === a ? o : e : r === a || r === n + a ? o : e;\n }\n } else\n return e;\n }\n}\nfunction De(e) {\n return e && e.indexOf(\".\") !== -1 && (e = e.replace(/0+$/, \"\"), e === \".\" ? e = \"0\" : e[0] === \".\" ? e = \"0\" + e : e[e.length - 1] === \".\" && (e = e.substr(0, e.length - 1))), e;\n}\nvar et = Qe;\nconst re = O, T = ke, tt = Ze, rt = et;\nlet nt = class {\n constructor(t) {\n this.options = t, this.currentNode = null, this.tagsNodeStack = [], this.docTypeEntities = {}, this.lastEntities = {\n apos: { regex: /&(apos|#39|#x27);/g, val: \"'\" },\n gt: { regex: /&(gt|#62|#x3E);/g, val: \">\" },\n lt: { regex: /&(lt|#60|#x3C);/g, val: \"<\" },\n quot: { regex: /&(quot|#34|#x22);/g, val: '\"' }\n }, this.ampEntity = { regex: /&(amp|#38|#x26);/g, val: \"&\" }, this.htmlEntities = {\n space: { regex: /&(nbsp|#160);/g, val: \" \" },\n // \"lt\" : { regex: /&(lt|#60);/g, val: \"<\" },\n // \"gt\" : { regex: /&(gt|#62);/g, val: \">\" },\n // \"amp\" : { regex: /&(amp|#38);/g, val: \"&\" },\n // \"quot\" : { regex: /&(quot|#34);/g, val: \"\\\"\" },\n // \"apos\" : { regex: /&(apos|#39);/g, val: \"'\" },\n cent: { regex: /&(cent|#162);/g, val: \"¢\" },\n pound: { regex: /&(pound|#163);/g, val: \"£\" },\n yen: { regex: /&(yen|#165);/g, val: \"¥\" },\n euro: { regex: /&(euro|#8364);/g, val: \"€\" },\n copyright: { regex: /&(copy|#169);/g, val: \"©\" },\n reg: { regex: /&(reg|#174);/g, val: \"®\" },\n inr: { regex: /&(inr|#8377);/g, val: \"₹\" }\n }, this.addExternalEntities = it, this.parseXml = at, this.parseTextData = st, this.resolveNameSpace = ot, this.buildAttributesMap = dt, this.isItStopNode = ht, this.replaceEntitiesValue = ft, this.readStopNodeData = gt, this.saveTextToParentTag = ct, this.addChild = lt;\n }\n};\nfunction it(e) {\n const t = Object.keys(e);\n for (let r = 0; r < t.length; r++) {\n const s = t[r];\n this.lastEntities[s] = {\n regex: new RegExp(\"&\" + s + \";\", \"g\"),\n val: e[s]\n };\n }\n}\nfunction st(e, t, r, s, n, i, d) {\n if (e !== void 0 && (this.options.trimValues && !s && (e = e.trim()), e.length > 0)) {\n d || (e = this.replaceEntitiesValue(e));\n const u = this.options.tagValueProcessor(t, e, r, n, i);\n return u == null ? e : typeof u != typeof e || u !== e ? u : this.options.trimValues ? $(e, this.options.parseTagValue, this.options.numberParseOptions) : e.trim() === e ? $(e, this.options.parseTagValue, this.options.numberParseOptions) : e;\n }\n}\nfunction ot(e) {\n if (this.options.removeNSPrefix) {\n const t = e.split(\":\"), r = e.charAt(0) === \"/\" ? \"/\" : \"\";\n if (t[0] === \"xmlns\")\n return \"\";\n t.length === 2 && (e = r + t[1]);\n }\n return e;\n}\nconst ut = new RegExp(`([^\\\\s=]+)\\\\s*(=\\\\s*(['\"])([\\\\s\\\\S]*?)\\\\3)?`, \"gm\");\nfunction dt(e, t, r) {\n if (!this.options.ignoreAttributes && typeof e == \"string\") {\n const s = re.getAllMatches(e, ut), n = s.length, i = {};\n for (let d = 0; d < n; d++) {\n const u = this.resolveNameSpace(s[d][1]);\n let o = s[d][4], a = this.options.attributeNamePrefix + u;\n if (u.length)\n if (this.options.transformAttributeName && (a = this.options.transformAttributeName(a)), a === \"__proto__\" && (a = \"#__proto__\"), o !== void 0) {\n this.options.trimValues && (o = o.trim()), o = this.replaceEntitiesValue(o);\n const l = this.options.attributeValueProcessor(u, o, t);\n l == null ? i[a] = o : typeof l != typeof o || l !== o ? i[a] = l : i[a] = $(\n o,\n this.options.parseAttributeValue,\n this.options.numberParseOptions\n );\n } else\n this.options.allowBooleanAttributes && (i[a] = !0);\n }\n if (!Object.keys(i).length)\n return;\n if (this.options.attributesGroupName) {\n const d = {};\n return d[this.options.attributesGroupName] = i, d;\n }\n return i;\n }\n}\nconst at = function(e) {\n e = e.replace(/\\r\\n?/g, `\n`);\n const t = new T(\"!xml\");\n let r = t, s = \"\", n = \"\";\n for (let i = 0; i < e.length; i++)\n if (e[i] === \"<\")\n if (e[i + 1] === \"/\") {\n const u = y(e, \">\", i, \"Closing Tag is not closed.\");\n let o = e.substring(i + 2, u).trim();\n if (this.options.removeNSPrefix) {\n const f = o.indexOf(\":\");\n f !== -1 && (o = o.substr(f + 1));\n }\n this.options.transformTagName && (o = this.options.transformTagName(o)), r && (s = this.saveTextToParentTag(s, r, n));\n const a = n.substring(n.lastIndexOf(\".\") + 1);\n if (o && this.options.unpairedTags.indexOf(o) !== -1)\n throw new Error(`Unpaired tag can not be used as closing tag: </${o}>`);\n let l = 0;\n a && this.options.unpairedTags.indexOf(a) !== -1 ? (l = n.lastIndexOf(\".\", n.lastIndexOf(\".\") - 1), this.tagsNodeStack.pop()) : l = n.lastIndexOf(\".\"), n = n.substring(0, l), r = this.tagsNodeStack.pop(), s = \"\", i = u;\n } else if (e[i + 1] === \"?\") {\n let u = x(e, i, !1, \"?>\");\n if (!u)\n throw new Error(\"Pi Tag is not closed.\");\n if (s = this.saveTextToParentTag(s, r, n), !(this.options.ignoreDeclaration && u.tagName === \"?xml\" || this.options.ignorePiTags)) {\n const o = new T(u.tagName);\n o.add(this.options.textNodeName, \"\"), u.tagName !== u.tagExp && u.attrExpPresent && (o[\":@\"] = this.buildAttributesMap(u.tagExp, n, u.tagName)), this.addChild(r, o, n);\n }\n i = u.closeIndex + 1;\n } else if (e.substr(i + 1, 3) === \"!--\") {\n const u = y(e, \"-->\", i + 4, \"Comment is not closed.\");\n if (this.options.commentPropName) {\n const o = e.substring(i + 4, u - 2);\n s = this.saveTextToParentTag(s, r, n), r.add(this.options.commentPropName, [{ [this.options.textNodeName]: o }]);\n }\n i = u;\n } else if (e.substr(i + 1, 2) === \"!D\") {\n const u = tt(e, i);\n this.docTypeEntities = u.entities, i = u.i;\n } else if (e.substr(i + 1, 2) === \"![\") {\n const u = y(e, \"]]>\", i, \"CDATA is not closed.\") - 2, o = e.substring(i + 9, u);\n s = this.saveTextToParentTag(s, r, n);\n let a = this.parseTextData(o, r.tagname, n, !0, !1, !0, !0);\n a == null && (a = \"\"), this.options.cdataPropName ? r.add(this.options.cdataPropName, [{ [this.options.textNodeName]: o }]) : r.add(this.options.textNodeName, a), i = u + 2;\n } else {\n let u = x(e, i, this.options.removeNSPrefix), o = u.tagName;\n const a = u.rawTagName;\n let l = u.tagExp, f = u.attrExpPresent, c = u.closeIndex;\n this.options.transformTagName && (o = this.options.transformTagName(o)), r && s && r.tagname !== \"!xml\" && (s = this.saveTextToParentTag(s, r, n, !1));\n const g = r;\n if (g && this.options.unpairedTags.indexOf(g.tagname) !== -1 && (r = this.tagsNodeStack.pop(), n = n.substring(0, n.lastIndexOf(\".\"))), o !== t.tagname && (n += n ? \".\" + o : o), this.isItStopNode(this.options.stopNodes, n, o)) {\n let h = \"\";\n if (l.length > 0 && l.lastIndexOf(\"/\") === l.length - 1)\n i = u.closeIndex;\n else if (this.options.unpairedTags.indexOf(o) !== -1)\n i = u.closeIndex;\n else {\n const E = this.readStopNodeData(e, a, c + 1);\n if (!E)\n throw new Error(`Unexpected end of ${a}`);\n i = E.i, h = E.tagContent;\n }\n const _ = new T(o);\n o !== l && f && (_[\":@\"] = this.buildAttributesMap(l, n, o)), h && (h = this.parseTextData(h, o, n, !0, f, !0, !0)), n = n.substr(0, n.lastIndexOf(\".\")), _.add(this.options.textNodeName, h), this.addChild(r, _, n);\n } else {\n if (l.length > 0 && l.lastIndexOf(\"/\") === l.length - 1) {\n o[o.length - 1] === \"/\" ? (o = o.substr(0, o.length - 1), n = n.substr(0, n.length - 1), l = o) : l = l.substr(0, l.length - 1), this.options.transformTagName && (o = this.options.transformTagName(o));\n const h = new T(o);\n o !== l && f && (h[\":@\"] = this.buildAttributesMap(l, n, o)), this.addChild(r, h, n), n = n.substr(0, n.lastIndexOf(\".\"));\n } else {\n const h = new T(o);\n this.tagsNodeStack.push(r), o !== l && f && (h[\":@\"] = this.buildAttributesMap(l, n, o)), this.addChild(r, h, n), r = h;\n }\n s = \"\", i = c;\n }\n }\n else\n s += e[i];\n return t.child;\n};\nfunction lt(e, t, r) {\n const s = this.options.updateTag(t.tagname, r, t[\":@\"]);\n s === !1 || (typeof s == \"string\" && (t.tagname = s), e.addChild(t));\n}\nconst ft = function(e) {\n if (this.options.processEntities) {\n for (let t in this.docTypeEntities) {\n const r = this.docTypeEntities[t];\n e = e.replace(r.regx, r.val);\n }\n for (let t in this.lastEntities) {\n const r = this.lastEntities[t];\n e = e.replace(r.regex, r.val);\n }\n if (this.options.htmlEntities)\n for (let t in this.htmlEntities) {\n const r = this.htmlEntities[t];\n e = e.replace(r.regex, r.val);\n }\n e = e.replace(this.ampEntity.regex, this.ampEntity.val);\n }\n return e;\n};\nfunction ct(e, t, r, s) {\n return e && (s === void 0 && (s = Object.keys(t.child).length === 0), e = this.parseTextData(\n e,\n t.tagname,\n r,\n !1,\n t[\":@\"] ? Object.keys(t[\":@\"]).length !== 0 : !1,\n s\n ), e !== void 0 && e !== \"\" && t.add(this.options.textNodeName, e), e = \"\"), e;\n}\nfunction ht(e, t, r) {\n const s = \"*.\" + r;\n for (const n in e) {\n const i = e[n];\n if (s === i || t === i)\n return !0;\n }\n return !1;\n}\nfunction pt(e, t, r = \">\") {\n let s, n = \"\";\n for (let i = t; i < e.length; i++) {\n let d = e[i];\n if (s)\n d === s && (s = \"\");\n else if (d === '\"' || d === \"'\")\n s = d;\n else if (d === r[0])\n if (r[1]) {\n if (e[i + 1] === r[1])\n return {\n data: n,\n index: i\n };\n } else\n return {\n data: n,\n index: i\n };\n else\n d === \"\t\" && (d = \" \");\n n += d;\n }\n}\nfunction y(e, t, r, s) {\n const n = e.indexOf(t, r);\n if (n === -1)\n throw new Error(s);\n return n + t.length - 1;\n}\nfunction x(e, t, r, s = \">\") {\n const n = pt(e, t + 1, s);\n if (!n)\n return;\n let i = n.data;\n const d = n.index, u = i.search(/\\s/);\n let o = i, a = !0;\n u !== -1 && (o = i.substring(0, u), i = i.substring(u + 1).trimStart());\n const l = o;\n if (r) {\n const f = o.indexOf(\":\");\n f !== -1 && (o = o.substr(f + 1), a = o !== n.data.substr(f + 1));\n }\n return {\n tagName: o,\n tagExp: i,\n closeIndex: d,\n attrExpPresent: a,\n rawTagName: l\n };\n}\nfunction gt(e, t, r) {\n const s = r;\n let n = 1;\n for (; r < e.length; r++)\n if (e[r] === \"<\")\n if (e[r + 1] === \"/\") {\n const i = y(e, \">\", r, `${t} is not closed`);\n if (e.substring(r + 2, i).trim() === t && (n--, n === 0))\n return {\n tagContent: e.substring(s, r),\n i\n };\n r = i;\n } else if (e[r + 1] === \"?\")\n r = y(e, \"?>\", r + 1, \"StopNode is not closed.\");\n else if (e.substr(r + 1, 3) === \"!--\")\n r = y(e, \"-->\", r + 3, \"StopNode is not closed.\");\n else if (e.substr(r + 1, 2) === \"![\")\n r = y(e, \"]]>\", r, \"StopNode is not closed.\") - 2;\n else {\n const i = x(e, r, \">\");\n i && ((i && i.tagName) === t && i.tagExp[i.tagExp.length - 1] !== \"/\" && n++, r = i.closeIndex);\n }\n}\nfunction $(e, t, r) {\n if (t && typeof e == \"string\") {\n const s = e.trim();\n return s === \"true\" ? !0 : s === \"false\" ? !1 : rt(e, r);\n } else\n return re.isExist(e) ? e : \"\";\n}\nvar wt = nt, ne = {};\nfunction mt(e, t) {\n return ie(e, t);\n}\nfunction ie(e, t, r) {\n let s;\n const n = {};\n for (let i = 0; i < e.length; i++) {\n const d = e[i], u = Nt(d);\n let o = \"\";\n if (r === void 0 ? o = u : o = r + \".\" + u, u === t.textNodeName)\n s === void 0 ? s = d[u] : s += \"\" + d[u];\n else {\n if (u === void 0)\n continue;\n if (d[u]) {\n let a = ie(d[u], t, o);\n const l = bt(a, t);\n d[\":@\"] ? Et(a, d[\":@\"], o, t) : Object.keys(a).length === 1 && a[t.textNodeName] !== void 0 && !t.alwaysCreateTextNode ? a = a[t.textNodeName] : Object.keys(a).length === 0 && (t.alwaysCreateTextNode ? a[t.textNodeName] = \"\" : a = \"\"), n[u] !== void 0 && n.hasOwnProperty(u) ? (Array.isArray(n[u]) || (n[u] = [n[u]]), n[u].push(a)) : t.isArray(u, o, l) ? n[u] = [a] : n[u] = a;\n }\n }\n }\n return typeof s == \"string\" ? s.length > 0 && (n[t.textNodeName] = s) : s !== void 0 && (n[t.textNodeName] = s), n;\n}\nfunction Nt(e) {\n const t = Object.keys(e);\n for (let r = 0; r < t.length; r++) {\n const s = t[r];\n if (s !== \":@\")\n return s;\n }\n}\nfunction Et(e, t, r, s) {\n if (t) {\n const n = Object.keys(t), i = n.length;\n for (let d = 0; d < i; d++) {\n const u = n[d];\n s.isArray(u, r + \".\" + u, !0, !0) ? e[u] = [t[u]] : e[u] = t[u];\n }\n }\n}\nfunction bt(e, t) {\n const { textNodeName: r } = t, s = Object.keys(e).length;\n return !!(s === 0 || s === 1 && (e[r] || typeof e[r] == \"boolean\" || e[r] === 0));\n}\nne.prettify = mt;\nconst { buildOptions: yt } = k, _t = wt, { prettify: vt } = ne, Tt = R;\nlet It = class {\n constructor(t) {\n this.externalEntities = {}, this.options = yt(t);\n }\n /**\n * Parse XML dats to JS object \n * @param {string|Buffer} xmlData \n * @param {boolean|Object} validationOption \n */\n parse(t, r) {\n if (typeof t != \"string\")\n if (t.toString)\n t = t.toString();\n else\n throw new Error(\"XML data is accepted in String or Bytes[] form.\");\n if (r) {\n r === !0 && (r = {});\n const i = Tt.validate(t, r);\n if (i !== !0)\n throw Error(`${i.err.msg}:${i.err.line}:${i.err.col}`);\n }\n const s = new _t(this.options);\n s.addExternalEntities(this.externalEntities);\n const n = s.parseXml(t);\n return this.options.preserveOrder || n === void 0 ? n : vt(n, this.options);\n }\n /**\n * Add Entity which is not by default supported by this library\n * @param {string} key \n * @param {string} value \n */\n addEntity(t, r) {\n if (r.indexOf(\"&\") !== -1)\n throw new Error(\"Entity value can't have '&'\");\n if (t.indexOf(\"&\") !== -1 || t.indexOf(\";\") !== -1)\n throw new Error(\"An entity must be set without '&' and ';'. Eg. use '#xD' for '&#xD;'\");\n if (r === \"&\")\n throw new Error(\"An entity with value '&' is not permitted\");\n this.externalEntities[t] = r;\n }\n};\nvar At = It;\nconst Ot = `\n`;\nfunction Ct(e, t) {\n let r = \"\";\n return t.format && t.indentBy.length > 0 && (r = Ot), se(e, t, \"\", r);\n}\nfunction se(e, t, r, s) {\n let n = \"\", i = !1;\n for (let d = 0; d < e.length; d++) {\n const u = e[d], o = Pt(u);\n if (o === void 0)\n continue;\n let a = \"\";\n if (r.length === 0 ? a = o : a = `${r}.${o}`, o === t.textNodeName) {\n let h = u[o];\n xt(a, t) || (h = t.tagValueProcessor(o, h), h = oe(h, t)), i && (n += s), n += h, i = !1;\n continue;\n } else if (o === t.cdataPropName) {\n i && (n += s), n += `<![CDATA[${u[o][0][t.textNodeName]}]]>`, i = !1;\n continue;\n } else if (o === t.commentPropName) {\n n += s + `<!--${u[o][0][t.textNodeName]}-->`, i = !0;\n continue;\n } else if (o[0] === \"?\") {\n const h = H(u[\":@\"], t), _ = o === \"?xml\" ? \"\" : s;\n let E = u[o][0][t.textNodeName];\n E = E.length !== 0 ? \" \" + E : \"\", n += _ + `<${o}${E}${h}?>`, i = !0;\n continue;\n }\n let l = s;\n l !== \"\" && (l += t.indentBy);\n const f = H(u[\":@\"], t), c = s + `<${o}${f}`, g = se(u[o], t, a, l);\n t.unpairedTags.indexOf(o) !== -1 ? t.suppressUnpairedNode ? n += c + \">\" : n += c + \"/>\" : (!g || g.length === 0) && t.suppressEmptyNode ? n += c + \"/>\" : g && g.endsWith(\">\") ? n += c + `>${g}${s}</${o}>` : (n += c + \">\", g && s !== \"\" && (g.includes(\"/>\") || g.includes(\"</\")) ? n += s + t.indentBy + g + s : n += g, n += `</${o}>`), i = !0;\n }\n return n;\n}\nfunction Pt(e) {\n const t = Object.keys(e);\n for (let r = 0; r < t.length; r++) {\n const s = t[r];\n if (e.hasOwnProperty(s) && s !== \":@\")\n return s;\n }\n}\nfunction H(e, t) {\n let r = \"\";\n if (e && !t.ignoreAttributes)\n for (let s in e) {\n if (!e.hasOwnProperty(s))\n continue;\n let n = t.attributeValueProcessor(s, e[s]);\n n = oe(n, t), n === !0 && t.suppressBooleanAttributes ? r += ` ${s.substr(t.attributeNamePrefix.length)}` : r += ` ${s.substr(t.attributeNamePrefix.length)}=\"${n}\"`;\n }\n return r;\n}\nfunction xt(e, t) {\n e = e.substr(0, e.length - t.textNodeName.length - 1);\n let r = e.substr(e.lastIndexOf(\".\") + 1);\n for (let s in t.stopNodes)\n if (t.stopNodes[s] === e || t.stopNodes[s] === \"*.\" + r)\n return !0;\n return !1;\n}\nfunction oe(e, t) {\n if (e && e.length > 0 && t.processEntities)\n for (let r = 0; r < t.entities.length; r++) {\n const s = t.entities[r];\n e = e.replace(s.regex, s.val);\n }\n return e;\n}\nvar $t = Ct;\nconst Ft = $t, Vt = {\n attributeNamePrefix: \"@_\",\n attributesGroupName: !1,\n textNodeName: \"#text\",\n ignoreAttributes: !0,\n cdataPropName: !1,\n format: !1,\n indentBy: \" \",\n suppressEmptyNode: !1,\n suppressUnpairedNode: !0,\n suppressBooleanAttributes: !0,\n tagValueProcessor: function(e, t) {\n return t;\n },\n attributeValueProcessor: function(e, t) {\n return t;\n },\n preserveOrder: !1,\n commentPropName: !1,\n unpairedTags: [],\n entities: [\n { regex: new RegExp(\"&\", \"g\"), val: \"&amp;\" },\n //it must be on top\n { regex: new RegExp(\">\", \"g\"), val: \"&gt;\" },\n { regex: new RegExp(\"<\", \"g\"), val: \"&lt;\" },\n { regex: new RegExp(\"'\", \"g\"), val: \"&apos;\" },\n { regex: new RegExp('\"', \"g\"), val: \"&quot;\" }\n ],\n processEntities: !0,\n stopNodes: [],\n // transformTagName: false,\n // transformAttributeName: false,\n oneListGroup: !1\n};\nfunction b(e) {\n this.options = Object.assign({}, Vt, e), this.options.ignoreAttributes || this.options.attributesGroupName ? this.isAttribute = function() {\n return !1;\n } : (this.attrPrefixLen = this.options.attributeNamePrefix.length, this.isAttribute = Rt), this.processTextOrObjNode = Lt, this.options.format ? (this.indentate = St, this.tagEndChar = `>\n`, this.newLine = `\n`) : (this.indentate = function() {\n return \"\";\n }, this.tagEndChar = \">\", this.newLine = \"\");\n}\nb.prototype.build = function(e) {\n return this.options.preserveOrder ? Ft(e, this.options) : (Array.isArray(e) && this.options.arrayNodeName && this.options.arrayNodeName.length > 1 && (e = {\n [this.options.arrayNodeName]: e\n }), this.j2x(e, 0).val);\n};\nb.prototype.j2x = function(e, t) {\n let r = \"\", s = \"\";\n for (let n in e)\n if (Object.prototype.hasOwnProperty.call(e, n))\n if (typeof e[n] > \"u\")\n this.isAttribute(n) && (s += \"\");\n else if (e[n] === null)\n this.isAttribute(n) ? s += \"\" : n[0] === \"?\" ? s += this.indentate(t) + \"<\" + n + \"?\" + this.tagEndChar : s += this.indentate(t) + \"<\" + n + \"/\" + this.tagEndChar;\n else if (e[n] instanceof Date)\n s += this.buildTextValNode(e[n], n, \"\", t);\n else if (typeof e[n] != \"object\") {\n const i = this.isAttribute(n);\n if (i)\n r += this.buildAttrPairStr(i, \"\" + e[n]);\n else if (n === this.options.textNodeName) {\n let d = this.options.tagValueProcessor(n, \"\" + e[n]);\n s += this.replaceEntitiesValue(d);\n } else\n s += this.buildTextValNode(e[n], n, \"\", t);\n } else if (Array.isArray(e[n])) {\n const i = e[n].length;\n let d = \"\";\n for (let u = 0; u < i; u++) {\n const o = e[n][u];\n typeof o > \"u\" || (o === null ? n[0] === \"?\" ? s += this.indentate(t) + \"<\" + n + \"?\" + this.tagEndChar : s += this.indentate(t) + \"<\" + n + \"/\" + this.tagEndChar : typeof o == \"object\" ? this.options.oneListGroup ? d += this.j2x(o, t + 1).val : d += this.processTextOrObjNode(o, n, t) : d += this.buildTextValNode(o, n, \"\", t));\n }\n this.options.oneListGroup && (d = this.buildObjectNode(d, n, \"\", t)), s += d;\n } else if (this.options.attributesGroupName && n === this.options.attributesGroupName) {\n const i = Object.keys(e[n]), d = i.length;\n for (let u = 0; u < d; u++)\n r += this.buildAttrPairStr(i[u], \"\" + e[n][i[u]]);\n } else\n s += this.processTextOrObjNode(e[n], n, t);\n return { attrStr: r, val: s };\n};\nb.prototype.buildAttrPairStr = function(e, t) {\n return t = this.options.attributeValueProcessor(e, \"\" + t), t = this.replaceEntitiesValue(t), this.options.suppressBooleanAttributes && t === \"true\" ? \" \" + e : \" \" + e + '=\"' + t + '\"';\n};\nfunction Lt(e, t, r) {\n const s = this.j2x(e, r + 1);\n return e[this.options.textNodeName] !== void 0 && Object.keys(e).length === 1 ? this.buildTextValNode(e[this.options.textNodeName], t, s.attrStr, r) : this.buildObjectNode(s.val, t, s.attrStr, r);\n}\nb.prototype.buildObjectNode = function(e, t, r, s) {\n if (e === \"\")\n return t[0] === \"?\" ? this.indentate(s) + \"<\" + t + r + \"?\" + this.tagEndChar : this.indentate(s) + \"<\" + t + r + this.closeTag(t) + this.tagEndChar;\n {\n let n = \"</\" + t + this.tagEndChar, i = \"\";\n return t[0] === \"?\" && (i = \"?\", n = \"\"), (r || r === \"\") && e.indexOf(\"<\") === -1 ? this.indentate(s) + \"<\" + t + r + i + \">\" + e + n : this.options.commentPropName !== !1 && t === this.options.commentPropName && i.length === 0 ? this.indentate(s) + `<!--${e}-->` + this.newLine : this.indentate(s) + \"<\" + t + r + i + this.tagEndChar + e + this.indentate(s) + n;\n }\n};\nb.prototype.closeTag = function(e) {\n let t = \"\";\n return this.options.unpairedTags.indexOf(e) !== -1 ? this.options.suppressUnpairedNode || (t = \"/\") : this.options.suppressEmptyNode ? t = \"/\" : t = `></${e}`, t;\n};\nb.prototype.buildTextValNode = function(e, t, r, s) {\n if (this.options.cdataPropName !== !1 && t === this.options.cdataPropName)\n return this.indentate(s) + `<![CDATA[${e}]]>` + this.newLine;\n if (this.options.commentPropName !== !1 && t === this.options.commentPropName)\n return this.indentate(s) + `<!--${e}-->` + this.newLine;\n if (t[0] === \"?\")\n return this.indentate(s) + \"<\" + t + r + \"?\" + this.tagEndChar;\n {\n let n = this.options.tagValueProcessor(t, e);\n return n = this.replaceEntitiesValue(n), n === \"\" ? this.indentate(s) + \"<\" + t + r + this.closeTag(t) + this.tagEndChar : this.indentate(s) + \"<\" + t + r + \">\" + n + \"</\" + t + this.tagEndChar;\n }\n};\nb.prototype.replaceEntitiesValue = function(e) {\n if (e && e.length > 0 && this.options.processEntities)\n for (let t = 0; t < this.options.entities.length; t++) {\n const r = this.options.entities[t];\n e = e.replace(r.regex, r.val);\n }\n return e;\n};\nfunction St(e) {\n return this.options.indentBy.repeat(e);\n}\nfunction Rt(e) {\n return e.startsWith(this.options.attributeNamePrefix) && e !== this.options.textNodeName ? e.substr(this.attrPrefixLen) : !1;\n}\nvar Mt = b;\nconst kt = R, Bt = At, qt = Mt;\nvar K = {\n XMLParser: Bt,\n XMLValidator: kt,\n XMLBuilder: qt\n};\nfunction Xt(e) {\n if (typeof e != \"string\")\n throw new TypeError(`Expected a \\`string\\`, got \\`${typeof e}\\``);\n if (e = e.trim(), e.length === 0 || K.XMLValidator.validate(e) !== !0)\n return !1;\n let t;\n const r = new K.XMLParser();\n try {\n t = r.parse(e);\n } catch {\n return !1;\n }\n return !(!t || !(\"svg\" in t));\n}\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nclass cr {\n _view;\n constructor(t) {\n Ut(t), this._view = t;\n }\n get id() {\n return this._view.id;\n }\n get name() {\n return this._view.name;\n }\n get caption() {\n return this._view.caption;\n }\n get emptyTitle() {\n return this._view.emptyTitle;\n }\n get emptyCaption() {\n return this._view.emptyCaption;\n }\n get getContents() {\n return this._view.getContents;\n }\n get icon() {\n return this._view.icon;\n }\n set icon(t) {\n this._view.icon = t;\n }\n get order() {\n return this._view.order;\n }\n set order(t) {\n this._view.order = t;\n }\n get params() {\n return this._view.params;\n }\n set params(t) {\n this._view.params = t;\n }\n get columns() {\n return this._view.columns;\n }\n get emptyView() {\n return this._view.emptyView;\n }\n get parent() {\n return this._view.parent;\n }\n get sticky() {\n return this._view.sticky;\n }\n get expanded() {\n return this._view.expanded;\n }\n set expanded(t) {\n this._view.expanded = t;\n }\n get defaultSortKey() {\n return this._view.defaultSortKey;\n }\n}\nconst Ut = function(e) {\n if (!e.id || typeof e.id != \"string\")\n throw new Error(\"View id is required and must be a string\");\n if (!e.name || typeof e.name != \"string\")\n throw new Error(\"View name is required and must be a string\");\n if (e.columns && e.columns.length > 0 && (!e.caption || typeof e.caption != \"string\"))\n throw new Error(\"View caption is required for top-level views and must be a string\");\n if (!e.getContents || typeof e.getContents != \"function\")\n throw new Error(\"View getContents is required and must be a function\");\n if (!e.icon || typeof e.icon != \"string\" || !Xt(e.icon))\n throw new Error(\"View icon is required and must be a valid svg string\");\n if (!(\"order\" in e) || typeof e.order != \"number\")\n throw new Error(\"View order is required and must be a number\");\n if (e.columns && e.columns.forEach((t) => {\n if (!(t instanceof Ie))\n throw new Error(\"View columns must be an array of Column. Invalid column found\");\n }), e.emptyView && typeof e.emptyView != \"function\")\n throw new Error(\"View emptyView must be a function\");\n if (e.parent && typeof e.parent != \"string\")\n throw new Error(\"View parent must be a string\");\n if (\"sticky\" in e && typeof e.sticky != \"boolean\")\n throw new Error(\"View sticky must be a boolean\");\n if (\"expanded\" in e && typeof e.expanded != \"boolean\")\n throw new Error(\"View expanded must be a boolean\");\n if (e.defaultSortKey && typeof e.defaultSortKey != \"string\")\n throw new Error(\"View defaultSortKey must be a string\");\n return !0;\n};\n/**\n * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @author Christoph Wurst <christoph@winzerhof-wurst.at>\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst hr = function(e) {\n return F().registerEntry(e);\n}, pr = function(e) {\n return F().unregisterEntry(e);\n}, gr = function(e) {\n return F().getEntries(e).sort((r, s) => r.order !== void 0 && s.order !== void 0 && r.order !== s.order ? r.order - s.order : r.displayName.localeCompare(s.displayName, void 0, { numeric: !0, sensitivity: \"base\" }));\n};\nexport {\n Ie as Column,\n W as DefaultType,\n ye as File,\n Qt as FileAction,\n S as FileType,\n _e as Folder,\n tr as Header,\n Te as Navigation,\n Q as Node,\n J as NodeStatus,\n N as Permission,\n cr as View,\n hr as addNewFileMenuEntry,\n ur as davGetClient,\n sr as davGetDefaultPropfind,\n Ee as davGetFavoritesReport,\n or as davGetRecentSearch,\n be as davParsePermissions,\n ee as davRemoteURL,\n ve as davResultToNode,\n D as davRootPath,\n j as defaultDavNamespaces,\n Z as defaultDavProperties,\n Yt as formatFileSize,\n L as getDavNameSpaces,\n V as getDavProperties,\n dr as getFavoriteNodes,\n er as getFileActions,\n nr as getFileListHeaders,\n ar as getNavigation,\n gr as getNewFileMenuEntries,\n Jt as parseFileSize,\n ir as registerDavProperty,\n Dt as registerFileAction,\n rr as registerFileListHeaders,\n pr as removeNewFileMenuEntry\n};\n","\n import API from \"!../../../../style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../css-loader/dist/cjs.js!./index-FLLHP6Jd.css\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../css-loader/dist/cjs.js!./index-FLLHP6Jd.css\";\n export default content && content.locals ? content.locals : undefined;\n","export class CancelError extends Error {\n\tconstructor(reason) {\n\t\tsuper(reason || 'Promise was canceled');\n\t\tthis.name = 'CancelError';\n\t}\n\n\tget isCanceled() {\n\t\treturn true;\n\t}\n}\n\nconst promiseState = Object.freeze({\n\tpending: Symbol('pending'),\n\tcanceled: Symbol('canceled'),\n\tresolved: Symbol('resolved'),\n\trejected: Symbol('rejected'),\n});\n\nexport default class PCancelable {\n\tstatic fn(userFunction) {\n\t\treturn (...arguments_) => new PCancelable((resolve, reject, onCancel) => {\n\t\t\targuments_.push(onCancel);\n\t\t\tuserFunction(...arguments_).then(resolve, reject);\n\t\t});\n\t}\n\n\t#cancelHandlers = [];\n\t#rejectOnCancel = true;\n\t#state = promiseState.pending;\n\t#promise;\n\t#reject;\n\n\tconstructor(executor) {\n\t\tthis.#promise = new Promise((resolve, reject) => {\n\t\t\tthis.#reject = reject;\n\n\t\t\tconst onResolve = value => {\n\t\t\t\tif (this.#state !== promiseState.canceled || !onCancel.shouldReject) {\n\t\t\t\t\tresolve(value);\n\t\t\t\t\tthis.#setState(promiseState.resolved);\n\t\t\t\t}\n\t\t\t};\n\n\t\t\tconst onReject = error => {\n\t\t\t\tif (this.#state !== promiseState.canceled || !onCancel.shouldReject) {\n\t\t\t\t\treject(error);\n\t\t\t\t\tthis.#setState(promiseState.rejected);\n\t\t\t\t}\n\t\t\t};\n\n\t\t\tconst onCancel = handler => {\n\t\t\t\tif (this.#state !== promiseState.pending) {\n\t\t\t\t\tthrow new Error(`The \\`onCancel\\` handler was attached after the promise ${this.#state.description}.`);\n\t\t\t\t}\n\n\t\t\t\tthis.#cancelHandlers.push(handler);\n\t\t\t};\n\n\t\t\tObject.defineProperties(onCancel, {\n\t\t\t\tshouldReject: {\n\t\t\t\t\tget: () => this.#rejectOnCancel,\n\t\t\t\t\tset: boolean => {\n\t\t\t\t\t\tthis.#rejectOnCancel = boolean;\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t});\n\n\t\t\texecutor(onResolve, onReject, onCancel);\n\t\t});\n\t}\n\n\t// eslint-disable-next-line unicorn/no-thenable\n\tthen(onFulfilled, onRejected) {\n\t\treturn this.#promise.then(onFulfilled, onRejected);\n\t}\n\n\tcatch(onRejected) {\n\t\treturn this.#promise.catch(onRejected);\n\t}\n\n\tfinally(onFinally) {\n\t\treturn this.#promise.finally(onFinally);\n\t}\n\n\tcancel(reason) {\n\t\tif (this.#state !== promiseState.pending) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.#setState(promiseState.canceled);\n\n\t\tif (this.#cancelHandlers.length > 0) {\n\t\t\ttry {\n\t\t\t\tfor (const handler of this.#cancelHandlers) {\n\t\t\t\t\thandler();\n\t\t\t\t}\n\t\t\t} catch (error) {\n\t\t\t\tthis.#reject(error);\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\n\t\tif (this.#rejectOnCancel) {\n\t\t\tthis.#reject(new CancelError(reason));\n\t\t}\n\t}\n\n\tget isCanceled() {\n\t\treturn this.#state === promiseState.canceled;\n\t}\n\n\t#setState(state) {\n\t\tif (this.#state === promiseState.pending) {\n\t\t\tthis.#state = state;\n\t\t}\n\t}\n}\n\nObject.setPrototypeOf(PCancelable.prototype, Promise.prototype);\n","export class TimeoutError extends Error {\n\tconstructor(message) {\n\t\tsuper(message);\n\t\tthis.name = 'TimeoutError';\n\t}\n}\n\n/**\nAn error to be thrown when the request is aborted by AbortController.\nDOMException is thrown instead of this Error when DOMException is available.\n*/\nexport class AbortError extends Error {\n\tconstructor(message) {\n\t\tsuper();\n\t\tthis.name = 'AbortError';\n\t\tthis.message = message;\n\t}\n}\n\n/**\nTODO: Remove AbortError and just throw DOMException when targeting Node 18.\n*/\nconst getDOMException = errorMessage => globalThis.DOMException === undefined\n\t? new AbortError(errorMessage)\n\t: new DOMException(errorMessage);\n\n/**\nTODO: Remove below function and just 'reject(signal.reason)' when targeting Node 18.\n*/\nconst getAbortedReason = signal => {\n\tconst reason = signal.reason === undefined\n\t\t? getDOMException('This operation was aborted.')\n\t\t: signal.reason;\n\n\treturn reason instanceof Error ? reason : getDOMException(reason);\n};\n\nexport default function pTimeout(promise, options) {\n\tconst {\n\t\tmilliseconds,\n\t\tfallback,\n\t\tmessage,\n\t\tcustomTimers = {setTimeout, clearTimeout},\n\t} = options;\n\n\tlet timer;\n\n\tconst wrappedPromise = new Promise((resolve, reject) => {\n\t\tif (typeof milliseconds !== 'number' || Math.sign(milliseconds) !== 1) {\n\t\t\tthrow new TypeError(`Expected \\`milliseconds\\` to be a positive number, got \\`${milliseconds}\\``);\n\t\t}\n\n\t\tif (options.signal) {\n\t\t\tconst {signal} = options;\n\t\t\tif (signal.aborted) {\n\t\t\t\treject(getAbortedReason(signal));\n\t\t\t}\n\n\t\t\tsignal.addEventListener('abort', () => {\n\t\t\t\treject(getAbortedReason(signal));\n\t\t\t});\n\t\t}\n\n\t\tif (milliseconds === Number.POSITIVE_INFINITY) {\n\t\t\tpromise.then(resolve, reject);\n\t\t\treturn;\n\t\t}\n\n\t\t// We create the error outside of `setTimeout` to preserve the stack trace.\n\t\tconst timeoutError = new TimeoutError();\n\n\t\ttimer = customTimers.setTimeout.call(undefined, () => {\n\t\t\tif (fallback) {\n\t\t\t\ttry {\n\t\t\t\t\tresolve(fallback());\n\t\t\t\t} catch (error) {\n\t\t\t\t\treject(error);\n\t\t\t\t}\n\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif (typeof promise.cancel === 'function') {\n\t\t\t\tpromise.cancel();\n\t\t\t}\n\n\t\t\tif (message === false) {\n\t\t\t\tresolve();\n\t\t\t} else if (message instanceof Error) {\n\t\t\t\treject(message);\n\t\t\t} else {\n\t\t\t\ttimeoutError.message = message ?? `Promise timed out after ${milliseconds} milliseconds`;\n\t\t\t\treject(timeoutError);\n\t\t\t}\n\t\t}, milliseconds);\n\n\t\t(async () => {\n\t\t\ttry {\n\t\t\t\tresolve(await promise);\n\t\t\t} catch (error) {\n\t\t\t\treject(error);\n\t\t\t}\n\t\t})();\n\t});\n\n\tconst cancelablePromise = wrappedPromise.finally(() => {\n\t\tcancelablePromise.clear();\n\t});\n\n\tcancelablePromise.clear = () => {\n\t\tcustomTimers.clearTimeout.call(undefined, timer);\n\t\ttimer = undefined;\n\t};\n\n\treturn cancelablePromise;\n}\n","import lowerBound from './lower-bound.js';\nexport default class PriorityQueue {\n #queue = [];\n enqueue(run, options) {\n options = {\n priority: 0,\n ...options,\n };\n const element = {\n priority: options.priority,\n run,\n };\n if (this.size && this.#queue[this.size - 1].priority >= options.priority) {\n this.#queue.push(element);\n return;\n }\n const index = lowerBound(this.#queue, element, (a, b) => b.priority - a.priority);\n this.#queue.splice(index, 0, element);\n }\n dequeue() {\n const item = this.#queue.shift();\n return item?.run;\n }\n filter(options) {\n return this.#queue.filter((element) => element.priority === options.priority).map((element) => element.run);\n }\n get size() {\n return this.#queue.length;\n }\n}\n","// Port of lower_bound from https://en.cppreference.com/w/cpp/algorithm/lower_bound\n// Used to compute insertion index to keep queue sorted after insertion\nexport default function lowerBound(array, value, comparator) {\n let first = 0;\n let count = array.length;\n while (count > 0) {\n const step = Math.trunc(count / 2);\n let it = first + step;\n if (comparator(array[it], value) <= 0) {\n first = ++it;\n count -= step + 1;\n }\n else {\n count = step;\n }\n }\n return first;\n}\n","import { EventEmitter } from 'eventemitter3';\nimport pTimeout, { TimeoutError } from 'p-timeout';\nimport PriorityQueue from './priority-queue.js';\n/**\nPromise queue with concurrency control.\n*/\nexport default class PQueue extends EventEmitter {\n #carryoverConcurrencyCount;\n #isIntervalIgnored;\n #intervalCount = 0;\n #intervalCap;\n #interval;\n #intervalEnd = 0;\n #intervalId;\n #timeoutId;\n #queue;\n #queueClass;\n #pending = 0;\n // The `!` is needed because of https://github.com/microsoft/TypeScript/issues/32194\n #concurrency;\n #isPaused;\n #throwOnTimeout;\n /**\n Per-operation timeout in milliseconds. Operations fulfill once `timeout` elapses if they haven't already.\n\n Applies to each future operation.\n */\n timeout;\n // TODO: The `throwOnTimeout` option should affect the return types of `add()` and `addAll()`\n constructor(options) {\n super();\n // eslint-disable-next-line @typescript-eslint/consistent-type-assertions\n options = {\n carryoverConcurrencyCount: false,\n intervalCap: Number.POSITIVE_INFINITY,\n interval: 0,\n concurrency: Number.POSITIVE_INFINITY,\n autoStart: true,\n queueClass: PriorityQueue,\n ...options,\n };\n if (!(typeof options.intervalCap === 'number' && options.intervalCap >= 1)) {\n throw new TypeError(`Expected \\`intervalCap\\` to be a number from 1 and up, got \\`${options.intervalCap?.toString() ?? ''}\\` (${typeof options.intervalCap})`);\n }\n if (options.interval === undefined || !(Number.isFinite(options.interval) && options.interval >= 0)) {\n throw new TypeError(`Expected \\`interval\\` to be a finite number >= 0, got \\`${options.interval?.toString() ?? ''}\\` (${typeof options.interval})`);\n }\n this.#carryoverConcurrencyCount = options.carryoverConcurrencyCount;\n this.#isIntervalIgnored = options.intervalCap === Number.POSITIVE_INFINITY || options.interval === 0;\n this.#intervalCap = options.intervalCap;\n this.#interval = options.interval;\n this.#queue = new options.queueClass();\n this.#queueClass = options.queueClass;\n this.concurrency = options.concurrency;\n this.timeout = options.timeout;\n this.#throwOnTimeout = options.throwOnTimeout === true;\n this.#isPaused = options.autoStart === false;\n }\n get #doesIntervalAllowAnother() {\n return this.#isIntervalIgnored || this.#intervalCount < this.#intervalCap;\n }\n get #doesConcurrentAllowAnother() {\n return this.#pending < this.#concurrency;\n }\n #next() {\n this.#pending--;\n this.#tryToStartAnother();\n this.emit('next');\n }\n #onResumeInterval() {\n this.#onInterval();\n this.#initializeIntervalIfNeeded();\n this.#timeoutId = undefined;\n }\n get #isIntervalPaused() {\n const now = Date.now();\n if (this.#intervalId === undefined) {\n const delay = this.#intervalEnd - now;\n if (delay < 0) {\n // Act as the interval was done\n // We don't need to resume it here because it will be resumed on line 160\n this.#intervalCount = (this.#carryoverConcurrencyCount) ? this.#pending : 0;\n }\n else {\n // Act as the interval is pending\n if (this.#timeoutId === undefined) {\n this.#timeoutId = setTimeout(() => {\n this.#onResumeInterval();\n }, delay);\n }\n return true;\n }\n }\n return false;\n }\n #tryToStartAnother() {\n if (this.#queue.size === 0) {\n // We can clear the interval (\"pause\")\n // Because we can redo it later (\"resume\")\n if (this.#intervalId) {\n clearInterval(this.#intervalId);\n }\n this.#intervalId = undefined;\n this.emit('empty');\n if (this.#pending === 0) {\n this.emit('idle');\n }\n return false;\n }\n if (!this.#isPaused) {\n const canInitializeInterval = !this.#isIntervalPaused;\n if (this.#doesIntervalAllowAnother && this.#doesConcurrentAllowAnother) {\n const job = this.#queue.dequeue();\n if (!job) {\n return false;\n }\n this.emit('active');\n job();\n if (canInitializeInterval) {\n this.#initializeIntervalIfNeeded();\n }\n return true;\n }\n }\n return false;\n }\n #initializeIntervalIfNeeded() {\n if (this.#isIntervalIgnored || this.#intervalId !== undefined) {\n return;\n }\n this.#intervalId = setInterval(() => {\n this.#onInterval();\n }, this.#interval);\n this.#intervalEnd = Date.now() + this.#interval;\n }\n #onInterval() {\n if (this.#intervalCount === 0 && this.#pending === 0 && this.#intervalId) {\n clearInterval(this.#intervalId);\n this.#intervalId = undefined;\n }\n this.#intervalCount = this.#carryoverConcurrencyCount ? this.#pending : 0;\n this.#processQueue();\n }\n /**\n Executes all queued functions until it reaches the limit.\n */\n #processQueue() {\n // eslint-disable-next-line no-empty\n while (this.#tryToStartAnother()) { }\n }\n get concurrency() {\n return this.#concurrency;\n }\n set concurrency(newConcurrency) {\n if (!(typeof newConcurrency === 'number' && newConcurrency >= 1)) {\n throw new TypeError(`Expected \\`concurrency\\` to be a number from 1 and up, got \\`${newConcurrency}\\` (${typeof newConcurrency})`);\n }\n this.#concurrency = newConcurrency;\n this.#processQueue();\n }\n async #throwOnAbort(signal) {\n return new Promise((_resolve, reject) => {\n signal.addEventListener('abort', () => {\n reject(signal.reason);\n }, { once: true });\n });\n }\n async add(function_, options = {}) {\n options = {\n timeout: this.timeout,\n throwOnTimeout: this.#throwOnTimeout,\n ...options,\n };\n return new Promise((resolve, reject) => {\n this.#queue.enqueue(async () => {\n this.#pending++;\n this.#intervalCount++;\n try {\n options.signal?.throwIfAborted();\n let operation = function_({ signal: options.signal });\n if (options.timeout) {\n operation = pTimeout(Promise.resolve(operation), { milliseconds: options.timeout });\n }\n if (options.signal) {\n operation = Promise.race([operation, this.#throwOnAbort(options.signal)]);\n }\n const result = await operation;\n resolve(result);\n this.emit('completed', result);\n }\n catch (error) {\n if (error instanceof TimeoutError && !options.throwOnTimeout) {\n resolve();\n return;\n }\n reject(error);\n this.emit('error', error);\n }\n finally {\n this.#next();\n }\n }, options);\n this.emit('add');\n this.#tryToStartAnother();\n });\n }\n async addAll(functions, options) {\n return Promise.all(functions.map(async (function_) => this.add(function_, options)));\n }\n /**\n Start (or resume) executing enqueued tasks within concurrency limit. No need to call this if queue is not paused (via `options.autoStart = false` or by `.pause()` method.)\n */\n start() {\n if (!this.#isPaused) {\n return this;\n }\n this.#isPaused = false;\n this.#processQueue();\n return this;\n }\n /**\n Put queue execution on hold.\n */\n pause() {\n this.#isPaused = true;\n }\n /**\n Clear the queue.\n */\n clear() {\n this.#queue = new this.#queueClass();\n }\n /**\n Can be called multiple times. Useful if you for example add additional items at a later time.\n\n @returns A promise that settles when the queue becomes empty.\n */\n async onEmpty() {\n // Instantly resolve if the queue is empty\n if (this.#queue.size === 0) {\n return;\n }\n await this.#onEvent('empty');\n }\n /**\n @returns A promise that settles when the queue size is less than the given limit: `queue.size < limit`.\n\n If you want to avoid having the queue grow beyond a certain size you can `await queue.onSizeLessThan()` before adding a new item.\n\n Note that this only limits the number of items waiting to start. There could still be up to `concurrency` jobs already running that this call does not include in its calculation.\n */\n async onSizeLessThan(limit) {\n // Instantly resolve if the queue is empty.\n if (this.#queue.size < limit) {\n return;\n }\n await this.#onEvent('next', () => this.#queue.size < limit);\n }\n /**\n The difference with `.onEmpty` is that `.onIdle` guarantees that all work from the queue has finished. `.onEmpty` merely signals that the queue is empty, but it could mean that some promises haven't completed yet.\n\n @returns A promise that settles when the queue becomes empty, and all promises have completed; `queue.size === 0 && queue.pending === 0`.\n */\n async onIdle() {\n // Instantly resolve if none pending and if nothing else is queued\n if (this.#pending === 0 && this.#queue.size === 0) {\n return;\n }\n await this.#onEvent('idle');\n }\n async #onEvent(event, filter) {\n return new Promise(resolve => {\n const listener = () => {\n if (filter && !filter()) {\n return;\n }\n this.off(event, listener);\n resolve();\n };\n this.on(event, listener);\n });\n }\n /**\n Size of the queue, the number of queued items waiting to run.\n */\n get size() {\n return this.#queue.size;\n }\n /**\n Size of the queue, filtered by the given options.\n\n For example, this can be used to find the number of items remaining in the queue with a specific priority level.\n */\n sizeBy(options) {\n // eslint-disable-next-line unicorn/no-array-callback-reference\n return this.#queue.filter(options).length;\n }\n /**\n Number of running items (no longer in the queue).\n */\n get pending() {\n return this.#pending;\n }\n /**\n Whether the queue is currently paused.\n */\n get isPaused() {\n return this.#isPaused;\n }\n}\n","export const AsyncResource = {\n\tbind(fn, _type, thisArg) {\n\t\treturn fn.bind(thisArg);\n\t},\n};\n\nexport class AsyncLocalStorage {\n\tgetStore() {\n\t\treturn undefined;\n\t}\n\n\trun(_store, callback) {\n\t\treturn callback();\n\t}\n}\n","import '../assets/index-FLLHP6Jd.css';\nimport { CanceledError as F } from \"axios\";\nimport { encodePath as H } from \"@nextcloud/paths\";\nimport { Folder as j, Permission as G, getNewFileMenuEntries as Y } from \"@nextcloud/files\";\nimport { generateRemoteUrl as E } from \"@nextcloud/router\";\nimport { getCurrentUser as S } from \"@nextcloud/auth\";\nimport v from \"@nextcloud/axios\";\nimport V from \"p-cancelable\";\nimport K from \"p-queue\";\nimport $ from \"p-limit\";\nimport { getLoggerBuilder as P } from \"@nextcloud/logger\";\nimport { showError as A } from \"@nextcloud/dialogs\";\nimport J from \"simple-eta\";\nimport I, { defineAsyncComponent as Q } from \"vue\";\nimport Z from \"@nextcloud/vue/dist/Components/NcActionButton.js\";\nimport X from \"@nextcloud/vue/dist/Components/NcActions.js\";\nimport ss from \"@nextcloud/vue/dist/Components/NcButton.js\";\nimport es from \"@nextcloud/vue/dist/Components/NcIconSvgWrapper.js\";\nimport ts from \"@nextcloud/vue/dist/Components/NcProgressBar.js\";\nimport { getGettextBuilder as ns } from \"@nextcloud/l10n/gettext\";\nconst as = $(1), k = new FileReader(), B = async function(e, s, t, n = () => {\n}, i = void 0, o = {}) {\n let l;\n return s instanceof Blob ? l = s : l = await s(), i && (o.Destination = i), o[\"Content-Type\"] || (o[\"Content-Type\"] = \"application/octet-stream\"), await v.request({\n method: \"PUT\",\n url: e,\n data: l,\n signal: t,\n onUploadProgress: n,\n headers: o\n });\n}, N = function(e, s, t) {\n return s === 0 && e.size <= t ? Promise.resolve(new Blob([e], { type: e.type || \"application/octet-stream\" })) : as(() => new Promise((n, i) => {\n k.onload = () => {\n k.result !== null && n(new Blob([k.result], {\n type: \"application/octet-stream\"\n })), i(new Error(\"Error while reading the file\"));\n }, k.readAsArrayBuffer(e.slice(s, s + t));\n }));\n}, is = async function(e = void 0) {\n const s = E(`dav/uploads/${S()?.uid}`), n = `web-file-upload-${[...Array(16)].map(() => Math.floor(Math.random() * 16).toString(16)).join(\"\")}`, i = `${s}/${n}`, o = e ? { Destination: e } : void 0;\n return await v.request({\n method: \"MKCOL\",\n url: i,\n headers: o\n }), i;\n}, x = function(e = void 0) {\n const s = window.OC?.appConfig?.files?.max_chunk_size;\n if (s <= 0)\n return 0;\n if (!Number(s))\n return 10 * 1024 * 1024;\n const t = Math.max(Number(s), 5 * 1024 * 1024);\n return e === void 0 ? t : Math.max(t, Math.ceil(e / 1e4));\n};\nvar c = /* @__PURE__ */ ((e) => (e[e.INITIALIZED = 0] = \"INITIALIZED\", e[e.UPLOADING = 1] = \"UPLOADING\", e[e.ASSEMBLING = 2] = \"ASSEMBLING\", e[e.FINISHED = 3] = \"FINISHED\", e[e.CANCELLED = 4] = \"CANCELLED\", e[e.FAILED = 5] = \"FAILED\", e))(c || {});\nlet ls = class {\n _source;\n _file;\n _isChunked;\n _chunks;\n _size;\n _uploaded = 0;\n _startTime = 0;\n _status = 0;\n _controller;\n _response = null;\n constructor(s, t = !1, n, i) {\n const o = Math.min(x() > 0 ? Math.ceil(n / x()) : 1, 1e4);\n this._source = s, this._isChunked = t && x() > 0 && o > 1, this._chunks = this._isChunked ? o : 1, this._size = n, this._file = i, this._controller = new AbortController();\n }\n get source() {\n return this._source;\n }\n get file() {\n return this._file;\n }\n get isChunked() {\n return this._isChunked;\n }\n get chunks() {\n return this._chunks;\n }\n get size() {\n return this._size;\n }\n get startTime() {\n return this._startTime;\n }\n set response(s) {\n this._response = s;\n }\n get response() {\n return this._response;\n }\n get uploaded() {\n return this._uploaded;\n }\n /**\n * Update the uploaded bytes of this upload\n */\n set uploaded(s) {\n if (s >= this._size) {\n this._status = this._isChunked ? 2 : 3, this._uploaded = this._size;\n return;\n }\n this._status = 1, this._uploaded = s, this._startTime === 0 && (this._startTime = (/* @__PURE__ */ new Date()).getTime());\n }\n get status() {\n return this._status;\n }\n /**\n * Update this upload status\n */\n set status(s) {\n this._status = s;\n }\n /**\n * Returns the axios cancel token source\n */\n get signal() {\n return this._controller.signal;\n }\n /**\n * Cancel any ongoing requests linked to this upload\n */\n cancel() {\n this._controller.abort(), this._status = 4;\n }\n};\n/**\n * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @author Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst rs = (e) => e === null ? P().setApp(\"uploader\").build() : P().setApp(\"uploader\").setUid(e.uid).build(), g = rs(S());\nvar R = /* @__PURE__ */ ((e) => (e[e.IDLE = 0] = \"IDLE\", e[e.UPLOADING = 1] = \"UPLOADING\", e[e.PAUSED = 2] = \"PAUSED\", e))(R || {});\nclass z {\n // Initialized via setter in the constructor\n _destinationFolder;\n _isPublic;\n // Global upload queue\n _uploadQueue = [];\n _jobQueue = new K({ concurrency: 3 });\n _queueSize = 0;\n _queueProgress = 0;\n _queueStatus = 0;\n _notifiers = [];\n /**\n * Initialize uploader\n *\n * @param {boolean} isPublic are we in public mode ?\n * @param {Folder} destinationFolder the context folder to operate, relative to the root folder\n */\n constructor(s = !1, t) {\n if (this._isPublic = s, !t) {\n const n = S()?.uid, i = E(`dav/files/${n}`);\n if (!n)\n throw new Error(\"User is not logged in\");\n t = new j({\n id: 0,\n owner: n,\n permissions: G.ALL,\n root: `/files/${n}`,\n source: i\n });\n }\n this.destination = t, g.debug(\"Upload workspace initialized\", {\n destination: this.destination,\n root: this.root,\n isPublic: s,\n maxChunksSize: x()\n });\n }\n /**\n * Get the upload destination path relative to the root folder\n */\n get destination() {\n return this._destinationFolder;\n }\n /**\n * Set the upload destination path relative to the root folder\n */\n set destination(s) {\n if (!s)\n throw new Error(\"Invalid destination folder\");\n g.debug(\"Destination set\", { folder: s }), this._destinationFolder = s;\n }\n /**\n * Get the root folder\n */\n get root() {\n return this._destinationFolder.source;\n }\n /**\n * Get the upload queue\n */\n get queue() {\n return this._uploadQueue;\n }\n reset() {\n this._uploadQueue.splice(0, this._uploadQueue.length), this._jobQueue.clear(), this._queueSize = 0, this._queueProgress = 0, this._queueStatus = 0;\n }\n /**\n * Pause any ongoing upload(s)\n */\n pause() {\n this._jobQueue.pause(), this._queueStatus = 2;\n }\n /**\n * Resume any pending upload(s)\n */\n start() {\n this._jobQueue.start(), this._queueStatus = 1, this.updateStats();\n }\n /**\n * Get the upload queue stats\n */\n get info() {\n return {\n size: this._queueSize,\n progress: this._queueProgress,\n status: this._queueStatus\n };\n }\n updateStats() {\n const s = this._uploadQueue.map((n) => n.size).reduce((n, i) => n + i, 0), t = this._uploadQueue.map((n) => n.uploaded).reduce((n, i) => n + i, 0);\n this._queueSize = s, this._queueProgress = t, this._queueStatus !== 2 && (this._queueStatus = this._jobQueue.size > 0 ? 1 : 0);\n }\n addNotifier(s) {\n this._notifiers.push(s);\n }\n /**\n * Upload a file to the given path\n * @param {string} destinationPath the destination path relative to the root folder. e.g. /foo/bar.txt\n * @param {File} file the file to upload\n * @param {string} root the root folder to upload to\n */\n upload(s, t, n) {\n const i = `${n || this.root}/${s.replace(/^\\//, \"\")}`, { origin: o } = new URL(i), l = o + H(i.slice(o.length));\n g.debug(`Uploading ${t.name} to ${l}`);\n const f = x(t.size), r = f === 0 || t.size < f || this._isPublic, a = new ls(i, !r, t.size, t);\n return this._uploadQueue.push(a), this.updateStats(), new V(async (T, d, b) => {\n if (b(a.cancel), r) {\n g.debug(\"Initializing regular upload\", { file: t, upload: a });\n const p = await N(t, 0, a.size), L = async () => {\n try {\n a.response = await B(\n l,\n p,\n a.signal,\n (m) => {\n a.uploaded = a.uploaded + m.bytes, this.updateStats();\n },\n void 0,\n {\n \"X-OC-Mtime\": t.lastModified / 1e3,\n \"Content-Type\": t.type\n }\n ), a.uploaded = a.size, this.updateStats(), g.debug(`Successfully uploaded ${t.name}`, { file: t, upload: a }), T(a);\n } catch (m) {\n if (m instanceof F) {\n a.status = c.FAILED, d(\"Upload has been cancelled\");\n return;\n }\n m?.response && (a.response = m.response), a.status = c.FAILED, g.error(`Failed uploading ${t.name}`, { error: m, file: t, upload: a }), d(\"Failed uploading the file\");\n }\n this._notifiers.forEach((m) => {\n try {\n m(a);\n } catch {\n }\n });\n };\n this._jobQueue.add(L), this.updateStats();\n } else {\n g.debug(\"Initializing chunked upload\", { file: t, upload: a });\n const p = await is(l), L = [];\n for (let m = 0; m < a.chunks; m++) {\n const w = m * f, W = Math.min(w + f, a.size), O = () => N(t, w, f), q = () => B(\n `${p}/${m + 1}`,\n O,\n a.signal,\n () => this.updateStats(),\n l,\n {\n \"X-OC-Mtime\": t.lastModified / 1e3,\n \"OC-Total-Length\": t.size,\n \"Content-Type\": \"application/octet-stream\"\n }\n ).then(() => {\n a.uploaded = a.uploaded + f;\n }).catch((h) => {\n throw h?.response?.status === 507 ? (g.error(\"Upload failed, not enough space on the server or quota exceeded. Cancelling the remaining chunks\", { error: h, upload: a }), a.cancel(), a.status = c.FAILED, h) : (h instanceof F || (g.error(`Chunk ${m + 1} ${w} - ${W} uploading failed`, { error: h, upload: a }), a.cancel(), a.status = c.FAILED), h);\n });\n L.push(this._jobQueue.add(q));\n }\n try {\n await Promise.all(L), this.updateStats(), a.response = await v.request({\n method: \"MOVE\",\n url: `${p}/.file`,\n headers: {\n \"X-OC-Mtime\": t.lastModified / 1e3,\n \"OC-Total-Length\": t.size,\n Destination: l\n }\n }), this.updateStats(), a.status = c.FINISHED, g.debug(`Successfully uploaded ${t.name}`, { file: t, upload: a }), T(a);\n } catch (m) {\n m instanceof F ? (a.status = c.FAILED, d(\"Upload has been cancelled\")) : (a.status = c.FAILED, d(\"Failed assembling the chunks together\")), v.request({\n method: \"DELETE\",\n url: `${p}`\n });\n }\n this._notifiers.forEach((m) => {\n try {\n m(a);\n } catch {\n }\n });\n }\n return this._jobQueue.onIdle().then(() => this.reset()), a;\n });\n }\n}\nfunction U(e, s, t, n, i, o, l, f) {\n var r = typeof e == \"function\" ? e.options : e;\n s && (r.render = s, r.staticRenderFns = t, r._compiled = !0), n && (r.functional = !0), o && (r._scopeId = \"data-v-\" + o);\n var a;\n if (l ? (a = function(d) {\n d = d || // cached call\n this.$vnode && this.$vnode.ssrContext || // stateful\n this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext, !d && typeof __VUE_SSR_CONTEXT__ < \"u\" && (d = __VUE_SSR_CONTEXT__), i && i.call(this, d), d && d._registeredComponents && d._registeredComponents.add(l);\n }, r._ssrRegister = a) : i && (a = f ? function() {\n i.call(\n this,\n (r.functional ? this.parent : this).$root.$options.shadowRoot\n );\n } : i), a)\n if (r.functional) {\n r._injectStyles = a;\n var _ = r.render;\n r.render = function(b, p) {\n return a.call(p), _(b, p);\n };\n } else {\n var T = r.beforeCreate;\n r.beforeCreate = T ? [].concat(T, a) : [a];\n }\n return {\n exports: e,\n options: r\n };\n}\nconst os = {\n name: \"CancelIcon\",\n emits: [\"click\"],\n props: {\n title: {\n type: String\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n};\nvar ms = function() {\n var s = this, t = s._self._c;\n return t(\"span\", s._b({ staticClass: \"material-design-icon cancel-icon\", attrs: { \"aria-hidden\": s.title ? null : !0, \"aria-label\": s.title, role: \"img\" }, on: { click: function(n) {\n return s.$emit(\"click\", n);\n } } }, \"span\", s.$attrs, !1), [t(\"svg\", { staticClass: \"material-design-icon__svg\", attrs: { fill: s.fillColor, width: s.size, height: s.size, viewBox: \"0 0 24 24\" } }, [t(\"path\", { attrs: { d: \"M12 2C17.5 2 22 6.5 22 12S17.5 22 12 22 2 17.5 2 12 6.5 2 12 2M12 4C10.1 4 8.4 4.6 7.1 5.7L18.3 16.9C19.3 15.5 20 13.8 20 12C20 7.6 16.4 4 12 4M16.9 18.3L5.7 7.1C4.6 8.4 4 10.1 4 12C4 16.4 7.6 20 12 20C13.9 20 15.6 19.4 16.9 18.3Z\" } }, [s.title ? t(\"title\", [s._v(s._s(s.title))]) : s._e()])])]);\n}, ds = [], gs = /* @__PURE__ */ U(\n os,\n ms,\n ds,\n !1,\n null,\n null,\n null,\n null\n);\nconst us = gs.exports, cs = {\n name: \"PlusIcon\",\n emits: [\"click\"],\n props: {\n title: {\n type: String\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n};\nvar fs = function() {\n var s = this, t = s._self._c;\n return t(\"span\", s._b({ staticClass: \"material-design-icon plus-icon\", attrs: { \"aria-hidden\": s.title ? null : !0, \"aria-label\": s.title, role: \"img\" }, on: { click: function(n) {\n return s.$emit(\"click\", n);\n } } }, \"span\", s.$attrs, !1), [t(\"svg\", { staticClass: \"material-design-icon__svg\", attrs: { fill: s.fillColor, width: s.size, height: s.size, viewBox: \"0 0 24 24\" } }, [t(\"path\", { attrs: { d: \"M19,13H13V19H11V13H5V11H11V5H13V11H19V13Z\" } }, [s.title ? t(\"title\", [s._v(s._s(s.title))]) : s._e()])])]);\n}, ps = [], hs = /* @__PURE__ */ U(\n cs,\n fs,\n ps,\n !1,\n null,\n null,\n null,\n null\n);\nconst Ts = hs.exports, ws = {\n name: \"UploadIcon\",\n emits: [\"click\"],\n props: {\n title: {\n type: String\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n};\nvar xs = function() {\n var s = this, t = s._self._c;\n return t(\"span\", s._b({ staticClass: \"material-design-icon upload-icon\", attrs: { \"aria-hidden\": s.title ? null : !0, \"aria-label\": s.title, role: \"img\" }, on: { click: function(n) {\n return s.$emit(\"click\", n);\n } } }, \"span\", s.$attrs, !1), [t(\"svg\", { staticClass: \"material-design-icon__svg\", attrs: { fill: s.fillColor, width: s.size, height: s.size, viewBox: \"0 0 24 24\" } }, [t(\"path\", { attrs: { d: \"M9,16V10H5L12,3L19,10H15V16H9M5,20V18H19V20H5Z\" } }, [s.title ? t(\"title\", [s._v(s._s(s.title))]) : s._e()])])]);\n}, Ls = [], ks = /* @__PURE__ */ U(\n ws,\n xs,\n Ls,\n !1,\n null,\n null,\n null,\n null\n);\nconst Cs = ks.exports;\n/**\n * @copyright Copyright (c) 2023 Ferdinand Thiessen <opensource@fthiessen.de>\n *\n * @author Ferdinand Thiessen <opensource@fthiessen.de>\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst M = ns().detectLocale();\n[{ locale: \"af\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Afrikaans (https://www.transifex.com/nextcloud/teams/64236/af/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"af\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Afrikaans (https://www.transifex.com/nextcloud/teams/64236/af/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: af\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ar\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Ali <alimahwer@yahoo.com>, 2024\", \"Language-Team\": \"Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ar\", \"Plural-Forms\": \"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nAli <alimahwer@yahoo.com>, 2024\n` }, msgstr: [`Last-Translator: Ali <alimahwer@yahoo.com>, 2024\nLanguage-Team: Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ar\nPlural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} ملف متعارض\", \"{count} ملف متعارض\", \"{count} ملفان متعارضان\", \"{count} ملف متعارض\", \"{count} ملفات متعارضة\", \"{count} ملفات متعارضة\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} ملف متعارض في n {dirname}\", \"{count} ملف متعارض في n {dirname}\", \"{count} ملفان متعارضان في n {dirname}\", \"{count} ملف متعارض في n {dirname}\", \"{count} ملفات متعارضة في n {dirname}\", \"{count} ملفات متعارضة في n {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} ثانية متبقية\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} متبقية\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"باقٍ بضعُ ثوانٍ\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"إلغاء\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"إلغِ العملية بالكامل\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"إلغاء عمليات رفع الملفات\"] }, Continue: { msgid: \"Continue\", msgstr: [\"إستمر\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"تقدير الوقت المتبقي\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"الإصدار الحالي\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"إذا اخترت الإبقاء على النسختين معاً، فإن الملف المنسوخ سيتم إلحاق رقم تسلسلي في نهاية اسمه.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"تاريخ آخر تعديل غير معلوم\"] }, New: { msgid: \"New\", msgstr: [\"جديد\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"نسخة جديدة\"] }, paused: { msgid: \"paused\", msgstr: [\"مُجمَّد\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"معاينة الصورة\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"حدِّد كل صناديق الخيارات\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"حدِّد كل الملفات الموجودة\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"حدِّد كل الملفات الجديدة\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"تخطَّ {count} ملف\", \"تخطَّ {count} ملف\", \"تخطَّ {count} ملف\", \"تخطَّ {count} ملف\", \"تخطَّ {count} ملف\", \"تخطَّ {count} ملف\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"حجم غير معلوم\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"تمَّ إلغاء الرفع\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"رفع ملفات\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"تقدُّم الرفع \"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"عند تحديد مجلد وارد، أي ملفات متعارضة بداخله ستتم الكتابة فوقها.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"أيُّ الملفات ترغب في الإبقاء عليها؟\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"يجب أن تختار نسخة واحدة على الأقل من كل ملف للاستمرار.\"] } } } } }, { locale: \"ar_SA\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Arabic (Saudi Arabia) (https://www.transifex.com/nextcloud/teams/64236/ar_SA/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ar_SA\", \"Plural-Forms\": \"nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Arabic (Saudi Arabia) (https://www.transifex.com/nextcloud/teams/64236/ar_SA/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ar_SA\nPlural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ast\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"enolp <enolp@softastur.org>, 2023\", \"Language-Team\": \"Asturian (https://app.transifex.com/nextcloud/teams/64236/ast/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ast\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nenolp <enolp@softastur.org>, 2023\n` }, msgstr: [`Last-Translator: enolp <enolp@softastur.org>, 2023\nLanguage-Team: Asturian (https://app.transifex.com/nextcloud/teams/64236/ast/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ast\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} ficheru en coflictu\", \"{count} ficheros en coflictu\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} ficheru en coflictu en {dirname}\", \"{count} ficheros en coflictu en {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Queden {seconds} segundos\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"Tiempu que queda: {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"queden unos segundos\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Encaboxar les xubes\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Siguir\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando'l tiempu que falta\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Versión esistente\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Si seleiciones dambes versiones, el ficheru copiáu va tener un númberu amestáu al so nome.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"La data de la última modificación ye desconocida\"] }, New: { msgid: \"New\", msgstr: [\"Nuevu\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Versión nueva\"] }, paused: { msgid: \"paused\", msgstr: [\"en posa\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Previsualizar la imaxe\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Marcar toles caxelles\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Seleicionar tolos ficheros esistentes\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Seleicionar tolos ficheros nuevos\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Saltar esti ficheru\", \"Saltar {count} ficheros\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Tamañu desconocíu\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Encaboxóse la xuba\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Xubir ficheros\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Xuba en cursu\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"¿Qué ficheros quies caltener?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Tienes de seleicionar polo menos una versión de cada ficheru pa siguir.\"] } } } } }, { locale: \"az\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Rashad Aliyev <microphprashad@gmail.com>, 2023\", \"Language-Team\": \"Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"az\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nRashad Aliyev <microphprashad@gmail.com>, 2023\n` }, msgstr: [`Last-Translator: Rashad Aliyev <microphprashad@gmail.com>, 2023\nLanguage-Team: Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: az\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} saniyə qalıb\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} qalıb\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"bir neçə saniyə qalıb\"] }, Add: { msgid: \"Add\", msgstr: [\"Əlavə et\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Yükləməni imtina et\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Təxmini qalan vaxt\"] }, paused: { msgid: \"paused\", msgstr: [\"pauzadadır\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Faylları yüklə\"] } } } } }, { locale: \"be\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Belarusian (https://www.transifex.com/nextcloud/teams/64236/be/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"be\", \"Plural-Forms\": \"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Belarusian (https://www.transifex.com/nextcloud/teams/64236/be/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: be\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"bg_BG\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Bulgarian (Bulgaria) (https://www.transifex.com/nextcloud/teams/64236/bg_BG/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"bg_BG\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bulgarian (Bulgaria) (https://www.transifex.com/nextcloud/teams/64236/bg_BG/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bg_BG\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"bn_BD\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Bengali (Bangladesh) (https://www.transifex.com/nextcloud/teams/64236/bn_BD/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"bn_BD\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bengali (Bangladesh) (https://www.transifex.com/nextcloud/teams/64236/bn_BD/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bn_BD\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"br\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Breton (https://www.transifex.com/nextcloud/teams/64236/br/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"br\", \"Plural-Forms\": \"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Breton (https://www.transifex.com/nextcloud/teams/64236/br/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: br\nPlural-Forms: nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"bs\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Bosnian (https://www.transifex.com/nextcloud/teams/64236/bs/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"bs\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bosnian (https://www.transifex.com/nextcloud/teams/64236/bs/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bs\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ca\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Toni Hermoso Pulido <toniher@softcatala.cat>, 2022\", \"Language-Team\": \"Catalan (https://www.transifex.com/nextcloud/teams/64236/ca/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ca\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMarc Riera <marcriera@softcatala.org>, 2022\nToni Hermoso Pulido <toniher@softcatala.cat>, 2022\n` }, msgstr: [`Last-Translator: Toni Hermoso Pulido <toniher@softcatala.cat>, 2022\nLanguage-Team: Catalan (https://www.transifex.com/nextcloud/teams/64236/ca/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ca\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Queden {seconds} segons\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"Queden {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"Queden uns segons\"] }, Add: { msgid: \"Add\", msgstr: [\"Afegeix\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancel·la les pujades\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"S'està estimant el temps restant\"] }, paused: { msgid: \"paused\", msgstr: [\"En pausa\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Puja els fitxers\"] } } } } }, { locale: \"cs\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Pavel Borecki <pavel.borecki@gmail.com>, 2022\", \"Language-Team\": \"Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"cs\", \"Plural-Forms\": \"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nPavel Borecki <pavel.borecki@gmail.com>, 2022\n` }, msgstr: [`Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2022\nLanguage-Team: Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cs\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"zbývá {seconds}\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"zbývá {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"zbývá několik sekund\"] }, Add: { msgid: \"Add\", msgstr: [\"Přidat\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Zrušit nahrávání\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"odhadovaný zbývající čas\"] }, paused: { msgid: \"paused\", msgstr: [\"pozastaveno\"] } } } } }, { locale: \"cs_CZ\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Michal Šmahel <ceskyDJ@seznam.cz>, 2024\", \"Language-Team\": \"Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"cs_CZ\", \"Plural-Forms\": \"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nMichal Šmahel <ceskyDJ@seznam.cz>, 2024\n` }, msgstr: [`Last-Translator: Michal Šmahel <ceskyDJ@seznam.cz>, 2024\nLanguage-Team: Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cs_CZ\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} kolize souborů\", \"{count} kolize souborů\", \"{count} kolizí souborů\", \"{count} kolize souborů\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} kolize souboru v {dirname}\", \"{count} kolize souboru v {dirname}\", \"{count} kolizí souborů v {dirname}\", \"{count} kolize souboru v {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"zbývá {seconds}\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"zbývá {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"zbývá několik sekund\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Zrušit\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Zrušit celou operaci\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Zrušit nahrávání\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Pokračovat\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"odhaduje se zbývající čas\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Existující verze\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Pokud vyberete obě verze, zkopírovaný soubor bude mít k názvu přidáno číslo.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Neznámé datum poslední úpravy\"] }, New: { msgid: \"New\", msgstr: [\"Nové\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nová verze\"] }, paused: { msgid: \"paused\", msgstr: [\"pozastaveno\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Náhled obrázku\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Označit všechny zaškrtávací kolonky\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Vybrat veškeré stávající soubory\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Vybrat veškeré nové soubory\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Přeskočit tento soubor\", \"Přeskočit {count} soubory\", \"Přeskočit {count} souborů\", \"Přeskočit {count} soubory\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Neznámá velikost\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Nahrávání zrušeno\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Nahrát soubory\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Postup v nahrávání\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Po výběru příchozí složky budou rovněž přepsány všechny v ní obsažené konfliktní soubory\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Které soubory si přejete ponechat?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Aby bylo možné pokračovat, je třeba vybrat alespoň jednu verzi od každého souboru.\"] } } } } }, { locale: \"cy_GB\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Welsh (United Kingdom) (https://www.transifex.com/nextcloud/teams/64236/cy_GB/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"cy_GB\", \"Plural-Forms\": \"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Welsh (United Kingdom) (https://www.transifex.com/nextcloud/teams/64236/cy_GB/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cy_GB\nPlural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"da\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Martin Bonde <Martin@maboni.dk>, 2024\", \"Language-Team\": \"Danish (https://app.transifex.com/nextcloud/teams/64236/da/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"da\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nMartin Bonde <Martin@maboni.dk>, 2024\n` }, msgstr: [`Last-Translator: Martin Bonde <Martin@maboni.dk>, 2024\nLanguage-Team: Danish (https://app.transifex.com/nextcloud/teams/64236/da/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: da\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} fil konflikt\", \"{count} filer i konflikt\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} fil konflikt i {dirname}\", \"{count} filer i konflikt i {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{sekunder} sekunder tilbage\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{tid} tilbage\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"et par sekunder tilbage\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Annuller\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Annuller hele handlingen\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Annuller uploads\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Fortsæt\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimering af resterende tid\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Eksisterende version\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Hvis du vælger begge versioner vil den kopierede fil få et nummer tilføjet til sit navn.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Sidste modifikationsdato ukendt\"] }, New: { msgid: \"New\", msgstr: [\"Ny\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Ny version\"] }, paused: { msgid: \"paused\", msgstr: [\"pauset\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Forhåndsvisning af billede\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Vælg alle felter\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Vælg alle eksisterende filer\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Vælg alle nye filer\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Spring denne fil over\", \"Spring {count} filer over\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Ukendt størrelse\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Upload annulleret\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Upload filer\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Upload fremskridt\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Når en indgående mappe er valgt, vil alle modstridende filer i den også blive overskrevet.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Hvilke filer ønsker du at beholde?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Du skal vælge mindst én version af hver fil for at fortsætte.\"] } } } } }, { locale: \"de\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Mario Siegmann <mario_siegmann@web.de>, 2024\", \"Language-Team\": \"German (https://app.transifex.com/nextcloud/teams/64236/de/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"de\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nMario Siegmann <mario_siegmann@web.de>, 2024\n` }, msgstr: [`Last-Translator: Mario Siegmann <mario_siegmann@web.de>, 2024\nLanguage-Team: German (https://app.transifex.com/nextcloud/teams/64236/de/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: de\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} Datei-Konflikt\", \"{count} Datei-Konflikte\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} Datei-Konflikt in {dirname}\", \"{count} Datei-Konflikte in {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} Sekunden verbleibend\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} verbleibend\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"noch ein paar Sekunden\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Abbrechen\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Den gesamten Vorgang abbrechen\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Hochladen abbrechen\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Fortsetzen\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Geschätzte verbleibende Zeit\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Vorhandene Version\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Wenn du beide Versionen auswählst, wird der kopierten Datei eine Nummer zum Namen hinzugefügt.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Datum der letzten Änderung unbekannt\"] }, New: { msgid: \"New\", msgstr: [\"Neu\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Neue Version\"] }, paused: { msgid: \"paused\", msgstr: [\"Pausiert\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Vorschaubild\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Alle Kontrollkästchen aktivieren\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Alle vorhandenen Dateien auswählen\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Alle neuen Dateien auswählen\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Diese Datei überspringen\", \"{count} Dateien überspringen\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Unbekannte Größe\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Hochladen abgebrochen\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Dateien hochladen\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Fortschritt beim Hochladen\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Wenn ein eingehender Ordner ausgewählt wird, werden alle darin enthaltenen Konfliktdateien ebenfalls überschrieben.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Welche Dateien möchtest du behalten?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Du musst mindestens eine Version jeder Datei auswählen, um fortzufahren.\"] } } } } }, { locale: \"de_DE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Mario Siegmann <mario_siegmann@web.de>, 2024\", \"Language-Team\": \"German (Germany) (https://app.transifex.com/nextcloud/teams/64236/de_DE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"de_DE\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nMario Siegmann <mario_siegmann@web.de>, 2024\n` }, msgstr: [`Last-Translator: Mario Siegmann <mario_siegmann@web.de>, 2024\nLanguage-Team: German (Germany) (https://app.transifex.com/nextcloud/teams/64236/de_DE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: de_DE\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} Datei-Konflikt\", \"{count} Datei-Konflikte\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} Datei-Konflikt in {dirname}\", \"{count} Datei-Konflikte in {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} Sekunden verbleiben\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} verbleibend\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"ein paar Sekunden verbleiben\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Abbrechen\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Den gesamten Vorgang abbrechen\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Hochladen abbrechen\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Fortsetzen\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Geschätzte verbleibende Zeit\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Vorhandene Version\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Wenn Sie beide Versionen auswählen, wird der kopierten Datei eine Nummer zum Namen hinzugefügt.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Datum der letzten Änderung unbekannt\"] }, New: { msgid: \"New\", msgstr: [\"Neu\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Neue Version\"] }, paused: { msgid: \"paused\", msgstr: [\"Pausiert\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Vorschaubild\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Alle Kontrollkästchen aktivieren\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Alle vorhandenen Dateien auswählen\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Alle neuen Dateien auswählen\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"{count} Datei überspringen\", \"{count} Dateien überspringen\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Unbekannte Größe\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Hochladen abgebrochen\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Dateien hochladen\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Fortschritt beim Hochladen\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Wenn ein eingehender Ordner ausgewählt wird, werden alle darin enthaltenen Konfliktdateien ebenfalls überschrieben.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Welche Dateien möchten Sie behalten?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Sie müssen mindestens eine Version jeder Datei auswählen, um fortzufahren.\"] } } } } }, { locale: \"el\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Nik Pap, 2022\", \"Language-Team\": \"Greek (https://www.transifex.com/nextcloud/teams/64236/el/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"el\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nNik Pap, 2022\n` }, msgstr: [`Last-Translator: Nik Pap, 2022\nLanguage-Team: Greek (https://www.transifex.com/nextcloud/teams/64236/el/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: el\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"απομένουν {seconds} δευτερόλεπτα\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"απομένουν {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"απομένουν λίγα δευτερόλεπτα\"] }, Add: { msgid: \"Add\", msgstr: [\"Προσθήκη\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Ακύρωση μεταφορτώσεων\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"εκτίμηση του χρόνου που απομένει\"] }, paused: { msgid: \"paused\", msgstr: [\"σε παύση\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Μεταφόρτωση αρχείων\"] } } } } }, { locale: \"el_GR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Greek (Greece) (https://www.transifex.com/nextcloud/teams/64236/el_GR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"el_GR\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Greek (Greece) (https://www.transifex.com/nextcloud/teams/64236/el_GR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: el_GR\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"en_GB\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Andi Chandler <andi@gowling.com>, 2023\", \"Language-Team\": \"English (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/en_GB/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"en_GB\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nAndi Chandler <andi@gowling.com>, 2023\n` }, msgstr: [`Last-Translator: Andi Chandler <andi@gowling.com>, 2023\nLanguage-Team: English (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/en_GB/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: en_GB\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} file conflict\", \"{count} files conflict\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} file conflict in {dirname}\", \"{count} file conflicts in {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} seconds left\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} left\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"a few seconds left\"] }, Add: { msgid: \"Add\", msgstr: [\"Add\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancel uploads\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Continue\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimating time left\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Existing version\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"If you select both versions, the copied file will have a number added to its name.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Last modified date unknown\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"New version\"] }, paused: { msgid: \"paused\", msgstr: [\"paused\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Preview image\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Select all checkboxes\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Select all existing files\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Select all new files\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Skip this file\", \"Skip {count} files\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Unknown size\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Upload cancelled\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Upload files\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Which files do you want to keep?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"You need to select at least one version of each file to continue.\"] } } } } }, { locale: \"eo\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Esperanto (https://www.transifex.com/nextcloud/teams/64236/eo/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"eo\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Esperanto (https://www.transifex.com/nextcloud/teams/64236/eo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: eo\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Julio C. Ortega, 2024\", \"Language-Team\": \"Spanish (https://app.transifex.com/nextcloud/teams/64236/es/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nFranciscoFJ <dev-ooo@satel-sa.com>, 2023\nNext Cloud <nextcloud.translator.es@cgj.es>, 2023\nJulio C. Ortega, 2024\n` }, msgstr: [`Last-Translator: Julio C. Ortega, 2024\nLanguage-Team: Spanish (https://app.transifex.com/nextcloud/teams/64236/es/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} archivo en conflicto\", \"{count} archivos en conflicto\", \"{count} archivos en conflicto\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} archivo en conflicto en {dirname}\", \"{count} archivos en conflicto en {dirname}\", \"{count} archivos en conflicto en {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quedan unos segundos\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar subidas\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Continuar\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tiempo restante\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Versión existente\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Si selecciona ambas versiones, al archivo copiado se le añadirá un número en el nombre.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Última fecha de modificación desconocida\"] }, New: { msgid: \"New\", msgstr: [\"Nuevo\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nueva versión\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Previsualizar imagen\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Seleccionar todas las casillas de verificación\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Seleccionar todos los archivos existentes\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Seleccionar todos los archivos nuevos\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Saltar este archivo\", \"Saltar {count} archivos\", \"Saltar {count} archivos\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Tamaño desconocido\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Subida cancelada\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Subir archivos\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Progreso de la subida\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"¿Qué archivos desea conservar?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Debe seleccionar al menos una versión de cada archivo para continuar.\"] } } } } }, { locale: \"es_419\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"ALEJANDRO CASTRO, 2022\", \"Language-Team\": \"Spanish (Latin America) (https://www.transifex.com/nextcloud/teams/64236/es_419/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_419\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nALEJANDRO CASTRO, 2022\n` }, msgstr: [`Last-Translator: ALEJANDRO CASTRO, 2022\nLanguage-Team: Spanish (Latin America) (https://www.transifex.com/nextcloud/teams/64236/es_419/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_419\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{tiempo} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quedan pocos segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"agregar\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar subidas\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tiempo restante\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Subir archivos\"] } } } } }, { locale: \"es_AR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Matias Iglesias, 2022\", \"Language-Team\": \"Spanish (Argentina) (https://www.transifex.com/nextcloud/teams/64236/es_AR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_AR\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMatias Iglesias, 2022\n` }, msgstr: [`Last-Translator: Matias Iglesias, 2022\nLanguage-Team: Spanish (Argentina) (https://www.transifex.com/nextcloud/teams/64236/es_AR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_AR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quedan unos segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"Añadir\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar subidas\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tiempo restante\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Subir archivos\"] } } } } }, { locale: \"es_CL\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Chile) (https://www.transifex.com/nextcloud/teams/64236/es_CL/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_CL\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Chile) (https://www.transifex.com/nextcloud/teams/64236/es_CL/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CL\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_CO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Colombia) (https://www.transifex.com/nextcloud/teams/64236/es_CO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_CO\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Colombia) (https://www.transifex.com/nextcloud/teams/64236/es_CO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CO\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_CR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Costa Rica) (https://www.transifex.com/nextcloud/teams/64236/es_CR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_CR\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Costa Rica) (https://www.transifex.com/nextcloud/teams/64236/es_CR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_DO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Dominican Republic) (https://www.transifex.com/nextcloud/teams/64236/es_DO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_DO\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Dominican Republic) (https://www.transifex.com/nextcloud/teams/64236/es_DO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_DO\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_EC\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Ecuador) (https://www.transifex.com/nextcloud/teams/64236/es_EC/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_EC\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Ecuador) (https://www.transifex.com/nextcloud/teams/64236/es_EC/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_EC\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_GT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Guatemala) (https://www.transifex.com/nextcloud/teams/64236/es_GT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_GT\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Guatemala) (https://www.transifex.com/nextcloud/teams/64236/es_GT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_GT\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_HN\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Honduras) (https://www.transifex.com/nextcloud/teams/64236/es_HN/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_HN\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Honduras) (https://www.transifex.com/nextcloud/teams/64236/es_HN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_HN\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_MX\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"ALEJANDRO CASTRO, 2022\", \"Language-Team\": \"Spanish (Mexico) (https://www.transifex.com/nextcloud/teams/64236/es_MX/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_MX\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nLuis Francisco Castro, 2022\nALEJANDRO CASTRO, 2022\n` }, msgstr: [`Last-Translator: ALEJANDRO CASTRO, 2022\nLanguage-Team: Spanish (Mexico) (https://www.transifex.com/nextcloud/teams/64236/es_MX/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_MX\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{tiempo} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quedan pocos segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"agregar\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"cancelar las cargas\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tiempo restante\"] }, paused: { msgid: \"paused\", msgstr: [\"en pausa\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"cargar archivos\"] } } } } }, { locale: \"es_NI\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Nicaragua) (https://www.transifex.com/nextcloud/teams/64236/es_NI/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_NI\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Nicaragua) (https://www.transifex.com/nextcloud/teams/64236/es_NI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_NI\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_PA\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Panama) (https://www.transifex.com/nextcloud/teams/64236/es_PA/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PA\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Panama) (https://www.transifex.com/nextcloud/teams/64236/es_PA/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PA\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_PE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Peru) (https://www.transifex.com/nextcloud/teams/64236/es_PE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PE\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Peru) (https://www.transifex.com/nextcloud/teams/64236/es_PE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PE\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_PR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Puerto Rico) (https://www.transifex.com/nextcloud/teams/64236/es_PR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PR\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Puerto Rico) (https://www.transifex.com/nextcloud/teams/64236/es_PR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_PY\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Paraguay) (https://www.transifex.com/nextcloud/teams/64236/es_PY/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PY\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Paraguay) (https://www.transifex.com/nextcloud/teams/64236/es_PY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PY\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_SV\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (El Salvador) (https://www.transifex.com/nextcloud/teams/64236/es_SV/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_SV\", \"Plural-Forms\": \"nplurals=2; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (El Salvador) (https://www.transifex.com/nextcloud/teams/64236/es_SV/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_SV\nPlural-Forms: nplurals=2; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_UY\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Uruguay) (https://www.transifex.com/nextcloud/teams/64236/es_UY/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_UY\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Uruguay) (https://www.transifex.com/nextcloud/teams/64236/es_UY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_UY\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"et_EE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Taavo Roos, 2023\", \"Language-Team\": \"Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"et_EE\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMait R, 2022\nTaavo Roos, 2023\n` }, msgstr: [`Last-Translator: Taavo Roos, 2023\nLanguage-Team: Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: et_EE\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} jäänud sekundid\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} aega jäänud\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"jäänud mõni sekund\"] }, Add: { msgid: \"Add\", msgstr: [\"Lisa\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Tühista üleslaadimine\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"hinnanguline järelejäänud aeg\"] }, paused: { msgid: \"paused\", msgstr: [\"pausil\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Lae failid üles\"] } } } } }, { locale: \"eu\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Unai Tolosa Pontesta <utolosa002@gmail.com>, 2022\", \"Language-Team\": \"Basque (https://www.transifex.com/nextcloud/teams/64236/eu/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"eu\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nUnai Tolosa Pontesta <utolosa002@gmail.com>, 2022\n` }, msgstr: [`Last-Translator: Unai Tolosa Pontesta <utolosa002@gmail.com>, 2022\nLanguage-Team: Basque (https://www.transifex.com/nextcloud/teams/64236/eu/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: eu\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundo geratzen dira\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} geratzen da\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"segundo batzuk geratzen dira\"] }, Add: { msgid: \"Add\", msgstr: [\"Gehitu\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Ezeztatu igoerak\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"kalkulatutako geratzen den denbora\"] }, paused: { msgid: \"paused\", msgstr: [\"geldituta\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Igo fitxategiak\"] } } } } }, { locale: \"fa\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Fatemeh Komeily, 2023\", \"Language-Team\": \"Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fa\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nFatemeh Komeily, 2023\n` }, msgstr: [`Last-Translator: Fatemeh Komeily, 2023\nLanguage-Team: Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fa\nPlural-Forms: nplurals=2; plural=(n > 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"ثانیه های باقی مانده\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"باقی مانده\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"چند ثانیه مانده\"] }, Add: { msgid: \"Add\", msgstr: [\"اضافه کردن\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"کنسل کردن فایل های اپلود شده\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"تخمین زمان باقی مانده\"] }, paused: { msgid: \"paused\", msgstr: [\"مکث کردن\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"بارگذاری فایل ها\"] } } } } }, { locale: \"fi_FI\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Jiri Grönroos <jiri.gronroos@iki.fi>, 2022\", \"Language-Team\": \"Finnish (Finland) (https://www.transifex.com/nextcloud/teams/64236/fi_FI/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fi_FI\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJiri Grönroos <jiri.gronroos@iki.fi>, 2022\n` }, msgstr: [`Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>, 2022\nLanguage-Team: Finnish (Finland) (https://www.transifex.com/nextcloud/teams/64236/fi_FI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fi_FI\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} sekuntia jäljellä\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} jäljellä\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"muutama sekunti jäljellä\"] }, Add: { msgid: \"Add\", msgstr: [\"Lisää\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Peruuta lähetykset\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"arvioidaan jäljellä olevaa aikaa\"] }, paused: { msgid: \"paused\", msgstr: [\"keskeytetty\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Lähetä tiedostoja\"] } } } } }, { locale: \"fo\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Faroese (https://www.transifex.com/nextcloud/teams/64236/fo/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fo\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Faroese (https://www.transifex.com/nextcloud/teams/64236/fo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fo\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"fr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"jed boulahya, 2024\", \"Language-Team\": \"French (https://app.transifex.com/nextcloud/teams/64236/fr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fr\", \"Plural-Forms\": \"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nBenoit Pruneau, 2024\njed boulahya, 2024\n` }, msgstr: [`Last-Translator: jed boulahya, 2024\nLanguage-Team: French (https://app.transifex.com/nextcloud/teams/64236/fr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fr\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} fichier en conflit\", \"{count} fichiers en conflit\", \"{count} fichiers en conflit\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} fichier en conflit dans {dirname}\", \"{count} fichiers en conflit dans {dirname}\", \"{count} fichiers en conflit dans {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} secondes restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} restant\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quelques secondes restantes\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Annuler\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Annuler l'opération entière\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Annuler les envois\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Continuer\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimation du temps restant\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Version existante\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Si vous sélectionnez les deux versions, le fichier copié aura un numéro ajouté àname.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Date de la dernière modification est inconnue\"] }, New: { msgid: \"New\", msgstr: [\"Nouveau\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nouvelle version\"] }, paused: { msgid: \"paused\", msgstr: [\"en pause\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Aperçu de l'image\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Sélectionner toutes les cases à cocher\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Sélectionner tous les fichiers existants\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Sélectionner tous les nouveaux fichiers\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Ignorer ce fichier\", \"Ignorer {count} fichiers\", \"Ignorer {count} fichiers\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Taille inconnue\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\" annulé\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Téléchargement des fichiers\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Progression du téléchargement\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Lorsqu'un dossier entrant est sélectionné, tous les fichiers en conflit qu'il contient seront également écrasés.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Quels fichiers souhaitez-vous conserver ?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Vous devez sélectionner au moins une version de chaque fichier pour continuer.\"] } } } } }, { locale: \"gd\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Gaelic, Scottish (https://www.transifex.com/nextcloud/teams/64236/gd/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"gd\", \"Plural-Forms\": \"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Gaelic, Scottish (https://www.transifex.com/nextcloud/teams/64236/gd/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: gd\nPlural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"gl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Miguel Anxo Bouzada <mbouzada@gmail.com>, 2023\", \"Language-Team\": \"Galician (https://app.transifex.com/nextcloud/teams/64236/gl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"gl\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nNacho <nacho.vfranco@gmail.com>, 2023\nMiguel Anxo Bouzada <mbouzada@gmail.com>, 2023\n` }, msgstr: [`Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>, 2023\nLanguage-Team: Galician (https://app.transifex.com/nextcloud/teams/64236/gl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: gl\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} conflito de ficheiros\", \"{count} conflitos de ficheiros\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} conflito de ficheiros en {dirname}\", \"{count} conflitos de ficheiros en {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"faltan {seconds} segundos\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"falta {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"faltan uns segundos\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar envíos\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Continuar\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"calculando canto tempo falta\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Versión existente\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Se selecciona ambas as versións, o ficheiro copiado terá un número engadido ao seu nome.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Data da última modificación descoñecida\"] }, New: { msgid: \"New\", msgstr: [\"Nova\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nova versión\"] }, paused: { msgid: \"paused\", msgstr: [\"detido\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Vista previa da imaxe\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Marcar todas as caixas de selección\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Seleccionar todos os ficheiros existentes\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Seleccionar todos os ficheiros novos\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Omita este ficheiro\", \"Omitir {count} ficheiros\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Tamaño descoñecido\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Envío cancelado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Enviar ficheiros\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Progreso do envío\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Que ficheiros quere conservar?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Debe seleccionar polo menos unha versión de cada ficheiro para continuar.\"] } } } } }, { locale: \"he\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Hebrew (https://www.transifex.com/nextcloud/teams/64236/he/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"he\", \"Plural-Forms\": \"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hebrew (https://www.transifex.com/nextcloud/teams/64236/he/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: he\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hi_IN\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Hindi (India) (https://www.transifex.com/nextcloud/teams/64236/hi_IN/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hi_IN\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hindi (India) (https://www.transifex.com/nextcloud/teams/64236/hi_IN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hi_IN\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Croatian (https://www.transifex.com/nextcloud/teams/64236/hr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hr\", \"Plural-Forms\": \"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Croatian (https://www.transifex.com/nextcloud/teams/64236/hr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hr\nPlural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hsb\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Upper Sorbian (https://www.transifex.com/nextcloud/teams/64236/hsb/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hsb\", \"Plural-Forms\": \"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Upper Sorbian (https://www.transifex.com/nextcloud/teams/64236/hsb/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hsb\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hu\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Hungarian (https://www.transifex.com/nextcloud/teams/64236/hu/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hu\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hungarian (https://www.transifex.com/nextcloud/teams/64236/hu/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hu\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hu_HU\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Balázs Úr, 2022\", \"Language-Team\": \"Hungarian (Hungary) (https://www.transifex.com/nextcloud/teams/64236/hu_HU/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hu_HU\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nBalázs Meskó <meskobalazs@mailbox.org>, 2022\nBalázs Úr, 2022\n` }, msgstr: [`Last-Translator: Balázs Úr, 2022\nLanguage-Team: Hungarian (Hungary) (https://www.transifex.com/nextcloud/teams/64236/hu_HU/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hu_HU\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{} másodperc van hátra\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} van hátra\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"pár másodperc van hátra\"] }, Add: { msgid: \"Add\", msgstr: [\"Hozzáadás\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Feltöltések megszakítása\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"hátralévő idő becslése\"] }, paused: { msgid: \"paused\", msgstr: [\"szüneteltetve\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Fájlok feltöltése\"] } } } } }, { locale: \"hy\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Armenian (https://www.transifex.com/nextcloud/teams/64236/hy/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hy\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Armenian (https://www.transifex.com/nextcloud/teams/64236/hy/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hy\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ia\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Interlingua (https://www.transifex.com/nextcloud/teams/64236/ia/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ia\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Interlingua (https://www.transifex.com/nextcloud/teams/64236/ia/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ia\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"id\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Linerly <linerly@proton.me>, 2023\", \"Language-Team\": \"Indonesian (https://app.transifex.com/nextcloud/teams/64236/id/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"id\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nEmpty Slot Filler, 2023\nLinerly <linerly@proton.me>, 2023\n` }, msgstr: [`Last-Translator: Linerly <linerly@proton.me>, 2023\nLanguage-Team: Indonesian (https://app.transifex.com/nextcloud/teams/64236/id/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: id\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} berkas berkonflik\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} berkas berkonflik dalam {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} detik tersisa\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} tersisa\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"tinggal sebentar lagi\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Batalkan unggahan\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Lanjutkan\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"memperkirakan waktu yang tersisa\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Versi yang ada\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Jika Anda memilih kedua versi, nama berkas yang disalin akan ditambahi angka.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Tanggal perubahan terakhir tidak diketahui\"] }, New: { msgid: \"New\", msgstr: [\"Baru\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Versi baru\"] }, paused: { msgid: \"paused\", msgstr: [\"dijeda\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Gambar pratinjau\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Pilih semua kotak centang\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Pilih semua berkas yang ada\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Pilih semua berkas baru\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Lewati {count} berkas\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Ukuran tidak diketahui\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Unggahan dibatalkan\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Unggah berkas\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Berkas mana yang Anda ingin tetap simpan?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Anda harus memilih setidaknya satu versi dari masing-masing berkas untuk melanjutkan.\"] } } } } }, { locale: \"ig\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Igbo (https://www.transifex.com/nextcloud/teams/64236/ig/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ig\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Igbo (https://www.transifex.com/nextcloud/teams/64236/ig/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ig\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"is\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Sveinn í Felli <sv1@fellsnet.is>, 2023\", \"Language-Team\": \"Icelandic (https://app.transifex.com/nextcloud/teams/64236/is/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"is\", \"Plural-Forms\": \"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nSveinn í Felli <sv1@fellsnet.is>, 2023\n` }, msgstr: [`Last-Translator: Sveinn í Felli <sv1@fellsnet.is>, 2023\nLanguage-Team: Icelandic (https://app.transifex.com/nextcloud/teams/64236/is/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: is\nPlural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} árekstur skráa\", \"{count} árekstrar skráa\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} árekstur skráa í {dirname}\", \"{count} árekstrar skráa í {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} sekúndur eftir\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} eftir\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"nokkrar sekúndur eftir\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Hætta við innsendingar\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Halda áfram\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"áætla tíma sem eftir er\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Fyrirliggjandi útgáfa\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Ef þú velur báðar útgáfur, þá mun verða bætt tölustaf aftan við heiti afrituðu skrárinnar.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Síðasta breytingadagsetning er óþekkt\"] }, New: { msgid: \"New\", msgstr: [\"Nýtt\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Ný útgáfa\"] }, paused: { msgid: \"paused\", msgstr: [\"í bið\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Forskoðun myndar\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Velja gátreiti\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Velja allar fyrirliggjandi skrár\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Velja allar nýjar skrár\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Sleppa þessari skrá\", \"Sleppa {count} skrám\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Óþekkt stærð\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Hætt við innsendingu\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Senda inn skrár\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Hvaða skrám vilt þú vilt halda eftir?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Þú verður að velja að minnsta kosti eina útgáfu af hverri skrá til að halda áfram.\"] } } } } }, { locale: \"it\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Random_R, 2023\", \"Language-Team\": \"Italian (https://app.transifex.com/nextcloud/teams/64236/it/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"it\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nLep Lep, 2023\nRandom_R, 2023\n` }, msgstr: [`Last-Translator: Random_R, 2023\nLanguage-Team: Italian (https://app.transifex.com/nextcloud/teams/64236/it/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: it\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} file in conflitto\", \"{count} file in conflitto\", \"{count} file in conflitto\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} file in conflitto in {dirname}\", \"{count} file in conflitto in {dirname}\", \"{count} file in conflitto in {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} secondi rimanenti \"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} rimanente\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"alcuni secondi rimanenti\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Annulla i caricamenti\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Continua\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"calcolo il tempo rimanente\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Versione esistente\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Se selezioni entrambe le versioni, nel nome del file copiato verrà aggiunto un numero \"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Ultima modifica sconosciuta\"] }, New: { msgid: \"New\", msgstr: [\"Nuovo\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nuova versione\"] }, paused: { msgid: \"paused\", msgstr: [\"pausa\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Anteprima immagine\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Seleziona tutte le caselle\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Seleziona tutti i file esistenti\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Seleziona tutti i nuovi file\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Salta questo file\", \"Salta {count} file\", \"Salta {count} file\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Dimensione sconosciuta\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Caricamento cancellato\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Carica i file\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Quali file vuoi mantenere?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Devi selezionare almeno una versione di ogni file per continuare\"] } } } } }, { locale: \"it_IT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Italian (Italy) (https://www.transifex.com/nextcloud/teams/64236/it_IT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"it_IT\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Italian (Italy) (https://www.transifex.com/nextcloud/teams/64236/it_IT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: it_IT\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ja_JP\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"かたかめ, 2022\", \"Language-Team\": \"Japanese (Japan) (https://www.transifex.com/nextcloud/teams/64236/ja_JP/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ja_JP\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nT.S, 2022\nかたかめ, 2022\n` }, msgstr: [`Last-Translator: かたかめ, 2022\nLanguage-Team: Japanese (Japan) (https://www.transifex.com/nextcloud/teams/64236/ja_JP/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ja_JP\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"残り {seconds} 秒\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"残り {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"残り数秒\"] }, Add: { msgid: \"Add\", msgstr: [\"追加\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"アップロードをキャンセル\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"概算残り時間\"] }, paused: { msgid: \"paused\", msgstr: [\"一時停止中\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"ファイルをアップデート\"] } } } } }, { locale: \"ka\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Georgian (https://www.transifex.com/nextcloud/teams/64236/ka/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ka\", \"Plural-Forms\": \"nplurals=2; plural=(n!=1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Georgian (https://www.transifex.com/nextcloud/teams/64236/ka/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ka\nPlural-Forms: nplurals=2; plural=(n!=1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ka_GE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Georgian (Georgia) (https://www.transifex.com/nextcloud/teams/64236/ka_GE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ka_GE\", \"Plural-Forms\": \"nplurals=2; plural=(n!=1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Georgian (Georgia) (https://www.transifex.com/nextcloud/teams/64236/ka_GE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ka_GE\nPlural-Forms: nplurals=2; plural=(n!=1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"kab\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"ZiriSut, 2023\", \"Language-Team\": \"Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"kab\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nZiriSut, 2023\n` }, msgstr: [`Last-Translator: ZiriSut, 2023\nLanguage-Team: Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kab\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} tesdatin i d-yeqqimen\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} i d-yeqqimen\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"qqiment-d kra n tesdatin kan\"] }, Add: { msgid: \"Add\", msgstr: [\"Rnu\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Sefsex asali\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"asizel n wakud i d-yeqqimen\"] }, paused: { msgid: \"paused\", msgstr: [\"yeḥbes\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Sali-d ifuyla\"] } } } } }, { locale: \"kk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Kazakh (https://www.transifex.com/nextcloud/teams/64236/kk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"kk\", \"Plural-Forms\": \"nplurals=2; plural=(n!=1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Kazakh (https://www.transifex.com/nextcloud/teams/64236/kk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kk\nPlural-Forms: nplurals=2; plural=(n!=1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"km\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Khmer (https://www.transifex.com/nextcloud/teams/64236/km/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"km\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Khmer (https://www.transifex.com/nextcloud/teams/64236/km/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: km\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"kn\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Kannada (https://www.transifex.com/nextcloud/teams/64236/kn/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"kn\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Kannada (https://www.transifex.com/nextcloud/teams/64236/kn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kn\nPlural-Forms: nplurals=2; plural=(n > 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ko\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Brandon Han, 2024\", \"Language-Team\": \"Korean (https://app.transifex.com/nextcloud/teams/64236/ko/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ko\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nhosun Lee, 2023\nBrandon Han, 2024\n` }, msgstr: [`Last-Translator: Brandon Han, 2024\nLanguage-Team: Korean (https://app.transifex.com/nextcloud/teams/64236/ko/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ko\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count}개의 파일이 충돌함\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{dirname}에서 {count}개의 파일이 충돌함\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} 남음\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} 남음\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"곧 완료\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"업로드 취소\"] }, Continue: { msgid: \"Continue\", msgstr: [\"확인\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"남은 시간 계산\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"현재 버전\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"두 버전을 모두 선택할 경우, 복제된 파일 이름에 숫자가 추가됩니다.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"최근 수정일 알 수 없음\"] }, New: { msgid: \"New\", msgstr: [\"새로 만들기\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"새 버전\"] }, paused: { msgid: \"paused\", msgstr: [\"일시정지됨\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"미리보기 이미지\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"모든 체크박스 선택\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"모든 파일 선택\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"모든 새 파일 선택\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"{count}개의 파일 넘기기\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"크기를 알 수 없음\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"업로드 취소됨\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"파일 업로드\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"업로드 진행도\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"어떤 파일을 보존하시겠습니까?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"계속하기 위해서는 한 파일에 최소 하나의 버전을 선택해야 합니다.\"] } } } } }, { locale: \"la\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Latin (https://www.transifex.com/nextcloud/teams/64236/la/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"la\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Latin (https://www.transifex.com/nextcloud/teams/64236/la/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: la\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"lb\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Luxembourgish (https://www.transifex.com/nextcloud/teams/64236/lb/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lb\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Luxembourgish (https://www.transifex.com/nextcloud/teams/64236/lb/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lb\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"lo\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Lao (https://www.transifex.com/nextcloud/teams/64236/lo/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lo\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Lao (https://www.transifex.com/nextcloud/teams/64236/lo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lo\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"lt_LT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Lithuanian (Lithuania) (https://www.transifex.com/nextcloud/teams/64236/lt_LT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lt_LT\", \"Plural-Forms\": \"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Lithuanian (Lithuania) (https://www.transifex.com/nextcloud/teams/64236/lt_LT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lt_LT\nPlural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"lv\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Latvian (https://www.transifex.com/nextcloud/teams/64236/lv/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lv\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Latvian (https://www.transifex.com/nextcloud/teams/64236/lv/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lv\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"mk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Сашко Тодоров <sasetodorov@gmail.com>, 2022\", \"Language-Team\": \"Macedonian (https://www.transifex.com/nextcloud/teams/64236/mk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"mk\", \"Plural-Forms\": \"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nСашко Тодоров <sasetodorov@gmail.com>, 2022\n` }, msgstr: [`Last-Translator: Сашко Тодоров <sasetodorov@gmail.com>, 2022\nLanguage-Team: Macedonian (https://www.transifex.com/nextcloud/teams/64236/mk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mk\nPlural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"преостануваат {seconds} секунди\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"преостанува {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"уште неколку секунди\"] }, Add: { msgid: \"Add\", msgstr: [\"Додади\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Прекини прикачување\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"приближно преостанато време\"] }, paused: { msgid: \"paused\", msgstr: [\"паузирано\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Прикачување датотеки\"] } } } } }, { locale: \"mn\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"BATKHUYAG Ganbold, 2023\", \"Language-Team\": \"Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"mn\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nBATKHUYAG Ganbold, 2023\n` }, msgstr: [`Last-Translator: BATKHUYAG Ganbold, 2023\nLanguage-Team: Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mn\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} секунд үлдсэн\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} үлдсэн\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"хэдхэн секунд үлдсэн\"] }, Add: { msgid: \"Add\", msgstr: [\"Нэмэх\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Илгээлтийг цуцлах\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Үлдсэн хугацааг тооцоолж байна\"] }, paused: { msgid: \"paused\", msgstr: [\"түр зогсоосон\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Файл илгээх\"] } } } } }, { locale: \"mr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Marathi (https://www.transifex.com/nextcloud/teams/64236/mr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"mr\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Marathi (https://www.transifex.com/nextcloud/teams/64236/mr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mr\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ms_MY\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Malay (Malaysia) (https://www.transifex.com/nextcloud/teams/64236/ms_MY/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ms_MY\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Malay (Malaysia) (https://www.transifex.com/nextcloud/teams/64236/ms_MY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ms_MY\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"my\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Burmese (https://www.transifex.com/nextcloud/teams/64236/my/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"my\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Burmese (https://www.transifex.com/nextcloud/teams/64236/my/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: my\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"nb_NO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Syvert Fossdal, 2024\", \"Language-Team\": \"Norwegian Bokmål (Norway) (https://app.transifex.com/nextcloud/teams/64236/nb_NO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nb_NO\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nSyvert Fossdal, 2024\n` }, msgstr: [`Last-Translator: Syvert Fossdal, 2024\nLanguage-Team: Norwegian Bokmål (Norway) (https://app.transifex.com/nextcloud/teams/64236/nb_NO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nb_NO\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} file conflict\", \"{count} filkonflikter\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} file conflict in {dirname}\", \"{count} filkonflikter i {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} sekunder igjen\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} igjen\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"noen få sekunder igjen\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Avbryt opplastninger\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Fortsett\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Estimerer tid igjen\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Gjeldende versjon\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Hvis du velger begge versjoner, vil den kopierte filen få et tall lagt til navnet.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Siste gang redigert ukjent\"] }, New: { msgid: \"New\", msgstr: [\"Ny\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Ny versjon\"] }, paused: { msgid: \"paused\", msgstr: [\"pauset\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Forhåndsvis bilde\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Velg alle\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Velg alle eksisterende filer\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Velg alle nye filer\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Skip this file\", \"Hopp over {count} filer\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Ukjent størrelse\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Opplasting avbrutt\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Last opp filer\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Fremdrift, opplasting\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Hvilke filer vil du beholde?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Du må velge minst en versjon av hver fil for å fortsette.\"] } } } } }, { locale: \"ne\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Nepali (https://www.transifex.com/nextcloud/teams/64236/ne/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ne\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Nepali (https://www.transifex.com/nextcloud/teams/64236/ne/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ne\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"nl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Rico <rico-schwab@hotmail.com>, 2023\", \"Language-Team\": \"Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nl\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nRico <rico-schwab@hotmail.com>, 2023\n` }, msgstr: [`Last-Translator: Rico <rico-schwab@hotmail.com>, 2023\nLanguage-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nl\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Nog {seconds} seconden\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{seconds} over\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"Nog een paar seconden\"] }, Add: { msgid: \"Add\", msgstr: [\"Voeg toe\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Uploads annuleren\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Schatting van de resterende tijd\"] }, paused: { msgid: \"paused\", msgstr: [\"Gepauzeerd\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Upload bestanden\"] } } } } }, { locale: \"nn\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Norwegian Nynorsk (https://www.transifex.com/nextcloud/teams/64236/nn/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nn\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Norwegian Nynorsk (https://www.transifex.com/nextcloud/teams/64236/nn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nn\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"nn_NO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Norwegian Nynorsk (Norway) (https://www.transifex.com/nextcloud/teams/64236/nn_NO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nn_NO\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Norwegian Nynorsk (Norway) (https://www.transifex.com/nextcloud/teams/64236/nn_NO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nn_NO\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"oc\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Occitan (post 1500) (https://www.transifex.com/nextcloud/teams/64236/oc/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"oc\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Occitan (post 1500) (https://www.transifex.com/nextcloud/teams/64236/oc/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: oc\nPlural-Forms: nplurals=2; plural=(n > 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"pl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Valdnet, 2024\", \"Language-Team\": \"Polish (https://app.transifex.com/nextcloud/teams/64236/pl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"pl\", \"Plural-Forms\": \"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nM H <haincu@o2.pl>, 2023\nValdnet, 2024\n` }, msgstr: [`Last-Translator: Valdnet, 2024\nLanguage-Team: Polish (https://app.transifex.com/nextcloud/teams/64236/pl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pl\nPlural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"konflikt 1 pliku\", \"{count} konfliktów plików\", \"{count} konfliktów plików\", \"{count} konfliktów plików\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} konfliktowy plik w {dirname}\", \"{count} konfliktowych plików w {dirname}\", \"{count} konfliktowych plików w {dirname}\", \"{count} konfliktowych plików w {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Pozostało {seconds} sekund\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"Pozostało {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"Pozostało kilka sekund\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Anuluj wysyłanie\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Kontynuuj\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Szacowanie pozostałego czasu\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Istniejąca wersja\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Jeżeli wybierzesz obie wersje to do nazw skopiowanych plików zostanie dodany numer\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Nieznana data ostatniej modyfikacji\"] }, New: { msgid: \"New\", msgstr: [\"Nowy\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nowa wersja\"] }, paused: { msgid: \"paused\", msgstr: [\"Wstrzymane\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Podgląd obrazu\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Zaznacz wszystkie boxy\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Zaznacz wszystkie istniejące pliki\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Zaznacz wszystkie nowe pliki\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Pomiń 1 plik\", \"Pomiń {count} plików\", \"Pomiń {count} plików\", \"Pomiń {count} plików\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Nieznany rozmiar\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Anulowano wysyłanie\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Wyślij pliki\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Postęp wysyłania\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Które pliki chcesz zachować\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Aby kontynuować, musisz wybrać co najmniej jedną wersję każdego pliku.\"] } } } } }, { locale: \"ps\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Pashto (https://www.transifex.com/nextcloud/teams/64236/ps/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ps\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Pashto (https://www.transifex.com/nextcloud/teams/64236/ps/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ps\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"pt_BR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Leonardo Colman Lopes <leonardo.dev@colman.com.br>, 2024\", \"Language-Team\": \"Portuguese (Brazil) (https://app.transifex.com/nextcloud/teams/64236/pt_BR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"pt_BR\", \"Plural-Forms\": \"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nLeonardo Colman Lopes <leonardo.dev@colman.com.br>, 2024\n` }, msgstr: [`Last-Translator: Leonardo Colman Lopes <leonardo.dev@colman.com.br>, 2024\nLanguage-Team: Portuguese (Brazil) (https://app.transifex.com/nextcloud/teams/64236/pt_BR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pt_BR\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} arquivos em conflito\", \"{count} arquivos em conflito\", \"{count} arquivos em conflito\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} conflitos de arquivo em {dirname}\", \"{count} conflitos de arquivo em {dirname}\", \"{count} conflitos de arquivo em {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"alguns segundos restantes\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Cancelar\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Cancelar a operação inteira\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar uploads\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Continuar\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tempo restante\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Versão existente\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Se você selecionar ambas as versões, o arquivo copiado terá um número adicionado ao seu nome.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Data da última modificação desconhecida\"] }, New: { msgid: \"New\", msgstr: [\"Novo\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nova versão\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Visualizar imagem\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Marque todas as caixas de seleção\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Selecione todos os arquivos existentes\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Selecione todos os novos arquivos\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Ignorar {count} arquivos\", \"Ignorar {count} arquivos\", \"Ignorar {count} arquivos\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Tamanho desconhecido\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Envio cancelado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Enviar arquivos\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Envio em progresso\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Quando uma pasta é selecionada, quaisquer arquivos dentro dela também serão sobrescritos.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Quais arquivos você deseja manter?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Você precisa selecionar pelo menos uma versão de cada arquivo para continuar.\"] } } } } }, { locale: \"pt_PT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Manuela Silva <mmsrs@sky.com>, 2022\", \"Language-Team\": \"Portuguese (Portugal) (https://www.transifex.com/nextcloud/teams/64236/pt_PT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"pt_PT\", \"Plural-Forms\": \"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nManuela Silva <mmsrs@sky.com>, 2022\n` }, msgstr: [`Last-Translator: Manuela Silva <mmsrs@sky.com>, 2022\nLanguage-Team: Portuguese (Portugal) (https://www.transifex.com/nextcloud/teams/64236/pt_PT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pt_PT\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"faltam {seconds} segundo(s)\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"faltam {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"faltam uns segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"Adicionar\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar envios\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"tempo em falta estimado\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Enviar ficheiros\"] } } } } }, { locale: \"ro\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Mădălin Vasiliu <contact@madalinvasiliu.com>, 2022\", \"Language-Team\": \"Romanian (https://www.transifex.com/nextcloud/teams/64236/ro/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ro\", \"Plural-Forms\": \"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMădălin Vasiliu <contact@madalinvasiliu.com>, 2022\n` }, msgstr: [`Last-Translator: Mădălin Vasiliu <contact@madalinvasiliu.com>, 2022\nLanguage-Team: Romanian (https://www.transifex.com/nextcloud/teams/64236/ro/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ro\nPlural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} secunde rămase\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} rămas\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"câteva secunde rămase\"] }, Add: { msgid: \"Add\", msgstr: [\"Adaugă\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Anulați încărcările\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimarea timpului rămas\"] }, paused: { msgid: \"paused\", msgstr: [\"pus pe pauză\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Încarcă fișiere\"] } } } } }, { locale: \"ru\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Александр, 2023\", \"Language-Team\": \"Russian (https://app.transifex.com/nextcloud/teams/64236/ru/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ru\", \"Plural-Forms\": \"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nMax Smith <sevinfolds@gmail.com>, 2023\nАлександр, 2023\n` }, msgstr: [`Last-Translator: Александр, 2023\nLanguage-Team: Russian (https://app.transifex.com/nextcloud/teams/64236/ru/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ru\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"конфликт {count} файла\", \"конфликт {count} файлов\", \"конфликт {count} файлов\", \"конфликт {count} файлов\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"конфликт {count} файла в {dirname}\", \"конфликт {count} файлов в {dirname}\", \"конфликт {count} файлов в {dirname}\", \"конфликт {count} файлов в {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"осталось {seconds} секунд\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"осталось {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"осталось несколько секунд\"] }, Add: { msgid: \"Add\", msgstr: [\"Добавить\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Отменить загрузки\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Продолжить\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"оценка оставшегося времени\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Текущая версия\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Если вы выберете обе версии, к имени скопированного файла будет добавлен номер.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Дата последнего изменения неизвестна\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Новая версия\"] }, paused: { msgid: \"paused\", msgstr: [\"приостановлено\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Предварительный просмотр\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Установить все флажки\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Выбрать все существующие файлы\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Выбрать все новые файлы\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Пропустить файл\", \"Пропустить {count} файла\", \"Пропустить {count} файлов\", \"Пропустить {count} файлов\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Неизвестный размер\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Загрузка отменена\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Загрузка файлов\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Какие файлы вы хотите сохранить?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Для продолжения вам нужно выбрать по крайней мере одну версию каждого файла.\"] } } } } }, { locale: \"ru_RU\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Russian (Russia) (https://www.transifex.com/nextcloud/teams/64236/ru_RU/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ru_RU\", \"Plural-Forms\": \"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Russian (Russia) (https://www.transifex.com/nextcloud/teams/64236/ru_RU/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ru_RU\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sc\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Sardinian (https://www.transifex.com/nextcloud/teams/64236/sc/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sc\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sardinian (https://www.transifex.com/nextcloud/teams/64236/sc/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sc\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"si\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Sinhala (https://www.transifex.com/nextcloud/teams/64236/si/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"si\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sinhala (https://www.transifex.com/nextcloud/teams/64236/si/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: si\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"si_LK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Sinhala (Sri Lanka) (https://www.transifex.com/nextcloud/teams/64236/si_LK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"si_LK\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sinhala (Sri Lanka) (https://www.transifex.com/nextcloud/teams/64236/si_LK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: si_LK\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sk_SK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Slovak (Slovakia) (https://www.transifex.com/nextcloud/teams/64236/sk_SK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sk_SK\", \"Plural-Forms\": \"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Slovak (Slovakia) (https://www.transifex.com/nextcloud/teams/64236/sk_SK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sk_SK\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Matej Urbančič <>, 2022\", \"Language-Team\": \"Slovenian (https://www.transifex.com/nextcloud/teams/64236/sl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sl\", \"Plural-Forms\": \"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMatej Urbančič <>, 2022\n` }, msgstr: [`Last-Translator: Matej Urbančič <>, 2022\nLanguage-Team: Slovenian (https://www.transifex.com/nextcloud/teams/64236/sl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sl\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"še {seconds} sekund\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"še {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"še nekaj sekund\"] }, Add: { msgid: \"Add\", msgstr: [\"Dodaj\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Prekliči pošiljanje\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"ocenjen čas do konca\"] }, paused: { msgid: \"paused\", msgstr: [\"v premoru\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Pošlji datoteke\"] } } } } }, { locale: \"sl_SI\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Slovenian (Slovenia) (https://www.transifex.com/nextcloud/teams/64236/sl_SI/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sl_SI\", \"Plural-Forms\": \"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Slovenian (Slovenia) (https://www.transifex.com/nextcloud/teams/64236/sl_SI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sl_SI\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sq\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Albanian (https://www.transifex.com/nextcloud/teams/64236/sq/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sq\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Albanian (https://www.transifex.com/nextcloud/teams/64236/sq/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sq\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Иван Пешић, 2023\", \"Language-Team\": \"Serbian (https://app.transifex.com/nextcloud/teams/64236/sr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sr\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nИван Пешић, 2023\n` }, msgstr: [`Last-Translator: Иван Пешић, 2023\nLanguage-Team: Serbian (https://app.transifex.com/nextcloud/teams/64236/sr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sr\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} фајл конфликт\", \"{count} фајл конфликта\", \"{count} фајл конфликта\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} фајл конфликт у {dirname}\", \"{count} фајл конфликта у {dirname}\", \"{count} фајл конфликта у {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"преостало је {seconds} секунди\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} преостало\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"преостало је неколико секунди\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Обустави отпремања\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Настави\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"процена преосталог времена\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Постојећа верзија\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Ако изаберете обе верзије, на име копираног фајла ће се додати број.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Није познат датум последње измене\"] }, New: { msgid: \"New\", msgstr: [\"Ново\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Нова верзија\"] }, paused: { msgid: \"paused\", msgstr: [\"паузирано\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Слика прегледа\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Штиклирај сва поља за штиклирање\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Изабери све постојеће фајлове\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Изабери све нове фајлове\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Прескочи овај фајл\", \"Прескочи {count} фајла\", \"Прескочи {count} фајлова\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Непозната величина\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Отпремање је отказано\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Отпреми фајлове\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Напредак отпремања\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Које фајлове желите да задржите?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Морате да изаберете барем једну верзију сваког фајла да наставите.\"] } } } } }, { locale: \"sr@latin\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Serbian (Latin) (https://www.transifex.com/nextcloud/teams/64236/sr@latin/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sr@latin\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Serbian (Latin) (https://www.transifex.com/nextcloud/teams/64236/sr@latin/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sr@latin\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sv\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Magnus Höglund, 2024\", \"Language-Team\": \"Swedish (https://app.transifex.com/nextcloud/teams/64236/sv/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sv\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nMagnus Höglund, 2024\n` }, msgstr: [`Last-Translator: Magnus Höglund, 2024\nLanguage-Team: Swedish (https://app.transifex.com/nextcloud/teams/64236/sv/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sv\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} filkonflikt\", \"{count} filkonflikter\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} filkonflikt i {dirname}\", \"{count} filkonflikter i {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} sekunder kvarstår\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} kvarstår\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"några sekunder kvar\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Avbryt\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Avbryt hela operationen\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Avbryt uppladdningar\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Fortsätt\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"uppskattar kvarstående tid\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Nuvarande version\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Om du väljer båda versionerna kommer den kopierade filen att få ett nummer tillagt i namnet.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Senaste ändringsdatum okänt\"] }, New: { msgid: \"New\", msgstr: [\"Ny\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Ny version\"] }, paused: { msgid: \"paused\", msgstr: [\"pausad\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Förhandsgranska bild\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Markera alla kryssrutor\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Välj alla befintliga filer\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Välj alla nya filer\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Hoppa över denna fil\", \"Hoppa över {count} filer\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Okänd storlek\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Uppladdningen avbröts\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Ladda upp filer\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Uppladdningsförlopp\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"När en inkommande mapp väljs skrivs även alla konfliktande filer i den över.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Vilka filer vill du behålla?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Du måste välja minst en version av varje fil för att fortsätta.\"] } } } } }, { locale: \"sw\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Swahili (https://www.transifex.com/nextcloud/teams/64236/sw/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sw\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Swahili (https://www.transifex.com/nextcloud/teams/64236/sw/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sw\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ta\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Tamil (https://www.transifex.com/nextcloud/teams/64236/ta/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ta\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Tamil (https://www.transifex.com/nextcloud/teams/64236/ta/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ta\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ta_LK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Tamil (Sri-Lanka) (https://www.transifex.com/nextcloud/teams/64236/ta_LK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ta_LK\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Tamil (Sri-Lanka) (https://www.transifex.com/nextcloud/teams/64236/ta_LK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ta_LK\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"th\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Thai (https://www.transifex.com/nextcloud/teams/64236/th/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"th\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Thai (https://www.transifex.com/nextcloud/teams/64236/th/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: th\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"th_TH\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Phongpanot Phairat <ppnplus@protonmail.com>, 2022\", \"Language-Team\": \"Thai (Thailand) (https://www.transifex.com/nextcloud/teams/64236/th_TH/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"th_TH\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nPhongpanot Phairat <ppnplus@protonmail.com>, 2022\n` }, msgstr: [`Last-Translator: Phongpanot Phairat <ppnplus@protonmail.com>, 2022\nLanguage-Team: Thai (Thailand) (https://www.transifex.com/nextcloud/teams/64236/th_TH/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: th_TH\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"เหลืออีก {seconds} วินาที\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"เหลืออีก {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"เหลืออีกไม่กี่วินาที\"] }, Add: { msgid: \"Add\", msgstr: [\"เพิ่ม\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"ยกเลิกการอัปโหลด\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"กำลังคำนวณเวลาที่เหลือ\"] }, paused: { msgid: \"paused\", msgstr: [\"หยุดชั่วคราว\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"อัปโหลดไฟล์\"] } } } } }, { locale: \"tk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Turkmen (https://www.transifex.com/nextcloud/teams/64236/tk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"tk\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Turkmen (https://www.transifex.com/nextcloud/teams/64236/tk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: tk\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"tr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Kaya Zeren <kayazeren@gmail.com>, 2024\", \"Language-Team\": \"Turkish (https://app.transifex.com/nextcloud/teams/64236/tr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"tr\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nKaya Zeren <kayazeren@gmail.com>, 2024\n` }, msgstr: [`Last-Translator: Kaya Zeren <kayazeren@gmail.com>, 2024\nLanguage-Team: Turkish (https://app.transifex.com/nextcloud/teams/64236/tr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: tr\nPlural-Forms: nplurals=2; plural=(n > 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} dosya çakışması var\", \"{count} dosya çakışması var\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{dirname} klasöründe {count} dosya çakışması var\", \"{dirname} klasöründe {count} dosya çakışması var\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} saniye kaldı\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} kaldı\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"bir kaç saniye kaldı\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"İptal\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Tüm işlemi iptal et\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Yüklemeleri iptal et\"] }, Continue: { msgid: \"Continue\", msgstr: [\"İlerle\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"öngörülen kalan süre\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Var olan sürüm\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"İki sürümü de seçerseniz, kopyalanan dosyanın adına bir sayı eklenir.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Son değiştirilme tarihi bilinmiyor\"] }, New: { msgid: \"New\", msgstr: [\"Yeni\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Yeni sürüm\"] }, paused: { msgid: \"paused\", msgstr: [\"duraklatıldı\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Görsel ön izlemesi\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Tüm kutuları işaretle\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Tüm var olan dosyaları seç\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Tüm yeni dosyaları seç\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Bu dosyayı atla\", \"{count} dosyayı atla\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Boyut bilinmiyor\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Yükleme iptal edildi\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Dosyaları yükle\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Yükleme ilerlemesi\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Bir gelen klasör seçildiğinde, içindeki çakışan dosyaların da üzerine yazılır.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Hangi dosyaları tutmak istiyorsunuz?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"İlerlemek için her dosyanın en az bir sürümünü seçmelisiniz.\"] } } } } }, { locale: \"ug\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Uyghur (https://www.transifex.com/nextcloud/teams/64236/ug/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ug\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Uyghur (https://www.transifex.com/nextcloud/teams/64236/ug/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ug\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"uk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"O St <oleksiy.stasevych@gmail.com>, 2024\", \"Language-Team\": \"Ukrainian (https://app.transifex.com/nextcloud/teams/64236/uk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"uk\", \"Plural-Forms\": \"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nO St <oleksiy.stasevych@gmail.com>, 2024\n` }, msgstr: [`Last-Translator: O St <oleksiy.stasevych@gmail.com>, 2024\nLanguage-Team: Ukrainian (https://app.transifex.com/nextcloud/teams/64236/uk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: uk\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} конфліктний файл\", \"{count} конфліктних файли\", \"{count} конфліктних файлів\", \"{count} конфліктних файлів\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} конфліктний файл у каталозі {dirname}\", \"{count} конфліктних файли у каталозі {dirname}\", \"{count} конфліктних файлів у каталозі {dirname}\", \"{count} конфліктних файлів у каталозі {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Залишилося {seconds} секунд\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"Залишилося {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"залишилося кілька секунд\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Скасувати\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Скасувати операцію повністю\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Скасувати завантаження\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Продовжити\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"оцінка часу, що залишився\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Присутня версія\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Якщо ви виберете обидві версії, буде створено копію файлу до назви якої буде додано цифру.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Дата останньої зміни невідома\"] }, New: { msgid: \"New\", msgstr: [\"Нове\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Нова версія\"] }, paused: { msgid: \"paused\", msgstr: [\"призупинено\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Попередній перегляд\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Вибрати все\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Вибрати всі присутні файли\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Виберіть усі нові файли\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Пропустити файл\", \"Пропустити {count} файли\", \"Пропустити {count} файлів\", \"Пропустити {count} файлів\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Невідомий розмір\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Завантаження скасовано\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Завантажити файли\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Поступ завантаження\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"У разі вибору каталогу призначення, будь-які конфліктні файли в такому каталозі буде перезаписано поверх.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Які файли залишити?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Для продовження потрібно вибрати принаймні одну версію для кожного файлу.\"] } } } } }, { locale: \"ur_PK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Urdu (Pakistan) (https://www.transifex.com/nextcloud/teams/64236/ur_PK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ur_PK\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Urdu (Pakistan) (https://www.transifex.com/nextcloud/teams/64236/ur_PK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ur_PK\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"uz\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Uzbek (https://www.transifex.com/nextcloud/teams/64236/uz/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"uz\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Uzbek (https://www.transifex.com/nextcloud/teams/64236/uz/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: uz\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"vi\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Tung DangQuang, 2023\", \"Language-Team\": \"Vietnamese (https://app.transifex.com/nextcloud/teams/64236/vi/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"vi\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nTung DangQuang, 2023\n` }, msgstr: [`Last-Translator: Tung DangQuang, 2023\nLanguage-Team: Vietnamese (https://app.transifex.com/nextcloud/teams/64236/vi/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: vi\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} Tập tin xung đột\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} tập tin lỗi trong {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Còn {second} giây\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"Còn lại {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"Còn lại một vài giây\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Huỷ tải lên\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Tiếp Tục\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Thời gian còn lại dự kiến\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Phiên Bản Hiện Tại\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Nếu bạn chọn cả hai phiên bản, tệp được sao chép sẽ có thêm một số vào tên của nó.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Ngày sửa dổi lần cuối không xác định\"] }, New: { msgid: \"New\", msgstr: [\"Tạo Mới\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Phiên Bản Mới\"] }, paused: { msgid: \"paused\", msgstr: [\"đã tạm dừng\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Xem Trước Ảnh\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Chọn tất cả hộp checkbox\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Chọn tất cả các tập tin có sẵn\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Chọn tất cả các tập tin mới\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Bỏ Qua {count} tập tin\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Không rõ dung lượng\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Dừng Tải Lên\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Tập tin tải lên\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Đang Tải Lên\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Bạn muốn giữ tập tin nào?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Bạn cần chọn ít nhất một phiên bản tập tin mới có thể tiếp tục\"] } } } } }, { locale: \"zh_CN\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Hongbo Chen, 2023\", \"Language-Team\": \"Chinese (China) (https://app.transifex.com/nextcloud/teams/64236/zh_CN/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"zh_CN\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nHongbo Chen, 2023\n` }, msgstr: [`Last-Translator: Hongbo Chen, 2023\nLanguage-Team: Chinese (China) (https://app.transifex.com/nextcloud/teams/64236/zh_CN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_CN\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count}文件冲突\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"在{dirname}目录下有{count}个文件冲突\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"剩余 {seconds} 秒\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"剩余 {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"还剩几秒\"] }, Add: { msgid: \"Add\", msgstr: [\"添加\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"取消上传\"] }, Continue: { msgid: \"Continue\", msgstr: [\"继续\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"估计剩余时间\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"版本已存在\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"如果选择所有的版本,新增版本的文件名为原文件名加数字\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"文件最后修改日期未知\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"新版本\"] }, paused: { msgid: \"paused\", msgstr: [\"已暂停\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"图片预览\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"选择所有的选择框\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"选择所有存在的文件\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"选择所有的新文件\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"跳过{count}个文件\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"文件大小未知\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"取消上传\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"上传文件\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"你要保留哪些文件?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"每个文件至少选择一个版本\"] } } } } }, { locale: \"zh_HK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Café Tango, 2023\", \"Language-Team\": \"Chinese (Hong Kong) (https://app.transifex.com/nextcloud/teams/64236/zh_HK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"zh_HK\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nCafé Tango, 2023\n` }, msgstr: [`Last-Translator: Café Tango, 2023\nLanguage-Team: Chinese (Hong Kong) (https://app.transifex.com/nextcloud/teams/64236/zh_HK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_HK\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} 個檔案衝突\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{dirname} 中有 {count} 個檔案衝突\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"剩餘 {seconds} 秒\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"剩餘 {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"還剩幾秒\"] }, Add: { msgid: \"Add\", msgstr: [\"添加\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"取消上傳\"] }, Continue: { msgid: \"Continue\", msgstr: [\"繼續\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"估計剩餘時間\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"既有版本\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"若您選取兩個版本,複製的檔案的名稱將會新增編號。\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"最後修改日期不詳\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"新版本 \"] }, paused: { msgid: \"paused\", msgstr: [\"已暫停\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"預覽圖片\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"選取所有核取方塊\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"選取所有既有檔案\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"選取所有新檔案\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"略過 {count} 個檔案\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"大小不詳\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"已取消上傳\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"上傳檔案\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"您想保留哪些檔案?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"您必須為每個檔案都至少選取一個版本以繼續。\"] } } } } }, { locale: \"zh_TW\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"黃柏諺 <s8321414@gmail.com>, 2024\", \"Language-Team\": \"Chinese (Taiwan) (https://app.transifex.com/nextcloud/teams/64236/zh_TW/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"zh_TW\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\n黃柏諺 <s8321414@gmail.com>, 2024\n` }, msgstr: [`Last-Translator: 黃柏諺 <s8321414@gmail.com>, 2024\nLanguage-Team: Chinese (Taiwan) (https://app.transifex.com/nextcloud/teams/64236/zh_TW/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_TW\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} 個檔案衝突\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{dirname} 中有 {count} 個檔案衝突\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"剩餘 {seconds} 秒\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"剩餘 {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"還剩幾秒\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"取消\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"取消整個操作\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"取消上傳\"] }, Continue: { msgid: \"Continue\", msgstr: [\"繼續\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"估計剩餘時間\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"既有版本\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"若您選取兩個版本,複製的檔案的名稱將會新增編號。\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"最後修改日期未知\"] }, New: { msgid: \"New\", msgstr: [\"新增\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"新版本\"] }, paused: { msgid: \"paused\", msgstr: [\"已暫停\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"預覽圖片\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"選取所有核取方塊\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"選取所有既有檔案\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"選取所有新檔案\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"略過 {count} 檔案\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"未知大小\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"已取消上傳\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"上傳檔案\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"上傳進度\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"選取傳入資料夾後,其中任何的衝突檔案都會被覆寫。\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"您想保留哪些檔案?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"您必須為每個檔案都至少選取一個版本以繼續。\"] } } } } }].map((e) => M.addTranslation(e.locale, e.json));\nconst y = M.build(), $s = y.ngettext.bind(y), u = y.gettext.bind(y), vs = I.extend({\n name: \"UploadPicker\",\n components: {\n Cancel: us,\n NcActionButton: Z,\n NcActions: X,\n NcButton: ss,\n NcIconSvgWrapper: es,\n NcProgressBar: ts,\n Plus: Ts,\n Upload: Cs\n },\n props: {\n accept: {\n type: Array,\n default: null\n },\n disabled: {\n type: Boolean,\n default: !1\n },\n multiple: {\n type: Boolean,\n default: !1\n },\n destination: {\n type: j,\n default: void 0\n },\n /**\n * List of file present in the destination folder\n */\n content: {\n type: Array,\n default: () => []\n },\n forbiddenCharacters: {\n type: Array,\n default: () => []\n }\n },\n data() {\n return {\n addLabel: u(\"New\"),\n cancelLabel: u(\"Cancel uploads\"),\n uploadLabel: u(\"Upload files\"),\n progressLabel: u(\"Upload progress\"),\n progressTimeId: `nc-uploader-progress-${Math.random().toString(36).slice(7)}`,\n eta: null,\n timeLeft: \"\",\n newFileMenuEntries: [],\n uploadManager: D()\n };\n },\n computed: {\n totalQueueSize() {\n return this.uploadManager.info?.size || 0;\n },\n uploadedQueueSize() {\n return this.uploadManager.info?.progress || 0;\n },\n progress() {\n return Math.round(this.uploadedQueueSize / this.totalQueueSize * 100) || 0;\n },\n queue() {\n return this.uploadManager.queue;\n },\n hasFailure() {\n return this.queue?.filter((e) => e.status === c.FAILED).length !== 0;\n },\n isUploading() {\n return this.queue?.length > 0;\n },\n isAssembling() {\n return this.queue?.filter((e) => e.status === c.ASSEMBLING).length !== 0;\n },\n isPaused() {\n return this.uploadManager.info?.status === R.PAUSED;\n },\n // Hide the button text if we're uploading\n buttonName() {\n if (!this.isUploading)\n return this.addLabel;\n }\n },\n watch: {\n destination(e) {\n this.setDestination(e);\n },\n totalQueueSize(e) {\n this.eta = J({ min: 0, max: e }), this.updateStatus();\n },\n uploadedQueueSize(e) {\n this.eta?.report?.(e), this.updateStatus();\n },\n isPaused(e) {\n e ? this.$emit(\"paused\", this.queue) : this.$emit(\"resumed\", this.queue);\n }\n },\n beforeMount() {\n this.destination && this.setDestination(this.destination), this.uploadManager.addNotifier(this.onUploadCompletion), g.debug(\"UploadPicker initialised\");\n },\n methods: {\n /**\n * Trigger file picker\n */\n onClick() {\n this.$refs.input.click();\n },\n /**\n * Start uploading\n */\n async onPick() {\n let e = [...this.$refs.input.files];\n if (Ss(e, this.content)) {\n const s = e.filter((n) => this.content.find((i) => i.basename === n.name)).filter(Boolean), t = e.filter((n) => !s.includes(n));\n try {\n const { selected: n, renamed: i } = await Fs(this.destination.basename, s, this.content);\n e = [...t, ...n, ...i];\n } catch {\n A(u(\"Upload cancelled\"));\n return;\n }\n }\n e.forEach((s) => {\n const n = (this.forbiddenCharacters || []).find((i) => s.name.includes(i));\n n ? A(u(`\"${n}\" is not allowed inside a file name.`)) : this.uploadManager.upload(s.name, s).catch(() => {\n });\n }), this.$refs.form.reset();\n },\n /**\n * Cancel ongoing queue\n */\n onCancel() {\n this.uploadManager.queue.forEach((e) => {\n e.cancel();\n }), this.$refs.form.reset();\n },\n updateStatus() {\n if (this.isPaused) {\n this.timeLeft = u(\"paused\");\n return;\n }\n const e = Math.round(this.eta.estimate());\n if (e === 1 / 0) {\n this.timeLeft = u(\"estimating time left\");\n return;\n }\n if (e < 10) {\n this.timeLeft = u(\"a few seconds left\");\n return;\n }\n if (e > 60) {\n const s = /* @__PURE__ */ new Date(0);\n s.setSeconds(e);\n const t = s.toISOString().slice(11, 11 + 8);\n this.timeLeft = u(\"{time} left\", { time: t });\n return;\n }\n this.timeLeft = u(\"{seconds} seconds left\", { seconds: e });\n },\n setDestination(e) {\n if (!this.destination) {\n g.debug(\"Invalid destination\");\n return;\n }\n this.uploadManager.destination = e, this.newFileMenuEntries = Y(e);\n },\n onUploadCompletion(e) {\n e.status === c.FAILED ? this.$emit(\"failed\", e) : this.$emit(\"uploaded\", e);\n }\n }\n});\nvar ys = function() {\n var s = this, t = s._self._c;\n return s._self._setupProxy, s.destination ? t(\"form\", { ref: \"form\", staticClass: \"upload-picker\", class: { \"upload-picker--uploading\": s.isUploading, \"upload-picker--paused\": s.isPaused }, attrs: { \"data-cy-upload-picker\": \"\" } }, [s.newFileMenuEntries && s.newFileMenuEntries.length === 0 ? t(\"NcButton\", { attrs: { disabled: s.disabled, \"data-cy-upload-picker-add\": \"\", type: \"secondary\" }, on: { click: s.onClick }, scopedSlots: s._u([{ key: \"icon\", fn: function() {\n return [t(\"Plus\", { attrs: { title: \"\", size: 20, decorative: \"\" } })];\n }, proxy: !0 }], null, !1, 2954875042) }, [s._v(\" \" + s._s(s.buttonName) + \" \")]) : t(\"NcActions\", { attrs: { \"menu-name\": s.buttonName, \"menu-title\": s.addLabel, type: \"secondary\" }, scopedSlots: s._u([{ key: \"icon\", fn: function() {\n return [t(\"Plus\", { attrs: { title: \"\", size: 20, decorative: \"\" } })];\n }, proxy: !0 }], null, !1, 2954875042) }, [t(\"NcActionButton\", { attrs: { \"data-cy-upload-picker-add\": \"\", \"close-after-click\": !0 }, on: { click: s.onClick }, scopedSlots: s._u([{ key: \"icon\", fn: function() {\n return [t(\"Upload\", { attrs: { title: \"\", size: 20, decorative: \"\" } })];\n }, proxy: !0 }], null, !1, 3606034491) }, [s._v(\" \" + s._s(s.uploadLabel) + \" \")]), s._l(s.newFileMenuEntries, function(n) {\n return t(\"NcActionButton\", { key: n.id, staticClass: \"upload-picker__menu-entry\", attrs: { icon: n.iconClass, \"close-after-click\": !0 }, on: { click: function(i) {\n return n.handler(s.destination, s.content);\n } }, scopedSlots: s._u([n.iconSvgInline ? { key: \"icon\", fn: function() {\n return [t(\"NcIconSvgWrapper\", { attrs: { svg: n.iconSvgInline } })];\n }, proxy: !0 } : null], null, !0) }, [s._v(\" \" + s._s(n.displayName) + \" \")]);\n })], 2), t(\"div\", { directives: [{ name: \"show\", rawName: \"v-show\", value: s.isUploading, expression: \"isUploading\" }], staticClass: \"upload-picker__progress\" }, [t(\"NcProgressBar\", { attrs: { \"aria-label\": s.progressLabel, \"aria-describedby\": s.progressTimeId, error: s.hasFailure, value: s.progress, size: \"medium\" } }), t(\"p\", { attrs: { id: s.progressTimeId } }, [s._v(\" \" + s._s(s.timeLeft) + \" \")])], 1), s.isUploading ? t(\"NcButton\", { staticClass: \"upload-picker__cancel\", attrs: { type: \"tertiary\", \"aria-label\": s.cancelLabel, \"data-cy-upload-picker-cancel\": \"\" }, on: { click: s.onCancel }, scopedSlots: s._u([{ key: \"icon\", fn: function() {\n return [t(\"Cancel\", { attrs: { title: \"\", size: 20 } })];\n }, proxy: !0 }], null, !1, 4076886712) }) : s._e(), t(\"input\", { directives: [{ name: \"show\", rawName: \"v-show\", value: !1, expression: \"false\" }], ref: \"input\", attrs: { type: \"file\", accept: s.accept?.join?.(\", \"), multiple: s.multiple, \"data-cy-upload-picker-input\": \"\" }, on: { change: s.onPick } })], 1) : s._e();\n}, Us = [], bs = /* @__PURE__ */ U(\n vs,\n ys,\n Us,\n !1,\n null,\n \"eca9500a\",\n null,\n null\n);\nconst Js = bs.exports;\nlet C = null;\nfunction D() {\n const e = document.querySelector('input[name=\"isPublic\"][value=\"1\"]') !== null;\n return C instanceof z || (C = new z(e)), C;\n}\nfunction Qs(e, s) {\n const t = D();\n return t.upload(e, s), t;\n}\nasync function Fs(e, s, t) {\n const n = Q(() => import(\"./ConflictPicker-qrLWQ_8R.mjs\"));\n return new Promise((i, o) => {\n const l = new I({\n name: \"ConflictPickerRoot\",\n render: (f) => f(n, {\n props: {\n dirname: e,\n conflicts: s,\n content: t\n },\n on: {\n submit(r) {\n i(r), l.$destroy(), l.$el?.parentNode?.removeChild(l.$el);\n },\n cancel(r) {\n o(r ?? new Error(\"Canceled\")), l.$destroy(), l.$el?.parentNode?.removeChild(l.$el);\n }\n }\n })\n });\n l.$mount(), document.body.appendChild(l.$el);\n });\n}\nfunction Ss(e, s) {\n const t = s.map((i) => i.basename);\n return e.filter((i) => {\n const o = i instanceof File ? i.name : i.basename;\n return t.indexOf(o) !== -1;\n }).length > 0;\n}\nexport {\n R as S,\n Js as U,\n $s as a,\n ls as b,\n c,\n D as g,\n Ss as h,\n g as l,\n U as n,\n Fs as o,\n u as t,\n Qs as u\n};\n","import Queue from 'yocto-queue';\nimport {AsyncResource} from '#async_hooks';\n\nexport default function pLimit(concurrency) {\n\tif (!((Number.isInteger(concurrency) || concurrency === Number.POSITIVE_INFINITY) && concurrency > 0)) {\n\t\tthrow new TypeError('Expected `concurrency` to be a number from 1 and up');\n\t}\n\n\tconst queue = new Queue();\n\tlet activeCount = 0;\n\n\tconst next = () => {\n\t\tactiveCount--;\n\n\t\tif (queue.size > 0) {\n\t\t\tqueue.dequeue()();\n\t\t}\n\t};\n\n\tconst run = async (function_, resolve, arguments_) => {\n\t\tactiveCount++;\n\n\t\tconst result = (async () => function_(...arguments_))();\n\n\t\tresolve(result);\n\n\t\ttry {\n\t\t\tawait result;\n\t\t} catch {}\n\n\t\tnext();\n\t};\n\n\tconst enqueue = (function_, resolve, arguments_) => {\n\t\tqueue.enqueue(\n\t\t\tAsyncResource.bind(run.bind(undefined, function_, resolve, arguments_)),\n\t\t);\n\n\t\t(async () => {\n\t\t\t// This function needs to wait until the next microtask before comparing\n\t\t\t// `activeCount` to `concurrency`, because `activeCount` is updated asynchronously\n\t\t\t// when the run function is dequeued and called. The comparison in the if-statement\n\t\t\t// needs to happen asynchronously as well to get an up-to-date value for `activeCount`.\n\t\t\tawait Promise.resolve();\n\n\t\t\tif (activeCount < concurrency && queue.size > 0) {\n\t\t\t\tqueue.dequeue()();\n\t\t\t}\n\t\t})();\n\t};\n\n\tconst generator = (function_, ...arguments_) => new Promise(resolve => {\n\t\tenqueue(function_, resolve, arguments_);\n\t});\n\n\tObject.defineProperties(generator, {\n\t\tactiveCount: {\n\t\t\tget: () => activeCount,\n\t\t},\n\t\tpendingCount: {\n\t\t\tget: () => queue.size,\n\t\t},\n\t\tclearQueue: {\n\t\t\tvalue() {\n\t\t\t\tqueue.clear();\n\t\t\t},\n\t\t},\n\t});\n\n\treturn generator;\n}\n","const R = (n, e) => u(n, \"\", e), g = (n) => \"/remote.php/\" + n, U = (n, e) => {\n var o;\n return ((o = e == null ? void 0 : e.baseURL) != null ? o : w()) + g(n);\n}, v = (n, e, o) => {\n var c;\n const i = Object.assign({\n ocsVersion: 2\n }, o || {}).ocsVersion === 1 ? 1 : 2;\n return ((c = o == null ? void 0 : o.baseURL) != null ? c : w()) + \"/ocs/v\" + i + \".php\" + d(n, e, o);\n}, d = (n, e, o) => {\n const c = Object.assign({\n escape: !0\n }, o || {}), s = function(i, r) {\n return r = r || {}, i.replace(\n /{([^{}]*)}/g,\n function(l, t) {\n const a = r[t];\n return c.escape ? encodeURIComponent(typeof a == \"string\" || typeof a == \"number\" ? a.toString() : l) : typeof a == \"string\" || typeof a == \"number\" ? a.toString() : l;\n }\n );\n };\n return n.charAt(0) !== \"/\" && (n = \"/\" + n), s(n, e || {});\n}, _ = (n, e, o) => {\n var c, s, i;\n const r = Object.assign({\n noRewrite: !1\n }, o || {}), l = (c = o == null ? void 0 : o.baseURL) != null ? c : f();\n return ((i = (s = window == null ? void 0 : window.OC) == null ? void 0 : s.config) == null ? void 0 : i.modRewriteWorking) === !0 && !r.noRewrite ? l + d(n, e, o) : l + \"/index.php\" + d(n, e, o);\n}, h = (n, e) => e.indexOf(\".\") === -1 ? u(n, \"img\", e + \".svg\") : u(n, \"img\", e), u = (n, e, o) => {\n var c, s, i;\n const r = (i = (s = (c = window == null ? void 0 : window.OC) == null ? void 0 : c.coreApps) == null ? void 0 : s.includes(n)) != null ? i : !1, l = o.slice(-3) === \"php\";\n let t = f();\n return l && !r ? (t += \"/index.php/apps/\".concat(n), e && (t += \"/\".concat(encodeURI(e))), o !== \"index.php\" && (t += \"/\".concat(o))) : !l && !r ? (t = b(n), e && (t += \"/\".concat(e, \"/\")), t.at(-1) !== \"/\" && (t += \"/\"), t += o) : ((n === \"settings\" || n === \"core\" || n === \"search\") && e === \"ajax\" && (t += \"/index.php\"), n && (t += \"/\".concat(n)), e && (t += \"/\".concat(e)), t += \"/\".concat(o)), t;\n}, w = () => window.location.protocol + \"//\" + window.location.host + f();\nfunction f() {\n let n = window._oc_webroot;\n if (typeof n > \"u\") {\n n = location.pathname;\n const e = n.indexOf(\"/index.php/\");\n if (e !== -1)\n n = n.slice(0, e);\n else {\n const o = n.indexOf(\"/\", 1);\n n = n.slice(0, o > 0 ? o : void 0);\n }\n }\n return n;\n}\nfunction b(n) {\n var e, o;\n return (o = ((e = window._oc_appswebroots) != null ? e : {})[n]) != null ? o : \"\";\n}\nexport {\n u as generateFilePath,\n v as generateOcsUrl,\n U as generateRemoteUrl,\n _ as generateUrl,\n b as getAppRootUrl,\n w as getBaseUrl,\n f as getRootUrl,\n h as imagePath,\n R as linkTo\n};\n","import axios from './lib/axios.js';\n\n// This module is intended to unwrap Axios default export as named.\n// Keep top-level export same with static properties\n// so that it can keep same with es module or cjs\nconst {\n Axios,\n AxiosError,\n CanceledError,\n isCancel,\n CancelToken,\n VERSION,\n all,\n Cancel,\n isAxiosError,\n spread,\n toFormData,\n AxiosHeaders,\n HttpStatusCode,\n formToJSON,\n getAdapter,\n mergeConfig\n} = axios;\n\nexport {\n axios as default,\n Axios,\n AxiosError,\n CanceledError,\n isCancel,\n CancelToken,\n VERSION,\n all,\n Cancel,\n isAxiosError,\n spread,\n toFormData,\n AxiosHeaders,\n HttpStatusCode,\n formToJSON,\n getAdapter,\n mergeConfig\n}\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\tid: moduleId,\n\t\tloaded: false,\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Flag the module as loaded\n\tmodule.loaded = true;\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.f = {};\n// This file contains only the entry chunk.\n// The chunk loading function for additional chunks\n__webpack_require__.e = (chunkId) => {\n\treturn Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => {\n\t\t__webpack_require__.f[key](chunkId, promises);\n\t\treturn promises;\n\t}, []));\n};","// This function allow to reference async chunks\n__webpack_require__.u = (chunkId) => {\n\t// return url for filenames based on template\n\treturn \"\" + chunkId + \"-\" + chunkId + \".js?v=\" + {\"1359\":\"08b2abcca7c808677f1a\",\"3841\":\"f24f37909b9ea1a5c604\",\"8618\":\"1e8f15db3b14455fef8f\"}[chunkId] + \"\";\n};","__webpack_require__.g = (function() {\n\tif (typeof globalThis === 'object') return globalThis;\n\ttry {\n\t\treturn this || new Function('return this')();\n\t} catch (e) {\n\t\tif (typeof window === 'object') return window;\n\t}\n})();","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","__webpack_require__.nmd = (module) => {\n\tmodule.paths = [];\n\tif (!module.children) module.children = [];\n\treturn module;\n};","__webpack_require__.j = 2882;","var scriptUrl;\nif (__webpack_require__.g.importScripts) scriptUrl = __webpack_require__.g.location + \"\";\nvar document = __webpack_require__.g.document;\nif (!scriptUrl && document) {\n\tif (document.currentScript)\n\t\tscriptUrl = document.currentScript.src;\n\tif (!scriptUrl) {\n\t\tvar scripts = document.getElementsByTagName(\"script\");\n\t\tif(scripts.length) {\n\t\t\tvar i = scripts.length - 1;\n\t\t\twhile (i > -1 && (!scriptUrl || !/^http(s?):/.test(scriptUrl))) scriptUrl = scripts[i--].src;\n\t\t}\n\t}\n}\n// When supporting browsers where an automatic publicPath is not supported you must specify an output.publicPath manually via configuration\n// or pass an empty string (\"\") and set the __webpack_public_path__ variable from your code to use your own logic.\nif (!scriptUrl) throw new Error(\"Automatic publicPath is not supported in this browser\");\nscriptUrl = scriptUrl.replace(/#.*$/, \"\").replace(/\\?.*$/, \"\").replace(/\\/[^\\/]+$/, \"/\");\n__webpack_require__.p = scriptUrl;","__webpack_require__.b = document.baseURI || self.location.href;\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t2882: 0\n};\n\n__webpack_require__.f.j = (chunkId, promises) => {\n\t\t// JSONP chunk loading for javascript\n\t\tvar installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;\n\t\tif(installedChunkData !== 0) { // 0 means \"already installed\".\n\n\t\t\t// a Promise means \"currently loading\".\n\t\t\tif(installedChunkData) {\n\t\t\t\tpromises.push(installedChunkData[2]);\n\t\t\t} else {\n\t\t\t\tif(true) { // all chunks have JS\n\t\t\t\t\t// setup Promise in chunk cache\n\t\t\t\t\tvar promise = new Promise((resolve, reject) => (installedChunkData = installedChunks[chunkId] = [resolve, reject]));\n\t\t\t\t\tpromises.push(installedChunkData[2] = promise);\n\n\t\t\t\t\t// start chunk loading\n\t\t\t\t\tvar url = __webpack_require__.p + __webpack_require__.u(chunkId);\n\t\t\t\t\t// create error before stack unwound to get useful stacktrace later\n\t\t\t\t\tvar error = new Error();\n\t\t\t\t\tvar loadingEnded = (event) => {\n\t\t\t\t\t\tif(__webpack_require__.o(installedChunks, chunkId)) {\n\t\t\t\t\t\t\tinstalledChunkData = installedChunks[chunkId];\n\t\t\t\t\t\t\tif(installedChunkData !== 0) installedChunks[chunkId] = undefined;\n\t\t\t\t\t\t\tif(installedChunkData) {\n\t\t\t\t\t\t\t\tvar errorType = event && (event.type === 'load' ? 'missing' : event.type);\n\t\t\t\t\t\t\t\tvar realSrc = event && event.target && event.target.src;\n\t\t\t\t\t\t\t\terror.message = 'Loading chunk ' + chunkId + ' failed.\\n(' + errorType + ': ' + realSrc + ')';\n\t\t\t\t\t\t\t\terror.name = 'ChunkLoadError';\n\t\t\t\t\t\t\t\terror.type = errorType;\n\t\t\t\t\t\t\t\terror.request = realSrc;\n\t\t\t\t\t\t\t\tinstalledChunkData[1](error);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\t__webpack_require__.l(url, loadingEnded, \"chunk-\" + chunkId, chunkId);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n};\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n__webpack_require__.O.j = (chunkId) => (installedChunks[chunkId] === 0);\n\n// install a JSONP callback for chunk loading\nvar webpackJsonpCallback = (parentChunkLoadingFunction, data) => {\n\tvar chunkIds = data[0];\n\tvar moreModules = data[1];\n\tvar runtime = data[2];\n\t// add \"moreModules\" to the modules object,\n\t// then flag all \"chunkIds\" as loaded and fire callback\n\tvar moduleId, chunkId, i = 0;\n\tif(chunkIds.some((id) => (installedChunks[id] !== 0))) {\n\t\tfor(moduleId in moreModules) {\n\t\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t\t}\n\t\t}\n\t\tif(runtime) var result = runtime(__webpack_require__);\n\t}\n\tif(parentChunkLoadingFunction) parentChunkLoadingFunction(data);\n\tfor(;i < chunkIds.length; i++) {\n\t\tchunkId = chunkIds[i];\n\t\tif(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {\n\t\t\tinstalledChunks[chunkId][0]();\n\t\t}\n\t\tinstalledChunks[chunkId] = 0;\n\t}\n\treturn __webpack_require__.O(result);\n}\n\nvar chunkLoadingGlobal = self[\"webpackChunknextcloud\"] = self[\"webpackChunknextcloud\"] || [];\nchunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));\nchunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));","__webpack_require__.nc = undefined;","// startup\n// Load entry module and return exports\n// This entry module depends on other loaded chunks and execution need to be delayed\nvar __webpack_exports__ = __webpack_require__.O(undefined, [4208], () => (__webpack_require__(94782)))\n__webpack_exports__ = __webpack_require__.O(__webpack_exports__);\n"],"names":["deferred","inProgress","dataWebpackPrefix","has","Object","prototype","hasOwnProperty","prefix","Events","EE","fn","context","once","this","addListener","emitter","event","TypeError","listener","evt","_events","push","_eventsCount","clearEvent","EventEmitter","create","__proto__","eventNames","events","name","names","call","slice","getOwnPropertySymbols","concat","listeners","handlers","i","l","length","ee","Array","listenerCount","emit","a1","a2","a3","a4","a5","args","len","arguments","removeListener","undefined","apply","j","on","removeAllListeners","off","prefixed","module","exports","getTarget","navigator","window","globalThis","util","warn","isProxyAvailable","Proxy","HOOK_SETUP","supported","perf","ApiProxy","constructor","plugin","hook","target","targetQueue","onQueue","defaultSettings","settings","id","item","defaultValue","localSettingsSaveId","currentSettings","assign","raw","localStorage","getItem","data","JSON","parse","e","fallbacks","getSettings","setSettings","value","setItem","stringify","now","performance","_a","perf_hooks","Date","pluginId","proxiedOn","get","_target","prop","method","proxiedTarget","keys","includes","resolve","Promise","setRealTarget","setupDevtoolsPlugin","pluginDescriptor","setupFn","descriptor","__VUE_DEVTOOLS_GLOBAL_HOOK__","enableProxy","enableEarlyProxy","__VUE_DEVTOOLS_PLUGIN_API_AVAILABLE__","proxy","__VUE_DEVTOOLS_PLUGINS__","activePinia","setActivePinia","pinia","piniaSymbol","Symbol","isPlainObject","o","toString","toJSON","MutationType","IS_CLIENT","USE_DEVTOOLS","__VUE_PROD_DEVTOOLS__","_global","self","global","HTMLElement","download","url","opts","xhr","XMLHttpRequest","open","responseType","onload","saveAs","response","onerror","console","error","send","corsEnabled","status","click","node","dispatchEvent","MouseEvent","document","createEvent","initMouseEvent","_navigator","userAgent","isMacOSWebView","test","HTMLAnchorElement","blob","a","createElement","rel","href","origin","location","URL","createObjectURL","setTimeout","revokeObjectURL","msSaveOrOpenBlob","autoBom","type","Blob","String","fromCharCode","bom","popup","title","body","innerText","force","isSafari","isChromeIOS","FileReader","reader","onloadend","result","Error","replace","readAsDataURL","toastMessage","message","piniaMessage","__VUE_DEVTOOLS_TOAST__","log","isPinia","checkClipboardAccess","checkNotFocusedError","toLowerCase","fileInput","loadStoresState","state","key","storeState","formatDisplay","display","_custom","PINIA_ROOT_LABEL","PINIA_ROOT_ID","formatStoreForInspectorTree","store","label","$id","formatEventData","isArray","reduce","operations","oldValue","newValue","operation","formatMutationType","direct","patchFunction","patchObject","isTimelineActive","componentStateTypes","MUTATIONS_LAYER_ID","INSPECTOR_ID","assign$1","getStoreType","registerPiniaDevtools","app","logo","packageName","homepage","api","addTimelineLayer","color","addInspector","icon","treeFilterPlaceholder","actions","action","async","clipboard","writeText","actionGlobalCopyState","tooltip","readText","actionGlobalPasteState","sendInspectorTree","sendInspectorState","actionGlobalSaveState","accept","reject","onchange","files","file","text","oncancel","actionGlobalOpenStateFile","nodeActions","nodeId","_s","$reset","inspectComponent","payload","ctx","componentInstance","_pStores","piniaStores","values","forEach","instanceData","editable","_isOptionsAPI","$state","_getters","getters","getInspectorTree","inspectorId","stores","from","rootNodes","filter","map","getInspectorState","inspectedStore","storeNames","storeMap","storeId","getterName","_customProperties","size","customProperties","formatStoreForInspectorState","editInspectorState","path","unshift","set","editComponentState","startsWith","activeAction","runningActionId","patchActionForGrouping","actionNames","wrapWithProxy","storeActions","actionName","_actionId","trackedStore","Reflect","retValue","devtoolsPlugin","options","originalHotUpdate","_hotUpdate","newStore","_hmrPayload","logStoreChanges","bind","$onAction","after","onError","groupId","addTimelineEvent","layerId","time","subtitle","logType","notifyComponentUpdate","deep","$subscribe","eventData","detached","flush","hotUpdate","info","$dispose","addStoreToDevtools","noop","addSubscription","subscriptions","callback","onCleanup","removeSubscription","idx","indexOf","splice","triggerSubscriptions","fallbackRunWithContext","mergeReactiveObjects","patchToApply","Map","Set","add","subPatch","targetValue","skipHydrateSymbol","skipHydrateMap","WeakMap","createSetupStore","setup","hot","isOptionsStore","scope","optionsForPlugin","$subscribeOptions","isListening","isSyncListening","debuggerEvents","actionSubscriptions","initialState","hotState","activeListener","$patch","partialStateOrMutator","subscriptionMutation","myListenerId","then","newState","wrapAction","afterCallbackList","onErrorCallbackList","ret","catch","partialStore","_p","stopWatcher","run","stop","delete","_r","setupStore","runWithContext","_e","effect","obj","actionValue","defineProperty","nonEnumerable","writable","configurable","enumerable","p","extender","extensions","hydrate","defineStore","idOrOptions","setupOptions","isSetupStore","useStore","hasContext","localState","computedGetters","createOptionsStore","token","singleMatcher","RegExp","multiMatcher","decodeComponents","components","split","decodeURIComponent","join","left","right","decode","input","tokens","match","splitOnFirst","string","separator","separatorIndex","includeKeys","object","predicate","getOwnPropertyDescriptor","ownKeys","isNullOrUndefined","strictUriEncode","encodeURIComponent","x","charCodeAt","toUpperCase","encodeFragmentIdentifier","validateArrayFormatSeparator","encode","strict","encodedURI","replaceMap","exec","entries","customDecodeURIComponent","keysSorter","sort","b","Number","removeHash","hashStart","parseValue","parseNumbers","isNaN","trim","parseBooleans","extract","queryStart","query","arrayFormat","arrayFormatSeparator","formatter","accumulator","isEncodedArray","arrayValue","flat","parserForArrayFormat","returnValue","parameter","parameter_","key2","value2","Boolean","shouldFilter","skipNull","skipEmptyString","index","keyValueSep","encoderForArrayFormat","objectCopy","parseUrl","url_","hash","parseFragmentIdentifier","fragmentIdentifier","stringifyUrl","queryString","getHash","urlObjectForFragmentEncode","pick","exclude","extend","encodeReserveRE","encodeReserveReplacer","c","commaRE","str","err","castQueryParamValue","parseQuery","res","param","parts","shift","val","stringifyQuery","val2","trailingSlashRE","createRoute","record","redirectedFrom","router","clone","route","meta","params","fullPath","getFullPath","matched","formatMatch","freeze","START","parent","ref","_stringifyQuery","isSameRoute","onlyPath","isObjectEqual","aKeys","bKeys","every","aVal","bVal","handleRouteEntered","instances","instance","cbs","enteredCbs","i$1","_isBeingDestroyed","View","functional","props","default","render","_","children","routerView","h","$createElement","$route","cache","_routerViewCache","depth","inactive","_routerRoot","vnodeData","$vnode","keepAlive","_directInactive","_inactive","$parent","routerViewDepth","cachedData","cachedComponent","component","configProps","fillPropsinData","registerRouteInstance","vm","current","prepatch","vnode","init","propsToPass","config","resolveProps","attrs","resolvePath","relative","base","append","firstChar","charAt","stack","pop","segments","segment","cleanPath","isarray","arr","pathToRegexp_1","pathToRegexp","groups","source","delimiter","optional","repeat","partial","asterisk","pattern","attachKeys","regexpToRegexp","flags","arrayToRegexp","tokensToRegExp","stringToRegexp","parse_1","tokensToFunction_1","tokensToFunction","tokensToRegExp_1","PATH_REGEXP","defaultDelimiter","m","escaped","offset","next","capture","group","modifier","escapeGroup","escapeString","substr","encodeURIComponentPretty","encodeURI","matches","pretty","re","sensitive","end","endsWithDelimiter","compile","regexpCompileCache","fillParams","routeMsg","filler","pathMatch","normalizeLocation","_normalized","params$1","rawPath","parsedPath","hashIndex","queryIndex","parsePath","basePath","extraQuery","_parseQuery","parsedQuery","resolveQuery","_Vue","Link","to","required","tag","custom","exact","exactPath","activeClass","exactActiveClass","ariaCurrentValue","this$1$1","$router","classes","globalActiveClass","linkActiveClass","globalExactActiveClass","linkExactActiveClass","activeClassFallback","exactActiveClassFallback","compareTarget","queryIncludes","isIncludedRoute","handler","guardEvent","class","scopedSlot","$scopedSlots","$hasNormal","navigate","isActive","isExactActive","findAnchor","$slots","isStatic","aData","handler$1","event$1","aAttrs","metaKey","altKey","ctrlKey","shiftKey","defaultPrevented","button","currentTarget","getAttribute","preventDefault","child","inBrowser","createRouteMap","routes","oldPathList","oldPathMap","oldNameMap","parentRoute","pathList","pathMap","nameMap","addRouteRecord","matchAs","pathToRegexpOptions","normalizedPath","normalizePath","caseSensitive","regex","compileRouteRegex","alias","redirect","beforeEnter","childMatchAs","aliases","aliasRoute","createMatcher","currentRoute","_createRoute","paramNames","record$1","matchRoute","originalRedirect","resolveRecordPath","aliasedMatch","aliasedRecord","addRoute","parentOrRoute","getRoutes","addRoutes","Time","genStateKey","toFixed","_key","getStateKey","setStateKey","positionStore","setupScroll","history","scrollRestoration","protocolAndPath","protocol","host","absolutePath","stateCopy","replaceState","addEventListener","handlePopState","removeEventListener","handleScroll","isPop","behavior","scrollBehavior","$nextTick","position","getScrollPosition","shouldScroll","scrollToPosition","saveScrollPosition","pageXOffset","y","pageYOffset","isValidPosition","isNumber","normalizePosition","v","hashStartsWithNumberRE","isObject","selector","el","getElementById","querySelector","docRect","documentElement","getBoundingClientRect","elRect","top","getElementPosition","style","scrollTo","ua","supportsPushState","pushState","NavigationFailureType","redirected","aborted","cancelled","duplicated","createNavigationCancelledError","createRouterError","_isRouter","propertiesToLog","isError","isNavigationFailure","errorType","runQueue","queue","cb","step","flatMapComponents","flatten","hasSymbol","toStringTag","called","History","baseEl","normalizeBase","pending","ready","readyCbs","readyErrorCbs","errorCbs","extractGuards","records","reverse","guards","def","guard","extractGuard","bindGuard","listen","onReady","errorCb","transitionTo","onComplete","onAbort","prev","confirmTransition","updateRoute","ensureURL","afterHooks","abort","lastRouteIndex","lastCurrentIndex","max","Math","updated","activated","deactivated","resolveQueue","extractLeaveGuards","beforeHooks","extractUpdateHooks","hasAsync","cid","resolvedDef","__esModule","resolved","reason","msg","comp","iterator","createNavigationAbortedError","createNavigationRedirectedError","enterGuards","bindEnterGuard","extractEnterGuards","resolveHooks","setupListeners","teardown","cleanupListener","HTML5History","_startLocation","getLocation","expectScroll","supportsScroll","handleRoutingEvent","go","n","fromRoute","getCurrentLocation","pathname","pathLowerCase","baseLowerCase","search","HashHistory","fallback","checkFallback","ensureSlash","replaceHash","eventType","pushHash","getUrl","AbstractHistory","targetIndex","VueRouter","apps","matcher","mode","prototypeAccessors","$once","routeOrError","handleInitialScroll","_route","beforeEach","registerHook","beforeResolve","afterEach","back","forward","getMatchedComponents","createHref","normalizedTo","defineProperties","VueRouter$1","list","install","Vue","installed","isDef","registerInstance","callVal","$options","_parentVnode","mixin","beforeCreate","_router","defineReactive","destroyed","strats","optionMergeStrategies","beforeRouteEnter","beforeRouteLeave","beforeRouteUpdate","created","version","START_LOCATION","use","Router","originalPush","generateUrl","view","emits","fillColor","_vm","_c","_self","_b","staticClass","$event","$emit","$attrs","_v","viewConfig","loadState","useViewConfigStore","getConfig","onUpdate","update","axios","put","setSortingBy","toggleSortingDirection","newDirection","sorting_direction","viewConfigStore","_initialized","subscribe","_ref","getLoggerBuilder","setApp","detectUser","build","throttle","delay","timeoutID","_ref$noTrailing","noTrailing","_ref$noLeading","noLeading","_ref$debounceMode","debounceMode","lastExec","clearExistingTimeout","clearTimeout","wrapper","_len","arguments_","elapsed","clear","cancel","_ref2$upcomingOnly","upcomingOnly","ChartPie","NcAppNavigationItem","NcProgressBar","loadingStorageStats","storageStats","computed","storageStatsTitle","_this$storageStats","_this$storageStats2","_this$storageStats3","usedQuotaByte","formatFileSize","used","quotaByte","quota","t","storageStatsTooltip","beforeMount","setInterval","throttleUpdateStorageStats","mounted","_this$storageStats4","_this$storageStats5","free","showStorageFullWarning","methods","debounceUpdateStorageStats","_ref$atBegin","atBegin","updateStorageStats","_response$data","_this$storageStats6","_response$data$data","_response$data$data2","logger","showError","translate","styleTagTransform","setAttributes","insert","domAPI","insertStyleElement","locals","stopPropagation","slot","min","Function","$el","appendChild","userConfig","show_hidden","crop_image_previews","sort_favorites_first","sort_folders_first","grid_view","useUserConfigStore","userConfigStore","Clipboard","NcAppSettingsDialog","NcAppSettingsSection","NcCheckboxRadioSwitch","NcInputField","Setting","_window$OCA","_getCurrentUser","_loadState$enable_non","OCA","Files","Settings","webdavUrl","generateRemoteUrl","getCurrentUser","uid","webdavDocs","appPasswordUrl","webdavUrlCopied","enableGridView","setting","beforeDestroy","close","onClose","setConfig","copyCloudId","select","showSuccess","_l","scopedSlots","_u","Cog","NavigationQuota","NcAppNavigation","NcIconSvgWrapper","SettingsModal","settingsOpened","currentViewId","_this$$route","currentView","views","find","$navigation","parentViews","order","childViews","watch","oldView","setActive","debug","showView","useExactRouteMatching","_this$childViews$view","_window","_window$close","Sidebar","onToggleExpand","isExpanded","expanded","_this$viewConfigStore","generateToNavigation","dir","openSettings","onSettingsClose","iconClass","sticky","compareNumbers","numberA","numberB","compareUnicode","stringA","stringB","localeCompare","abs","RE_NUMBERS","RE_LEADING_OR_TRAILING_WHITESPACES","RE_WHITESPACES","RE_INT_OR_FLOAT","RE_DATE","RE_LEADING_ZERO","RE_UNICODE_CHARACTERS","stringCompare","normalizeAlphaChunk","chunk","parseNumber","parsedNumber","normalizeNumericChunk","chunks","createChunkMap","normalizedString","createChunkMaps","chunksMaps","createChunks","isFunction","valueOf","isNull","isSymbol","isUndefined","getMappedValueRecord","stringValue","getTime","parsedDate","_unused","parseDate","numberify","createIdentifierFn","identifier","isInteger","orderBy","collection","identifiers","orders","validatedIdentifiers","identifierList","some","getIdentifiers","validatedOrders","orderList","getOrders","identifierFns","mappedCollection","element","recordA","recordB","indexA","valuesA","indexB","valuesB","ordersLength","_result","valueA","valueB","chunksA","chunksB","lengthA","lengthB","chunkA","chunkB","compareChunks","compareOtherTypes","compareMultiple","getElementByIndex","baseOrderBy","FileAction","displayName","iconSvgInline","InformationSvg","enabled","nodes","_nodes$0$root","root","permissions","Permission","NONE","OCP","goToRoute","fileid","useFilesStore","fileStore","roots","getNode","getNodes","ids","getRoot","service","updateNodes","acc","deleteNodes","setRoot","onDeletedNode","onCreatedNode","onUpdatedNode","usePathsStore","pathsStore","paths","getPath","addPath","_getNavigation","getNavigation","active","FileType","Folder","dirname","_children","parentId","parentFolder","useSelectionStore","selected","lastSelection","lastSelectedIndex","selection","setLastIndex","reset","uploader","Directory","File","contents","super","_contents","_computeDirectorySize","lastModified","_computeDirectoryMtime","directory","entry","traverseTree","isFile","readDirectory","all","dirReader","createReader","getEntries","readEntries","results","createDirectoryIfNotExists","davClient","davGetClient","exists","createDirectory","recursive","stat","details","davGetDefaultPropfind","davResultToNode","resolveConflict","destination","conflicts","basename","uploads","renamed","openConflictPicker","showInfo","getQueue","PQueue","concurrency","MoveCopyAction","canMove","ALL","UPDATE","canCopy","_node$attributes$shar","_node$attributes","attributes","attribute","canDownload","rootPath","defaultRootUrl","hashCode","client","rootUrl","createClient","headers","requesttoken","getRequestToken","getPatcher","patch","_options$headers","request","getClient","resultToNode","userId","davParsePermissions","owner","filename","nodeData","mtime","lastmod","mime","hasPreview","failed","getContents","controller","AbortController","propfindPayload","CancelablePromise","onCancel","contentsResponse","getDirectoryContents","includeSelf","signal","folder","getSummaryFor","fileCount","folderCount","getActionForNodes","MOVE_OR_COPY","MOVE","COPY","handleCopyMoveNodeTo","overwrite","NodeStatus","LOADING","copySuffix","currentPath","davRootPath","destinationPath","otherNodes","otherNames","suffix","newName","ext","extname","getUniqueName","copyFile","hasConflict","deleteFile","moveFile","AxiosError","_error$response","_error$response2","_error$response3","openFilePickerForAction","fileIDs","filePicker","getFilePickerBuilder","allowDirectories","setFilter","CREATE","setMimeTypeFilter","setMultiSelect","startAt","setButtonFactory","_selection","buttons","dirnames","CopyIconSvg","FolderMoveSvg","FilePickerClosed","_node$root","execBatch","promises","dataTransferToFileTree","items","kind","_item$getAsEntry","_item$getAsEntry2","_item$webkitGetAsEntr","getAsEntry","webkitGetAsEntry","warned","fileTree","DataTransferItem","getAsFile","showWarning","onDropExternalFiles","getUploader","uploadDirectoryContents","relativePath","joinPaths","upload","pause","start","errors","allSettled","onDropInternalFiles","isCopy","useDragAndDropStore","dragging","filesListWidth","_fileListEl$clientWid","fileListEl","clientWidth","$resizeObserver","ResizeObserver","contentRect","width","observe","disconnect","defineComponent","NcBreadcrumbs","NcBreadcrumb","mixins","filesListWidthMixin","draggingStore","filesStore","selectionStore","dirs","sections","getFileIdFromPath","getDirDisplayName","disableDrop","viewIcon","_this$currentView$ico","_this$currentView","selectedFiles","draggingFiles","getNodeFromId","_this$currentView2","_this$$navigation","fileId","onClick","_to$query","onDragOver","dataTransfer","dropEffect","onDrop","_event$dataTransfer","_event$dataTransfer2","_this$currentView3","canDrop","titleForSection","section","_section$to","ariaForSection","_section$to2","_setupProxy","_t","nativeOn","useActionsMenuStore","opened","useRenamingStore","renamingStore","renamingNode","FileMultipleIcon","FolderIcon","isSingleNode","isSingleFolder","summary","totalSize","total","parseInt","$refs","previewImg","replaceChildren","preview","parentNode","cloneNode","Preview","DragAndDropPreview","directive","vOnClickOutside","NcFile","Node","loading","dragover","gridMode","currentDir","currentFileId","_this$$route$params","_this$$route$query","_this$source","uniqueId","isLoading","extension","_this$source$attribut","isSelected","isRenaming","isRenamingSmallScreen","_this$fileid","_this$fileid$toString","_this$currentFileId","_this$currentFileId$t","canDrag","openedMenu","actionsMenuStore","_this$$el","closest","removeProperty","resetState","onRightClick","_this$$el2","setProperty","clientX","clientY","isMoreThanOneSelected","execDefaultAction","openDetailsIfAvailable","_sidebarAction$enable","sidebarAction","onDragLeave","contains","relatedTarget","onDragStart","_event$dataTransfer$c","clearData","image","$mount","$on","$off","getDragAndDropPreview","setDragImage","onDragEnd","_event$dataTransfer3","_event$dataTransfer4","updateRootElement","getFileActions","ArrowLeftIcon","ChevronRightIcon","CustomElementRender","NcActionButton","NcActions","NcActionSeparator","NcLoadingIcon","openedSubmenu","enabledActions","enabledInlineActions","_action$inline","inline","enabledRenderActions","renderInline","enabledDefaultActions","enabledMenuActions","DefaultType","HIDDEN","findIndex","topActionsIds","enabledSubmenuActions","getBoundariesElement","mountType","_attributes","actionDisplayName","onActionClick","isSubmenu","success","isMenu","_this$enabledSubmenuA","onBackToMenuClick","menuAction","_menuAction$$el$query","focus","_vm$openedSubmenu","_vm$openedSubmenu2","_action$title","refInFor","_action$title2","keyboardStore","onEvent","useKeyboardStore","ariaLabel","onSelectionChange","_this$keyboardStore","newSelectedIndex","isAlreadySelected","filesToSelect","resetSelection","_k","keyCode","forbiddenCharacters","NcTextField","renameLabel","linkTo","_this$$parent","is","role","tabindex","READ","immediate","renaming","startRenaming","checkInputValidity","_this$newName$trim","_this$newName","isFileNameValid","setCustomValidity","reportValidity","trimmedName","OC","blacklist_files_regex","checkIfNodeExists","char","_this$$refs$renameInp","extLength","renameInput","inputField","setSelectionRange","Event","stopRenaming","onRename","_this$newName$trim2","_this$newName2","oldName","oldEncodedSource","encodedSource","rename","Destination","Overwrite","directives","rawName","expression","domProps","StarSvg","_el$setAttribute","setAttribute","AccountGroupIcon","AccountPlusIcon","CollectivesIcon","FavoriteIcon","FileIcon","FolderOpenIcon","KeyIcon","LinkIcon","NetworkIcon","TagIcon","backgroundFailed","_this$source$toString","isFavorite","favorite","cropPreviews","previewUrl","searchParams","fileOverlay","PlayCircleIcon","folderOverlay","_this$source2","_this$source3","_this$source4","_this$source5","shareTypes","ShareType","SHARE_TYPE_LINK","SHARE_TYPE_EMAIL","src","_m","FileEntryActions","FileEntryCheckbox","FileEntryName","FileEntryPreview","NcDateTime","FileEntryMixin","isMtimeAvailable","isSizeAvailable","compact","rowListeners","dragstart","contextmenu","dragleave","dragend","drop","columns","sizeOpacity","ratio","round","pow","mtimeOpacity","_this$source$mtime","_this$source$mtime$ge","maxOpacityTime","mtimeTitle","moment","format","_g","column","_vm$currentView","inheritAttrs","header","currentFolder","mount","_this$currentFolder","classForColumn","_column$summary","keysOrMapper","reduced","$pinia","storeKey","sortingMode","_this$getConfig","sorting_mode","defaultSortKey","isAscSorting","_this$getConfig2","toggleSortBy","MenuDown","MenuUp","NcButton","filesSortingMixin","FilesListTableHeaderButton","selectAllBind","checked","isAllSelected","indeterminate","isSomeSelected","selectedNodes","isNoneSelected","ariaSortForMode","onToggleAll","dataComponent","dataKey","dataSources","extraProps","scrollToIndex","caption","beforeHeight","headerHeight","tableHeight","resizeObserver","isReady","bufferItems","columnCount","itemHeight","itemWidth","rowCount","ceil","floor","startIndex","shownItems","renderedItems","oldItemsKeys","$_recycledPool","unusedKeys","random","tbodyStyle","isOverScrolled","lastIndex","hiddenAfterItems","paddingTop","paddingBottom","oldColumnCount","_this$$refs","_this$$refs2","before","thead","debounce","_before$clientHeight","_thead$clientHeight","_root$clientHeight","clientHeight","onScroll","passive","targetRow","scrollTop","_this$_onScrollHandle","_onScrollHandle","requestAnimationFrame","topScroll","areSomeNodesLoading","inlineActions","selectionIds","failedIds","FilesListHeader","FilesListTableFooter","FilesListTableHeader","VirtualList","FilesListTableHeaderActions","FileEntry","FileEntryGrid","getFileListHeaders","openFileId","openFile","openfile","sortedHeaders","defaultCaption","viewCaption","sortableCaption","virtualListNote","scrollToFile","handleOpenFile","openSidebarForFile","getFileId","types","tableTop","table","tableBottom","height","TrayArrowDownIcon","canUpload","isQuotaExceeded","cantUploadLabel","mainContent","onContentDrop","_event$relatedTarget","_this$$el$querySelect","lastUpload","findLast","_upload$response","UploadStatus","FAILED","webkitRelativePath","_this$$route$params$v","isSharingEnabled","_getCapabilities","getCapabilities","files_sharing","BreadCrumbs","DragAndDropNotice","FilesListVirtual","ListViewIcon","NcAppContent","NcEmptyContent","PlusIcon","UploadPicker","ViewGridIcon","uploaderStore","useUploaderStore","filterText","promise","Type","pageHeading","_this$currentView$nam","sortingParameters","_v$attributes","_v$attributes2","dirContentsSorted","filteredDirContent","dirContents","customColumn","_this$userConfigStore","showHidden","_file$attributes","hidden","isEmptyDir","isRefreshing","toPreviousDir","shareAttributes","_this$currentFolder2","_this$currentFolder3","shareButtonLabel","shareButtonType","SHARE_TYPE_USER","gridViewButtonLabel","_this$currentFolder4","canShare","SHARE","newView","fetchContent","newDir","oldDir","filesListVirtual","onSearch","unmounted","unsubscribe","_this$promise","$set","onUpload","_this$currentFolder5","onUploadFail","_upload$response2","parser","Parser","explicitRoot","parseStringPromise","_this$currentFolder6","searchEvent","openSharingSidebar","setActiveTab","toggleGridView","translatePlural","_vm$currentView2","emptyTitle","emptyCaption","NcContent","FilesList","Navigation","__webpack_nonce__","btoa","_window$OCA$Files","_window$OCP$Files","goTo","_provided","provideCache","toBeInstalled","provide","globalProperties","createPinia","observable","_settings","register","_defineProperty","_name","_el","_open","_close","FilesApp","_typeof","_exports","_setPrototypeOf","setPrototypeOf","_createSuper","Derived","hasNativeReflectConstruct","construct","sham","_isNativeReflectConstruct","Super","_getPrototypeOf","NewTarget","ReferenceError","_assertThisInitialized","_possibleConstructorReturn","getPrototypeOf","_createForOfIteratorHelper","allowArrayLike","it","minLen","_arrayLikeToArray","_unsupportedIterableToArray","F","s","done","f","normalCompletion","didErr","_e2","return","arr2","_classCallCheck","Constructor","_defineProperties","_createClass","protoProps","staticProps","_classPrivateFieldInitSpec","privateMap","privateCollection","_checkPrivateRedeclaration","_classPrivateFieldGet","receiver","_classApplyDescriptorGet","_classExtractFieldDescriptor","_classPrivateFieldSet","_classApplyDescriptorSet","cancelable","isCancelablePromise","_internals","_promise","CancelablePromiseInternal","_ref$executor","executor","_ref$internals","internals","isCanceled","onCancelList","_ref$promise","onfulfilled","onrejected","makeCancelable","createCallback","onfinally","runWhenCanceled","_this","finally","callbacks","_step","_iterator","_CancelablePromiseInt","subClass","superClass","_inherits","_super","iterable","makeAllCancelable","any","race","_default","onResult","arg","_step2","_iterator2","resolvable","___CSS_LOADER_URL_IMPORT_0___","___CSS_LOADER_URL_IMPORT_1___","___CSS_LOADER_EXPORT___","___CSS_LOADER_URL_REPLACEMENT_0___","___CSS_LOADER_URL_REPLACEMENT_1___","sax","opt","SAXParser","SAXStream","createStream","MAX_BUFFER_LENGTH","Stream","buffers","clearBuffers","q","bufferCheckPosition","lowercase","lowercasetags","looseCase","tags","closed","closedRoot","sawRoot","noscript","S","BEGIN","strictEntities","ENTITIES","XML_ENTITIES","attribList","xmlns","ns","rootNS","trackPosition","line","EVENTS","write","BEGIN_WHITESPACE","beginWhiteSpace","TEXT","starti","textNode","substring","isWhitespace","strictFail","TEXT_ENTITY","OPEN_WAKA","startTagPosition","SCRIPT","SCRIPT_ENDING","script","CLOSE_TAG","SGML_DECL","sgmlDecl","isMatch","nameStart","OPEN_TAG","tagName","PROC_INST","procInstName","procInstBody","pad","CDATA","emitNode","cdata","COMMENT","comment","DOCTYPE","doctype","isQuote","SGML_DECL_QUOTED","DOCTYPE_DTD","DOCTYPE_QUOTED","DOCTYPE_DTD_QUOTED","COMMENT_ENDING","COMMENT_ENDED","textopts","CDATA_ENDING","CDATA_ENDING_2","PROC_INST_ENDING","PROC_INST_BODY","nameBody","newTag","openTag","OPEN_TAG_SLASH","ATTRIB","closeTag","attribName","attribValue","ATTRIB_NAME","ATTRIB_VALUE","attrib","ATTRIB_NAME_SAW_WHITE","ATTRIB_VALUE_QUOTED","ATTRIB_VALUE_UNQUOTED","ATTRIB_VALUE_ENTITY_Q","ATTRIB_VALUE_CLOSED","isAttribEnd","ATTRIB_VALUE_ENTITY_U","CLOSE_TAG_SAW_WHITE","notMatch","returnState","buffer","unparsedEntities","parsedEntity","parseEntity","entity","entityBody","entityStart","maxAllowed","maxActual","closeText","checkBufferLength","resume","ex","streamWraps","ev","_parser","readable","me","onend","er","_decoder","Buffer","isBuffer","SD","XML_NAMESPACE","XMLNS_NAMESPACE","xml","stringFromCharCode","fromCodePoint","STATE","COMMENT_STARTING","nodeType","normalize","qname","qualName","local","qn","selfClosing","uri","nv","isSelfClosing","closeTo","num","entityLC","numStr","highSurrogate","lowSurrogate","codeUnits","codePoint","isFinite","RangeError","setImmediate","registerImmediate","html","channel","messagePrefix","onGlobalMessage","nextHandle","tasksByHandle","currentlyRunningATask","doc","attachTo","process","handle","nextTick","runIfPresent","postMessage","importScripts","postMessageIsAsynchronous","oldOnMessage","onmessage","canUsePostMessage","attachEvent","MessageChannel","port1","port2","onreadystatechange","removeChild","task","clearImmediate","g","d","RC","autostart","ignoreSameProgress","rate","lastTimestamp","lastProgress","historyTimeConstant","previousOutput","dt","report","progress","timestamp","deltaTimestamp","currentRate","estimate","Infinity","estimatedTime","Timeout","clearFn","_id","_clearFn","clearInterval","timeout","unref","enroll","msecs","_idleTimeoutId","_idleTimeout","unenroll","_unrefActive","_onTimeout","stripBOM","builder","defaults","escapeCDATA","requiresCDATA","wrapCDATA","hasProp","Builder","buildObject","rootObj","attrkey","charkey","rootElement","rootName","attr","txt","ele","up","att","xmldec","headless","allowSurrogateChars","renderOpts","explicitCharkey","normalizeTags","explicitArray","ignoreAttrs","mergeAttrs","validator","explicitChildren","childkey","charsAsChildren","includeWhiteChars","attrNameProcessors","attrValueProcessors","tagNameProcessors","valueProcessors","emptyTag","preserveChildrenOrder","chunkSize","isEmpty","processItem","processors","thing","parseString","assignOrPush","processAsync","xmlnskey","ctor","__super__","remaining","saxParser","error1","errThrown","ontext","ended","resultObject","EXPLICIT_CHARKEY","onopentag","processedKey","onclosetag","emptyStr","nodeName","objClone","old","xpath","getOwnPropertyNames","charChild","oncdata","prefixMatch","firstCharLowerCase","stripPrefix","parseFloat","ValidationError","Disconnected","Preceding","Following","Contains","ContainedBy","ImplementationSpecific","Element","Attribute","Text","CData","EntityReference","EntityDeclaration","ProcessingInstruction","Comment","Document","DocType","DocumentFragment","NotationDeclaration","Declaration","Raw","AttributeDeclaration","ElementDeclaration","Dummy","getValue","sources","proto","None","OpenTag","InsideTag","CloseTag","NodeType","XMLAttribute","debugInfo","attValue","isId","schemaTypeInfo","writer","filterOptions","isEqualNode","namespaceURI","localName","XMLCharacterData","XMLCData","XMLNode","substringData","count","appendData","insertData","deleteData","replaceData","XMLComment","XMLDOMErrorHandler","XMLDOMStringList","XMLDOMConfiguration","defaultParams","getParameter","canSetParameter","setParameter","handleError","XMLDOMImplementation","hasFeature","feature","createDocumentType","qualifiedName","publicId","systemId","createDocument","createHTMLDocument","getFeature","XMLDTDAttList","elementName","attributeName","attributeType","defaultValueType","dtdAttType","dtdAttDefault","dtdAttList","XMLDTDElement","dtdElementValue","dtdElement","XMLDTDEntity","pe","pubID","sysID","internal","dtdPubID","dtdSysID","nData","dtdNData","dtdEntityValue","dtdEntity","XMLDTDNotation","dtdNotation","XMLDeclaration","encoding","standalone","xmlVersion","xmlEncoding","xmlStandalone","declaration","XMLNamedNodeMap","XMLDocType","ref1","ref2","documentObject","attList","pEntity","notation","docType","ent","pent","not","XMLStringWriter","XMLStringifier","XMLDocument","documentURI","domConfig","rootObject","writerOptions","createDocumentFragment","createTextNode","createComment","createCDATASection","createProcessingInstruction","createAttribute","createEntityReference","getElementsByTagName","tagname","importNode","importedNode","createElementNS","createAttributeNS","getElementsByTagNameNS","elementId","adoptNode","normalizeDocument","renameNode","getElementsByClassName","classNames","eventInterface","createRange","createNodeIterator","whatToShow","createTreeWalker","WriterState","XMLElement","XMLProcessingInstruction","XMLRaw","XMLText","XMLDocumentCB","onData","onEnd","onDataCallback","onEndCallback","currentNode","currentLevel","openTags","documentStarted","documentCompleted","createChildNode","attName","attribs","dummy","instruction","openCurrent","oldValidationFlag","noValidation","keepNullAttributes","insTarget","insValue","processingInstruction","rootNodeName","closeNode","openNode","isOpen","indent","endline","isClosed","level","nod","dat","com","ins","dec","dtd","r","XMLDummy","isRoot","attributeMap","clonedSelf","clonedChild","removeAttribute","getAttributeNode","setAttributeNode","newAttr","removeAttributeNode","oldAttr","getAttributeNS","setAttributeNS","removeAttributeNS","getAttributeNodeNS","setAttributeNodeNS","hasAttribute","hasAttributeNS","setIdAttribute","setIdAttributeNS","setIdAttributeNode","idAttr","getNamedItem","setNamedItem","oldNode","removeNamedItem","getNamedItemNS","setNamedItemNS","removeNamedItemNS","DocumentPosition","XMLNodeList","parent1","baseURI","childNodeList","textContent","setParent","childNode","k","lastChild","len1","ref3","ignoreDecorators","convertAttKey","separateArrayItems","keepNullNodes","convertTextKey","convertCDataKey","convertCommentKey","convertRawKey","convertPIKey","insertBefore","newChild","refChild","removed","insertAfter","remove","commentBefore","commentAfter","instructionBefore","instructionAfter","importDocument","clonedRoot","u","importXMLBuilder","replaceChild","oldChild","hasChildNodes","isSupported","hasAttributes","compareDocumentPosition","other","isAncestor","isDescendant","isPreceding","isSameNode","lookupPrefix","isDefaultNamespace","lookupNamespaceURI","setUserData","getUserData","nodePos","thisPos","treePosition","isFollowing","found","pos","foreachTreeNode","func","XMLWriterBase","XMLStreamWriter","stream","isLastRootNode","writeChildNode","spaceBeforeSlash","childNodeCount","firstChildNode","allowEmpty","suppressPrettyCount","newline","assertLegalName","assertLegalChar","textEscape","attEscape","ampregex","noDoubleEncoding","previousSibling","nextSibling","splitText","replaceWholeText","content","filteredOptions","ref4","ref5","ref6","dontPrettyTextNodes","dontprettytextnodes","spacebeforeslash","user","indentLevel","openAttribute","closeAttribute","prettySuppressed","begin","stringWriter","streamWriter","implementation","writerState","setUid","Ne","_entries","registerEntry","validateEntry","unregisterEntry","getEntryIndex","C","P","Yt","toLocaleString","W","DEFAULT","Qt","_action","validateAction","_nc_fileactions","nr","_nc_filelistheader","N","DELETE","Z","nc","oc","ocs","V","_nc_dav_properties","L","_nc_dav_namespaces","sr","or","be","Y","crtime","J","NEW","LOCKED","Q","_data","_knownDavService","updateMtime","deleteProperty","isDavRessource","move","ye","D","ur","setHeaders","fetch","dr","ve","getcontentlength","Te","_views","_currentView","ar","_nc_navigation","Ie","_column","Ae","R","O","isExist","isEmptyObject","merge","isName","getAllMatches","nameRegexp","M","Oe","allowBooleanAttributes","unpairedTags","X","U","w","G","validate","Se","xe","z","code","tagClosed","tagStartPos","col","Ve","Ce","Pe","$e","Le","Fe","te","preserveOrder","attributeNamePrefix","attributesGroupName","textNodeName","ignoreAttributes","removeNSPrefix","parseTagValue","parseAttributeValue","trimValues","cdataPropName","numberParseOptions","hex","leadingZeros","eNotation","tagValueProcessor","attributeValueProcessor","stopNodes","alwaysCreateTextNode","commentPropName","processEntities","htmlEntities","ignoreDeclaration","ignorePiTags","transformTagName","transformAttributeName","updateTag","buildOptions","defaultOptions","Be","Xe","Ue","Ge","ze","He","Ke","We","je","Ye","Je","decimalPoint","T","addChild","tt","entityName","regx","entities","rt","skipLike","De","lastEntities","st","replaceEntitiesValue","$","ot","ut","resolveNameSpace","at","saveTextToParentTag","lastIndexOf","tagsNodeStack","tagExp","attrExpPresent","buildAttributesMap","closeIndex","docTypeEntities","parseTextData","rawTagName","isItStopNode","E","readStopNodeData","tagContent","lt","ft","ampEntity","ct","ht","pt","trimStart","gt","ne","ie","Nt","bt","Et","prettify","yt","apos","quot","space","cent","pound","yen","euro","copyright","reg","inr","addExternalEntities","parseXml","vt","Tt","se","Pt","xt","oe","H","indentBy","suppressUnpairedNode","suppressEmptyNode","endsWith","suppressBooleanAttributes","Ft","Vt","oneListGroup","isAttribute","attrPrefixLen","Rt","processTextOrObjNode","Lt","indentate","St","tagEndChar","newLine","j2x","buildTextValNode","attrStr","buildObjectNode","arrayNodeName","buildAttrPairStr","K","XMLParser","externalEntities","addEntity","XMLValidator","XMLBuilder","cr","_view","Ut","emptyView","Xt","gr","_nc_newfilemenu","numeric","sensitivity","CancelError","promiseState","canceled","rejected","PCancelable","userFunction","description","shouldReject","boolean","onFulfilled","onRejected","onFinally","TimeoutError","AbortError","getDOMException","errorMessage","DOMException","getAbortedReason","PriorityQueue","enqueue","priority","array","comparator","first","trunc","lowerBound","dequeue","carryoverConcurrencyCount","intervalCap","POSITIVE_INFINITY","interval","autoStart","queueClass","throwOnTimeout","canInitializeInterval","job","newConcurrency","_resolve","function_","throwIfAborted","milliseconds","customTimers","timer","cancelablePromise","sign","timeoutError","pTimeout","addAll","functions","onEmpty","onSizeLessThan","limit","onIdle","sizeBy","isPaused","AsyncResource","_type","thisArg","as","activeCount","generator","pendingCount","clearQueue","B","onUploadProgress","readAsArrayBuffer","appConfig","max_chunk_size","INITIALIZED","UPLOADING","ASSEMBLING","FINISHED","CANCELLED","ls","_source","_file","_isChunked","_chunks","_size","_uploaded","_startTime","_status","_controller","_response","isChunked","startTime","uploaded","IDLE","PAUSED","_destinationFolder","_isPublic","_uploadQueue","_jobQueue","_queueSize","_queueProgress","_queueStatus","_notifiers","isPublic","maxChunksSize","updateStats","addNotifier","bytes","staticRenderFns","_compiled","_scopeId","ssrContext","__VUE_SSR_CONTEXT__","_registeredComponents","_ssrRegister","$root","shadowRoot","_injectStyles","us","fill","viewBox","Ts","Cs","detectLocale","locale","json","charset","Language","translations","msgid","comments","translator","msgstr","Add","paused","msgid_plural","extracted","Cancel","Continue","New","addTranslation","$s","ngettext","gettext","vs","Plus","Upload","disabled","multiple","addLabel","cancelLabel","uploadLabel","progressLabel","progressTimeId","eta","timeLeft","newFileMenuEntries","uploadManager","totalQueueSize","uploadedQueueSize","hasFailure","isUploading","isAssembling","buttonName","setDestination","updateStatus","onUploadCompletion","onPick","Ss","Fs","form","setSeconds","toISOString","seconds","Js","decorative","svg","change","submit","$destroy","baseURL","escape","noRewrite","modRewriteWorking","_oc_webroot","Axios","CanceledError","isCancel","CancelToken","VERSION","isAxiosError","spread","toFormData","AxiosHeaders","HttpStatusCode","formToJSON","getAdapter","mergeConfig","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","loaded","__webpack_modules__","chunkIds","notFulfilled","fulfilled","getter","definition","chunkId","needAttach","scripts","onScriptComplete","doneFns","head","nmd","scriptUrl","currentScript","installedChunks","installedChunkData","realSrc","webpackJsonpCallback","parentChunkLoadingFunction","moreModules","runtime","chunkLoadingGlobal","__webpack_exports__"],"sourceRoot":""} \ No newline at end of file
+{"version":3,"file":"files-main.js?v=826709e828e40f405c8f","mappings":"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","sources":["webpack:///nextcloud/webpack/runtime/chunk loaded","webpack:///nextcloud/webpack/runtime/load script","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/eventemitter3/index.js","webpack:///nextcloud/node_modules/pinia/node_modules/vue-demi/lib/index.mjs","webpack:///nextcloud/node_modules/@vue/devtools-api/lib/esm/env.js","webpack:///nextcloud/node_modules/@vue/devtools-api/lib/esm/const.js","webpack:///nextcloud/node_modules/@vue/devtools-api/lib/esm/time.js","webpack:///nextcloud/node_modules/@vue/devtools-api/lib/esm/proxy.js","webpack:///nextcloud/node_modules/@vue/devtools-api/lib/esm/index.js","webpack:///nextcloud/node_modules/pinia/dist/pinia.mjs","webpack:///nextcloud/node_modules/decode-uri-component/index.js","webpack:///nextcloud/node_modules/split-on-first/index.js","webpack:///nextcloud/node_modules/filter-obj/index.js","webpack:///nextcloud/node_modules/query-string/base.js","webpack:///nextcloud/node_modules/query-string/index.js","webpack:///nextcloud/node_modules/vue-router/dist/vue-router.esm.js","webpack:///nextcloud/apps/files/src/router/router.ts","webpack:///nextcloud/apps/files/src/FilesApp.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/Cog.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/Cog.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/Cog.vue?4d6d","webpack:///nextcloud/node_modules/vue-material-design-icons/Cog.vue?vue&type=template&id=89df8f2e","webpack:///nextcloud/apps/files/src/store/viewConfig.ts","webpack:///nextcloud/apps/files/src/logger.js","webpack:///nextcloud/node_modules/throttle-debounce/esm/index.js","webpack:///nextcloud/node_modules/vue-material-design-icons/ChartPie.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/ChartPie.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/ChartPie.vue?421f","webpack:///nextcloud/node_modules/vue-material-design-icons/ChartPie.vue?vue&type=template&id=b117066e","webpack:///nextcloud/apps/files/src/components/NavigationQuota.vue","webpack:///nextcloud/apps/files/src/components/NavigationQuota.vue?vue&type=script&lang=js","webpack://nextcloud/./apps/files/src/components/NavigationQuota.vue?ebc6","webpack://nextcloud/./apps/files/src/components/NavigationQuota.vue?2966","webpack://nextcloud/./apps/files/src/components/NavigationQuota.vue?08cb","webpack://nextcloud/./apps/files/src/views/Settings.vue?84f7","webpack:///nextcloud/node_modules/vue-material-design-icons/Clipboard.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/Clipboard.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/Clipboard.vue?68c7","webpack:///nextcloud/node_modules/vue-material-design-icons/Clipboard.vue?vue&type=template&id=0c133921","webpack:///nextcloud/apps/files/src/components/Setting.vue","webpack:///nextcloud/apps/files/src/components/Setting.vue?vue&type=script&lang=js","webpack://nextcloud/./apps/files/src/components/Setting.vue?98ea","webpack://nextcloud/./apps/files/src/components/Setting.vue?8d57","webpack:///nextcloud/apps/files/src/store/userconfig.ts","webpack:///nextcloud/apps/files/src/views/Settings.vue","webpack:///nextcloud/apps/files/src/views/Settings.vue?vue&type=script&lang=js","webpack://nextcloud/./apps/files/src/views/Settings.vue?7616","webpack://nextcloud/./apps/files/src/views/Settings.vue?b81b","webpack:///nextcloud/apps/files/src/views/Navigation.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/views/Navigation.vue","webpack://nextcloud/./apps/files/src/views/Navigation.vue?ee84","webpack://nextcloud/./apps/files/src/views/Navigation.vue?74b9","webpack:///nextcloud/apps/files/src/views/FilesList.vue","webpack:///nextcloud/node_modules/natural-orderby/dist/index.js","webpack:///nextcloud/node_modules/vue-material-design-icons/FormatListBulletedSquare.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/FormatListBulletedSquare.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/FormatListBulletedSquare.vue?5dae","webpack:///nextcloud/node_modules/vue-material-design-icons/FormatListBulletedSquare.vue?vue&type=template&id=00aea13f","webpack:///nextcloud/node_modules/vue-material-design-icons/AccountPlus.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/AccountPlus.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/AccountPlus.vue?2818","webpack:///nextcloud/node_modules/vue-material-design-icons/AccountPlus.vue?vue&type=template&id=a16afc28","webpack:///nextcloud/node_modules/vue-material-design-icons/ViewGrid.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/ViewGrid.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/ViewGrid.vue?4e55","webpack:///nextcloud/node_modules/vue-material-design-icons/ViewGrid.vue?vue&type=template&id=7b96a104","webpack:///nextcloud/apps/files/src/actions/sidebarAction.ts","webpack:///nextcloud/apps/files/src/store/files.ts","webpack:///nextcloud/apps/files/src/store/paths.ts","webpack:///nextcloud/apps/files/src/store/selection.ts","webpack:///nextcloud/apps/files/src/store/uploader.ts","webpack:///nextcloud/apps/files/src/services/DropServiceUtils.ts","webpack://nextcloud/./node_modules/@nextcloud/dialogs/dist/style.css?d87c","webpack:///nextcloud/apps/files/src/actions/moveOrCopyActionUtils.ts","webpack:///nextcloud/apps/files/src/services/WebdavClient.ts","webpack:///nextcloud/apps/files/src/utils/hashUtils.ts","webpack:///nextcloud/apps/files/src/services/Files.ts","webpack:///nextcloud/apps/files/src/utils/fileUtils.ts","webpack:///nextcloud/apps/files/src/actions/moveOrCopyAction.ts","webpack:///nextcloud/apps/files/src/services/DropService.ts","webpack:///nextcloud/apps/files/src/store/dragging.ts","webpack:///nextcloud/apps/files/src/mixins/filesListWidth.ts","webpack:///nextcloud/apps/files/src/components/BreadCrumbs.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/BreadCrumbs.vue","webpack://nextcloud/./apps/files/src/components/BreadCrumbs.vue?c2f3","webpack://nextcloud/./apps/files/src/components/BreadCrumbs.vue?d357","webpack:///nextcloud/apps/files/src/components/FilesListVirtual.vue","webpack:///nextcloud/apps/files/src/store/actionsmenu.ts","webpack:///nextcloud/apps/files/src/store/renaming.ts","webpack:///nextcloud/node_modules/vue-material-design-icons/FileMultiple.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/FileMultiple.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/FileMultiple.vue?6e9d","webpack:///nextcloud/node_modules/vue-material-design-icons/FileMultiple.vue?vue&type=template&id=27b46e04","webpack:///nextcloud/node_modules/vue-material-design-icons/Folder.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/Folder.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/Folder.vue?b60e","webpack:///nextcloud/node_modules/vue-material-design-icons/Folder.vue?vue&type=template&id=07f089a4","webpack:///nextcloud/apps/files/src/components/DragAndDropPreview.vue","webpack:///nextcloud/apps/files/src/components/DragAndDropPreview.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/DragAndDropPreview.vue?3906","webpack://nextcloud/./apps/files/src/components/DragAndDropPreview.vue?36f6","webpack:///nextcloud/apps/files/src/utils/dragUtils.ts","webpack:///nextcloud/apps/files/src/components/FileEntryMixin.ts","webpack:///nextcloud/apps/files/src/components/CustomElementRender.vue","webpack:///nextcloud/apps/files/src/components/CustomElementRender.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/CustomElementRender.vue?5f5c","webpack:///nextcloud/node_modules/vue-material-design-icons/ArrowLeft.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/ArrowLeft.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/ArrowLeft.vue?f857","webpack:///nextcloud/node_modules/vue-material-design-icons/ArrowLeft.vue?vue&type=template&id=214c9a86","webpack:///nextcloud/node_modules/vue-material-design-icons/ChevronRight.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/ChevronRight.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/ChevronRight.vue?621b","webpack:///nextcloud/node_modules/vue-material-design-icons/ChevronRight.vue?vue&type=template&id=d6df4f34","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryActions.vue","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryActions.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryActions.vue?539e","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryActions.vue?ea42","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryActions.vue?7b52","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryCheckbox.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryCheckbox.vue","webpack:///nextcloud/apps/files/src/store/keyboard.ts","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryCheckbox.vue?a18b","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryName.vue","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryName.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryName.vue?98a4","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryPreview.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/File.vue","webpack:///nextcloud/node_modules/vue-material-design-icons/File.vue?vue&type=script&lang=js","webpack://nextcloud/./node_modules/vue-material-design-icons/File.vue?245d","webpack:///nextcloud/node_modules/vue-material-design-icons/File.vue?vue&type=template&id=e3c8d598","webpack:///nextcloud/node_modules/vue-material-design-icons/FolderOpen.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/FolderOpen.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/FolderOpen.vue?6818","webpack:///nextcloud/node_modules/vue-material-design-icons/FolderOpen.vue?vue&type=template&id=79cee0a4","webpack:///nextcloud/node_modules/vue-material-design-icons/Key.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/Key.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/Key.vue?157c","webpack:///nextcloud/node_modules/vue-material-design-icons/Key.vue?vue&type=template&id=01a06d54","webpack:///nextcloud/node_modules/vue-material-design-icons/Network.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/Network.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/Network.vue?11eb","webpack:///nextcloud/node_modules/vue-material-design-icons/Network.vue?vue&type=template&id=29f8873c","webpack:///nextcloud/node_modules/vue-material-design-icons/Tag.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/Tag.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/Tag.vue?6116","webpack:///nextcloud/node_modules/vue-material-design-icons/Tag.vue?vue&type=template&id=75dd05e4","webpack:///nextcloud/node_modules/vue-material-design-icons/PlayCircle.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/PlayCircle.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/PlayCircle.vue?0c26","webpack:///nextcloud/node_modules/vue-material-design-icons/PlayCircle.vue?vue&type=template&id=6901b3e6","webpack:///nextcloud/apps/files/src/components/FileEntry/CollectivesIcon.vue?vue&type=script&lang=js","webpack:///nextcloud/apps/files/src/components/FileEntry/CollectivesIcon.vue","webpack://nextcloud/./apps/files/src/components/FileEntry/CollectivesIcon.vue?1937","webpack://nextcloud/./apps/files/src/components/FileEntry/CollectivesIcon.vue?949d","webpack:///nextcloud/apps/files/src/components/FileEntry/FavoriteIcon.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/FileEntry/FavoriteIcon.vue","webpack://nextcloud/./apps/files/src/components/FileEntry/FavoriteIcon.vue?6d98","webpack://nextcloud/./apps/files/src/components/FileEntry/FavoriteIcon.vue?62c6","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryPreview.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/services/LivePhotos.ts","webpack://nextcloud/./apps/files/src/components/FileEntry/FileEntryPreview.vue?8c1f","webpack:///nextcloud/apps/files/src/components/FileEntry.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/FileEntry.vue","webpack://nextcloud/./apps/files/src/components/FileEntry.vue?da7c","webpack:///nextcloud/apps/files/src/components/FileEntryGrid.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/FileEntryGrid.vue","webpack://nextcloud/./apps/files/src/components/FileEntryGrid.vue?bb8e","webpack:///nextcloud/apps/files/src/components/FilesListHeader.vue","webpack:///nextcloud/apps/files/src/components/FilesListHeader.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/FilesListHeader.vue?349b","webpack:///nextcloud/apps/files/src/components/FilesListTableFooter.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/FilesListTableFooter.vue","webpack://nextcloud/./apps/files/src/components/FilesListTableFooter.vue?975a","webpack://nextcloud/./apps/files/src/components/FilesListTableFooter.vue?fa4c","webpack:///nextcloud/apps/files/src/components/FilesListTableHeader.vue","webpack:///nextcloud/apps/files/src/mixins/filesSorting.ts","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderButton.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderButton.vue","webpack://nextcloud/./apps/files/src/components/FilesListTableHeaderButton.vue?7b8e","webpack://nextcloud/./apps/files/src/components/FilesListTableHeaderButton.vue?e364","webpack:///nextcloud/apps/files/src/components/FilesListTableHeader.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/FilesListTableHeader.vue?1b05","webpack://nextcloud/./apps/files/src/components/FilesListTableHeader.vue?b1c9","webpack:///nextcloud/apps/files/src/components/VirtualList.vue","webpack:///nextcloud/apps/files/src/components/VirtualList.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/VirtualList.vue?37fa","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderActions.vue","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderActions.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/FilesListTableHeaderActions.vue?0445","webpack://nextcloud/./apps/files/src/components/FilesListTableHeaderActions.vue?9494","webpack:///nextcloud/apps/files/src/components/FilesListVirtual.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/components/FilesListVirtual.vue?4ceb","webpack://nextcloud/./apps/files/src/components/FilesListVirtual.vue?22b6","webpack://nextcloud/./apps/files/src/components/FilesListVirtual.vue?3555","webpack:///nextcloud/node_modules/vue-material-design-icons/TrayArrowDown.vue?vue&type=script&lang=js","webpack:///nextcloud/node_modules/vue-material-design-icons/TrayArrowDown.vue","webpack://nextcloud/./node_modules/vue-material-design-icons/TrayArrowDown.vue?a897","webpack:///nextcloud/node_modules/vue-material-design-icons/TrayArrowDown.vue?vue&type=template&id=447c2cd4","webpack:///nextcloud/apps/files/src/components/DragAndDropNotice.vue?vue&type=script&lang=ts","webpack:///nextcloud/apps/files/src/components/DragAndDropNotice.vue","webpack://nextcloud/./apps/files/src/components/DragAndDropNotice.vue?c924","webpack://nextcloud/./apps/files/src/components/DragAndDropNotice.vue?a2e0","webpack:///nextcloud/apps/files/src/views/FilesList.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/views/FilesList.vue?3a01","webpack://nextcloud/./apps/files/src/views/FilesList.vue?1e5b","webpack:///nextcloud/apps/files/src/FilesApp.vue?vue&type=script&lang=ts","webpack://nextcloud/./apps/files/src/FilesApp.vue?597e","webpack:///nextcloud/apps/files/src/main.ts","webpack:///nextcloud/apps/files/src/services/RouterService.ts","webpack:///nextcloud/apps/files/src/services/Settings.js","webpack:///nextcloud/apps/files/src/models/Setting.js","webpack:///nextcloud/node_modules/cancelable-promise/umd/CancelablePromise.js","webpack:///nextcloud/node_modules/@nextcloud/dialogs/dist/style.css","webpack:///nextcloud/node_modules/@nextcloud/upload/dist/assets/index-FLLHP6Jd.css","webpack:///nextcloud/apps/files/src/components/BreadCrumbs.vue?vue&type=style&index=0&id=88ea2982&prod&lang=scss&scoped=true","webpack:///nextcloud/apps/files/src/components/DragAndDropNotice.vue?vue&type=style&index=0&id=02c943a6&prod&lang=scss&scoped=true","webpack:///nextcloud/apps/files/src/components/DragAndDropPreview.vue?vue&type=style&index=0&id=578d5cf6&prod&lang=scss","webpack:///nextcloud/apps/files/src/components/FileEntry/FavoriteIcon.vue?vue&type=style&index=0&id=04e52abc&prod&lang=scss&scoped=true","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryActions.vue?vue&type=style&index=0&id=6168180a&prod&lang=scss","webpack:///nextcloud/apps/files/src/components/FileEntry/FileEntryActions.vue?vue&type=style&index=1&id=6168180a&prod&lang=scss&scoped=true","webpack:///nextcloud/apps/files/src/components/FilesListTableFooter.vue?vue&type=style&index=0&id=a85bde20&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListTableHeader.vue?vue&type=style&index=0&id=952162c2&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderActions.vue?vue&type=style&index=0&id=d939292c&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListTableHeaderButton.vue?vue&type=style&index=0&id=097f69d4&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListVirtual.vue?vue&type=style&index=0&id=2bbbfb12&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/components/FilesListVirtual.vue?vue&type=style&index=1&id=2bbbfb12&prod&lang=scss","webpack:///nextcloud/apps/files/src/components/NavigationQuota.vue?vue&type=style&index=0&id=063ed938&prod&lang=scss&scoped=true","webpack:///nextcloud/apps/files/src/views/FilesList.vue?vue&type=style&index=0&id=1b7c1ce0&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/views/Navigation.vue?vue&type=style&index=0&id=8291caa8&prod&scoped=true&lang=scss","webpack:///nextcloud/apps/files/src/views/Settings.vue?vue&type=style&index=0&id=6d63c120&prod&lang=scss&scoped=true","webpack:///nextcloud/node_modules/sax/lib/sax.js","webpack:///nextcloud/node_modules/setimmediate/setImmediate.js","webpack:///nextcloud/node_modules/simple-eta/index.js","webpack:///nextcloud/node_modules/timers-browserify/main.js","webpack:///nextcloud/node_modules/xml2js/lib/bom.js","webpack:///nextcloud/node_modules/xml2js/lib/builder.js","webpack:///nextcloud/node_modules/xml2js/lib/defaults.js","webpack:///nextcloud/node_modules/xml2js/lib/parser.js","webpack:///nextcloud/node_modules/xml2js/lib/processors.js","webpack:///nextcloud/node_modules/xml2js/lib/xml2js.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/DocumentPosition.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/NodeType.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/Utility.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/WriterState.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLAttribute.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLCData.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLCharacterData.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLComment.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDOMConfiguration.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDOMErrorHandler.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDOMImplementation.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDOMStringList.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDTDAttList.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDTDElement.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDTDEntity.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDTDNotation.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDeclaration.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDocType.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDocument.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDocumentCB.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLDummy.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLElement.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLNamedNodeMap.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLNode.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLNodeList.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLProcessingInstruction.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLRaw.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLStreamWriter.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLStringWriter.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLStringifier.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLText.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/XMLWriterBase.js","webpack:///nextcloud/node_modules/xmlbuilder/lib/index.js","webpack:///nextcloud/node_modules/@nextcloud/files/dist/index.mjs","webpack://nextcloud/./node_modules/@nextcloud/upload/dist/assets/index-FLLHP6Jd.css?f350","webpack:///nextcloud/node_modules/p-cancelable/index.js","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/p-timeout/index.js","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/p-queue/dist/priority-queue.js","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/p-queue/dist/lower-bound.js","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/p-queue/dist/index.js","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/p-limit/async-hooks-stub.js","webpack:///nextcloud/node_modules/@nextcloud/upload/dist/chunks/index-dMIU3rSK.mjs","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/p-limit/index.js","webpack:///nextcloud/node_modules/@nextcloud/upload/node_modules/@nextcloud/router/dist/index.mjs","webpack:///nextcloud/node_modules/axios/index.js","webpack:///nextcloud/webpack/bootstrap","webpack:///nextcloud/webpack/runtime/compat get default export","webpack:///nextcloud/webpack/runtime/define property getters","webpack:///nextcloud/webpack/runtime/ensure chunk","webpack:///nextcloud/webpack/runtime/get javascript chunk filename","webpack:///nextcloud/webpack/runtime/global","webpack:///nextcloud/webpack/runtime/hasOwnProperty shorthand","webpack:///nextcloud/webpack/runtime/make namespace object","webpack:///nextcloud/webpack/runtime/node module decorator","webpack:///nextcloud/webpack/runtime/runtimeId","webpack:///nextcloud/webpack/runtime/publicPath","webpack:///nextcloud/webpack/runtime/jsonp chunk loading","webpack:///nextcloud/webpack/runtime/nonce","webpack:///nextcloud/webpack/startup"],"sourcesContent":["var deferred = [];\n__webpack_require__.O = (result, chunkIds, fn, priority) => {\n\tif(chunkIds) {\n\t\tpriority = priority || 0;\n\t\tfor(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];\n\t\tdeferred[i] = [chunkIds, fn, priority];\n\t\treturn;\n\t}\n\tvar notFulfilled = Infinity;\n\tfor (var i = 0; i < deferred.length; i++) {\n\t\tvar chunkIds = deferred[i][0];\n\t\tvar fn = deferred[i][1];\n\t\tvar priority = deferred[i][2];\n\t\tvar fulfilled = true;\n\t\tfor (var j = 0; j < chunkIds.length; j++) {\n\t\t\tif ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every((key) => (__webpack_require__.O[key](chunkIds[j])))) {\n\t\t\t\tchunkIds.splice(j--, 1);\n\t\t\t} else {\n\t\t\t\tfulfilled = false;\n\t\t\t\tif(priority < notFulfilled) notFulfilled = priority;\n\t\t\t}\n\t\t}\n\t\tif(fulfilled) {\n\t\t\tdeferred.splice(i--, 1)\n\t\t\tvar r = fn();\n\t\t\tif (r !== undefined) result = r;\n\t\t}\n\t}\n\treturn result;\n};","var inProgress = {};\nvar dataWebpackPrefix = \"nextcloud:\";\n// loadScript function to load a script via script tag\n__webpack_require__.l = (url, done, key, chunkId) => {\n\tif(inProgress[url]) { inProgress[url].push(done); return; }\n\tvar script, needAttach;\n\tif(key !== undefined) {\n\t\tvar scripts = document.getElementsByTagName(\"script\");\n\t\tfor(var i = 0; i < scripts.length; i++) {\n\t\t\tvar s = scripts[i];\n\t\t\tif(s.getAttribute(\"src\") == url || s.getAttribute(\"data-webpack\") == dataWebpackPrefix + key) { script = s; break; }\n\t\t}\n\t}\n\tif(!script) {\n\t\tneedAttach = true;\n\t\tscript = document.createElement('script');\n\n\t\tscript.charset = 'utf-8';\n\t\tscript.timeout = 120;\n\t\tif (__webpack_require__.nc) {\n\t\t\tscript.setAttribute(\"nonce\", __webpack_require__.nc);\n\t\t}\n\t\tscript.setAttribute(\"data-webpack\", dataWebpackPrefix + key);\n\n\t\tscript.src = url;\n\t}\n\tinProgress[url] = [done];\n\tvar onScriptComplete = (prev, event) => {\n\t\t// avoid mem leaks in IE.\n\t\tscript.onerror = script.onload = null;\n\t\tclearTimeout(timeout);\n\t\tvar doneFns = inProgress[url];\n\t\tdelete inProgress[url];\n\t\tscript.parentNode && script.parentNode.removeChild(script);\n\t\tdoneFns && doneFns.forEach((fn) => (fn(event)));\n\t\tif(prev) return prev(event);\n\t}\n\tvar timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);\n\tscript.onerror = onScriptComplete.bind(null, script.onerror);\n\tscript.onload = onScriptComplete.bind(null, script.onload);\n\tneedAttach && document.head.appendChild(script);\n};","'use strict';\n\nvar has = Object.prototype.hasOwnProperty\n , prefix = '~';\n\n/**\n * Constructor to create a storage for our `EE` objects.\n * An `Events` instance is a plain object whose properties are event names.\n *\n * @constructor\n * @private\n */\nfunction Events() {}\n\n//\n// We try to not inherit from `Object.prototype`. In some engines creating an\n// instance in this way is faster than calling `Object.create(null)` directly.\n// If `Object.create(null)` is not supported we prefix the event names with a\n// character to make sure that the built-in object properties are not\n// overridden or used as an attack vector.\n//\nif (Object.create) {\n Events.prototype = Object.create(null);\n\n //\n // This hack is needed because the `__proto__` property is still inherited in\n // some old browsers like Android 4, iPhone 5.1, Opera 11 and Safari 5.\n //\n if (!new Events().__proto__) prefix = false;\n}\n\n/**\n * Representation of a single event listener.\n *\n * @param {Function} fn The listener function.\n * @param {*} context The context to invoke the listener with.\n * @param {Boolean} [once=false] Specify if the listener is a one-time listener.\n * @constructor\n * @private\n */\nfunction EE(fn, context, once) {\n this.fn = fn;\n this.context = context;\n this.once = once || false;\n}\n\n/**\n * Add a listener for a given event.\n *\n * @param {EventEmitter} emitter Reference to the `EventEmitter` instance.\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} context The context to invoke the listener with.\n * @param {Boolean} once Specify if the listener is a one-time listener.\n * @returns {EventEmitter}\n * @private\n */\nfunction addListener(emitter, event, fn, context, once) {\n if (typeof fn !== 'function') {\n throw new TypeError('The listener must be a function');\n }\n\n var listener = new EE(fn, context || emitter, once)\n , evt = prefix ? prefix + event : event;\n\n if (!emitter._events[evt]) emitter._events[evt] = listener, emitter._eventsCount++;\n else if (!emitter._events[evt].fn) emitter._events[evt].push(listener);\n else emitter._events[evt] = [emitter._events[evt], listener];\n\n return emitter;\n}\n\n/**\n * Clear event by name.\n *\n * @param {EventEmitter} emitter Reference to the `EventEmitter` instance.\n * @param {(String|Symbol)} evt The Event name.\n * @private\n */\nfunction clearEvent(emitter, evt) {\n if (--emitter._eventsCount === 0) emitter._events = new Events();\n else delete emitter._events[evt];\n}\n\n/**\n * Minimal `EventEmitter` interface that is molded against the Node.js\n * `EventEmitter` interface.\n *\n * @constructor\n * @public\n */\nfunction EventEmitter() {\n this._events = new Events();\n this._eventsCount = 0;\n}\n\n/**\n * Return an array listing the events for which the emitter has registered\n * listeners.\n *\n * @returns {Array}\n * @public\n */\nEventEmitter.prototype.eventNames = function eventNames() {\n var names = []\n , events\n , name;\n\n if (this._eventsCount === 0) return names;\n\n for (name in (events = this._events)) {\n if (has.call(events, name)) names.push(prefix ? name.slice(1) : name);\n }\n\n if (Object.getOwnPropertySymbols) {\n return names.concat(Object.getOwnPropertySymbols(events));\n }\n\n return names;\n};\n\n/**\n * Return the listeners registered for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Array} The registered listeners.\n * @public\n */\nEventEmitter.prototype.listeners = function listeners(event) {\n var evt = prefix ? prefix + event : event\n , handlers = this._events[evt];\n\n if (!handlers) return [];\n if (handlers.fn) return [handlers.fn];\n\n for (var i = 0, l = handlers.length, ee = new Array(l); i < l; i++) {\n ee[i] = handlers[i].fn;\n }\n\n return ee;\n};\n\n/**\n * Return the number of listeners listening to a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Number} The number of listeners.\n * @public\n */\nEventEmitter.prototype.listenerCount = function listenerCount(event) {\n var evt = prefix ? prefix + event : event\n , listeners = this._events[evt];\n\n if (!listeners) return 0;\n if (listeners.fn) return 1;\n return listeners.length;\n};\n\n/**\n * Calls each of the listeners registered for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @returns {Boolean} `true` if the event had listeners, else `false`.\n * @public\n */\nEventEmitter.prototype.emit = function emit(event, a1, a2, a3, a4, a5) {\n var evt = prefix ? prefix + event : event;\n\n if (!this._events[evt]) return false;\n\n var listeners = this._events[evt]\n , len = arguments.length\n , args\n , i;\n\n if (listeners.fn) {\n if (listeners.once) this.removeListener(event, listeners.fn, undefined, true);\n\n switch (len) {\n case 1: return listeners.fn.call(listeners.context), true;\n case 2: return listeners.fn.call(listeners.context, a1), true;\n case 3: return listeners.fn.call(listeners.context, a1, a2), true;\n case 4: return listeners.fn.call(listeners.context, a1, a2, a3), true;\n case 5: return listeners.fn.call(listeners.context, a1, a2, a3, a4), true;\n case 6: return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true;\n }\n\n for (i = 1, args = new Array(len -1); i < len; i++) {\n args[i - 1] = arguments[i];\n }\n\n listeners.fn.apply(listeners.context, args);\n } else {\n var length = listeners.length\n , j;\n\n for (i = 0; i < length; i++) {\n if (listeners[i].once) this.removeListener(event, listeners[i].fn, undefined, true);\n\n switch (len) {\n case 1: listeners[i].fn.call(listeners[i].context); break;\n case 2: listeners[i].fn.call(listeners[i].context, a1); break;\n case 3: listeners[i].fn.call(listeners[i].context, a1, a2); break;\n case 4: listeners[i].fn.call(listeners[i].context, a1, a2, a3); break;\n default:\n if (!args) for (j = 1, args = new Array(len -1); j < len; j++) {\n args[j - 1] = arguments[j];\n }\n\n listeners[i].fn.apply(listeners[i].context, args);\n }\n }\n }\n\n return true;\n};\n\n/**\n * Add a listener for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} [context=this] The context to invoke the listener with.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.on = function on(event, fn, context) {\n return addListener(this, event, fn, context, false);\n};\n\n/**\n * Add a one-time listener for a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn The listener function.\n * @param {*} [context=this] The context to invoke the listener with.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.once = function once(event, fn, context) {\n return addListener(this, event, fn, context, true);\n};\n\n/**\n * Remove the listeners of a given event.\n *\n * @param {(String|Symbol)} event The event name.\n * @param {Function} fn Only remove the listeners that match this function.\n * @param {*} context Only remove the listeners that have this context.\n * @param {Boolean} once Only remove one-time listeners.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.removeListener = function removeListener(event, fn, context, once) {\n var evt = prefix ? prefix + event : event;\n\n if (!this._events[evt]) return this;\n if (!fn) {\n clearEvent(this, evt);\n return this;\n }\n\n var listeners = this._events[evt];\n\n if (listeners.fn) {\n if (\n listeners.fn === fn &&\n (!once || listeners.once) &&\n (!context || listeners.context === context)\n ) {\n clearEvent(this, evt);\n }\n } else {\n for (var i = 0, events = [], length = listeners.length; i < length; i++) {\n if (\n listeners[i].fn !== fn ||\n (once && !listeners[i].once) ||\n (context && listeners[i].context !== context)\n ) {\n events.push(listeners[i]);\n }\n }\n\n //\n // Reset the array, or remove it completely if we have no more listeners.\n //\n if (events.length) this._events[evt] = events.length === 1 ? events[0] : events;\n else clearEvent(this, evt);\n }\n\n return this;\n};\n\n/**\n * Remove all listeners, or those of the specified event.\n *\n * @param {(String|Symbol)} [event] The event name.\n * @returns {EventEmitter} `this`.\n * @public\n */\nEventEmitter.prototype.removeAllListeners = function removeAllListeners(event) {\n var evt;\n\n if (event) {\n evt = prefix ? prefix + event : event;\n if (this._events[evt]) clearEvent(this, evt);\n } else {\n this._events = new Events();\n this._eventsCount = 0;\n }\n\n return this;\n};\n\n//\n// Alias methods names because people roll like that.\n//\nEventEmitter.prototype.off = EventEmitter.prototype.removeListener;\nEventEmitter.prototype.addListener = EventEmitter.prototype.on;\n\n//\n// Expose the prefix.\n//\nEventEmitter.prefixed = prefix;\n\n//\n// Allow `EventEmitter` to be imported as module namespace.\n//\nEventEmitter.EventEmitter = EventEmitter;\n\n//\n// Expose the module.\n//\nif ('undefined' !== typeof module) {\n module.exports = EventEmitter;\n}\n","import Vue from 'vue'\nimport { getCurrentInstance } from 'vue'\n\nvar isVue2 = true\nvar isVue3 = false\nvar Vue2 = Vue\nvar warn = Vue.util.warn\n\nfunction install() {}\n\n// createApp polyfill\nexport function createApp(rootComponent, rootProps) {\n var vm\n var provide = {}\n var app = {\n config: Vue.config,\n use: Vue.use.bind(Vue),\n mixin: Vue.mixin.bind(Vue),\n component: Vue.component.bind(Vue),\n provide: function (key, value) {\n provide[key] = value\n return this\n },\n directive: function (name, dir) {\n if (dir) {\n Vue.directive(name, dir)\n return app\n } else {\n return Vue.directive(name)\n }\n },\n mount: function (el, hydrating) {\n if (!vm) {\n vm = new Vue(Object.assign({ propsData: rootProps }, rootComponent, { provide: Object.assign(provide, rootComponent.provide) }))\n vm.$mount(el, hydrating)\n return vm\n } else {\n return vm\n }\n },\n unmount: function () {\n if (vm) {\n vm.$destroy()\n vm = undefined\n }\n },\n }\n return app\n}\n\nexport {\n Vue,\n Vue2,\n isVue2,\n isVue3,\n install,\n warn\n}\n\n// Vue 3 components mock\nfunction createMockComponent(name) {\n return {\n setup() {\n throw new Error('[vue-demi] ' + name + ' is not supported in Vue 2. It\\'s provided to avoid compiler errors.')\n }\n }\n}\nexport var Fragment = /*#__PURE__*/ createMockComponent('Fragment')\nexport var Transition = /*#__PURE__*/ createMockComponent('Transition')\nexport var TransitionGroup = /*#__PURE__*/ createMockComponent('TransitionGroup')\nexport var Teleport = /*#__PURE__*/ createMockComponent('Teleport')\nexport var Suspense = /*#__PURE__*/ createMockComponent('Suspense')\nexport var KeepAlive = /*#__PURE__*/ createMockComponent('KeepAlive')\n\nexport * from 'vue'\n\n// Not implemented https://github.com/vuejs/core/pull/8111, falls back to getCurrentInstance()\nexport function hasInjectionContext() {\n return !!getCurrentInstance()\n}\n","export function getDevtoolsGlobalHook() {\n return getTarget().__VUE_DEVTOOLS_GLOBAL_HOOK__;\n}\nexport function getTarget() {\n // @ts-expect-error navigator and windows are not available in all environments\n return (typeof navigator !== 'undefined' && typeof window !== 'undefined')\n ? window\n : typeof globalThis !== 'undefined'\n ? globalThis\n : {};\n}\nexport const isProxyAvailable = typeof Proxy === 'function';\n","export const HOOK_SETUP = 'devtools-plugin:setup';\nexport const HOOK_PLUGIN_SETTINGS_SET = 'plugin:settings:set';\n","let supported;\nlet perf;\nexport function isPerformanceSupported() {\n var _a;\n if (supported !== undefined) {\n return supported;\n }\n if (typeof window !== 'undefined' && window.performance) {\n supported = true;\n perf = window.performance;\n }\n else if (typeof globalThis !== 'undefined' && ((_a = globalThis.perf_hooks) === null || _a === void 0 ? void 0 : _a.performance)) {\n supported = true;\n perf = globalThis.perf_hooks.performance;\n }\n else {\n supported = false;\n }\n return supported;\n}\nexport function now() {\n return isPerformanceSupported() ? perf.now() : Date.now();\n}\n","import { HOOK_PLUGIN_SETTINGS_SET } from './const.js';\nimport { now } from './time.js';\nexport class ApiProxy {\n constructor(plugin, hook) {\n this.target = null;\n this.targetQueue = [];\n this.onQueue = [];\n this.plugin = plugin;\n this.hook = hook;\n const defaultSettings = {};\n if (plugin.settings) {\n for (const id in plugin.settings) {\n const item = plugin.settings[id];\n defaultSettings[id] = item.defaultValue;\n }\n }\n const localSettingsSaveId = `__vue-devtools-plugin-settings__${plugin.id}`;\n let currentSettings = Object.assign({}, defaultSettings);\n try {\n const raw = localStorage.getItem(localSettingsSaveId);\n const data = JSON.parse(raw);\n Object.assign(currentSettings, data);\n }\n catch (e) {\n // noop\n }\n this.fallbacks = {\n getSettings() {\n return currentSettings;\n },\n setSettings(value) {\n try {\n localStorage.setItem(localSettingsSaveId, JSON.stringify(value));\n }\n catch (e) {\n // noop\n }\n currentSettings = value;\n },\n now() {\n return now();\n },\n };\n if (hook) {\n hook.on(HOOK_PLUGIN_SETTINGS_SET, (pluginId, value) => {\n if (pluginId === this.plugin.id) {\n this.fallbacks.setSettings(value);\n }\n });\n }\n this.proxiedOn = new Proxy({}, {\n get: (_target, prop) => {\n if (this.target) {\n return this.target.on[prop];\n }\n else {\n return (...args) => {\n this.onQueue.push({\n method: prop,\n args,\n });\n };\n }\n },\n });\n this.proxiedTarget = new Proxy({}, {\n get: (_target, prop) => {\n if (this.target) {\n return this.target[prop];\n }\n else if (prop === 'on') {\n return this.proxiedOn;\n }\n else if (Object.keys(this.fallbacks).includes(prop)) {\n return (...args) => {\n this.targetQueue.push({\n method: prop,\n args,\n resolve: () => { },\n });\n return this.fallbacks[prop](...args);\n };\n }\n else {\n return (...args) => {\n return new Promise((resolve) => {\n this.targetQueue.push({\n method: prop,\n args,\n resolve,\n });\n });\n };\n }\n },\n });\n }\n async setRealTarget(target) {\n this.target = target;\n for (const item of this.onQueue) {\n this.target.on[item.method](...item.args);\n }\n for (const item of this.targetQueue) {\n item.resolve(await this.target[item.method](...item.args));\n }\n }\n}\n","import { getDevtoolsGlobalHook, getTarget, isProxyAvailable } from './env.js';\nimport { HOOK_SETUP } from './const.js';\nimport { ApiProxy } from './proxy.js';\nexport * from './api/index.js';\nexport * from './plugin.js';\nexport * from './time.js';\nexport function setupDevtoolsPlugin(pluginDescriptor, setupFn) {\n const descriptor = pluginDescriptor;\n const target = getTarget();\n const hook = getDevtoolsGlobalHook();\n const enableProxy = isProxyAvailable && descriptor.enableEarlyProxy;\n if (hook && (target.__VUE_DEVTOOLS_PLUGIN_API_AVAILABLE__ || !enableProxy)) {\n hook.emit(HOOK_SETUP, pluginDescriptor, setupFn);\n }\n else {\n const proxy = enableProxy ? new ApiProxy(descriptor, hook) : null;\n const list = target.__VUE_DEVTOOLS_PLUGINS__ = target.__VUE_DEVTOOLS_PLUGINS__ || [];\n list.push({\n pluginDescriptor: descriptor,\n setupFn,\n proxy,\n });\n if (proxy) {\n setupFn(proxy.proxiedTarget);\n }\n }\n}\n","/*!\n * pinia v2.1.7\n * (c) 2023 Eduardo San Martin Morote\n * @license MIT\n */\nimport { hasInjectionContext, inject, toRaw, watch, unref, markRaw, effectScope, ref, isVue2, isRef, isReactive, set, getCurrentScope, onScopeDispose, getCurrentInstance, reactive, toRef, del, nextTick, computed, toRefs } from 'vue-demi';\nimport { setupDevtoolsPlugin } from '@vue/devtools-api';\n\n/**\n * setActivePinia must be called to handle SSR at the top of functions like\n * `fetch`, `setup`, `serverPrefetch` and others\n */\nlet activePinia;\n/**\n * Sets or unsets the active pinia. Used in SSR and internally when calling\n * actions and getters\n *\n * @param pinia - Pinia instance\n */\n// @ts-expect-error: cannot constrain the type of the return\nconst setActivePinia = (pinia) => (activePinia = pinia);\n/**\n * Get the currently active pinia if there is any.\n */\nconst getActivePinia = () => (hasInjectionContext() && inject(piniaSymbol)) || activePinia;\nconst piniaSymbol = ((process.env.NODE_ENV !== 'production') ? Symbol('pinia') : /* istanbul ignore next */ Symbol());\n\nfunction isPlainObject(\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\no) {\n return (o &&\n typeof o === 'object' &&\n Object.prototype.toString.call(o) === '[object Object]' &&\n typeof o.toJSON !== 'function');\n}\n// type DeepReadonly<T> = { readonly [P in keyof T]: DeepReadonly<T[P]> }\n// TODO: can we change these to numbers?\n/**\n * Possible types for SubscriptionCallback\n */\nvar MutationType;\n(function (MutationType) {\n /**\n * Direct mutation of the state:\n *\n * - `store.name = 'new name'`\n * - `store.$state.name = 'new name'`\n * - `store.list.push('new item')`\n */\n MutationType[\"direct\"] = \"direct\";\n /**\n * Mutated the state with `$patch` and an object\n *\n * - `store.$patch({ name: 'newName' })`\n */\n MutationType[\"patchObject\"] = \"patch object\";\n /**\n * Mutated the state with `$patch` and a function\n *\n * - `store.$patch(state => state.name = 'newName')`\n */\n MutationType[\"patchFunction\"] = \"patch function\";\n // maybe reset? for $state = {} and $reset\n})(MutationType || (MutationType = {}));\n\nconst IS_CLIENT = typeof window !== 'undefined';\n/**\n * Should we add the devtools plugins.\n * - only if dev mode or forced through the prod devtools flag\n * - not in test\n * - only if window exists (could change in the future)\n */\nconst USE_DEVTOOLS = ((process.env.NODE_ENV !== 'production') || (typeof __VUE_PROD_DEVTOOLS__ !== 'undefined' && __VUE_PROD_DEVTOOLS__)) && !(process.env.NODE_ENV === 'test') && IS_CLIENT;\n\n/*\n * FileSaver.js A saveAs() FileSaver implementation.\n *\n * Originally by Eli Grey, adapted as an ESM module by Eduardo San Martin\n * Morote.\n *\n * License : MIT\n */\n// The one and only way of getting global scope in all environments\n// https://stackoverflow.com/q/3277182/1008999\nconst _global = /*#__PURE__*/ (() => typeof window === 'object' && window.window === window\n ? window\n : typeof self === 'object' && self.self === self\n ? self\n : typeof global === 'object' && global.global === global\n ? global\n : typeof globalThis === 'object'\n ? globalThis\n : { HTMLElement: null })();\nfunction bom(blob, { autoBom = false } = {}) {\n // prepend BOM for UTF-8 XML and text/* types (including HTML)\n // note: your browser will automatically convert UTF-16 U+FEFF to EF BB BF\n if (autoBom &&\n /^\\s*(?:text\\/\\S*|application\\/xml|\\S*\\/\\S*\\+xml)\\s*;.*charset\\s*=\\s*utf-8/i.test(blob.type)) {\n return new Blob([String.fromCharCode(0xfeff), blob], { type: blob.type });\n }\n return blob;\n}\nfunction download(url, name, opts) {\n const xhr = new XMLHttpRequest();\n xhr.open('GET', url);\n xhr.responseType = 'blob';\n xhr.onload = function () {\n saveAs(xhr.response, name, opts);\n };\n xhr.onerror = function () {\n console.error('could not download file');\n };\n xhr.send();\n}\nfunction corsEnabled(url) {\n const xhr = new XMLHttpRequest();\n // use sync to avoid popup blocker\n xhr.open('HEAD', url, false);\n try {\n xhr.send();\n }\n catch (e) { }\n return xhr.status >= 200 && xhr.status <= 299;\n}\n// `a.click()` doesn't work for all browsers (#465)\nfunction click(node) {\n try {\n node.dispatchEvent(new MouseEvent('click'));\n }\n catch (e) {\n const evt = document.createEvent('MouseEvents');\n evt.initMouseEvent('click', true, true, window, 0, 0, 0, 80, 20, false, false, false, false, 0, null);\n node.dispatchEvent(evt);\n }\n}\nconst _navigator = \n typeof navigator === 'object' ? navigator : { userAgent: '' };\n// Detect WebView inside a native macOS app by ruling out all browsers\n// We just need to check for 'Safari' because all other browsers (besides Firefox) include that too\n// https://www.whatismybrowser.com/guides/the-latest-user-agent/macos\nconst isMacOSWebView = /*#__PURE__*/ (() => /Macintosh/.test(_navigator.userAgent) &&\n /AppleWebKit/.test(_navigator.userAgent) &&\n !/Safari/.test(_navigator.userAgent))();\nconst saveAs = !IS_CLIENT\n ? () => { } // noop\n : // Use download attribute first if possible (#193 Lumia mobile) unless this is a macOS WebView or mini program\n typeof HTMLAnchorElement !== 'undefined' &&\n 'download' in HTMLAnchorElement.prototype &&\n !isMacOSWebView\n ? downloadSaveAs\n : // Use msSaveOrOpenBlob as a second approach\n 'msSaveOrOpenBlob' in _navigator\n ? msSaveAs\n : // Fallback to using FileReader and a popup\n fileSaverSaveAs;\nfunction downloadSaveAs(blob, name = 'download', opts) {\n const a = document.createElement('a');\n a.download = name;\n a.rel = 'noopener'; // tabnabbing\n // TODO: detect chrome extensions & packaged apps\n // a.target = '_blank'\n if (typeof blob === 'string') {\n // Support regular links\n a.href = blob;\n if (a.origin !== location.origin) {\n if (corsEnabled(a.href)) {\n download(blob, name, opts);\n }\n else {\n a.target = '_blank';\n click(a);\n }\n }\n else {\n click(a);\n }\n }\n else {\n // Support blobs\n a.href = URL.createObjectURL(blob);\n setTimeout(function () {\n URL.revokeObjectURL(a.href);\n }, 4e4); // 40s\n setTimeout(function () {\n click(a);\n }, 0);\n }\n}\nfunction msSaveAs(blob, name = 'download', opts) {\n if (typeof blob === 'string') {\n if (corsEnabled(blob)) {\n download(blob, name, opts);\n }\n else {\n const a = document.createElement('a');\n a.href = blob;\n a.target = '_blank';\n setTimeout(function () {\n click(a);\n });\n }\n }\n else {\n // @ts-ignore: works on windows\n navigator.msSaveOrOpenBlob(bom(blob, opts), name);\n }\n}\nfunction fileSaverSaveAs(blob, name, opts, popup) {\n // Open a popup immediately do go around popup blocker\n // Mostly only available on user interaction and the fileReader is async so...\n popup = popup || open('', '_blank');\n if (popup) {\n popup.document.title = popup.document.body.innerText = 'downloading...';\n }\n if (typeof blob === 'string')\n return download(blob, name, opts);\n const force = blob.type === 'application/octet-stream';\n const isSafari = /constructor/i.test(String(_global.HTMLElement)) || 'safari' in _global;\n const isChromeIOS = /CriOS\\/[\\d]+/.test(navigator.userAgent);\n if ((isChromeIOS || (force && isSafari) || isMacOSWebView) &&\n typeof FileReader !== 'undefined') {\n // Safari doesn't allow downloading of blob URLs\n const reader = new FileReader();\n reader.onloadend = function () {\n let url = reader.result;\n if (typeof url !== 'string') {\n popup = null;\n throw new Error('Wrong reader.result type');\n }\n url = isChromeIOS\n ? url\n : url.replace(/^data:[^;]*;/, 'data:attachment/file;');\n if (popup) {\n popup.location.href = url;\n }\n else {\n location.assign(url);\n }\n popup = null; // reverse-tabnabbing #460\n };\n reader.readAsDataURL(blob);\n }\n else {\n const url = URL.createObjectURL(blob);\n if (popup)\n popup.location.assign(url);\n else\n location.href = url;\n popup = null; // reverse-tabnabbing #460\n setTimeout(function () {\n URL.revokeObjectURL(url);\n }, 4e4); // 40s\n }\n}\n\n/**\n * Shows a toast or console.log\n *\n * @param message - message to log\n * @param type - different color of the tooltip\n */\nfunction toastMessage(message, type) {\n const piniaMessage = '🍍 ' + message;\n if (typeof __VUE_DEVTOOLS_TOAST__ === 'function') {\n // No longer available :(\n __VUE_DEVTOOLS_TOAST__(piniaMessage, type);\n }\n else if (type === 'error') {\n console.error(piniaMessage);\n }\n else if (type === 'warn') {\n console.warn(piniaMessage);\n }\n else {\n console.log(piniaMessage);\n }\n}\nfunction isPinia(o) {\n return '_a' in o && 'install' in o;\n}\n\n/**\n * This file contain devtools actions, they are not Pinia actions.\n */\n// ---\nfunction checkClipboardAccess() {\n if (!('clipboard' in navigator)) {\n toastMessage(`Your browser doesn't support the Clipboard API`, 'error');\n return true;\n }\n}\nfunction checkNotFocusedError(error) {\n if (error instanceof Error &&\n error.message.toLowerCase().includes('document is not focused')) {\n toastMessage('You need to activate the \"Emulate a focused page\" setting in the \"Rendering\" panel of devtools.', 'warn');\n return true;\n }\n return false;\n}\nasync function actionGlobalCopyState(pinia) {\n if (checkClipboardAccess())\n return;\n try {\n await navigator.clipboard.writeText(JSON.stringify(pinia.state.value));\n toastMessage('Global state copied to clipboard.');\n }\n catch (error) {\n if (checkNotFocusedError(error))\n return;\n toastMessage(`Failed to serialize the state. Check the console for more details.`, 'error');\n console.error(error);\n }\n}\nasync function actionGlobalPasteState(pinia) {\n if (checkClipboardAccess())\n return;\n try {\n loadStoresState(pinia, JSON.parse(await navigator.clipboard.readText()));\n toastMessage('Global state pasted from clipboard.');\n }\n catch (error) {\n if (checkNotFocusedError(error))\n return;\n toastMessage(`Failed to deserialize the state from clipboard. Check the console for more details.`, 'error');\n console.error(error);\n }\n}\nasync function actionGlobalSaveState(pinia) {\n try {\n saveAs(new Blob([JSON.stringify(pinia.state.value)], {\n type: 'text/plain;charset=utf-8',\n }), 'pinia-state.json');\n }\n catch (error) {\n toastMessage(`Failed to export the state as JSON. Check the console for more details.`, 'error');\n console.error(error);\n }\n}\nlet fileInput;\nfunction getFileOpener() {\n if (!fileInput) {\n fileInput = document.createElement('input');\n fileInput.type = 'file';\n fileInput.accept = '.json';\n }\n function openFile() {\n return new Promise((resolve, reject) => {\n fileInput.onchange = async () => {\n const files = fileInput.files;\n if (!files)\n return resolve(null);\n const file = files.item(0);\n if (!file)\n return resolve(null);\n return resolve({ text: await file.text(), file });\n };\n // @ts-ignore: TODO: changed from 4.3 to 4.4\n fileInput.oncancel = () => resolve(null);\n fileInput.onerror = reject;\n fileInput.click();\n });\n }\n return openFile;\n}\nasync function actionGlobalOpenStateFile(pinia) {\n try {\n const open = getFileOpener();\n const result = await open();\n if (!result)\n return;\n const { text, file } = result;\n loadStoresState(pinia, JSON.parse(text));\n toastMessage(`Global state imported from \"${file.name}\".`);\n }\n catch (error) {\n toastMessage(`Failed to import the state from JSON. Check the console for more details.`, 'error');\n console.error(error);\n }\n}\nfunction loadStoresState(pinia, state) {\n for (const key in state) {\n const storeState = pinia.state.value[key];\n // store is already instantiated, patch it\n if (storeState) {\n Object.assign(storeState, state[key]);\n }\n else {\n // store is not instantiated, set the initial state\n pinia.state.value[key] = state[key];\n }\n }\n}\n\nfunction formatDisplay(display) {\n return {\n _custom: {\n display,\n },\n };\n}\nconst PINIA_ROOT_LABEL = '🍍 Pinia (root)';\nconst PINIA_ROOT_ID = '_root';\nfunction formatStoreForInspectorTree(store) {\n return isPinia(store)\n ? {\n id: PINIA_ROOT_ID,\n label: PINIA_ROOT_LABEL,\n }\n : {\n id: store.$id,\n label: store.$id,\n };\n}\nfunction formatStoreForInspectorState(store) {\n if (isPinia(store)) {\n const storeNames = Array.from(store._s.keys());\n const storeMap = store._s;\n const state = {\n state: storeNames.map((storeId) => ({\n editable: true,\n key: storeId,\n value: store.state.value[storeId],\n })),\n getters: storeNames\n .filter((id) => storeMap.get(id)._getters)\n .map((id) => {\n const store = storeMap.get(id);\n return {\n editable: false,\n key: id,\n value: store._getters.reduce((getters, key) => {\n getters[key] = store[key];\n return getters;\n }, {}),\n };\n }),\n };\n return state;\n }\n const state = {\n state: Object.keys(store.$state).map((key) => ({\n editable: true,\n key,\n value: store.$state[key],\n })),\n };\n // avoid adding empty getters\n if (store._getters && store._getters.length) {\n state.getters = store._getters.map((getterName) => ({\n editable: false,\n key: getterName,\n value: store[getterName],\n }));\n }\n if (store._customProperties.size) {\n state.customProperties = Array.from(store._customProperties).map((key) => ({\n editable: true,\n key,\n value: store[key],\n }));\n }\n return state;\n}\nfunction formatEventData(events) {\n if (!events)\n return {};\n if (Array.isArray(events)) {\n // TODO: handle add and delete for arrays and objects\n return events.reduce((data, event) => {\n data.keys.push(event.key);\n data.operations.push(event.type);\n data.oldValue[event.key] = event.oldValue;\n data.newValue[event.key] = event.newValue;\n return data;\n }, {\n oldValue: {},\n keys: [],\n operations: [],\n newValue: {},\n });\n }\n else {\n return {\n operation: formatDisplay(events.type),\n key: formatDisplay(events.key),\n oldValue: events.oldValue,\n newValue: events.newValue,\n };\n }\n}\nfunction formatMutationType(type) {\n switch (type) {\n case MutationType.direct:\n return 'mutation';\n case MutationType.patchFunction:\n return '$patch';\n case MutationType.patchObject:\n return '$patch';\n default:\n return 'unknown';\n }\n}\n\n// timeline can be paused when directly changing the state\nlet isTimelineActive = true;\nconst componentStateTypes = [];\nconst MUTATIONS_LAYER_ID = 'pinia:mutations';\nconst INSPECTOR_ID = 'pinia';\nconst { assign: assign$1 } = Object;\n/**\n * Gets the displayed name of a store in devtools\n *\n * @param id - id of the store\n * @returns a formatted string\n */\nconst getStoreType = (id) => '🍍 ' + id;\n/**\n * Add the pinia plugin without any store. Allows displaying a Pinia plugin tab\n * as soon as it is added to the application.\n *\n * @param app - Vue application\n * @param pinia - pinia instance\n */\nfunction registerPiniaDevtools(app, pinia) {\n setupDevtoolsPlugin({\n id: 'dev.esm.pinia',\n label: 'Pinia 🍍',\n logo: 'https://pinia.vuejs.org/logo.svg',\n packageName: 'pinia',\n homepage: 'https://pinia.vuejs.org',\n componentStateTypes,\n app,\n }, (api) => {\n if (typeof api.now !== 'function') {\n toastMessage('You seem to be using an outdated version of Vue Devtools. Are you still using the Beta release instead of the stable one? You can find the links at https://devtools.vuejs.org/guide/installation.html.');\n }\n api.addTimelineLayer({\n id: MUTATIONS_LAYER_ID,\n label: `Pinia 🍍`,\n color: 0xe5df88,\n });\n api.addInspector({\n id: INSPECTOR_ID,\n label: 'Pinia 🍍',\n icon: 'storage',\n treeFilterPlaceholder: 'Search stores',\n actions: [\n {\n icon: 'content_copy',\n action: () => {\n actionGlobalCopyState(pinia);\n },\n tooltip: 'Serialize and copy the state',\n },\n {\n icon: 'content_paste',\n action: async () => {\n await actionGlobalPasteState(pinia);\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n },\n tooltip: 'Replace the state with the content of your clipboard',\n },\n {\n icon: 'save',\n action: () => {\n actionGlobalSaveState(pinia);\n },\n tooltip: 'Save the state as a JSON file',\n },\n {\n icon: 'folder_open',\n action: async () => {\n await actionGlobalOpenStateFile(pinia);\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n },\n tooltip: 'Import the state from a JSON file',\n },\n ],\n nodeActions: [\n {\n icon: 'restore',\n tooltip: 'Reset the state (with \"$reset\")',\n action: (nodeId) => {\n const store = pinia._s.get(nodeId);\n if (!store) {\n toastMessage(`Cannot reset \"${nodeId}\" store because it wasn't found.`, 'warn');\n }\n else if (typeof store.$reset !== 'function') {\n toastMessage(`Cannot reset \"${nodeId}\" store because it doesn't have a \"$reset\" method implemented.`, 'warn');\n }\n else {\n store.$reset();\n toastMessage(`Store \"${nodeId}\" reset.`);\n }\n },\n },\n ],\n });\n api.on.inspectComponent((payload, ctx) => {\n const proxy = (payload.componentInstance &&\n payload.componentInstance.proxy);\n if (proxy && proxy._pStores) {\n const piniaStores = payload.componentInstance.proxy._pStores;\n Object.values(piniaStores).forEach((store) => {\n payload.instanceData.state.push({\n type: getStoreType(store.$id),\n key: 'state',\n editable: true,\n value: store._isOptionsAPI\n ? {\n _custom: {\n value: toRaw(store.$state),\n actions: [\n {\n icon: 'restore',\n tooltip: 'Reset the state of this store',\n action: () => store.$reset(),\n },\n ],\n },\n }\n : // NOTE: workaround to unwrap transferred refs\n Object.keys(store.$state).reduce((state, key) => {\n state[key] = store.$state[key];\n return state;\n }, {}),\n });\n if (store._getters && store._getters.length) {\n payload.instanceData.state.push({\n type: getStoreType(store.$id),\n key: 'getters',\n editable: false,\n value: store._getters.reduce((getters, key) => {\n try {\n getters[key] = store[key];\n }\n catch (error) {\n // @ts-expect-error: we just want to show it in devtools\n getters[key] = error;\n }\n return getters;\n }, {}),\n });\n }\n });\n }\n });\n api.on.getInspectorTree((payload) => {\n if (payload.app === app && payload.inspectorId === INSPECTOR_ID) {\n let stores = [pinia];\n stores = stores.concat(Array.from(pinia._s.values()));\n payload.rootNodes = (payload.filter\n ? stores.filter((store) => '$id' in store\n ? store.$id\n .toLowerCase()\n .includes(payload.filter.toLowerCase())\n : PINIA_ROOT_LABEL.toLowerCase().includes(payload.filter.toLowerCase()))\n : stores).map(formatStoreForInspectorTree);\n }\n });\n api.on.getInspectorState((payload) => {\n if (payload.app === app && payload.inspectorId === INSPECTOR_ID) {\n const inspectedStore = payload.nodeId === PINIA_ROOT_ID\n ? pinia\n : pinia._s.get(payload.nodeId);\n if (!inspectedStore) {\n // this could be the selected store restored for a different project\n // so it's better not to say anything here\n return;\n }\n if (inspectedStore) {\n payload.state = formatStoreForInspectorState(inspectedStore);\n }\n }\n });\n api.on.editInspectorState((payload, ctx) => {\n if (payload.app === app && payload.inspectorId === INSPECTOR_ID) {\n const inspectedStore = payload.nodeId === PINIA_ROOT_ID\n ? pinia\n : pinia._s.get(payload.nodeId);\n if (!inspectedStore) {\n return toastMessage(`store \"${payload.nodeId}\" not found`, 'error');\n }\n const { path } = payload;\n if (!isPinia(inspectedStore)) {\n // access only the state\n if (path.length !== 1 ||\n !inspectedStore._customProperties.has(path[0]) ||\n path[0] in inspectedStore.$state) {\n path.unshift('$state');\n }\n }\n else {\n // Root access, we can omit the `.value` because the devtools API does it for us\n path.unshift('state');\n }\n isTimelineActive = false;\n payload.set(inspectedStore, path, payload.state.value);\n isTimelineActive = true;\n }\n });\n api.on.editComponentState((payload) => {\n if (payload.type.startsWith('🍍')) {\n const storeId = payload.type.replace(/^🍍\\s*/, '');\n const store = pinia._s.get(storeId);\n if (!store) {\n return toastMessage(`store \"${storeId}\" not found`, 'error');\n }\n const { path } = payload;\n if (path[0] !== 'state') {\n return toastMessage(`Invalid path for store \"${storeId}\":\\n${path}\\nOnly state can be modified.`);\n }\n // rewrite the first entry to be able to directly set the state as\n // well as any other path\n path[0] = '$state';\n isTimelineActive = false;\n payload.set(store, path, payload.state.value);\n isTimelineActive = true;\n }\n });\n });\n}\nfunction addStoreToDevtools(app, store) {\n if (!componentStateTypes.includes(getStoreType(store.$id))) {\n componentStateTypes.push(getStoreType(store.$id));\n }\n setupDevtoolsPlugin({\n id: 'dev.esm.pinia',\n label: 'Pinia 🍍',\n logo: 'https://pinia.vuejs.org/logo.svg',\n packageName: 'pinia',\n homepage: 'https://pinia.vuejs.org',\n componentStateTypes,\n app,\n settings: {\n logStoreChanges: {\n label: 'Notify about new/deleted stores',\n type: 'boolean',\n defaultValue: true,\n },\n // useEmojis: {\n // label: 'Use emojis in messages ⚡️',\n // type: 'boolean',\n // defaultValue: true,\n // },\n },\n }, (api) => {\n // gracefully handle errors\n const now = typeof api.now === 'function' ? api.now.bind(api) : Date.now;\n store.$onAction(({ after, onError, name, args }) => {\n const groupId = runningActionId++;\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n title: '🛫 ' + name,\n subtitle: 'start',\n data: {\n store: formatDisplay(store.$id),\n action: formatDisplay(name),\n args,\n },\n groupId,\n },\n });\n after((result) => {\n activeAction = undefined;\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n title: '🛬 ' + name,\n subtitle: 'end',\n data: {\n store: formatDisplay(store.$id),\n action: formatDisplay(name),\n args,\n result,\n },\n groupId,\n },\n });\n });\n onError((error) => {\n activeAction = undefined;\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n logType: 'error',\n title: '💥 ' + name,\n subtitle: 'end',\n data: {\n store: formatDisplay(store.$id),\n action: formatDisplay(name),\n args,\n error,\n },\n groupId,\n },\n });\n });\n }, true);\n store._customProperties.forEach((name) => {\n watch(() => unref(store[name]), (newValue, oldValue) => {\n api.notifyComponentUpdate();\n api.sendInspectorState(INSPECTOR_ID);\n if (isTimelineActive) {\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n title: 'Change',\n subtitle: name,\n data: {\n newValue,\n oldValue,\n },\n groupId: activeAction,\n },\n });\n }\n }, { deep: true });\n });\n store.$subscribe(({ events, type }, state) => {\n api.notifyComponentUpdate();\n api.sendInspectorState(INSPECTOR_ID);\n if (!isTimelineActive)\n return;\n // rootStore.state[store.id] = state\n const eventData = {\n time: now(),\n title: formatMutationType(type),\n data: assign$1({ store: formatDisplay(store.$id) }, formatEventData(events)),\n groupId: activeAction,\n };\n if (type === MutationType.patchFunction) {\n eventData.subtitle = '⤵️';\n }\n else if (type === MutationType.patchObject) {\n eventData.subtitle = '🧩';\n }\n else if (events && !Array.isArray(events)) {\n eventData.subtitle = events.type;\n }\n if (events) {\n eventData.data['rawEvent(s)'] = {\n _custom: {\n display: 'DebuggerEvent',\n type: 'object',\n tooltip: 'raw DebuggerEvent[]',\n value: events,\n },\n };\n }\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: eventData,\n });\n }, { detached: true, flush: 'sync' });\n const hotUpdate = store._hotUpdate;\n store._hotUpdate = markRaw((newStore) => {\n hotUpdate(newStore);\n api.addTimelineEvent({\n layerId: MUTATIONS_LAYER_ID,\n event: {\n time: now(),\n title: '🔥 ' + store.$id,\n subtitle: 'HMR update',\n data: {\n store: formatDisplay(store.$id),\n info: formatDisplay(`HMR update`),\n },\n },\n });\n // update the devtools too\n api.notifyComponentUpdate();\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n });\n const { $dispose } = store;\n store.$dispose = () => {\n $dispose();\n api.notifyComponentUpdate();\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n api.getSettings().logStoreChanges &&\n toastMessage(`Disposed \"${store.$id}\" store 🗑`);\n };\n // trigger an update so it can display new registered stores\n api.notifyComponentUpdate();\n api.sendInspectorTree(INSPECTOR_ID);\n api.sendInspectorState(INSPECTOR_ID);\n api.getSettings().logStoreChanges &&\n toastMessage(`\"${store.$id}\" store installed 🆕`);\n });\n}\nlet runningActionId = 0;\nlet activeAction;\n/**\n * Patches a store to enable action grouping in devtools by wrapping the store with a Proxy that is passed as the\n * context of all actions, allowing us to set `runningAction` on each access and effectively associating any state\n * mutation to the action.\n *\n * @param store - store to patch\n * @param actionNames - list of actionst to patch\n */\nfunction patchActionForGrouping(store, actionNames, wrapWithProxy) {\n // original actions of the store as they are given by pinia. We are going to override them\n const actions = actionNames.reduce((storeActions, actionName) => {\n // use toRaw to avoid tracking #541\n storeActions[actionName] = toRaw(store)[actionName];\n return storeActions;\n }, {});\n for (const actionName in actions) {\n store[actionName] = function () {\n // the running action id is incremented in a before action hook\n const _actionId = runningActionId;\n const trackedStore = wrapWithProxy\n ? new Proxy(store, {\n get(...args) {\n activeAction = _actionId;\n return Reflect.get(...args);\n },\n set(...args) {\n activeAction = _actionId;\n return Reflect.set(...args);\n },\n })\n : store;\n // For Setup Stores we need https://github.com/tc39/proposal-async-context\n activeAction = _actionId;\n const retValue = actions[actionName].apply(trackedStore, arguments);\n // this is safer as async actions in Setup Stores would associate mutations done outside of the action\n activeAction = undefined;\n return retValue;\n };\n }\n}\n/**\n * pinia.use(devtoolsPlugin)\n */\nfunction devtoolsPlugin({ app, store, options }) {\n // HMR module\n if (store.$id.startsWith('__hot:')) {\n return;\n }\n // detect option api vs setup api\n store._isOptionsAPI = !!options.state;\n patchActionForGrouping(store, Object.keys(options.actions), store._isOptionsAPI);\n // Upgrade the HMR to also update the new actions\n const originalHotUpdate = store._hotUpdate;\n toRaw(store)._hotUpdate = function (newStore) {\n originalHotUpdate.apply(this, arguments);\n patchActionForGrouping(store, Object.keys(newStore._hmrPayload.actions), !!store._isOptionsAPI);\n };\n addStoreToDevtools(app, \n // FIXME: is there a way to allow the assignment from Store<Id, S, G, A> to StoreGeneric?\n store);\n}\n\n/**\n * Creates a Pinia instance to be used by the application\n */\nfunction createPinia() {\n const scope = effectScope(true);\n // NOTE: here we could check the window object for a state and directly set it\n // if there is anything like it with Vue 3 SSR\n const state = scope.run(() => ref({}));\n let _p = [];\n // plugins added before calling app.use(pinia)\n let toBeInstalled = [];\n const pinia = markRaw({\n install(app) {\n // this allows calling useStore() outside of a component setup after\n // installing pinia's plugin\n setActivePinia(pinia);\n if (!isVue2) {\n pinia._a = app;\n app.provide(piniaSymbol, pinia);\n app.config.globalProperties.$pinia = pinia;\n /* istanbul ignore else */\n if (USE_DEVTOOLS) {\n registerPiniaDevtools(app, pinia);\n }\n toBeInstalled.forEach((plugin) => _p.push(plugin));\n toBeInstalled = [];\n }\n },\n use(plugin) {\n if (!this._a && !isVue2) {\n toBeInstalled.push(plugin);\n }\n else {\n _p.push(plugin);\n }\n return this;\n },\n _p,\n // it's actually undefined here\n // @ts-expect-error\n _a: null,\n _e: scope,\n _s: new Map(),\n state,\n });\n // pinia devtools rely on dev only features so they cannot be forced unless\n // the dev build of Vue is used. Avoid old browsers like IE11.\n if (USE_DEVTOOLS && typeof Proxy !== 'undefined') {\n pinia.use(devtoolsPlugin);\n }\n return pinia;\n}\n\n/**\n * Checks if a function is a `StoreDefinition`.\n *\n * @param fn - object to test\n * @returns true if `fn` is a StoreDefinition\n */\nconst isUseStore = (fn) => {\n return typeof fn === 'function' && typeof fn.$id === 'string';\n};\n/**\n * Mutates in place `newState` with `oldState` to _hot update_ it. It will\n * remove any key not existing in `newState` and recursively merge plain\n * objects.\n *\n * @param newState - new state object to be patched\n * @param oldState - old state that should be used to patch newState\n * @returns - newState\n */\nfunction patchObject(newState, oldState) {\n // no need to go through symbols because they cannot be serialized anyway\n for (const key in oldState) {\n const subPatch = oldState[key];\n // skip the whole sub tree\n if (!(key in newState)) {\n continue;\n }\n const targetValue = newState[key];\n if (isPlainObject(targetValue) &&\n isPlainObject(subPatch) &&\n !isRef(subPatch) &&\n !isReactive(subPatch)) {\n newState[key] = patchObject(targetValue, subPatch);\n }\n else {\n // objects are either a bit more complex (e.g. refs) or primitives, so we\n // just set the whole thing\n if (isVue2) {\n set(newState, key, subPatch);\n }\n else {\n newState[key] = subPatch;\n }\n }\n }\n return newState;\n}\n/**\n * Creates an _accept_ function to pass to `import.meta.hot` in Vite applications.\n *\n * @example\n * ```js\n * const useUser = defineStore(...)\n * if (import.meta.hot) {\n * import.meta.hot.accept(acceptHMRUpdate(useUser, import.meta.hot))\n * }\n * ```\n *\n * @param initialUseStore - return of the defineStore to hot update\n * @param hot - `import.meta.hot`\n */\nfunction acceptHMRUpdate(initialUseStore, hot) {\n // strip as much as possible from iife.prod\n if (!(process.env.NODE_ENV !== 'production')) {\n return () => { };\n }\n return (newModule) => {\n const pinia = hot.data.pinia || initialUseStore._pinia;\n if (!pinia) {\n // this store is still not used\n return;\n }\n // preserve the pinia instance across loads\n hot.data.pinia = pinia;\n // console.log('got data', newStore)\n for (const exportName in newModule) {\n const useStore = newModule[exportName];\n // console.log('checking for', exportName)\n if (isUseStore(useStore) && pinia._s.has(useStore.$id)) {\n // console.log('Accepting update for', useStore.$id)\n const id = useStore.$id;\n if (id !== initialUseStore.$id) {\n console.warn(`The id of the store changed from \"${initialUseStore.$id}\" to \"${id}\". Reloading.`);\n // return import.meta.hot.invalidate()\n return hot.invalidate();\n }\n const existingStore = pinia._s.get(id);\n if (!existingStore) {\n console.log(`[Pinia]: skipping hmr because store doesn't exist yet`);\n return;\n }\n useStore(pinia, existingStore);\n }\n }\n };\n}\n\nconst noop = () => { };\nfunction addSubscription(subscriptions, callback, detached, onCleanup = noop) {\n subscriptions.push(callback);\n const removeSubscription = () => {\n const idx = subscriptions.indexOf(callback);\n if (idx > -1) {\n subscriptions.splice(idx, 1);\n onCleanup();\n }\n };\n if (!detached && getCurrentScope()) {\n onScopeDispose(removeSubscription);\n }\n return removeSubscription;\n}\nfunction triggerSubscriptions(subscriptions, ...args) {\n subscriptions.slice().forEach((callback) => {\n callback(...args);\n });\n}\n\nconst fallbackRunWithContext = (fn) => fn();\nfunction mergeReactiveObjects(target, patchToApply) {\n // Handle Map instances\n if (target instanceof Map && patchToApply instanceof Map) {\n patchToApply.forEach((value, key) => target.set(key, value));\n }\n // Handle Set instances\n if (target instanceof Set && patchToApply instanceof Set) {\n patchToApply.forEach(target.add, target);\n }\n // no need to go through symbols because they cannot be serialized anyway\n for (const key in patchToApply) {\n if (!patchToApply.hasOwnProperty(key))\n continue;\n const subPatch = patchToApply[key];\n const targetValue = target[key];\n if (isPlainObject(targetValue) &&\n isPlainObject(subPatch) &&\n target.hasOwnProperty(key) &&\n !isRef(subPatch) &&\n !isReactive(subPatch)) {\n // NOTE: here I wanted to warn about inconsistent types but it's not possible because in setup stores one might\n // start the value of a property as a certain type e.g. a Map, and then for some reason, during SSR, change that\n // to `undefined`. When trying to hydrate, we want to override the Map with `undefined`.\n target[key] = mergeReactiveObjects(targetValue, subPatch);\n }\n else {\n // @ts-expect-error: subPatch is a valid value\n target[key] = subPatch;\n }\n }\n return target;\n}\nconst skipHydrateSymbol = (process.env.NODE_ENV !== 'production')\n ? Symbol('pinia:skipHydration')\n : /* istanbul ignore next */ Symbol();\nconst skipHydrateMap = /*#__PURE__*/ new WeakMap();\n/**\n * Tells Pinia to skip the hydration process of a given object. This is useful in setup stores (only) when you return a\n * stateful object in the store but it isn't really state. e.g. returning a router instance in a setup store.\n *\n * @param obj - target object\n * @returns obj\n */\nfunction skipHydrate(obj) {\n return isVue2\n ? // in @vue/composition-api, the refs are sealed so defineProperty doesn't work...\n /* istanbul ignore next */ skipHydrateMap.set(obj, 1) && obj\n : Object.defineProperty(obj, skipHydrateSymbol, {});\n}\n/**\n * Returns whether a value should be hydrated\n *\n * @param obj - target variable\n * @returns true if `obj` should be hydrated\n */\nfunction shouldHydrate(obj) {\n return isVue2\n ? /* istanbul ignore next */ !skipHydrateMap.has(obj)\n : !isPlainObject(obj) || !obj.hasOwnProperty(skipHydrateSymbol);\n}\nconst { assign } = Object;\nfunction isComputed(o) {\n return !!(isRef(o) && o.effect);\n}\nfunction createOptionsStore(id, options, pinia, hot) {\n const { state, actions, getters } = options;\n const initialState = pinia.state.value[id];\n let store;\n function setup() {\n if (!initialState && (!(process.env.NODE_ENV !== 'production') || !hot)) {\n /* istanbul ignore if */\n if (isVue2) {\n set(pinia.state.value, id, state ? state() : {});\n }\n else {\n pinia.state.value[id] = state ? state() : {};\n }\n }\n // avoid creating a state in pinia.state.value\n const localState = (process.env.NODE_ENV !== 'production') && hot\n ? // use ref() to unwrap refs inside state TODO: check if this is still necessary\n toRefs(ref(state ? state() : {}).value)\n : toRefs(pinia.state.value[id]);\n return assign(localState, actions, Object.keys(getters || {}).reduce((computedGetters, name) => {\n if ((process.env.NODE_ENV !== 'production') && name in localState) {\n console.warn(`[🍍]: A getter cannot have the same name as another state property. Rename one of them. Found with \"${name}\" in store \"${id}\".`);\n }\n computedGetters[name] = markRaw(computed(() => {\n setActivePinia(pinia);\n // it was created just before\n const store = pinia._s.get(id);\n // allow cross using stores\n /* istanbul ignore next */\n if (isVue2 && !store._r)\n return;\n // @ts-expect-error\n // return getters![name].call(context, context)\n // TODO: avoid reading the getter while assigning with a global variable\n return getters[name].call(store, store);\n }));\n return computedGetters;\n }, {}));\n }\n store = createSetupStore(id, setup, options, pinia, hot, true);\n return store;\n}\nfunction createSetupStore($id, setup, options = {}, pinia, hot, isOptionsStore) {\n let scope;\n const optionsForPlugin = assign({ actions: {} }, options);\n /* istanbul ignore if */\n if ((process.env.NODE_ENV !== 'production') && !pinia._e.active) {\n throw new Error('Pinia destroyed');\n }\n // watcher options for $subscribe\n const $subscribeOptions = {\n deep: true,\n // flush: 'post',\n };\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production') && !isVue2) {\n $subscribeOptions.onTrigger = (event) => {\n /* istanbul ignore else */\n if (isListening) {\n debuggerEvents = event;\n // avoid triggering this while the store is being built and the state is being set in pinia\n }\n else if (isListening == false && !store._hotUpdating) {\n // let patch send all the events together later\n /* istanbul ignore else */\n if (Array.isArray(debuggerEvents)) {\n debuggerEvents.push(event);\n }\n else {\n console.error('🍍 debuggerEvents should be an array. This is most likely an internal Pinia bug.');\n }\n }\n };\n }\n // internal state\n let isListening; // set to true at the end\n let isSyncListening; // set to true at the end\n let subscriptions = [];\n let actionSubscriptions = [];\n let debuggerEvents;\n const initialState = pinia.state.value[$id];\n // avoid setting the state for option stores if it is set\n // by the setup\n if (!isOptionsStore && !initialState && (!(process.env.NODE_ENV !== 'production') || !hot)) {\n /* istanbul ignore if */\n if (isVue2) {\n set(pinia.state.value, $id, {});\n }\n else {\n pinia.state.value[$id] = {};\n }\n }\n const hotState = ref({});\n // avoid triggering too many listeners\n // https://github.com/vuejs/pinia/issues/1129\n let activeListener;\n function $patch(partialStateOrMutator) {\n let subscriptionMutation;\n isListening = isSyncListening = false;\n // reset the debugger events since patches are sync\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n debuggerEvents = [];\n }\n if (typeof partialStateOrMutator === 'function') {\n partialStateOrMutator(pinia.state.value[$id]);\n subscriptionMutation = {\n type: MutationType.patchFunction,\n storeId: $id,\n events: debuggerEvents,\n };\n }\n else {\n mergeReactiveObjects(pinia.state.value[$id], partialStateOrMutator);\n subscriptionMutation = {\n type: MutationType.patchObject,\n payload: partialStateOrMutator,\n storeId: $id,\n events: debuggerEvents,\n };\n }\n const myListenerId = (activeListener = Symbol());\n nextTick().then(() => {\n if (activeListener === myListenerId) {\n isListening = true;\n }\n });\n isSyncListening = true;\n // because we paused the watcher, we need to manually call the subscriptions\n triggerSubscriptions(subscriptions, subscriptionMutation, pinia.state.value[$id]);\n }\n const $reset = isOptionsStore\n ? function $reset() {\n const { state } = options;\n const newState = state ? state() : {};\n // we use a patch to group all changes into one single subscription\n this.$patch(($state) => {\n assign($state, newState);\n });\n }\n : /* istanbul ignore next */\n (process.env.NODE_ENV !== 'production')\n ? () => {\n throw new Error(`🍍: Store \"${$id}\" is built using the setup syntax and does not implement $reset().`);\n }\n : noop;\n function $dispose() {\n scope.stop();\n subscriptions = [];\n actionSubscriptions = [];\n pinia._s.delete($id);\n }\n /**\n * Wraps an action to handle subscriptions.\n *\n * @param name - name of the action\n * @param action - action to wrap\n * @returns a wrapped action to handle subscriptions\n */\n function wrapAction(name, action) {\n return function () {\n setActivePinia(pinia);\n const args = Array.from(arguments);\n const afterCallbackList = [];\n const onErrorCallbackList = [];\n function after(callback) {\n afterCallbackList.push(callback);\n }\n function onError(callback) {\n onErrorCallbackList.push(callback);\n }\n // @ts-expect-error\n triggerSubscriptions(actionSubscriptions, {\n args,\n name,\n store,\n after,\n onError,\n });\n let ret;\n try {\n ret = action.apply(this && this.$id === $id ? this : store, args);\n // handle sync errors\n }\n catch (error) {\n triggerSubscriptions(onErrorCallbackList, error);\n throw error;\n }\n if (ret instanceof Promise) {\n return ret\n .then((value) => {\n triggerSubscriptions(afterCallbackList, value);\n return value;\n })\n .catch((error) => {\n triggerSubscriptions(onErrorCallbackList, error);\n return Promise.reject(error);\n });\n }\n // trigger after callbacks\n triggerSubscriptions(afterCallbackList, ret);\n return ret;\n };\n }\n const _hmrPayload = /*#__PURE__*/ markRaw({\n actions: {},\n getters: {},\n state: [],\n hotState,\n });\n const partialStore = {\n _p: pinia,\n // _s: scope,\n $id,\n $onAction: addSubscription.bind(null, actionSubscriptions),\n $patch,\n $reset,\n $subscribe(callback, options = {}) {\n const removeSubscription = addSubscription(subscriptions, callback, options.detached, () => stopWatcher());\n const stopWatcher = scope.run(() => watch(() => pinia.state.value[$id], (state) => {\n if (options.flush === 'sync' ? isSyncListening : isListening) {\n callback({\n storeId: $id,\n type: MutationType.direct,\n events: debuggerEvents,\n }, state);\n }\n }, assign({}, $subscribeOptions, options)));\n return removeSubscription;\n },\n $dispose,\n };\n /* istanbul ignore if */\n if (isVue2) {\n // start as non ready\n partialStore._r = false;\n }\n const store = reactive((process.env.NODE_ENV !== 'production') || USE_DEVTOOLS\n ? assign({\n _hmrPayload,\n _customProperties: markRaw(new Set()), // devtools custom properties\n }, partialStore\n // must be added later\n // setupStore\n )\n : partialStore);\n // store the partial store now so the setup of stores can instantiate each other before they are finished without\n // creating infinite loops.\n pinia._s.set($id, store);\n const runWithContext = (pinia._a && pinia._a.runWithContext) || fallbackRunWithContext;\n // TODO: idea create skipSerialize that marks properties as non serializable and they are skipped\n const setupStore = runWithContext(() => pinia._e.run(() => (scope = effectScope()).run(setup)));\n // overwrite existing actions to support $onAction\n for (const key in setupStore) {\n const prop = setupStore[key];\n if ((isRef(prop) && !isComputed(prop)) || isReactive(prop)) {\n // mark it as a piece of state to be serialized\n if ((process.env.NODE_ENV !== 'production') && hot) {\n set(hotState.value, key, toRef(setupStore, key));\n // createOptionStore directly sets the state in pinia.state.value so we\n // can just skip that\n }\n else if (!isOptionsStore) {\n // in setup stores we must hydrate the state and sync pinia state tree with the refs the user just created\n if (initialState && shouldHydrate(prop)) {\n if (isRef(prop)) {\n prop.value = initialState[key];\n }\n else {\n // probably a reactive object, lets recursively assign\n // @ts-expect-error: prop is unknown\n mergeReactiveObjects(prop, initialState[key]);\n }\n }\n // transfer the ref to the pinia state to keep everything in sync\n /* istanbul ignore if */\n if (isVue2) {\n set(pinia.state.value[$id], key, prop);\n }\n else {\n pinia.state.value[$id][key] = prop;\n }\n }\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n _hmrPayload.state.push(key);\n }\n // action\n }\n else if (typeof prop === 'function') {\n // @ts-expect-error: we are overriding the function we avoid wrapping if\n const actionValue = (process.env.NODE_ENV !== 'production') && hot ? prop : wrapAction(key, prop);\n // this a hot module replacement store because the hotUpdate method needs\n // to do it with the right context\n /* istanbul ignore if */\n if (isVue2) {\n set(setupStore, key, actionValue);\n }\n else {\n // @ts-expect-error\n setupStore[key] = actionValue;\n }\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n _hmrPayload.actions[key] = prop;\n }\n // list actions so they can be used in plugins\n // @ts-expect-error\n optionsForPlugin.actions[key] = prop;\n }\n else if ((process.env.NODE_ENV !== 'production')) {\n // add getters for devtools\n if (isComputed(prop)) {\n _hmrPayload.getters[key] = isOptionsStore\n ? // @ts-expect-error\n options.getters[key]\n : prop;\n if (IS_CLIENT) {\n const getters = setupStore._getters ||\n // @ts-expect-error: same\n (setupStore._getters = markRaw([]));\n getters.push(key);\n }\n }\n }\n }\n // add the state, getters, and action properties\n /* istanbul ignore if */\n if (isVue2) {\n Object.keys(setupStore).forEach((key) => {\n set(store, key, setupStore[key]);\n });\n }\n else {\n assign(store, setupStore);\n // allows retrieving reactive objects with `storeToRefs()`. Must be called after assigning to the reactive object.\n // Make `storeToRefs()` work with `reactive()` #799\n assign(toRaw(store), setupStore);\n }\n // use this instead of a computed with setter to be able to create it anywhere\n // without linking the computed lifespan to wherever the store is first\n // created.\n Object.defineProperty(store, '$state', {\n get: () => ((process.env.NODE_ENV !== 'production') && hot ? hotState.value : pinia.state.value[$id]),\n set: (state) => {\n /* istanbul ignore if */\n if ((process.env.NODE_ENV !== 'production') && hot) {\n throw new Error('cannot set hotState');\n }\n $patch(($state) => {\n assign($state, state);\n });\n },\n });\n // add the hotUpdate before plugins to allow them to override it\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n store._hotUpdate = markRaw((newStore) => {\n store._hotUpdating = true;\n newStore._hmrPayload.state.forEach((stateKey) => {\n if (stateKey in store.$state) {\n const newStateTarget = newStore.$state[stateKey];\n const oldStateSource = store.$state[stateKey];\n if (typeof newStateTarget === 'object' &&\n isPlainObject(newStateTarget) &&\n isPlainObject(oldStateSource)) {\n patchObject(newStateTarget, oldStateSource);\n }\n else {\n // transfer the ref\n newStore.$state[stateKey] = oldStateSource;\n }\n }\n // patch direct access properties to allow store.stateProperty to work as\n // store.$state.stateProperty\n set(store, stateKey, toRef(newStore.$state, stateKey));\n });\n // remove deleted state properties\n Object.keys(store.$state).forEach((stateKey) => {\n if (!(stateKey in newStore.$state)) {\n del(store, stateKey);\n }\n });\n // avoid devtools logging this as a mutation\n isListening = false;\n isSyncListening = false;\n pinia.state.value[$id] = toRef(newStore._hmrPayload, 'hotState');\n isSyncListening = true;\n nextTick().then(() => {\n isListening = true;\n });\n for (const actionName in newStore._hmrPayload.actions) {\n const action = newStore[actionName];\n set(store, actionName, wrapAction(actionName, action));\n }\n // TODO: does this work in both setup and option store?\n for (const getterName in newStore._hmrPayload.getters) {\n const getter = newStore._hmrPayload.getters[getterName];\n const getterValue = isOptionsStore\n ? // special handling of options api\n computed(() => {\n setActivePinia(pinia);\n return getter.call(store, store);\n })\n : getter;\n set(store, getterName, getterValue);\n }\n // remove deleted getters\n Object.keys(store._hmrPayload.getters).forEach((key) => {\n if (!(key in newStore._hmrPayload.getters)) {\n del(store, key);\n }\n });\n // remove old actions\n Object.keys(store._hmrPayload.actions).forEach((key) => {\n if (!(key in newStore._hmrPayload.actions)) {\n del(store, key);\n }\n });\n // update the values used in devtools and to allow deleting new properties later on\n store._hmrPayload = newStore._hmrPayload;\n store._getters = newStore._getters;\n store._hotUpdating = false;\n });\n }\n if (USE_DEVTOOLS) {\n const nonEnumerable = {\n writable: true,\n configurable: true,\n // avoid warning on devtools trying to display this property\n enumerable: false,\n };\n ['_p', '_hmrPayload', '_getters', '_customProperties'].forEach((p) => {\n Object.defineProperty(store, p, assign({ value: store[p] }, nonEnumerable));\n });\n }\n /* istanbul ignore if */\n if (isVue2) {\n // mark the store as ready before plugins\n store._r = true;\n }\n // apply all plugins\n pinia._p.forEach((extender) => {\n /* istanbul ignore else */\n if (USE_DEVTOOLS) {\n const extensions = scope.run(() => extender({\n store,\n app: pinia._a,\n pinia,\n options: optionsForPlugin,\n }));\n Object.keys(extensions || {}).forEach((key) => store._customProperties.add(key));\n assign(store, extensions);\n }\n else {\n assign(store, scope.run(() => extender({\n store,\n app: pinia._a,\n pinia,\n options: optionsForPlugin,\n })));\n }\n });\n if ((process.env.NODE_ENV !== 'production') &&\n store.$state &&\n typeof store.$state === 'object' &&\n typeof store.$state.constructor === 'function' &&\n !store.$state.constructor.toString().includes('[native code]')) {\n console.warn(`[🍍]: The \"state\" must be a plain object. It cannot be\\n` +\n `\\tstate: () => new MyClass()\\n` +\n `Found in store \"${store.$id}\".`);\n }\n // only apply hydrate to option stores with an initial state in pinia\n if (initialState &&\n isOptionsStore &&\n options.hydrate) {\n options.hydrate(store.$state, initialState);\n }\n isListening = true;\n isSyncListening = true;\n return store;\n}\nfunction defineStore(\n// TODO: add proper types from above\nidOrOptions, setup, setupOptions) {\n let id;\n let options;\n const isSetupStore = typeof setup === 'function';\n if (typeof idOrOptions === 'string') {\n id = idOrOptions;\n // the option store setup will contain the actual options in this case\n options = isSetupStore ? setupOptions : setup;\n }\n else {\n options = idOrOptions;\n id = idOrOptions.id;\n if ((process.env.NODE_ENV !== 'production') && typeof id !== 'string') {\n throw new Error(`[🍍]: \"defineStore()\" must be passed a store id as its first argument.`);\n }\n }\n function useStore(pinia, hot) {\n const hasContext = hasInjectionContext();\n pinia =\n // in test mode, ignore the argument provided as we can always retrieve a\n // pinia instance with getActivePinia()\n ((process.env.NODE_ENV === 'test') && activePinia && activePinia._testing ? null : pinia) ||\n (hasContext ? inject(piniaSymbol, null) : null);\n if (pinia)\n setActivePinia(pinia);\n if ((process.env.NODE_ENV !== 'production') && !activePinia) {\n throw new Error(`[🍍]: \"getActivePinia()\" was called but there was no active Pinia. Are you trying to use a store before calling \"app.use(pinia)\"?\\n` +\n `See https://pinia.vuejs.org/core-concepts/outside-component-usage.html for help.\\n` +\n `This will fail in production.`);\n }\n pinia = activePinia;\n if (!pinia._s.has(id)) {\n // creating the store registers it in `pinia._s`\n if (isSetupStore) {\n createSetupStore(id, setup, options, pinia);\n }\n else {\n createOptionsStore(id, options, pinia);\n }\n /* istanbul ignore else */\n if ((process.env.NODE_ENV !== 'production')) {\n // @ts-expect-error: not the right inferred type\n useStore._pinia = pinia;\n }\n }\n const store = pinia._s.get(id);\n if ((process.env.NODE_ENV !== 'production') && hot) {\n const hotId = '__hot:' + id;\n const newStore = isSetupStore\n ? createSetupStore(hotId, setup, options, pinia, true)\n : createOptionsStore(hotId, assign({}, options), pinia, true);\n hot._hotUpdate(newStore);\n // cleanup the state properties and the store from the cache\n delete pinia.state.value[hotId];\n pinia._s.delete(hotId);\n }\n if ((process.env.NODE_ENV !== 'production') && IS_CLIENT) {\n const currentInstance = getCurrentInstance();\n // save stores in instances to access them devtools\n if (currentInstance &&\n currentInstance.proxy &&\n // avoid adding stores that are just built for hot module replacement\n !hot) {\n const vm = currentInstance.proxy;\n const cache = '_pStores' in vm ? vm._pStores : (vm._pStores = {});\n cache[id] = store;\n }\n }\n // StoreGeneric cannot be casted towards Store\n return store;\n }\n useStore.$id = id;\n return useStore;\n}\n\nlet mapStoreSuffix = 'Store';\n/**\n * Changes the suffix added by `mapStores()`. Can be set to an empty string.\n * Defaults to `\"Store\"`. Make sure to extend the MapStoresCustomization\n * interface if you are using TypeScript.\n *\n * @param suffix - new suffix\n */\nfunction setMapStoreSuffix(suffix // could be 'Store' but that would be annoying for JS\n) {\n mapStoreSuffix = suffix;\n}\n/**\n * Allows using stores without the composition API (`setup()`) by generating an\n * object to be spread in the `computed` field of a component. It accepts a list\n * of store definitions.\n *\n * @example\n * ```js\n * export default {\n * computed: {\n * // other computed properties\n * ...mapStores(useUserStore, useCartStore)\n * },\n *\n * created() {\n * this.userStore // store with id \"user\"\n * this.cartStore // store with id \"cart\"\n * }\n * }\n * ```\n *\n * @param stores - list of stores to map to an object\n */\nfunction mapStores(...stores) {\n if ((process.env.NODE_ENV !== 'production') && Array.isArray(stores[0])) {\n console.warn(`[🍍]: Directly pass all stores to \"mapStores()\" without putting them in an array:\\n` +\n `Replace\\n` +\n `\\tmapStores([useAuthStore, useCartStore])\\n` +\n `with\\n` +\n `\\tmapStores(useAuthStore, useCartStore)\\n` +\n `This will fail in production if not fixed.`);\n stores = stores[0];\n }\n return stores.reduce((reduced, useStore) => {\n // @ts-expect-error: $id is added by defineStore\n reduced[useStore.$id + mapStoreSuffix] = function () {\n return useStore(this.$pinia);\n };\n return reduced;\n }, {});\n}\n/**\n * Allows using state and getters from one store without using the composition\n * API (`setup()`) by generating an object to be spread in the `computed` field\n * of a component.\n *\n * @param useStore - store to map from\n * @param keysOrMapper - array or object\n */\nfunction mapState(useStore, keysOrMapper) {\n return Array.isArray(keysOrMapper)\n ? keysOrMapper.reduce((reduced, key) => {\n reduced[key] = function () {\n return useStore(this.$pinia)[key];\n };\n return reduced;\n }, {})\n : Object.keys(keysOrMapper).reduce((reduced, key) => {\n // @ts-expect-error\n reduced[key] = function () {\n const store = useStore(this.$pinia);\n const storeKey = keysOrMapper[key];\n // for some reason TS is unable to infer the type of storeKey to be a\n // function\n return typeof storeKey === 'function'\n ? storeKey.call(this, store)\n : store[storeKey];\n };\n return reduced;\n }, {});\n}\n/**\n * Alias for `mapState()`. You should use `mapState()` instead.\n * @deprecated use `mapState()` instead.\n */\nconst mapGetters = mapState;\n/**\n * Allows directly using actions from your store without using the composition\n * API (`setup()`) by generating an object to be spread in the `methods` field\n * of a component.\n *\n * @param useStore - store to map from\n * @param keysOrMapper - array or object\n */\nfunction mapActions(useStore, keysOrMapper) {\n return Array.isArray(keysOrMapper)\n ? keysOrMapper.reduce((reduced, key) => {\n // @ts-expect-error\n reduced[key] = function (...args) {\n return useStore(this.$pinia)[key](...args);\n };\n return reduced;\n }, {})\n : Object.keys(keysOrMapper).reduce((reduced, key) => {\n // @ts-expect-error\n reduced[key] = function (...args) {\n return useStore(this.$pinia)[keysOrMapper[key]](...args);\n };\n return reduced;\n }, {});\n}\n/**\n * Allows using state and getters from one store without using the composition\n * API (`setup()`) by generating an object to be spread in the `computed` field\n * of a component.\n *\n * @param useStore - store to map from\n * @param keysOrMapper - array or object\n */\nfunction mapWritableState(useStore, keysOrMapper) {\n return Array.isArray(keysOrMapper)\n ? keysOrMapper.reduce((reduced, key) => {\n // @ts-ignore\n reduced[key] = {\n get() {\n return useStore(this.$pinia)[key];\n },\n set(value) {\n // it's easier to type it here as any\n return (useStore(this.$pinia)[key] = value);\n },\n };\n return reduced;\n }, {})\n : Object.keys(keysOrMapper).reduce((reduced, key) => {\n // @ts-ignore\n reduced[key] = {\n get() {\n return useStore(this.$pinia)[keysOrMapper[key]];\n },\n set(value) {\n // it's easier to type it here as any\n return (useStore(this.$pinia)[keysOrMapper[key]] = value);\n },\n };\n return reduced;\n }, {});\n}\n\n/**\n * Creates an object of references with all the state, getters, and plugin-added\n * state properties of the store. Similar to `toRefs()` but specifically\n * designed for Pinia stores so methods and non reactive properties are\n * completely ignored.\n *\n * @param store - store to extract the refs from\n */\nfunction storeToRefs(store) {\n // See https://github.com/vuejs/pinia/issues/852\n // It's easier to just use toRefs() even if it includes more stuff\n if (isVue2) {\n // @ts-expect-error: toRefs include methods and others\n return toRefs(store);\n }\n else {\n store = toRaw(store);\n const refs = {};\n for (const key in store) {\n const value = store[key];\n if (isRef(value) || isReactive(value)) {\n // @ts-expect-error: the key is state or getter\n refs[key] =\n // ---\n toRef(store, key);\n }\n }\n return refs;\n }\n}\n\n/**\n * Vue 2 Plugin that must be installed for pinia to work. Note **you don't need\n * this plugin if you are using Nuxt.js**. Use the `buildModule` instead:\n * https://pinia.vuejs.org/ssr/nuxt.html.\n *\n * @example\n * ```js\n * import Vue from 'vue'\n * import { PiniaVuePlugin, createPinia } from 'pinia'\n *\n * Vue.use(PiniaVuePlugin)\n * const pinia = createPinia()\n *\n * new Vue({\n * el: '#app',\n * // ...\n * pinia,\n * })\n * ```\n *\n * @param _Vue - `Vue` imported from 'vue'.\n */\nconst PiniaVuePlugin = function (_Vue) {\n // Equivalent of\n // app.config.globalProperties.$pinia = pinia\n _Vue.mixin({\n beforeCreate() {\n const options = this.$options;\n if (options.pinia) {\n const pinia = options.pinia;\n // HACK: taken from provide(): https://github.com/vuejs/composition-api/blob/main/src/apis/inject.ts#L31\n /* istanbul ignore else */\n if (!this._provided) {\n const provideCache = {};\n Object.defineProperty(this, '_provided', {\n get: () => provideCache,\n set: (v) => Object.assign(provideCache, v),\n });\n }\n this._provided[piniaSymbol] = pinia;\n // propagate the pinia instance in an SSR friendly way\n // avoid adding it to nuxt twice\n /* istanbul ignore else */\n if (!this.$pinia) {\n this.$pinia = pinia;\n }\n pinia._a = this;\n if (IS_CLIENT) {\n // this allows calling useStore() outside of a component setup after\n // installing pinia's plugin\n setActivePinia(pinia);\n }\n if (USE_DEVTOOLS) {\n registerPiniaDevtools(pinia._a, pinia);\n }\n }\n else if (!this.$pinia && options.parent && options.parent.$pinia) {\n this.$pinia = options.parent.$pinia;\n }\n },\n destroyed() {\n delete this._pStores;\n },\n });\n};\n\nexport { MutationType, PiniaVuePlugin, acceptHMRUpdate, createPinia, defineStore, getActivePinia, mapActions, mapGetters, mapState, mapStores, mapWritableState, setActivePinia, setMapStoreSuffix, skipHydrate, storeToRefs };\n","const token = '%[a-f0-9]{2}';\nconst singleMatcher = new RegExp('(' + token + ')|([^%]+?)', 'gi');\nconst multiMatcher = new RegExp('(' + token + ')+', 'gi');\n\nfunction decodeComponents(components, split) {\n\ttry {\n\t\t// Try to decode the entire string first\n\t\treturn [decodeURIComponent(components.join(''))];\n\t} catch {\n\t\t// Do nothing\n\t}\n\n\tif (components.length === 1) {\n\t\treturn components;\n\t}\n\n\tsplit = split || 1;\n\n\t// Split the array in 2 parts\n\tconst left = components.slice(0, split);\n\tconst right = components.slice(split);\n\n\treturn Array.prototype.concat.call([], decodeComponents(left), decodeComponents(right));\n}\n\nfunction decode(input) {\n\ttry {\n\t\treturn decodeURIComponent(input);\n\t} catch {\n\t\tlet tokens = input.match(singleMatcher) || [];\n\n\t\tfor (let i = 1; i < tokens.length; i++) {\n\t\t\tinput = decodeComponents(tokens, i).join('');\n\n\t\t\ttokens = input.match(singleMatcher) || [];\n\t\t}\n\n\t\treturn input;\n\t}\n}\n\nfunction customDecodeURIComponent(input) {\n\t// Keep track of all the replacements and prefill the map with the `BOM`\n\tconst replaceMap = {\n\t\t'%FE%FF': '\\uFFFD\\uFFFD',\n\t\t'%FF%FE': '\\uFFFD\\uFFFD',\n\t};\n\n\tlet match = multiMatcher.exec(input);\n\twhile (match) {\n\t\ttry {\n\t\t\t// Decode as big chunks as possible\n\t\t\treplaceMap[match[0]] = decodeURIComponent(match[0]);\n\t\t} catch {\n\t\t\tconst result = decode(match[0]);\n\n\t\t\tif (result !== match[0]) {\n\t\t\t\treplaceMap[match[0]] = result;\n\t\t\t}\n\t\t}\n\n\t\tmatch = multiMatcher.exec(input);\n\t}\n\n\t// Add `%C2` at the end of the map to make sure it does not replace the combinator before everything else\n\treplaceMap['%C2'] = '\\uFFFD';\n\n\tconst entries = Object.keys(replaceMap);\n\n\tfor (const key of entries) {\n\t\t// Replace all decoded components\n\t\tinput = input.replace(new RegExp(key, 'g'), replaceMap[key]);\n\t}\n\n\treturn input;\n}\n\nexport default function decodeUriComponent(encodedURI) {\n\tif (typeof encodedURI !== 'string') {\n\t\tthrow new TypeError('Expected `encodedURI` to be of type `string`, got `' + typeof encodedURI + '`');\n\t}\n\n\ttry {\n\t\t// Try the built in decoder first\n\t\treturn decodeURIComponent(encodedURI);\n\t} catch {\n\t\t// Fallback to a more advanced decoder\n\t\treturn customDecodeURIComponent(encodedURI);\n\t}\n}\n","export default function splitOnFirst(string, separator) {\n\tif (!(typeof string === 'string' && typeof separator === 'string')) {\n\t\tthrow new TypeError('Expected the arguments to be of type `string`');\n\t}\n\n\tif (string === '' || separator === '') {\n\t\treturn [];\n\t}\n\n\tconst separatorIndex = string.indexOf(separator);\n\n\tif (separatorIndex === -1) {\n\t\treturn [];\n\t}\n\n\treturn [\n\t\tstring.slice(0, separatorIndex),\n\t\tstring.slice(separatorIndex + separator.length)\n\t];\n}\n","export function includeKeys(object, predicate) {\n\tconst result = {};\n\n\tif (Array.isArray(predicate)) {\n\t\tfor (const key of predicate) {\n\t\t\tconst descriptor = Object.getOwnPropertyDescriptor(object, key);\n\t\t\tif (descriptor?.enumerable) {\n\t\t\t\tObject.defineProperty(result, key, descriptor);\n\t\t\t}\n\t\t}\n\t} else {\n\t\t// `Reflect.ownKeys()` is required to retrieve symbol properties\n\t\tfor (const key of Reflect.ownKeys(object)) {\n\t\t\tconst descriptor = Object.getOwnPropertyDescriptor(object, key);\n\t\t\tif (descriptor.enumerable) {\n\t\t\t\tconst value = object[key];\n\t\t\t\tif (predicate(key, value, object)) {\n\t\t\t\t\tObject.defineProperty(result, key, descriptor);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn result;\n}\n\nexport function excludeKeys(object, predicate) {\n\tif (Array.isArray(predicate)) {\n\t\tconst set = new Set(predicate);\n\t\treturn includeKeys(object, key => !set.has(key));\n\t}\n\n\treturn includeKeys(object, (key, value, object) => !predicate(key, value, object));\n}\n","import decodeComponent from 'decode-uri-component';\nimport splitOnFirst from 'split-on-first';\nimport {includeKeys} from 'filter-obj';\n\nconst isNullOrUndefined = value => value === null || value === undefined;\n\n// eslint-disable-next-line unicorn/prefer-code-point\nconst strictUriEncode = string => encodeURIComponent(string).replace(/[!'()*]/g, x => `%${x.charCodeAt(0).toString(16).toUpperCase()}`);\n\nconst encodeFragmentIdentifier = Symbol('encodeFragmentIdentifier');\n\nfunction encoderForArrayFormat(options) {\n\tswitch (options.arrayFormat) {\n\t\tcase 'index': {\n\t\t\treturn key => (result, value) => {\n\t\t\t\tconst index = result.length;\n\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\tif (value === null) {\n\t\t\t\t\treturn [\n\t\t\t\t\t\t...result, [encode(key, options), '[', index, ']'].join(''),\n\t\t\t\t\t];\n\t\t\t\t}\n\n\t\t\t\treturn [\n\t\t\t\t\t...result,\n\t\t\t\t\t[encode(key, options), '[', encode(index, options), ']=', encode(value, options)].join(''),\n\t\t\t\t];\n\t\t\t};\n\t\t}\n\n\t\tcase 'bracket': {\n\t\t\treturn key => (result, value) => {\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\tif (value === null) {\n\t\t\t\t\treturn [\n\t\t\t\t\t\t...result,\n\t\t\t\t\t\t[encode(key, options), '[]'].join(''),\n\t\t\t\t\t];\n\t\t\t\t}\n\n\t\t\t\treturn [\n\t\t\t\t\t...result,\n\t\t\t\t\t[encode(key, options), '[]=', encode(value, options)].join(''),\n\t\t\t\t];\n\t\t\t};\n\t\t}\n\n\t\tcase 'colon-list-separator': {\n\t\t\treturn key => (result, value) => {\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\tif (value === null) {\n\t\t\t\t\treturn [\n\t\t\t\t\t\t...result,\n\t\t\t\t\t\t[encode(key, options), ':list='].join(''),\n\t\t\t\t\t];\n\t\t\t\t}\n\n\t\t\t\treturn [\n\t\t\t\t\t...result,\n\t\t\t\t\t[encode(key, options), ':list=', encode(value, options)].join(''),\n\t\t\t\t];\n\t\t\t};\n\t\t}\n\n\t\tcase 'comma':\n\t\tcase 'separator':\n\t\tcase 'bracket-separator': {\n\t\t\tconst keyValueSep = options.arrayFormat === 'bracket-separator'\n\t\t\t\t? '[]='\n\t\t\t\t: '=';\n\n\t\t\treturn key => (result, value) => {\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\t// Translate null to an empty string so that it doesn't serialize as 'null'\n\t\t\t\tvalue = value === null ? '' : value;\n\n\t\t\t\tif (result.length === 0) {\n\t\t\t\t\treturn [[encode(key, options), keyValueSep, encode(value, options)].join('')];\n\t\t\t\t}\n\n\t\t\t\treturn [[result, encode(value, options)].join(options.arrayFormatSeparator)];\n\t\t\t};\n\t\t}\n\n\t\tdefault: {\n\t\t\treturn key => (result, value) => {\n\t\t\t\tif (\n\t\t\t\t\tvalue === undefined\n\t\t\t\t\t|| (options.skipNull && value === null)\n\t\t\t\t\t|| (options.skipEmptyString && value === '')\n\t\t\t\t) {\n\t\t\t\t\treturn result;\n\t\t\t\t}\n\n\t\t\t\tif (value === null) {\n\t\t\t\t\treturn [\n\t\t\t\t\t\t...result,\n\t\t\t\t\t\tencode(key, options),\n\t\t\t\t\t];\n\t\t\t\t}\n\n\t\t\t\treturn [\n\t\t\t\t\t...result,\n\t\t\t\t\t[encode(key, options), '=', encode(value, options)].join(''),\n\t\t\t\t];\n\t\t\t};\n\t\t}\n\t}\n}\n\nfunction parserForArrayFormat(options) {\n\tlet result;\n\n\tswitch (options.arrayFormat) {\n\t\tcase 'index': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tresult = /\\[(\\d*)]$/.exec(key);\n\n\t\t\t\tkey = key.replace(/\\[\\d*]$/, '');\n\n\t\t\t\tif (!result) {\n\t\t\t\t\taccumulator[key] = value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = {};\n\t\t\t\t}\n\n\t\t\t\taccumulator[key][result[1]] = value;\n\t\t\t};\n\t\t}\n\n\t\tcase 'bracket': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tresult = /(\\[])$/.exec(key);\n\t\t\t\tkey = key.replace(/\\[]$/, '');\n\n\t\t\t\tif (!result) {\n\t\t\t\t\taccumulator[key] = value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = [value];\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\taccumulator[key] = [...accumulator[key], value];\n\t\t\t};\n\t\t}\n\n\t\tcase 'colon-list-separator': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tresult = /(:list)$/.exec(key);\n\t\t\t\tkey = key.replace(/:list$/, '');\n\n\t\t\t\tif (!result) {\n\t\t\t\t\taccumulator[key] = value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = [value];\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\taccumulator[key] = [...accumulator[key], value];\n\t\t\t};\n\t\t}\n\n\t\tcase 'comma':\n\t\tcase 'separator': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tconst isArray = typeof value === 'string' && value.includes(options.arrayFormatSeparator);\n\t\t\t\tconst isEncodedArray = (typeof value === 'string' && !isArray && decode(value, options).includes(options.arrayFormatSeparator));\n\t\t\t\tvalue = isEncodedArray ? decode(value, options) : value;\n\t\t\t\tconst newValue = isArray || isEncodedArray ? value.split(options.arrayFormatSeparator).map(item => decode(item, options)) : (value === null ? value : decode(value, options));\n\t\t\t\taccumulator[key] = newValue;\n\t\t\t};\n\t\t}\n\n\t\tcase 'bracket-separator': {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tconst isArray = /(\\[])$/.test(key);\n\t\t\t\tkey = key.replace(/\\[]$/, '');\n\n\t\t\t\tif (!isArray) {\n\t\t\t\t\taccumulator[key] = value ? decode(value, options) : value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tconst arrayValue = value === null\n\t\t\t\t\t? []\n\t\t\t\t\t: value.split(options.arrayFormatSeparator).map(item => decode(item, options));\n\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = arrayValue;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\taccumulator[key] = [...accumulator[key], ...arrayValue];\n\t\t\t};\n\t\t}\n\n\t\tdefault: {\n\t\t\treturn (key, value, accumulator) => {\n\t\t\t\tif (accumulator[key] === undefined) {\n\t\t\t\t\taccumulator[key] = value;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\taccumulator[key] = [...[accumulator[key]].flat(), value];\n\t\t\t};\n\t\t}\n\t}\n}\n\nfunction validateArrayFormatSeparator(value) {\n\tif (typeof value !== 'string' || value.length !== 1) {\n\t\tthrow new TypeError('arrayFormatSeparator must be single character string');\n\t}\n}\n\nfunction encode(value, options) {\n\tif (options.encode) {\n\t\treturn options.strict ? strictUriEncode(value) : encodeURIComponent(value);\n\t}\n\n\treturn value;\n}\n\nfunction decode(value, options) {\n\tif (options.decode) {\n\t\treturn decodeComponent(value);\n\t}\n\n\treturn value;\n}\n\nfunction keysSorter(input) {\n\tif (Array.isArray(input)) {\n\t\treturn input.sort();\n\t}\n\n\tif (typeof input === 'object') {\n\t\treturn keysSorter(Object.keys(input))\n\t\t\t.sort((a, b) => Number(a) - Number(b))\n\t\t\t.map(key => input[key]);\n\t}\n\n\treturn input;\n}\n\nfunction removeHash(input) {\n\tconst hashStart = input.indexOf('#');\n\tif (hashStart !== -1) {\n\t\tinput = input.slice(0, hashStart);\n\t}\n\n\treturn input;\n}\n\nfunction getHash(url) {\n\tlet hash = '';\n\tconst hashStart = url.indexOf('#');\n\tif (hashStart !== -1) {\n\t\thash = url.slice(hashStart);\n\t}\n\n\treturn hash;\n}\n\nfunction parseValue(value, options) {\n\tif (options.parseNumbers && !Number.isNaN(Number(value)) && (typeof value === 'string' && value.trim() !== '')) {\n\t\tvalue = Number(value);\n\t} else if (options.parseBooleans && value !== null && (value.toLowerCase() === 'true' || value.toLowerCase() === 'false')) {\n\t\tvalue = value.toLowerCase() === 'true';\n\t}\n\n\treturn value;\n}\n\nexport function extract(input) {\n\tinput = removeHash(input);\n\tconst queryStart = input.indexOf('?');\n\tif (queryStart === -1) {\n\t\treturn '';\n\t}\n\n\treturn input.slice(queryStart + 1);\n}\n\nexport function parse(query, options) {\n\toptions = {\n\t\tdecode: true,\n\t\tsort: true,\n\t\tarrayFormat: 'none',\n\t\tarrayFormatSeparator: ',',\n\t\tparseNumbers: false,\n\t\tparseBooleans: false,\n\t\t...options,\n\t};\n\n\tvalidateArrayFormatSeparator(options.arrayFormatSeparator);\n\n\tconst formatter = parserForArrayFormat(options);\n\n\t// Create an object with no prototype\n\tconst returnValue = Object.create(null);\n\n\tif (typeof query !== 'string') {\n\t\treturn returnValue;\n\t}\n\n\tquery = query.trim().replace(/^[?#&]/, '');\n\n\tif (!query) {\n\t\treturn returnValue;\n\t}\n\n\tfor (const parameter of query.split('&')) {\n\t\tif (parameter === '') {\n\t\t\tcontinue;\n\t\t}\n\n\t\tconst parameter_ = options.decode ? parameter.replace(/\\+/g, ' ') : parameter;\n\n\t\tlet [key, value] = splitOnFirst(parameter_, '=');\n\n\t\tif (key === undefined) {\n\t\t\tkey = parameter_;\n\t\t}\n\n\t\t// Missing `=` should be `null`:\n\t\t// http://w3.org/TR/2012/WD-url-20120524/#collect-url-parameters\n\t\tvalue = value === undefined ? null : (['comma', 'separator', 'bracket-separator'].includes(options.arrayFormat) ? value : decode(value, options));\n\t\tformatter(decode(key, options), value, returnValue);\n\t}\n\n\tfor (const [key, value] of Object.entries(returnValue)) {\n\t\tif (typeof value === 'object' && value !== null) {\n\t\t\tfor (const [key2, value2] of Object.entries(value)) {\n\t\t\t\tvalue[key2] = parseValue(value2, options);\n\t\t\t}\n\t\t} else {\n\t\t\treturnValue[key] = parseValue(value, options);\n\t\t}\n\t}\n\n\tif (options.sort === false) {\n\t\treturn returnValue;\n\t}\n\n\t// TODO: Remove the use of `reduce`.\n\t// eslint-disable-next-line unicorn/no-array-reduce\n\treturn (options.sort === true ? Object.keys(returnValue).sort() : Object.keys(returnValue).sort(options.sort)).reduce((result, key) => {\n\t\tconst value = returnValue[key];\n\t\tresult[key] = Boolean(value) && typeof value === 'object' && !Array.isArray(value) ? keysSorter(value) : value;\n\t\treturn result;\n\t}, Object.create(null));\n}\n\nexport function stringify(object, options) {\n\tif (!object) {\n\t\treturn '';\n\t}\n\n\toptions = {encode: true,\n\t\tstrict: true,\n\t\tarrayFormat: 'none',\n\t\tarrayFormatSeparator: ',', ...options};\n\n\tvalidateArrayFormatSeparator(options.arrayFormatSeparator);\n\n\tconst shouldFilter = key => (\n\t\t(options.skipNull && isNullOrUndefined(object[key]))\n\t\t|| (options.skipEmptyString && object[key] === '')\n\t);\n\n\tconst formatter = encoderForArrayFormat(options);\n\n\tconst objectCopy = {};\n\n\tfor (const [key, value] of Object.entries(object)) {\n\t\tif (!shouldFilter(key)) {\n\t\t\tobjectCopy[key] = value;\n\t\t}\n\t}\n\n\tconst keys = Object.keys(objectCopy);\n\n\tif (options.sort !== false) {\n\t\tkeys.sort(options.sort);\n\t}\n\n\treturn keys.map(key => {\n\t\tconst value = object[key];\n\n\t\tif (value === undefined) {\n\t\t\treturn '';\n\t\t}\n\n\t\tif (value === null) {\n\t\t\treturn encode(key, options);\n\t\t}\n\n\t\tif (Array.isArray(value)) {\n\t\t\tif (value.length === 0 && options.arrayFormat === 'bracket-separator') {\n\t\t\t\treturn encode(key, options) + '[]';\n\t\t\t}\n\n\t\t\treturn value\n\t\t\t\t.reduce(formatter(key), [])\n\t\t\t\t.join('&');\n\t\t}\n\n\t\treturn encode(key, options) + '=' + encode(value, options);\n\t}).filter(x => x.length > 0).join('&');\n}\n\nexport function parseUrl(url, options) {\n\toptions = {\n\t\tdecode: true,\n\t\t...options,\n\t};\n\n\tlet [url_, hash] = splitOnFirst(url, '#');\n\n\tif (url_ === undefined) {\n\t\turl_ = url;\n\t}\n\n\treturn {\n\t\turl: url_?.split('?')?.[0] ?? '',\n\t\tquery: parse(extract(url), options),\n\t\t...(options && options.parseFragmentIdentifier && hash ? {fragmentIdentifier: decode(hash, options)} : {}),\n\t};\n}\n\nexport function stringifyUrl(object, options) {\n\toptions = {\n\t\tencode: true,\n\t\tstrict: true,\n\t\t[encodeFragmentIdentifier]: true,\n\t\t...options,\n\t};\n\n\tconst url = removeHash(object.url).split('?')[0] || '';\n\tconst queryFromUrl = extract(object.url);\n\n\tconst query = {\n\t\t...parse(queryFromUrl, {sort: false}),\n\t\t...object.query,\n\t};\n\n\tlet queryString = stringify(query, options);\n\tif (queryString) {\n\t\tqueryString = `?${queryString}`;\n\t}\n\n\tlet hash = getHash(object.url);\n\tif (object.fragmentIdentifier) {\n\t\tconst urlObjectForFragmentEncode = new URL(url);\n\t\turlObjectForFragmentEncode.hash = object.fragmentIdentifier;\n\t\thash = options[encodeFragmentIdentifier] ? urlObjectForFragmentEncode.hash : `#${object.fragmentIdentifier}`;\n\t}\n\n\treturn `${url}${queryString}${hash}`;\n}\n\nexport function pick(input, filter, options) {\n\toptions = {\n\t\tparseFragmentIdentifier: true,\n\t\t[encodeFragmentIdentifier]: false,\n\t\t...options,\n\t};\n\n\tconst {url, query, fragmentIdentifier} = parseUrl(input, options);\n\n\treturn stringifyUrl({\n\t\turl,\n\t\tquery: includeKeys(query, filter),\n\t\tfragmentIdentifier,\n\t}, options);\n}\n\nexport function exclude(input, filter, options) {\n\tconst exclusionFilter = Array.isArray(filter) ? key => !filter.includes(key) : (key, value) => !filter(key, value);\n\n\treturn pick(input, exclusionFilter, options);\n}\n","import * as queryString from './base.js';\n\nexport default queryString;\n","/*!\n * vue-router v3.6.5\n * (c) 2022 Evan You\n * @license MIT\n */\n/* */\n\nfunction assert (condition, message) {\n if (!condition) {\n throw new Error((\"[vue-router] \" + message))\n }\n}\n\nfunction warn (condition, message) {\n if (!condition) {\n typeof console !== 'undefined' && console.warn((\"[vue-router] \" + message));\n }\n}\n\nfunction extend (a, b) {\n for (var key in b) {\n a[key] = b[key];\n }\n return a\n}\n\n/* */\n\nvar encodeReserveRE = /[!'()*]/g;\nvar encodeReserveReplacer = function (c) { return '%' + c.charCodeAt(0).toString(16); };\nvar commaRE = /%2C/g;\n\n// fixed encodeURIComponent which is more conformant to RFC3986:\n// - escapes [!'()*]\n// - preserve commas\nvar encode = function (str) { return encodeURIComponent(str)\n .replace(encodeReserveRE, encodeReserveReplacer)\n .replace(commaRE, ','); };\n\nfunction decode (str) {\n try {\n return decodeURIComponent(str)\n } catch (err) {\n if (process.env.NODE_ENV !== 'production') {\n warn(false, (\"Error decoding \\\"\" + str + \"\\\". Leaving it intact.\"));\n }\n }\n return str\n}\n\nfunction resolveQuery (\n query,\n extraQuery,\n _parseQuery\n) {\n if ( extraQuery === void 0 ) extraQuery = {};\n\n var parse = _parseQuery || parseQuery;\n var parsedQuery;\n try {\n parsedQuery = parse(query || '');\n } catch (e) {\n process.env.NODE_ENV !== 'production' && warn(false, e.message);\n parsedQuery = {};\n }\n for (var key in extraQuery) {\n var value = extraQuery[key];\n parsedQuery[key] = Array.isArray(value)\n ? value.map(castQueryParamValue)\n : castQueryParamValue(value);\n }\n return parsedQuery\n}\n\nvar castQueryParamValue = function (value) { return (value == null || typeof value === 'object' ? value : String(value)); };\n\nfunction parseQuery (query) {\n var res = {};\n\n query = query.trim().replace(/^(\\?|#|&)/, '');\n\n if (!query) {\n return res\n }\n\n query.split('&').forEach(function (param) {\n var parts = param.replace(/\\+/g, ' ').split('=');\n var key = decode(parts.shift());\n var val = parts.length > 0 ? decode(parts.join('=')) : null;\n\n if (res[key] === undefined) {\n res[key] = val;\n } else if (Array.isArray(res[key])) {\n res[key].push(val);\n } else {\n res[key] = [res[key], val];\n }\n });\n\n return res\n}\n\nfunction stringifyQuery (obj) {\n var res = obj\n ? Object.keys(obj)\n .map(function (key) {\n var val = obj[key];\n\n if (val === undefined) {\n return ''\n }\n\n if (val === null) {\n return encode(key)\n }\n\n if (Array.isArray(val)) {\n var result = [];\n val.forEach(function (val2) {\n if (val2 === undefined) {\n return\n }\n if (val2 === null) {\n result.push(encode(key));\n } else {\n result.push(encode(key) + '=' + encode(val2));\n }\n });\n return result.join('&')\n }\n\n return encode(key) + '=' + encode(val)\n })\n .filter(function (x) { return x.length > 0; })\n .join('&')\n : null;\n return res ? (\"?\" + res) : ''\n}\n\n/* */\n\nvar trailingSlashRE = /\\/?$/;\n\nfunction createRoute (\n record,\n location,\n redirectedFrom,\n router\n) {\n var stringifyQuery = router && router.options.stringifyQuery;\n\n var query = location.query || {};\n try {\n query = clone(query);\n } catch (e) {}\n\n var route = {\n name: location.name || (record && record.name),\n meta: (record && record.meta) || {},\n path: location.path || '/',\n hash: location.hash || '',\n query: query,\n params: location.params || {},\n fullPath: getFullPath(location, stringifyQuery),\n matched: record ? formatMatch(record) : []\n };\n if (redirectedFrom) {\n route.redirectedFrom = getFullPath(redirectedFrom, stringifyQuery);\n }\n return Object.freeze(route)\n}\n\nfunction clone (value) {\n if (Array.isArray(value)) {\n return value.map(clone)\n } else if (value && typeof value === 'object') {\n var res = {};\n for (var key in value) {\n res[key] = clone(value[key]);\n }\n return res\n } else {\n return value\n }\n}\n\n// the starting route that represents the initial state\nvar START = createRoute(null, {\n path: '/'\n});\n\nfunction formatMatch (record) {\n var res = [];\n while (record) {\n res.unshift(record);\n record = record.parent;\n }\n return res\n}\n\nfunction getFullPath (\n ref,\n _stringifyQuery\n) {\n var path = ref.path;\n var query = ref.query; if ( query === void 0 ) query = {};\n var hash = ref.hash; if ( hash === void 0 ) hash = '';\n\n var stringify = _stringifyQuery || stringifyQuery;\n return (path || '/') + stringify(query) + hash\n}\n\nfunction isSameRoute (a, b, onlyPath) {\n if (b === START) {\n return a === b\n } else if (!b) {\n return false\n } else if (a.path && b.path) {\n return a.path.replace(trailingSlashRE, '') === b.path.replace(trailingSlashRE, '') && (onlyPath ||\n a.hash === b.hash &&\n isObjectEqual(a.query, b.query))\n } else if (a.name && b.name) {\n return (\n a.name === b.name &&\n (onlyPath || (\n a.hash === b.hash &&\n isObjectEqual(a.query, b.query) &&\n isObjectEqual(a.params, b.params))\n )\n )\n } else {\n return false\n }\n}\n\nfunction isObjectEqual (a, b) {\n if ( a === void 0 ) a = {};\n if ( b === void 0 ) b = {};\n\n // handle null value #1566\n if (!a || !b) { return a === b }\n var aKeys = Object.keys(a).sort();\n var bKeys = Object.keys(b).sort();\n if (aKeys.length !== bKeys.length) {\n return false\n }\n return aKeys.every(function (key, i) {\n var aVal = a[key];\n var bKey = bKeys[i];\n if (bKey !== key) { return false }\n var bVal = b[key];\n // query values can be null and undefined\n if (aVal == null || bVal == null) { return aVal === bVal }\n // check nested equality\n if (typeof aVal === 'object' && typeof bVal === 'object') {\n return isObjectEqual(aVal, bVal)\n }\n return String(aVal) === String(bVal)\n })\n}\n\nfunction isIncludedRoute (current, target) {\n return (\n current.path.replace(trailingSlashRE, '/').indexOf(\n target.path.replace(trailingSlashRE, '/')\n ) === 0 &&\n (!target.hash || current.hash === target.hash) &&\n queryIncludes(current.query, target.query)\n )\n}\n\nfunction queryIncludes (current, target) {\n for (var key in target) {\n if (!(key in current)) {\n return false\n }\n }\n return true\n}\n\nfunction handleRouteEntered (route) {\n for (var i = 0; i < route.matched.length; i++) {\n var record = route.matched[i];\n for (var name in record.instances) {\n var instance = record.instances[name];\n var cbs = record.enteredCbs[name];\n if (!instance || !cbs) { continue }\n delete record.enteredCbs[name];\n for (var i$1 = 0; i$1 < cbs.length; i$1++) {\n if (!instance._isBeingDestroyed) { cbs[i$1](instance); }\n }\n }\n }\n}\n\nvar View = {\n name: 'RouterView',\n functional: true,\n props: {\n name: {\n type: String,\n default: 'default'\n }\n },\n render: function render (_, ref) {\n var props = ref.props;\n var children = ref.children;\n var parent = ref.parent;\n var data = ref.data;\n\n // used by devtools to display a router-view badge\n data.routerView = true;\n\n // directly use parent context's createElement() function\n // so that components rendered by router-view can resolve named slots\n var h = parent.$createElement;\n var name = props.name;\n var route = parent.$route;\n var cache = parent._routerViewCache || (parent._routerViewCache = {});\n\n // determine current view depth, also check to see if the tree\n // has been toggled inactive but kept-alive.\n var depth = 0;\n var inactive = false;\n while (parent && parent._routerRoot !== parent) {\n var vnodeData = parent.$vnode ? parent.$vnode.data : {};\n if (vnodeData.routerView) {\n depth++;\n }\n if (vnodeData.keepAlive && parent._directInactive && parent._inactive) {\n inactive = true;\n }\n parent = parent.$parent;\n }\n data.routerViewDepth = depth;\n\n // render previous view if the tree is inactive and kept-alive\n if (inactive) {\n var cachedData = cache[name];\n var cachedComponent = cachedData && cachedData.component;\n if (cachedComponent) {\n // #2301\n // pass props\n if (cachedData.configProps) {\n fillPropsinData(cachedComponent, data, cachedData.route, cachedData.configProps);\n }\n return h(cachedComponent, data, children)\n } else {\n // render previous empty view\n return h()\n }\n }\n\n var matched = route.matched[depth];\n var component = matched && matched.components[name];\n\n // render empty node if no matched route or no config component\n if (!matched || !component) {\n cache[name] = null;\n return h()\n }\n\n // cache component\n cache[name] = { component: component };\n\n // attach instance registration hook\n // this will be called in the instance's injected lifecycle hooks\n data.registerRouteInstance = function (vm, val) {\n // val could be undefined for unregistration\n var current = matched.instances[name];\n if (\n (val && current !== vm) ||\n (!val && current === vm)\n ) {\n matched.instances[name] = val;\n }\n }\n\n // also register instance in prepatch hook\n // in case the same component instance is reused across different routes\n ;(data.hook || (data.hook = {})).prepatch = function (_, vnode) {\n matched.instances[name] = vnode.componentInstance;\n };\n\n // register instance in init hook\n // in case kept-alive component be actived when routes changed\n data.hook.init = function (vnode) {\n if (vnode.data.keepAlive &&\n vnode.componentInstance &&\n vnode.componentInstance !== matched.instances[name]\n ) {\n matched.instances[name] = vnode.componentInstance;\n }\n\n // if the route transition has already been confirmed then we weren't\n // able to call the cbs during confirmation as the component was not\n // registered yet, so we call it here.\n handleRouteEntered(route);\n };\n\n var configProps = matched.props && matched.props[name];\n // save route and configProps in cache\n if (configProps) {\n extend(cache[name], {\n route: route,\n configProps: configProps\n });\n fillPropsinData(component, data, route, configProps);\n }\n\n return h(component, data, children)\n }\n};\n\nfunction fillPropsinData (component, data, route, configProps) {\n // resolve props\n var propsToPass = data.props = resolveProps(route, configProps);\n if (propsToPass) {\n // clone to prevent mutation\n propsToPass = data.props = extend({}, propsToPass);\n // pass non-declared props as attrs\n var attrs = data.attrs = data.attrs || {};\n for (var key in propsToPass) {\n if (!component.props || !(key in component.props)) {\n attrs[key] = propsToPass[key];\n delete propsToPass[key];\n }\n }\n }\n}\n\nfunction resolveProps (route, config) {\n switch (typeof config) {\n case 'undefined':\n return\n case 'object':\n return config\n case 'function':\n return config(route)\n case 'boolean':\n return config ? route.params : undefined\n default:\n if (process.env.NODE_ENV !== 'production') {\n warn(\n false,\n \"props in \\\"\" + (route.path) + \"\\\" is a \" + (typeof config) + \", \" +\n \"expecting an object, function or boolean.\"\n );\n }\n }\n}\n\n/* */\n\nfunction resolvePath (\n relative,\n base,\n append\n) {\n var firstChar = relative.charAt(0);\n if (firstChar === '/') {\n return relative\n }\n\n if (firstChar === '?' || firstChar === '#') {\n return base + relative\n }\n\n var stack = base.split('/');\n\n // remove trailing segment if:\n // - not appending\n // - appending to trailing slash (last segment is empty)\n if (!append || !stack[stack.length - 1]) {\n stack.pop();\n }\n\n // resolve relative path\n var segments = relative.replace(/^\\//, '').split('/');\n for (var i = 0; i < segments.length; i++) {\n var segment = segments[i];\n if (segment === '..') {\n stack.pop();\n } else if (segment !== '.') {\n stack.push(segment);\n }\n }\n\n // ensure leading slash\n if (stack[0] !== '') {\n stack.unshift('');\n }\n\n return stack.join('/')\n}\n\nfunction parsePath (path) {\n var hash = '';\n var query = '';\n\n var hashIndex = path.indexOf('#');\n if (hashIndex >= 0) {\n hash = path.slice(hashIndex);\n path = path.slice(0, hashIndex);\n }\n\n var queryIndex = path.indexOf('?');\n if (queryIndex >= 0) {\n query = path.slice(queryIndex + 1);\n path = path.slice(0, queryIndex);\n }\n\n return {\n path: path,\n query: query,\n hash: hash\n }\n}\n\nfunction cleanPath (path) {\n return path.replace(/\\/(?:\\s*\\/)+/g, '/')\n}\n\nvar isarray = Array.isArray || function (arr) {\n return Object.prototype.toString.call(arr) == '[object Array]';\n};\n\n/**\n * Expose `pathToRegexp`.\n */\nvar pathToRegexp_1 = pathToRegexp;\nvar parse_1 = parse;\nvar compile_1 = compile;\nvar tokensToFunction_1 = tokensToFunction;\nvar tokensToRegExp_1 = tokensToRegExp;\n\n/**\n * The main path matching regexp utility.\n *\n * @type {RegExp}\n */\nvar PATH_REGEXP = new RegExp([\n // Match escaped characters that would otherwise appear in future matches.\n // This allows the user to escape special characters that won't transform.\n '(\\\\\\\\.)',\n // Match Express-style parameters and un-named parameters with a prefix\n // and optional suffixes. Matches appear as:\n //\n // \"/:test(\\\\d+)?\" => [\"/\", \"test\", \"\\d+\", undefined, \"?\", undefined]\n // \"/route(\\\\d+)\" => [undefined, undefined, undefined, \"\\d+\", undefined, undefined]\n // \"/*\" => [\"/\", undefined, undefined, undefined, undefined, \"*\"]\n '([\\\\/.])?(?:(?:\\\\:(\\\\w+)(?:\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))?|\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))([+*?])?|(\\\\*))'\n].join('|'), 'g');\n\n/**\n * Parse a string for the raw tokens.\n *\n * @param {string} str\n * @param {Object=} options\n * @return {!Array}\n */\nfunction parse (str, options) {\n var tokens = [];\n var key = 0;\n var index = 0;\n var path = '';\n var defaultDelimiter = options && options.delimiter || '/';\n var res;\n\n while ((res = PATH_REGEXP.exec(str)) != null) {\n var m = res[0];\n var escaped = res[1];\n var offset = res.index;\n path += str.slice(index, offset);\n index = offset + m.length;\n\n // Ignore already escaped sequences.\n if (escaped) {\n path += escaped[1];\n continue\n }\n\n var next = str[index];\n var prefix = res[2];\n var name = res[3];\n var capture = res[4];\n var group = res[5];\n var modifier = res[6];\n var asterisk = res[7];\n\n // Push the current path onto the tokens.\n if (path) {\n tokens.push(path);\n path = '';\n }\n\n var partial = prefix != null && next != null && next !== prefix;\n var repeat = modifier === '+' || modifier === '*';\n var optional = modifier === '?' || modifier === '*';\n var delimiter = res[2] || defaultDelimiter;\n var pattern = capture || group;\n\n tokens.push({\n name: name || key++,\n prefix: prefix || '',\n delimiter: delimiter,\n optional: optional,\n repeat: repeat,\n partial: partial,\n asterisk: !!asterisk,\n pattern: pattern ? escapeGroup(pattern) : (asterisk ? '.*' : '[^' + escapeString(delimiter) + ']+?')\n });\n }\n\n // Match any characters still remaining.\n if (index < str.length) {\n path += str.substr(index);\n }\n\n // If the path exists, push it onto the end.\n if (path) {\n tokens.push(path);\n }\n\n return tokens\n}\n\n/**\n * Compile a string to a template function for the path.\n *\n * @param {string} str\n * @param {Object=} options\n * @return {!function(Object=, Object=)}\n */\nfunction compile (str, options) {\n return tokensToFunction(parse(str, options), options)\n}\n\n/**\n * Prettier encoding of URI path segments.\n *\n * @param {string}\n * @return {string}\n */\nfunction encodeURIComponentPretty (str) {\n return encodeURI(str).replace(/[\\/?#]/g, function (c) {\n return '%' + c.charCodeAt(0).toString(16).toUpperCase()\n })\n}\n\n/**\n * Encode the asterisk parameter. Similar to `pretty`, but allows slashes.\n *\n * @param {string}\n * @return {string}\n */\nfunction encodeAsterisk (str) {\n return encodeURI(str).replace(/[?#]/g, function (c) {\n return '%' + c.charCodeAt(0).toString(16).toUpperCase()\n })\n}\n\n/**\n * Expose a method for transforming tokens into the path function.\n */\nfunction tokensToFunction (tokens, options) {\n // Compile all the tokens into regexps.\n var matches = new Array(tokens.length);\n\n // Compile all the patterns before compilation.\n for (var i = 0; i < tokens.length; i++) {\n if (typeof tokens[i] === 'object') {\n matches[i] = new RegExp('^(?:' + tokens[i].pattern + ')$', flags(options));\n }\n }\n\n return function (obj, opts) {\n var path = '';\n var data = obj || {};\n var options = opts || {};\n var encode = options.pretty ? encodeURIComponentPretty : encodeURIComponent;\n\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i];\n\n if (typeof token === 'string') {\n path += token;\n\n continue\n }\n\n var value = data[token.name];\n var segment;\n\n if (value == null) {\n if (token.optional) {\n // Prepend partial segment prefixes.\n if (token.partial) {\n path += token.prefix;\n }\n\n continue\n } else {\n throw new TypeError('Expected \"' + token.name + '\" to be defined')\n }\n }\n\n if (isarray(value)) {\n if (!token.repeat) {\n throw new TypeError('Expected \"' + token.name + '\" to not repeat, but received `' + JSON.stringify(value) + '`')\n }\n\n if (value.length === 0) {\n if (token.optional) {\n continue\n } else {\n throw new TypeError('Expected \"' + token.name + '\" to not be empty')\n }\n }\n\n for (var j = 0; j < value.length; j++) {\n segment = encode(value[j]);\n\n if (!matches[i].test(segment)) {\n throw new TypeError('Expected all \"' + token.name + '\" to match \"' + token.pattern + '\", but received `' + JSON.stringify(segment) + '`')\n }\n\n path += (j === 0 ? token.prefix : token.delimiter) + segment;\n }\n\n continue\n }\n\n segment = token.asterisk ? encodeAsterisk(value) : encode(value);\n\n if (!matches[i].test(segment)) {\n throw new TypeError('Expected \"' + token.name + '\" to match \"' + token.pattern + '\", but received \"' + segment + '\"')\n }\n\n path += token.prefix + segment;\n }\n\n return path\n }\n}\n\n/**\n * Escape a regular expression string.\n *\n * @param {string} str\n * @return {string}\n */\nfunction escapeString (str) {\n return str.replace(/([.+*?=^!:${}()[\\]|\\/\\\\])/g, '\\\\$1')\n}\n\n/**\n * Escape the capturing group by escaping special characters and meaning.\n *\n * @param {string} group\n * @return {string}\n */\nfunction escapeGroup (group) {\n return group.replace(/([=!:$\\/()])/g, '\\\\$1')\n}\n\n/**\n * Attach the keys as a property of the regexp.\n *\n * @param {!RegExp} re\n * @param {Array} keys\n * @return {!RegExp}\n */\nfunction attachKeys (re, keys) {\n re.keys = keys;\n return re\n}\n\n/**\n * Get the flags for a regexp from the options.\n *\n * @param {Object} options\n * @return {string}\n */\nfunction flags (options) {\n return options && options.sensitive ? '' : 'i'\n}\n\n/**\n * Pull out keys from a regexp.\n *\n * @param {!RegExp} path\n * @param {!Array} keys\n * @return {!RegExp}\n */\nfunction regexpToRegexp (path, keys) {\n // Use a negative lookahead to match only capturing groups.\n var groups = path.source.match(/\\((?!\\?)/g);\n\n if (groups) {\n for (var i = 0; i < groups.length; i++) {\n keys.push({\n name: i,\n prefix: null,\n delimiter: null,\n optional: false,\n repeat: false,\n partial: false,\n asterisk: false,\n pattern: null\n });\n }\n }\n\n return attachKeys(path, keys)\n}\n\n/**\n * Transform an array into a regexp.\n *\n * @param {!Array} path\n * @param {Array} keys\n * @param {!Object} options\n * @return {!RegExp}\n */\nfunction arrayToRegexp (path, keys, options) {\n var parts = [];\n\n for (var i = 0; i < path.length; i++) {\n parts.push(pathToRegexp(path[i], keys, options).source);\n }\n\n var regexp = new RegExp('(?:' + parts.join('|') + ')', flags(options));\n\n return attachKeys(regexp, keys)\n}\n\n/**\n * Create a path regexp from string input.\n *\n * @param {string} path\n * @param {!Array} keys\n * @param {!Object} options\n * @return {!RegExp}\n */\nfunction stringToRegexp (path, keys, options) {\n return tokensToRegExp(parse(path, options), keys, options)\n}\n\n/**\n * Expose a function for taking tokens and returning a RegExp.\n *\n * @param {!Array} tokens\n * @param {(Array|Object)=} keys\n * @param {Object=} options\n * @return {!RegExp}\n */\nfunction tokensToRegExp (tokens, keys, options) {\n if (!isarray(keys)) {\n options = /** @type {!Object} */ (keys || options);\n keys = [];\n }\n\n options = options || {};\n\n var strict = options.strict;\n var end = options.end !== false;\n var route = '';\n\n // Iterate over the tokens and create our regexp string.\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i];\n\n if (typeof token === 'string') {\n route += escapeString(token);\n } else {\n var prefix = escapeString(token.prefix);\n var capture = '(?:' + token.pattern + ')';\n\n keys.push(token);\n\n if (token.repeat) {\n capture += '(?:' + prefix + capture + ')*';\n }\n\n if (token.optional) {\n if (!token.partial) {\n capture = '(?:' + prefix + '(' + capture + '))?';\n } else {\n capture = prefix + '(' + capture + ')?';\n }\n } else {\n capture = prefix + '(' + capture + ')';\n }\n\n route += capture;\n }\n }\n\n var delimiter = escapeString(options.delimiter || '/');\n var endsWithDelimiter = route.slice(-delimiter.length) === delimiter;\n\n // In non-strict mode we allow a slash at the end of match. If the path to\n // match already ends with a slash, we remove it for consistency. The slash\n // is valid at the end of a path match, not in the middle. This is important\n // in non-ending mode, where \"/test/\" shouldn't match \"/test//route\".\n if (!strict) {\n route = (endsWithDelimiter ? route.slice(0, -delimiter.length) : route) + '(?:' + delimiter + '(?=$))?';\n }\n\n if (end) {\n route += '$';\n } else {\n // In non-ending mode, we need the capturing groups to match as much as\n // possible by using a positive lookahead to the end or next path segment.\n route += strict && endsWithDelimiter ? '' : '(?=' + delimiter + '|$)';\n }\n\n return attachKeys(new RegExp('^' + route, flags(options)), keys)\n}\n\n/**\n * Normalize the given path string, returning a regular expression.\n *\n * An empty array can be passed in for the keys, which will hold the\n * placeholder key descriptions. For example, using `/user/:id`, `keys` will\n * contain `[{ name: 'id', delimiter: '/', optional: false, repeat: false }]`.\n *\n * @param {(string|RegExp|Array)} path\n * @param {(Array|Object)=} keys\n * @param {Object=} options\n * @return {!RegExp}\n */\nfunction pathToRegexp (path, keys, options) {\n if (!isarray(keys)) {\n options = /** @type {!Object} */ (keys || options);\n keys = [];\n }\n\n options = options || {};\n\n if (path instanceof RegExp) {\n return regexpToRegexp(path, /** @type {!Array} */ (keys))\n }\n\n if (isarray(path)) {\n return arrayToRegexp(/** @type {!Array} */ (path), /** @type {!Array} */ (keys), options)\n }\n\n return stringToRegexp(/** @type {string} */ (path), /** @type {!Array} */ (keys), options)\n}\npathToRegexp_1.parse = parse_1;\npathToRegexp_1.compile = compile_1;\npathToRegexp_1.tokensToFunction = tokensToFunction_1;\npathToRegexp_1.tokensToRegExp = tokensToRegExp_1;\n\n/* */\n\n// $flow-disable-line\nvar regexpCompileCache = Object.create(null);\n\nfunction fillParams (\n path,\n params,\n routeMsg\n) {\n params = params || {};\n try {\n var filler =\n regexpCompileCache[path] ||\n (regexpCompileCache[path] = pathToRegexp_1.compile(path));\n\n // Fix #2505 resolving asterisk routes { name: 'not-found', params: { pathMatch: '/not-found' }}\n // and fix #3106 so that you can work with location descriptor object having params.pathMatch equal to empty string\n if (typeof params.pathMatch === 'string') { params[0] = params.pathMatch; }\n\n return filler(params, { pretty: true })\n } catch (e) {\n if (process.env.NODE_ENV !== 'production') {\n // Fix #3072 no warn if `pathMatch` is string\n warn(typeof params.pathMatch === 'string', (\"missing param for \" + routeMsg + \": \" + (e.message)));\n }\n return ''\n } finally {\n // delete the 0 if it was added\n delete params[0];\n }\n}\n\n/* */\n\nfunction normalizeLocation (\n raw,\n current,\n append,\n router\n) {\n var next = typeof raw === 'string' ? { path: raw } : raw;\n // named target\n if (next._normalized) {\n return next\n } else if (next.name) {\n next = extend({}, raw);\n var params = next.params;\n if (params && typeof params === 'object') {\n next.params = extend({}, params);\n }\n return next\n }\n\n // relative params\n if (!next.path && next.params && current) {\n next = extend({}, next);\n next._normalized = true;\n var params$1 = extend(extend({}, current.params), next.params);\n if (current.name) {\n next.name = current.name;\n next.params = params$1;\n } else if (current.matched.length) {\n var rawPath = current.matched[current.matched.length - 1].path;\n next.path = fillParams(rawPath, params$1, (\"path \" + (current.path)));\n } else if (process.env.NODE_ENV !== 'production') {\n warn(false, \"relative params navigation requires a current route.\");\n }\n return next\n }\n\n var parsedPath = parsePath(next.path || '');\n var basePath = (current && current.path) || '/';\n var path = parsedPath.path\n ? resolvePath(parsedPath.path, basePath, append || next.append)\n : basePath;\n\n var query = resolveQuery(\n parsedPath.query,\n next.query,\n router && router.options.parseQuery\n );\n\n var hash = next.hash || parsedPath.hash;\n if (hash && hash.charAt(0) !== '#') {\n hash = \"#\" + hash;\n }\n\n return {\n _normalized: true,\n path: path,\n query: query,\n hash: hash\n }\n}\n\n/* */\n\n// work around weird flow bug\nvar toTypes = [String, Object];\nvar eventTypes = [String, Array];\n\nvar noop = function () {};\n\nvar warnedCustomSlot;\nvar warnedTagProp;\nvar warnedEventProp;\n\nvar Link = {\n name: 'RouterLink',\n props: {\n to: {\n type: toTypes,\n required: true\n },\n tag: {\n type: String,\n default: 'a'\n },\n custom: Boolean,\n exact: Boolean,\n exactPath: Boolean,\n append: Boolean,\n replace: Boolean,\n activeClass: String,\n exactActiveClass: String,\n ariaCurrentValue: {\n type: String,\n default: 'page'\n },\n event: {\n type: eventTypes,\n default: 'click'\n }\n },\n render: function render (h) {\n var this$1$1 = this;\n\n var router = this.$router;\n var current = this.$route;\n var ref = router.resolve(\n this.to,\n current,\n this.append\n );\n var location = ref.location;\n var route = ref.route;\n var href = ref.href;\n\n var classes = {};\n var globalActiveClass = router.options.linkActiveClass;\n var globalExactActiveClass = router.options.linkExactActiveClass;\n // Support global empty active class\n var activeClassFallback =\n globalActiveClass == null ? 'router-link-active' : globalActiveClass;\n var exactActiveClassFallback =\n globalExactActiveClass == null\n ? 'router-link-exact-active'\n : globalExactActiveClass;\n var activeClass =\n this.activeClass == null ? activeClassFallback : this.activeClass;\n var exactActiveClass =\n this.exactActiveClass == null\n ? exactActiveClassFallback\n : this.exactActiveClass;\n\n var compareTarget = route.redirectedFrom\n ? createRoute(null, normalizeLocation(route.redirectedFrom), null, router)\n : route;\n\n classes[exactActiveClass] = isSameRoute(current, compareTarget, this.exactPath);\n classes[activeClass] = this.exact || this.exactPath\n ? classes[exactActiveClass]\n : isIncludedRoute(current, compareTarget);\n\n var ariaCurrentValue = classes[exactActiveClass] ? this.ariaCurrentValue : null;\n\n var handler = function (e) {\n if (guardEvent(e)) {\n if (this$1$1.replace) {\n router.replace(location, noop);\n } else {\n router.push(location, noop);\n }\n }\n };\n\n var on = { click: guardEvent };\n if (Array.isArray(this.event)) {\n this.event.forEach(function (e) {\n on[e] = handler;\n });\n } else {\n on[this.event] = handler;\n }\n\n var data = { class: classes };\n\n var scopedSlot =\n !this.$scopedSlots.$hasNormal &&\n this.$scopedSlots.default &&\n this.$scopedSlots.default({\n href: href,\n route: route,\n navigate: handler,\n isActive: classes[activeClass],\n isExactActive: classes[exactActiveClass]\n });\n\n if (scopedSlot) {\n if (process.env.NODE_ENV !== 'production' && !this.custom) {\n !warnedCustomSlot && warn(false, 'In Vue Router 4, the v-slot API will by default wrap its content with an <a> element. Use the custom prop to remove this warning:\\n<router-link v-slot=\"{ navigate, href }\" custom></router-link>\\n');\n warnedCustomSlot = true;\n }\n if (scopedSlot.length === 1) {\n return scopedSlot[0]\n } else if (scopedSlot.length > 1 || !scopedSlot.length) {\n if (process.env.NODE_ENV !== 'production') {\n warn(\n false,\n (\"<router-link> with to=\\\"\" + (this.to) + \"\\\" is trying to use a scoped slot but it didn't provide exactly one child. Wrapping the content with a span element.\")\n );\n }\n return scopedSlot.length === 0 ? h() : h('span', {}, scopedSlot)\n }\n }\n\n if (process.env.NODE_ENV !== 'production') {\n if ('tag' in this.$options.propsData && !warnedTagProp) {\n warn(\n false,\n \"<router-link>'s tag prop is deprecated and has been removed in Vue Router 4. Use the v-slot API to remove this warning: https://next.router.vuejs.org/guide/migration/#removal-of-event-and-tag-props-in-router-link.\"\n );\n warnedTagProp = true;\n }\n if ('event' in this.$options.propsData && !warnedEventProp) {\n warn(\n false,\n \"<router-link>'s event prop is deprecated and has been removed in Vue Router 4. Use the v-slot API to remove this warning: https://next.router.vuejs.org/guide/migration/#removal-of-event-and-tag-props-in-router-link.\"\n );\n warnedEventProp = true;\n }\n }\n\n if (this.tag === 'a') {\n data.on = on;\n data.attrs = { href: href, 'aria-current': ariaCurrentValue };\n } else {\n // find the first <a> child and apply listener and href\n var a = findAnchor(this.$slots.default);\n if (a) {\n // in case the <a> is a static node\n a.isStatic = false;\n var aData = (a.data = extend({}, a.data));\n aData.on = aData.on || {};\n // transform existing events in both objects into arrays so we can push later\n for (var event in aData.on) {\n var handler$1 = aData.on[event];\n if (event in on) {\n aData.on[event] = Array.isArray(handler$1) ? handler$1 : [handler$1];\n }\n }\n // append new listeners for router-link\n for (var event$1 in on) {\n if (event$1 in aData.on) {\n // on[event] is always a function\n aData.on[event$1].push(on[event$1]);\n } else {\n aData.on[event$1] = handler;\n }\n }\n\n var aAttrs = (a.data.attrs = extend({}, a.data.attrs));\n aAttrs.href = href;\n aAttrs['aria-current'] = ariaCurrentValue;\n } else {\n // doesn't have <a> child, apply listener to self\n data.on = on;\n }\n }\n\n return h(this.tag, data, this.$slots.default)\n }\n};\n\nfunction guardEvent (e) {\n // don't redirect with control keys\n if (e.metaKey || e.altKey || e.ctrlKey || e.shiftKey) { return }\n // don't redirect when preventDefault called\n if (e.defaultPrevented) { return }\n // don't redirect on right click\n if (e.button !== undefined && e.button !== 0) { return }\n // don't redirect if `target=\"_blank\"`\n if (e.currentTarget && e.currentTarget.getAttribute) {\n var target = e.currentTarget.getAttribute('target');\n if (/\\b_blank\\b/i.test(target)) { return }\n }\n // this may be a Weex event which doesn't have this method\n if (e.preventDefault) {\n e.preventDefault();\n }\n return true\n}\n\nfunction findAnchor (children) {\n if (children) {\n var child;\n for (var i = 0; i < children.length; i++) {\n child = children[i];\n if (child.tag === 'a') {\n return child\n }\n if (child.children && (child = findAnchor(child.children))) {\n return child\n }\n }\n }\n}\n\nvar _Vue;\n\nfunction install (Vue) {\n if (install.installed && _Vue === Vue) { return }\n install.installed = true;\n\n _Vue = Vue;\n\n var isDef = function (v) { return v !== undefined; };\n\n var registerInstance = function (vm, callVal) {\n var i = vm.$options._parentVnode;\n if (isDef(i) && isDef(i = i.data) && isDef(i = i.registerRouteInstance)) {\n i(vm, callVal);\n }\n };\n\n Vue.mixin({\n beforeCreate: function beforeCreate () {\n if (isDef(this.$options.router)) {\n this._routerRoot = this;\n this._router = this.$options.router;\n this._router.init(this);\n Vue.util.defineReactive(this, '_route', this._router.history.current);\n } else {\n this._routerRoot = (this.$parent && this.$parent._routerRoot) || this;\n }\n registerInstance(this, this);\n },\n destroyed: function destroyed () {\n registerInstance(this);\n }\n });\n\n Object.defineProperty(Vue.prototype, '$router', {\n get: function get () { return this._routerRoot._router }\n });\n\n Object.defineProperty(Vue.prototype, '$route', {\n get: function get () { return this._routerRoot._route }\n });\n\n Vue.component('RouterView', View);\n Vue.component('RouterLink', Link);\n\n var strats = Vue.config.optionMergeStrategies;\n // use the same hook merging strategy for route hooks\n strats.beforeRouteEnter = strats.beforeRouteLeave = strats.beforeRouteUpdate = strats.created;\n}\n\n/* */\n\nvar inBrowser = typeof window !== 'undefined';\n\n/* */\n\nfunction createRouteMap (\n routes,\n oldPathList,\n oldPathMap,\n oldNameMap,\n parentRoute\n) {\n // the path list is used to control path matching priority\n var pathList = oldPathList || [];\n // $flow-disable-line\n var pathMap = oldPathMap || Object.create(null);\n // $flow-disable-line\n var nameMap = oldNameMap || Object.create(null);\n\n routes.forEach(function (route) {\n addRouteRecord(pathList, pathMap, nameMap, route, parentRoute);\n });\n\n // ensure wildcard routes are always at the end\n for (var i = 0, l = pathList.length; i < l; i++) {\n if (pathList[i] === '*') {\n pathList.push(pathList.splice(i, 1)[0]);\n l--;\n i--;\n }\n }\n\n if (process.env.NODE_ENV === 'development') {\n // warn if routes do not include leading slashes\n var found = pathList\n // check for missing leading slash\n .filter(function (path) { return path && path.charAt(0) !== '*' && path.charAt(0) !== '/'; });\n\n if (found.length > 0) {\n var pathNames = found.map(function (path) { return (\"- \" + path); }).join('\\n');\n warn(false, (\"Non-nested routes must include a leading slash character. Fix the following routes: \\n\" + pathNames));\n }\n }\n\n return {\n pathList: pathList,\n pathMap: pathMap,\n nameMap: nameMap\n }\n}\n\nfunction addRouteRecord (\n pathList,\n pathMap,\n nameMap,\n route,\n parent,\n matchAs\n) {\n var path = route.path;\n var name = route.name;\n if (process.env.NODE_ENV !== 'production') {\n assert(path != null, \"\\\"path\\\" is required in a route configuration.\");\n assert(\n typeof route.component !== 'string',\n \"route config \\\"component\\\" for path: \" + (String(\n path || name\n )) + \" cannot be a \" + \"string id. Use an actual component instead.\"\n );\n\n warn(\n // eslint-disable-next-line no-control-regex\n !/[^\\u0000-\\u007F]+/.test(path),\n \"Route with path \\\"\" + path + \"\\\" contains unencoded characters, make sure \" +\n \"your path is correctly encoded before passing it to the router. Use \" +\n \"encodeURI to encode static segments of your path.\"\n );\n }\n\n var pathToRegexpOptions =\n route.pathToRegexpOptions || {};\n var normalizedPath = normalizePath(path, parent, pathToRegexpOptions.strict);\n\n if (typeof route.caseSensitive === 'boolean') {\n pathToRegexpOptions.sensitive = route.caseSensitive;\n }\n\n var record = {\n path: normalizedPath,\n regex: compileRouteRegex(normalizedPath, pathToRegexpOptions),\n components: route.components || { default: route.component },\n alias: route.alias\n ? typeof route.alias === 'string'\n ? [route.alias]\n : route.alias\n : [],\n instances: {},\n enteredCbs: {},\n name: name,\n parent: parent,\n matchAs: matchAs,\n redirect: route.redirect,\n beforeEnter: route.beforeEnter,\n meta: route.meta || {},\n props:\n route.props == null\n ? {}\n : route.components\n ? route.props\n : { default: route.props }\n };\n\n if (route.children) {\n // Warn if route is named, does not redirect and has a default child route.\n // If users navigate to this route by name, the default child will\n // not be rendered (GH Issue #629)\n if (process.env.NODE_ENV !== 'production') {\n if (\n route.name &&\n !route.redirect &&\n route.children.some(function (child) { return /^\\/?$/.test(child.path); })\n ) {\n warn(\n false,\n \"Named Route '\" + (route.name) + \"' has a default child route. \" +\n \"When navigating to this named route (:to=\\\"{name: '\" + (route.name) + \"'}\\\"), \" +\n \"the default child route will not be rendered. Remove the name from \" +\n \"this route and use the name of the default child route for named \" +\n \"links instead.\"\n );\n }\n }\n route.children.forEach(function (child) {\n var childMatchAs = matchAs\n ? cleanPath((matchAs + \"/\" + (child.path)))\n : undefined;\n addRouteRecord(pathList, pathMap, nameMap, child, record, childMatchAs);\n });\n }\n\n if (!pathMap[record.path]) {\n pathList.push(record.path);\n pathMap[record.path] = record;\n }\n\n if (route.alias !== undefined) {\n var aliases = Array.isArray(route.alias) ? route.alias : [route.alias];\n for (var i = 0; i < aliases.length; ++i) {\n var alias = aliases[i];\n if (process.env.NODE_ENV !== 'production' && alias === path) {\n warn(\n false,\n (\"Found an alias with the same value as the path: \\\"\" + path + \"\\\". You have to remove that alias. It will be ignored in development.\")\n );\n // skip in dev to make it work\n continue\n }\n\n var aliasRoute = {\n path: alias,\n children: route.children\n };\n addRouteRecord(\n pathList,\n pathMap,\n nameMap,\n aliasRoute,\n parent,\n record.path || '/' // matchAs\n );\n }\n }\n\n if (name) {\n if (!nameMap[name]) {\n nameMap[name] = record;\n } else if (process.env.NODE_ENV !== 'production' && !matchAs) {\n warn(\n false,\n \"Duplicate named routes definition: \" +\n \"{ name: \\\"\" + name + \"\\\", path: \\\"\" + (record.path) + \"\\\" }\"\n );\n }\n }\n}\n\nfunction compileRouteRegex (\n path,\n pathToRegexpOptions\n) {\n var regex = pathToRegexp_1(path, [], pathToRegexpOptions);\n if (process.env.NODE_ENV !== 'production') {\n var keys = Object.create(null);\n regex.keys.forEach(function (key) {\n warn(\n !keys[key.name],\n (\"Duplicate param keys in route with path: \\\"\" + path + \"\\\"\")\n );\n keys[key.name] = true;\n });\n }\n return regex\n}\n\nfunction normalizePath (\n path,\n parent,\n strict\n) {\n if (!strict) { path = path.replace(/\\/$/, ''); }\n if (path[0] === '/') { return path }\n if (parent == null) { return path }\n return cleanPath(((parent.path) + \"/\" + path))\n}\n\n/* */\n\n\n\nfunction createMatcher (\n routes,\n router\n) {\n var ref = createRouteMap(routes);\n var pathList = ref.pathList;\n var pathMap = ref.pathMap;\n var nameMap = ref.nameMap;\n\n function addRoutes (routes) {\n createRouteMap(routes, pathList, pathMap, nameMap);\n }\n\n function addRoute (parentOrRoute, route) {\n var parent = (typeof parentOrRoute !== 'object') ? nameMap[parentOrRoute] : undefined;\n // $flow-disable-line\n createRouteMap([route || parentOrRoute], pathList, pathMap, nameMap, parent);\n\n // add aliases of parent\n if (parent && parent.alias.length) {\n createRouteMap(\n // $flow-disable-line route is defined if parent is\n parent.alias.map(function (alias) { return ({ path: alias, children: [route] }); }),\n pathList,\n pathMap,\n nameMap,\n parent\n );\n }\n }\n\n function getRoutes () {\n return pathList.map(function (path) { return pathMap[path]; })\n }\n\n function match (\n raw,\n currentRoute,\n redirectedFrom\n ) {\n var location = normalizeLocation(raw, currentRoute, false, router);\n var name = location.name;\n\n if (name) {\n var record = nameMap[name];\n if (process.env.NODE_ENV !== 'production') {\n warn(record, (\"Route with name '\" + name + \"' does not exist\"));\n }\n if (!record) { return _createRoute(null, location) }\n var paramNames = record.regex.keys\n .filter(function (key) { return !key.optional; })\n .map(function (key) { return key.name; });\n\n if (typeof location.params !== 'object') {\n location.params = {};\n }\n\n if (currentRoute && typeof currentRoute.params === 'object') {\n for (var key in currentRoute.params) {\n if (!(key in location.params) && paramNames.indexOf(key) > -1) {\n location.params[key] = currentRoute.params[key];\n }\n }\n }\n\n location.path = fillParams(record.path, location.params, (\"named route \\\"\" + name + \"\\\"\"));\n return _createRoute(record, location, redirectedFrom)\n } else if (location.path) {\n location.params = {};\n for (var i = 0; i < pathList.length; i++) {\n var path = pathList[i];\n var record$1 = pathMap[path];\n if (matchRoute(record$1.regex, location.path, location.params)) {\n return _createRoute(record$1, location, redirectedFrom)\n }\n }\n }\n // no match\n return _createRoute(null, location)\n }\n\n function redirect (\n record,\n location\n ) {\n var originalRedirect = record.redirect;\n var redirect = typeof originalRedirect === 'function'\n ? originalRedirect(createRoute(record, location, null, router))\n : originalRedirect;\n\n if (typeof redirect === 'string') {\n redirect = { path: redirect };\n }\n\n if (!redirect || typeof redirect !== 'object') {\n if (process.env.NODE_ENV !== 'production') {\n warn(\n false, (\"invalid redirect option: \" + (JSON.stringify(redirect)))\n );\n }\n return _createRoute(null, location)\n }\n\n var re = redirect;\n var name = re.name;\n var path = re.path;\n var query = location.query;\n var hash = location.hash;\n var params = location.params;\n query = re.hasOwnProperty('query') ? re.query : query;\n hash = re.hasOwnProperty('hash') ? re.hash : hash;\n params = re.hasOwnProperty('params') ? re.params : params;\n\n if (name) {\n // resolved named direct\n var targetRecord = nameMap[name];\n if (process.env.NODE_ENV !== 'production') {\n assert(targetRecord, (\"redirect failed: named route \\\"\" + name + \"\\\" not found.\"));\n }\n return match({\n _normalized: true,\n name: name,\n query: query,\n hash: hash,\n params: params\n }, undefined, location)\n } else if (path) {\n // 1. resolve relative redirect\n var rawPath = resolveRecordPath(path, record);\n // 2. resolve params\n var resolvedPath = fillParams(rawPath, params, (\"redirect route with path \\\"\" + rawPath + \"\\\"\"));\n // 3. rematch with existing query and hash\n return match({\n _normalized: true,\n path: resolvedPath,\n query: query,\n hash: hash\n }, undefined, location)\n } else {\n if (process.env.NODE_ENV !== 'production') {\n warn(false, (\"invalid redirect option: \" + (JSON.stringify(redirect))));\n }\n return _createRoute(null, location)\n }\n }\n\n function alias (\n record,\n location,\n matchAs\n ) {\n var aliasedPath = fillParams(matchAs, location.params, (\"aliased route with path \\\"\" + matchAs + \"\\\"\"));\n var aliasedMatch = match({\n _normalized: true,\n path: aliasedPath\n });\n if (aliasedMatch) {\n var matched = aliasedMatch.matched;\n var aliasedRecord = matched[matched.length - 1];\n location.params = aliasedMatch.params;\n return _createRoute(aliasedRecord, location)\n }\n return _createRoute(null, location)\n }\n\n function _createRoute (\n record,\n location,\n redirectedFrom\n ) {\n if (record && record.redirect) {\n return redirect(record, redirectedFrom || location)\n }\n if (record && record.matchAs) {\n return alias(record, location, record.matchAs)\n }\n return createRoute(record, location, redirectedFrom, router)\n }\n\n return {\n match: match,\n addRoute: addRoute,\n getRoutes: getRoutes,\n addRoutes: addRoutes\n }\n}\n\nfunction matchRoute (\n regex,\n path,\n params\n) {\n var m = path.match(regex);\n\n if (!m) {\n return false\n } else if (!params) {\n return true\n }\n\n for (var i = 1, len = m.length; i < len; ++i) {\n var key = regex.keys[i - 1];\n if (key) {\n // Fix #1994: using * with props: true generates a param named 0\n params[key.name || 'pathMatch'] = typeof m[i] === 'string' ? decode(m[i]) : m[i];\n }\n }\n\n return true\n}\n\nfunction resolveRecordPath (path, record) {\n return resolvePath(path, record.parent ? record.parent.path : '/', true)\n}\n\n/* */\n\n// use User Timing api (if present) for more accurate key precision\nvar Time =\n inBrowser && window.performance && window.performance.now\n ? window.performance\n : Date;\n\nfunction genStateKey () {\n return Time.now().toFixed(3)\n}\n\nvar _key = genStateKey();\n\nfunction getStateKey () {\n return _key\n}\n\nfunction setStateKey (key) {\n return (_key = key)\n}\n\n/* */\n\nvar positionStore = Object.create(null);\n\nfunction setupScroll () {\n // Prevent browser scroll behavior on History popstate\n if ('scrollRestoration' in window.history) {\n window.history.scrollRestoration = 'manual';\n }\n // Fix for #1585 for Firefox\n // Fix for #2195 Add optional third attribute to workaround a bug in safari https://bugs.webkit.org/show_bug.cgi?id=182678\n // Fix for #2774 Support for apps loaded from Windows file shares not mapped to network drives: replaced location.origin with\n // window.location.protocol + '//' + window.location.host\n // location.host contains the port and location.hostname doesn't\n var protocolAndPath = window.location.protocol + '//' + window.location.host;\n var absolutePath = window.location.href.replace(protocolAndPath, '');\n // preserve existing history state as it could be overriden by the user\n var stateCopy = extend({}, window.history.state);\n stateCopy.key = getStateKey();\n window.history.replaceState(stateCopy, '', absolutePath);\n window.addEventListener('popstate', handlePopState);\n return function () {\n window.removeEventListener('popstate', handlePopState);\n }\n}\n\nfunction handleScroll (\n router,\n to,\n from,\n isPop\n) {\n if (!router.app) {\n return\n }\n\n var behavior = router.options.scrollBehavior;\n if (!behavior) {\n return\n }\n\n if (process.env.NODE_ENV !== 'production') {\n assert(typeof behavior === 'function', \"scrollBehavior must be a function\");\n }\n\n // wait until re-render finishes before scrolling\n router.app.$nextTick(function () {\n var position = getScrollPosition();\n var shouldScroll = behavior.call(\n router,\n to,\n from,\n isPop ? position : null\n );\n\n if (!shouldScroll) {\n return\n }\n\n if (typeof shouldScroll.then === 'function') {\n shouldScroll\n .then(function (shouldScroll) {\n scrollToPosition((shouldScroll), position);\n })\n .catch(function (err) {\n if (process.env.NODE_ENV !== 'production') {\n assert(false, err.toString());\n }\n });\n } else {\n scrollToPosition(shouldScroll, position);\n }\n });\n}\n\nfunction saveScrollPosition () {\n var key = getStateKey();\n if (key) {\n positionStore[key] = {\n x: window.pageXOffset,\n y: window.pageYOffset\n };\n }\n}\n\nfunction handlePopState (e) {\n saveScrollPosition();\n if (e.state && e.state.key) {\n setStateKey(e.state.key);\n }\n}\n\nfunction getScrollPosition () {\n var key = getStateKey();\n if (key) {\n return positionStore[key]\n }\n}\n\nfunction getElementPosition (el, offset) {\n var docEl = document.documentElement;\n var docRect = docEl.getBoundingClientRect();\n var elRect = el.getBoundingClientRect();\n return {\n x: elRect.left - docRect.left - offset.x,\n y: elRect.top - docRect.top - offset.y\n }\n}\n\nfunction isValidPosition (obj) {\n return isNumber(obj.x) || isNumber(obj.y)\n}\n\nfunction normalizePosition (obj) {\n return {\n x: isNumber(obj.x) ? obj.x : window.pageXOffset,\n y: isNumber(obj.y) ? obj.y : window.pageYOffset\n }\n}\n\nfunction normalizeOffset (obj) {\n return {\n x: isNumber(obj.x) ? obj.x : 0,\n y: isNumber(obj.y) ? obj.y : 0\n }\n}\n\nfunction isNumber (v) {\n return typeof v === 'number'\n}\n\nvar hashStartsWithNumberRE = /^#\\d/;\n\nfunction scrollToPosition (shouldScroll, position) {\n var isObject = typeof shouldScroll === 'object';\n if (isObject && typeof shouldScroll.selector === 'string') {\n // getElementById would still fail if the selector contains a more complicated query like #main[data-attr]\n // but at the same time, it doesn't make much sense to select an element with an id and an extra selector\n var el = hashStartsWithNumberRE.test(shouldScroll.selector) // $flow-disable-line\n ? document.getElementById(shouldScroll.selector.slice(1)) // $flow-disable-line\n : document.querySelector(shouldScroll.selector);\n\n if (el) {\n var offset =\n shouldScroll.offset && typeof shouldScroll.offset === 'object'\n ? shouldScroll.offset\n : {};\n offset = normalizeOffset(offset);\n position = getElementPosition(el, offset);\n } else if (isValidPosition(shouldScroll)) {\n position = normalizePosition(shouldScroll);\n }\n } else if (isObject && isValidPosition(shouldScroll)) {\n position = normalizePosition(shouldScroll);\n }\n\n if (position) {\n // $flow-disable-line\n if ('scrollBehavior' in document.documentElement.style) {\n window.scrollTo({\n left: position.x,\n top: position.y,\n // $flow-disable-line\n behavior: shouldScroll.behavior\n });\n } else {\n window.scrollTo(position.x, position.y);\n }\n }\n}\n\n/* */\n\nvar supportsPushState =\n inBrowser &&\n (function () {\n var ua = window.navigator.userAgent;\n\n if (\n (ua.indexOf('Android 2.') !== -1 || ua.indexOf('Android 4.0') !== -1) &&\n ua.indexOf('Mobile Safari') !== -1 &&\n ua.indexOf('Chrome') === -1 &&\n ua.indexOf('Windows Phone') === -1\n ) {\n return false\n }\n\n return window.history && typeof window.history.pushState === 'function'\n })();\n\nfunction pushState (url, replace) {\n saveScrollPosition();\n // try...catch the pushState call to get around Safari\n // DOM Exception 18 where it limits to 100 pushState calls\n var history = window.history;\n try {\n if (replace) {\n // preserve existing history state as it could be overriden by the user\n var stateCopy = extend({}, history.state);\n stateCopy.key = getStateKey();\n history.replaceState(stateCopy, '', url);\n } else {\n history.pushState({ key: setStateKey(genStateKey()) }, '', url);\n }\n } catch (e) {\n window.location[replace ? 'replace' : 'assign'](url);\n }\n}\n\nfunction replaceState (url) {\n pushState(url, true);\n}\n\n// When changing thing, also edit router.d.ts\nvar NavigationFailureType = {\n redirected: 2,\n aborted: 4,\n cancelled: 8,\n duplicated: 16\n};\n\nfunction createNavigationRedirectedError (from, to) {\n return createRouterError(\n from,\n to,\n NavigationFailureType.redirected,\n (\"Redirected when going from \\\"\" + (from.fullPath) + \"\\\" to \\\"\" + (stringifyRoute(\n to\n )) + \"\\\" via a navigation guard.\")\n )\n}\n\nfunction createNavigationDuplicatedError (from, to) {\n var error = createRouterError(\n from,\n to,\n NavigationFailureType.duplicated,\n (\"Avoided redundant navigation to current location: \\\"\" + (from.fullPath) + \"\\\".\")\n );\n // backwards compatible with the first introduction of Errors\n error.name = 'NavigationDuplicated';\n return error\n}\n\nfunction createNavigationCancelledError (from, to) {\n return createRouterError(\n from,\n to,\n NavigationFailureType.cancelled,\n (\"Navigation cancelled from \\\"\" + (from.fullPath) + \"\\\" to \\\"\" + (to.fullPath) + \"\\\" with a new navigation.\")\n )\n}\n\nfunction createNavigationAbortedError (from, to) {\n return createRouterError(\n from,\n to,\n NavigationFailureType.aborted,\n (\"Navigation aborted from \\\"\" + (from.fullPath) + \"\\\" to \\\"\" + (to.fullPath) + \"\\\" via a navigation guard.\")\n )\n}\n\nfunction createRouterError (from, to, type, message) {\n var error = new Error(message);\n error._isRouter = true;\n error.from = from;\n error.to = to;\n error.type = type;\n\n return error\n}\n\nvar propertiesToLog = ['params', 'query', 'hash'];\n\nfunction stringifyRoute (to) {\n if (typeof to === 'string') { return to }\n if ('path' in to) { return to.path }\n var location = {};\n propertiesToLog.forEach(function (key) {\n if (key in to) { location[key] = to[key]; }\n });\n return JSON.stringify(location, null, 2)\n}\n\nfunction isError (err) {\n return Object.prototype.toString.call(err).indexOf('Error') > -1\n}\n\nfunction isNavigationFailure (err, errorType) {\n return (\n isError(err) &&\n err._isRouter &&\n (errorType == null || err.type === errorType)\n )\n}\n\n/* */\n\nfunction runQueue (queue, fn, cb) {\n var step = function (index) {\n if (index >= queue.length) {\n cb();\n } else {\n if (queue[index]) {\n fn(queue[index], function () {\n step(index + 1);\n });\n } else {\n step(index + 1);\n }\n }\n };\n step(0);\n}\n\n/* */\n\nfunction resolveAsyncComponents (matched) {\n return function (to, from, next) {\n var hasAsync = false;\n var pending = 0;\n var error = null;\n\n flatMapComponents(matched, function (def, _, match, key) {\n // if it's a function and doesn't have cid attached,\n // assume it's an async component resolve function.\n // we are not using Vue's default async resolving mechanism because\n // we want to halt the navigation until the incoming component has been\n // resolved.\n if (typeof def === 'function' && def.cid === undefined) {\n hasAsync = true;\n pending++;\n\n var resolve = once(function (resolvedDef) {\n if (isESModule(resolvedDef)) {\n resolvedDef = resolvedDef.default;\n }\n // save resolved on async factory in case it's used elsewhere\n def.resolved = typeof resolvedDef === 'function'\n ? resolvedDef\n : _Vue.extend(resolvedDef);\n match.components[key] = resolvedDef;\n pending--;\n if (pending <= 0) {\n next();\n }\n });\n\n var reject = once(function (reason) {\n var msg = \"Failed to resolve async component \" + key + \": \" + reason;\n process.env.NODE_ENV !== 'production' && warn(false, msg);\n if (!error) {\n error = isError(reason)\n ? reason\n : new Error(msg);\n next(error);\n }\n });\n\n var res;\n try {\n res = def(resolve, reject);\n } catch (e) {\n reject(e);\n }\n if (res) {\n if (typeof res.then === 'function') {\n res.then(resolve, reject);\n } else {\n // new syntax in Vue 2.3\n var comp = res.component;\n if (comp && typeof comp.then === 'function') {\n comp.then(resolve, reject);\n }\n }\n }\n }\n });\n\n if (!hasAsync) { next(); }\n }\n}\n\nfunction flatMapComponents (\n matched,\n fn\n) {\n return flatten(matched.map(function (m) {\n return Object.keys(m.components).map(function (key) { return fn(\n m.components[key],\n m.instances[key],\n m, key\n ); })\n }))\n}\n\nfunction flatten (arr) {\n return Array.prototype.concat.apply([], arr)\n}\n\nvar hasSymbol =\n typeof Symbol === 'function' &&\n typeof Symbol.toStringTag === 'symbol';\n\nfunction isESModule (obj) {\n return obj.__esModule || (hasSymbol && obj[Symbol.toStringTag] === 'Module')\n}\n\n// in Webpack 2, require.ensure now also returns a Promise\n// so the resolve/reject functions may get called an extra time\n// if the user uses an arrow function shorthand that happens to\n// return that Promise.\nfunction once (fn) {\n var called = false;\n return function () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n if (called) { return }\n called = true;\n return fn.apply(this, args)\n }\n}\n\n/* */\n\nvar History = function History (router, base) {\n this.router = router;\n this.base = normalizeBase(base);\n // start with a route object that stands for \"nowhere\"\n this.current = START;\n this.pending = null;\n this.ready = false;\n this.readyCbs = [];\n this.readyErrorCbs = [];\n this.errorCbs = [];\n this.listeners = [];\n};\n\nHistory.prototype.listen = function listen (cb) {\n this.cb = cb;\n};\n\nHistory.prototype.onReady = function onReady (cb, errorCb) {\n if (this.ready) {\n cb();\n } else {\n this.readyCbs.push(cb);\n if (errorCb) {\n this.readyErrorCbs.push(errorCb);\n }\n }\n};\n\nHistory.prototype.onError = function onError (errorCb) {\n this.errorCbs.push(errorCb);\n};\n\nHistory.prototype.transitionTo = function transitionTo (\n location,\n onComplete,\n onAbort\n) {\n var this$1$1 = this;\n\n var route;\n // catch redirect option https://github.com/vuejs/vue-router/issues/3201\n try {\n route = this.router.match(location, this.current);\n } catch (e) {\n this.errorCbs.forEach(function (cb) {\n cb(e);\n });\n // Exception should still be thrown\n throw e\n }\n var prev = this.current;\n this.confirmTransition(\n route,\n function () {\n this$1$1.updateRoute(route);\n onComplete && onComplete(route);\n this$1$1.ensureURL();\n this$1$1.router.afterHooks.forEach(function (hook) {\n hook && hook(route, prev);\n });\n\n // fire ready cbs once\n if (!this$1$1.ready) {\n this$1$1.ready = true;\n this$1$1.readyCbs.forEach(function (cb) {\n cb(route);\n });\n }\n },\n function (err) {\n if (onAbort) {\n onAbort(err);\n }\n if (err && !this$1$1.ready) {\n // Initial redirection should not mark the history as ready yet\n // because it's triggered by the redirection instead\n // https://github.com/vuejs/vue-router/issues/3225\n // https://github.com/vuejs/vue-router/issues/3331\n if (!isNavigationFailure(err, NavigationFailureType.redirected) || prev !== START) {\n this$1$1.ready = true;\n this$1$1.readyErrorCbs.forEach(function (cb) {\n cb(err);\n });\n }\n }\n }\n );\n};\n\nHistory.prototype.confirmTransition = function confirmTransition (route, onComplete, onAbort) {\n var this$1$1 = this;\n\n var current = this.current;\n this.pending = route;\n var abort = function (err) {\n // changed after adding errors with\n // https://github.com/vuejs/vue-router/pull/3047 before that change,\n // redirect and aborted navigation would produce an err == null\n if (!isNavigationFailure(err) && isError(err)) {\n if (this$1$1.errorCbs.length) {\n this$1$1.errorCbs.forEach(function (cb) {\n cb(err);\n });\n } else {\n if (process.env.NODE_ENV !== 'production') {\n warn(false, 'uncaught error during route navigation:');\n }\n console.error(err);\n }\n }\n onAbort && onAbort(err);\n };\n var lastRouteIndex = route.matched.length - 1;\n var lastCurrentIndex = current.matched.length - 1;\n if (\n isSameRoute(route, current) &&\n // in the case the route map has been dynamically appended to\n lastRouteIndex === lastCurrentIndex &&\n route.matched[lastRouteIndex] === current.matched[lastCurrentIndex]\n ) {\n this.ensureURL();\n if (route.hash) {\n handleScroll(this.router, current, route, false);\n }\n return abort(createNavigationDuplicatedError(current, route))\n }\n\n var ref = resolveQueue(\n this.current.matched,\n route.matched\n );\n var updated = ref.updated;\n var deactivated = ref.deactivated;\n var activated = ref.activated;\n\n var queue = [].concat(\n // in-component leave guards\n extractLeaveGuards(deactivated),\n // global before hooks\n this.router.beforeHooks,\n // in-component update hooks\n extractUpdateHooks(updated),\n // in-config enter guards\n activated.map(function (m) { return m.beforeEnter; }),\n // async components\n resolveAsyncComponents(activated)\n );\n\n var iterator = function (hook, next) {\n if (this$1$1.pending !== route) {\n return abort(createNavigationCancelledError(current, route))\n }\n try {\n hook(route, current, function (to) {\n if (to === false) {\n // next(false) -> abort navigation, ensure current URL\n this$1$1.ensureURL(true);\n abort(createNavigationAbortedError(current, route));\n } else if (isError(to)) {\n this$1$1.ensureURL(true);\n abort(to);\n } else if (\n typeof to === 'string' ||\n (typeof to === 'object' &&\n (typeof to.path === 'string' || typeof to.name === 'string'))\n ) {\n // next('/') or next({ path: '/' }) -> redirect\n abort(createNavigationRedirectedError(current, route));\n if (typeof to === 'object' && to.replace) {\n this$1$1.replace(to);\n } else {\n this$1$1.push(to);\n }\n } else {\n // confirm transition and pass on the value\n next(to);\n }\n });\n } catch (e) {\n abort(e);\n }\n };\n\n runQueue(queue, iterator, function () {\n // wait until async components are resolved before\n // extracting in-component enter guards\n var enterGuards = extractEnterGuards(activated);\n var queue = enterGuards.concat(this$1$1.router.resolveHooks);\n runQueue(queue, iterator, function () {\n if (this$1$1.pending !== route) {\n return abort(createNavigationCancelledError(current, route))\n }\n this$1$1.pending = null;\n onComplete(route);\n if (this$1$1.router.app) {\n this$1$1.router.app.$nextTick(function () {\n handleRouteEntered(route);\n });\n }\n });\n });\n};\n\nHistory.prototype.updateRoute = function updateRoute (route) {\n this.current = route;\n this.cb && this.cb(route);\n};\n\nHistory.prototype.setupListeners = function setupListeners () {\n // Default implementation is empty\n};\n\nHistory.prototype.teardown = function teardown () {\n // clean up event listeners\n // https://github.com/vuejs/vue-router/issues/2341\n this.listeners.forEach(function (cleanupListener) {\n cleanupListener();\n });\n this.listeners = [];\n\n // reset current history route\n // https://github.com/vuejs/vue-router/issues/3294\n this.current = START;\n this.pending = null;\n};\n\nfunction normalizeBase (base) {\n if (!base) {\n if (inBrowser) {\n // respect <base> tag\n var baseEl = document.querySelector('base');\n base = (baseEl && baseEl.getAttribute('href')) || '/';\n // strip full URL origin\n base = base.replace(/^https?:\\/\\/[^\\/]+/, '');\n } else {\n base = '/';\n }\n }\n // make sure there's the starting slash\n if (base.charAt(0) !== '/') {\n base = '/' + base;\n }\n // remove trailing slash\n return base.replace(/\\/$/, '')\n}\n\nfunction resolveQueue (\n current,\n next\n) {\n var i;\n var max = Math.max(current.length, next.length);\n for (i = 0; i < max; i++) {\n if (current[i] !== next[i]) {\n break\n }\n }\n return {\n updated: next.slice(0, i),\n activated: next.slice(i),\n deactivated: current.slice(i)\n }\n}\n\nfunction extractGuards (\n records,\n name,\n bind,\n reverse\n) {\n var guards = flatMapComponents(records, function (def, instance, match, key) {\n var guard = extractGuard(def, name);\n if (guard) {\n return Array.isArray(guard)\n ? guard.map(function (guard) { return bind(guard, instance, match, key); })\n : bind(guard, instance, match, key)\n }\n });\n return flatten(reverse ? guards.reverse() : guards)\n}\n\nfunction extractGuard (\n def,\n key\n) {\n if (typeof def !== 'function') {\n // extend now so that global mixins are applied.\n def = _Vue.extend(def);\n }\n return def.options[key]\n}\n\nfunction extractLeaveGuards (deactivated) {\n return extractGuards(deactivated, 'beforeRouteLeave', bindGuard, true)\n}\n\nfunction extractUpdateHooks (updated) {\n return extractGuards(updated, 'beforeRouteUpdate', bindGuard)\n}\n\nfunction bindGuard (guard, instance) {\n if (instance) {\n return function boundRouteGuard () {\n return guard.apply(instance, arguments)\n }\n }\n}\n\nfunction extractEnterGuards (\n activated\n) {\n return extractGuards(\n activated,\n 'beforeRouteEnter',\n function (guard, _, match, key) {\n return bindEnterGuard(guard, match, key)\n }\n )\n}\n\nfunction bindEnterGuard (\n guard,\n match,\n key\n) {\n return function routeEnterGuard (to, from, next) {\n return guard(to, from, function (cb) {\n if (typeof cb === 'function') {\n if (!match.enteredCbs[key]) {\n match.enteredCbs[key] = [];\n }\n match.enteredCbs[key].push(cb);\n }\n next(cb);\n })\n }\n}\n\n/* */\n\nvar HTML5History = /*@__PURE__*/(function (History) {\n function HTML5History (router, base) {\n History.call(this, router, base);\n\n this._startLocation = getLocation(this.base);\n }\n\n if ( History ) HTML5History.__proto__ = History;\n HTML5History.prototype = Object.create( History && History.prototype );\n HTML5History.prototype.constructor = HTML5History;\n\n HTML5History.prototype.setupListeners = function setupListeners () {\n var this$1$1 = this;\n\n if (this.listeners.length > 0) {\n return\n }\n\n var router = this.router;\n var expectScroll = router.options.scrollBehavior;\n var supportsScroll = supportsPushState && expectScroll;\n\n if (supportsScroll) {\n this.listeners.push(setupScroll());\n }\n\n var handleRoutingEvent = function () {\n var current = this$1$1.current;\n\n // Avoiding first `popstate` event dispatched in some browsers but first\n // history route not updated since async guard at the same time.\n var location = getLocation(this$1$1.base);\n if (this$1$1.current === START && location === this$1$1._startLocation) {\n return\n }\n\n this$1$1.transitionTo(location, function (route) {\n if (supportsScroll) {\n handleScroll(router, route, current, true);\n }\n });\n };\n window.addEventListener('popstate', handleRoutingEvent);\n this.listeners.push(function () {\n window.removeEventListener('popstate', handleRoutingEvent);\n });\n };\n\n HTML5History.prototype.go = function go (n) {\n window.history.go(n);\n };\n\n HTML5History.prototype.push = function push (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(location, function (route) {\n pushState(cleanPath(this$1$1.base + route.fullPath));\n handleScroll(this$1$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n }, onAbort);\n };\n\n HTML5History.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(location, function (route) {\n replaceState(cleanPath(this$1$1.base + route.fullPath));\n handleScroll(this$1$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n }, onAbort);\n };\n\n HTML5History.prototype.ensureURL = function ensureURL (push) {\n if (getLocation(this.base) !== this.current.fullPath) {\n var current = cleanPath(this.base + this.current.fullPath);\n push ? pushState(current) : replaceState(current);\n }\n };\n\n HTML5History.prototype.getCurrentLocation = function getCurrentLocation () {\n return getLocation(this.base)\n };\n\n return HTML5History;\n}(History));\n\nfunction getLocation (base) {\n var path = window.location.pathname;\n var pathLowerCase = path.toLowerCase();\n var baseLowerCase = base.toLowerCase();\n // base=\"/a\" shouldn't turn path=\"/app\" into \"/a/pp\"\n // https://github.com/vuejs/vue-router/issues/3555\n // so we ensure the trailing slash in the base\n if (base && ((pathLowerCase === baseLowerCase) ||\n (pathLowerCase.indexOf(cleanPath(baseLowerCase + '/')) === 0))) {\n path = path.slice(base.length);\n }\n return (path || '/') + window.location.search + window.location.hash\n}\n\n/* */\n\nvar HashHistory = /*@__PURE__*/(function (History) {\n function HashHistory (router, base, fallback) {\n History.call(this, router, base);\n // check history fallback deeplinking\n if (fallback && checkFallback(this.base)) {\n return\n }\n ensureSlash();\n }\n\n if ( History ) HashHistory.__proto__ = History;\n HashHistory.prototype = Object.create( History && History.prototype );\n HashHistory.prototype.constructor = HashHistory;\n\n // this is delayed until the app mounts\n // to avoid the hashchange listener being fired too early\n HashHistory.prototype.setupListeners = function setupListeners () {\n var this$1$1 = this;\n\n if (this.listeners.length > 0) {\n return\n }\n\n var router = this.router;\n var expectScroll = router.options.scrollBehavior;\n var supportsScroll = supportsPushState && expectScroll;\n\n if (supportsScroll) {\n this.listeners.push(setupScroll());\n }\n\n var handleRoutingEvent = function () {\n var current = this$1$1.current;\n if (!ensureSlash()) {\n return\n }\n this$1$1.transitionTo(getHash(), function (route) {\n if (supportsScroll) {\n handleScroll(this$1$1.router, route, current, true);\n }\n if (!supportsPushState) {\n replaceHash(route.fullPath);\n }\n });\n };\n var eventType = supportsPushState ? 'popstate' : 'hashchange';\n window.addEventListener(\n eventType,\n handleRoutingEvent\n );\n this.listeners.push(function () {\n window.removeEventListener(eventType, handleRoutingEvent);\n });\n };\n\n HashHistory.prototype.push = function push (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(\n location,\n function (route) {\n pushHash(route.fullPath);\n handleScroll(this$1$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n HashHistory.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n var ref = this;\n var fromRoute = ref.current;\n this.transitionTo(\n location,\n function (route) {\n replaceHash(route.fullPath);\n handleScroll(this$1$1.router, route, fromRoute, false);\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n HashHistory.prototype.go = function go (n) {\n window.history.go(n);\n };\n\n HashHistory.prototype.ensureURL = function ensureURL (push) {\n var current = this.current.fullPath;\n if (getHash() !== current) {\n push ? pushHash(current) : replaceHash(current);\n }\n };\n\n HashHistory.prototype.getCurrentLocation = function getCurrentLocation () {\n return getHash()\n };\n\n return HashHistory;\n}(History));\n\nfunction checkFallback (base) {\n var location = getLocation(base);\n if (!/^\\/#/.test(location)) {\n window.location.replace(cleanPath(base + '/#' + location));\n return true\n }\n}\n\nfunction ensureSlash () {\n var path = getHash();\n if (path.charAt(0) === '/') {\n return true\n }\n replaceHash('/' + path);\n return false\n}\n\nfunction getHash () {\n // We can't use window.location.hash here because it's not\n // consistent across browsers - Firefox will pre-decode it!\n var href = window.location.href;\n var index = href.indexOf('#');\n // empty path\n if (index < 0) { return '' }\n\n href = href.slice(index + 1);\n\n return href\n}\n\nfunction getUrl (path) {\n var href = window.location.href;\n var i = href.indexOf('#');\n var base = i >= 0 ? href.slice(0, i) : href;\n return (base + \"#\" + path)\n}\n\nfunction pushHash (path) {\n if (supportsPushState) {\n pushState(getUrl(path));\n } else {\n window.location.hash = path;\n }\n}\n\nfunction replaceHash (path) {\n if (supportsPushState) {\n replaceState(getUrl(path));\n } else {\n window.location.replace(getUrl(path));\n }\n}\n\n/* */\n\nvar AbstractHistory = /*@__PURE__*/(function (History) {\n function AbstractHistory (router, base) {\n History.call(this, router, base);\n this.stack = [];\n this.index = -1;\n }\n\n if ( History ) AbstractHistory.__proto__ = History;\n AbstractHistory.prototype = Object.create( History && History.prototype );\n AbstractHistory.prototype.constructor = AbstractHistory;\n\n AbstractHistory.prototype.push = function push (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n this.transitionTo(\n location,\n function (route) {\n this$1$1.stack = this$1$1.stack.slice(0, this$1$1.index + 1).concat(route);\n this$1$1.index++;\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n AbstractHistory.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n this.transitionTo(\n location,\n function (route) {\n this$1$1.stack = this$1$1.stack.slice(0, this$1$1.index).concat(route);\n onComplete && onComplete(route);\n },\n onAbort\n );\n };\n\n AbstractHistory.prototype.go = function go (n) {\n var this$1$1 = this;\n\n var targetIndex = this.index + n;\n if (targetIndex < 0 || targetIndex >= this.stack.length) {\n return\n }\n var route = this.stack[targetIndex];\n this.confirmTransition(\n route,\n function () {\n var prev = this$1$1.current;\n this$1$1.index = targetIndex;\n this$1$1.updateRoute(route);\n this$1$1.router.afterHooks.forEach(function (hook) {\n hook && hook(route, prev);\n });\n },\n function (err) {\n if (isNavigationFailure(err, NavigationFailureType.duplicated)) {\n this$1$1.index = targetIndex;\n }\n }\n );\n };\n\n AbstractHistory.prototype.getCurrentLocation = function getCurrentLocation () {\n var current = this.stack[this.stack.length - 1];\n return current ? current.fullPath : '/'\n };\n\n AbstractHistory.prototype.ensureURL = function ensureURL () {\n // noop\n };\n\n return AbstractHistory;\n}(History));\n\n/* */\n\n\n\nvar VueRouter = function VueRouter (options) {\n if ( options === void 0 ) options = {};\n\n if (process.env.NODE_ENV !== 'production') {\n warn(this instanceof VueRouter, \"Router must be called with the new operator.\");\n }\n this.app = null;\n this.apps = [];\n this.options = options;\n this.beforeHooks = [];\n this.resolveHooks = [];\n this.afterHooks = [];\n this.matcher = createMatcher(options.routes || [], this);\n\n var mode = options.mode || 'hash';\n this.fallback =\n mode === 'history' && !supportsPushState && options.fallback !== false;\n if (this.fallback) {\n mode = 'hash';\n }\n if (!inBrowser) {\n mode = 'abstract';\n }\n this.mode = mode;\n\n switch (mode) {\n case 'history':\n this.history = new HTML5History(this, options.base);\n break\n case 'hash':\n this.history = new HashHistory(this, options.base, this.fallback);\n break\n case 'abstract':\n this.history = new AbstractHistory(this, options.base);\n break\n default:\n if (process.env.NODE_ENV !== 'production') {\n assert(false, (\"invalid mode: \" + mode));\n }\n }\n};\n\nvar prototypeAccessors = { currentRoute: { configurable: true } };\n\nVueRouter.prototype.match = function match (raw, current, redirectedFrom) {\n return this.matcher.match(raw, current, redirectedFrom)\n};\n\nprototypeAccessors.currentRoute.get = function () {\n return this.history && this.history.current\n};\n\nVueRouter.prototype.init = function init (app /* Vue component instance */) {\n var this$1$1 = this;\n\n process.env.NODE_ENV !== 'production' &&\n assert(\n install.installed,\n \"not installed. Make sure to call `Vue.use(VueRouter)` \" +\n \"before creating root instance.\"\n );\n\n this.apps.push(app);\n\n // set up app destroyed handler\n // https://github.com/vuejs/vue-router/issues/2639\n app.$once('hook:destroyed', function () {\n // clean out app from this.apps array once destroyed\n var index = this$1$1.apps.indexOf(app);\n if (index > -1) { this$1$1.apps.splice(index, 1); }\n // ensure we still have a main app or null if no apps\n // we do not release the router so it can be reused\n if (this$1$1.app === app) { this$1$1.app = this$1$1.apps[0] || null; }\n\n if (!this$1$1.app) { this$1$1.history.teardown(); }\n });\n\n // main app previously initialized\n // return as we don't need to set up new history listener\n if (this.app) {\n return\n }\n\n this.app = app;\n\n var history = this.history;\n\n if (history instanceof HTML5History || history instanceof HashHistory) {\n var handleInitialScroll = function (routeOrError) {\n var from = history.current;\n var expectScroll = this$1$1.options.scrollBehavior;\n var supportsScroll = supportsPushState && expectScroll;\n\n if (supportsScroll && 'fullPath' in routeOrError) {\n handleScroll(this$1$1, routeOrError, from, false);\n }\n };\n var setupListeners = function (routeOrError) {\n history.setupListeners();\n handleInitialScroll(routeOrError);\n };\n history.transitionTo(\n history.getCurrentLocation(),\n setupListeners,\n setupListeners\n );\n }\n\n history.listen(function (route) {\n this$1$1.apps.forEach(function (app) {\n app._route = route;\n });\n });\n};\n\nVueRouter.prototype.beforeEach = function beforeEach (fn) {\n return registerHook(this.beforeHooks, fn)\n};\n\nVueRouter.prototype.beforeResolve = function beforeResolve (fn) {\n return registerHook(this.resolveHooks, fn)\n};\n\nVueRouter.prototype.afterEach = function afterEach (fn) {\n return registerHook(this.afterHooks, fn)\n};\n\nVueRouter.prototype.onReady = function onReady (cb, errorCb) {\n this.history.onReady(cb, errorCb);\n};\n\nVueRouter.prototype.onError = function onError (errorCb) {\n this.history.onError(errorCb);\n};\n\nVueRouter.prototype.push = function push (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n // $flow-disable-line\n if (!onComplete && !onAbort && typeof Promise !== 'undefined') {\n return new Promise(function (resolve, reject) {\n this$1$1.history.push(location, resolve, reject);\n })\n } else {\n this.history.push(location, onComplete, onAbort);\n }\n};\n\nVueRouter.prototype.replace = function replace (location, onComplete, onAbort) {\n var this$1$1 = this;\n\n // $flow-disable-line\n if (!onComplete && !onAbort && typeof Promise !== 'undefined') {\n return new Promise(function (resolve, reject) {\n this$1$1.history.replace(location, resolve, reject);\n })\n } else {\n this.history.replace(location, onComplete, onAbort);\n }\n};\n\nVueRouter.prototype.go = function go (n) {\n this.history.go(n);\n};\n\nVueRouter.prototype.back = function back () {\n this.go(-1);\n};\n\nVueRouter.prototype.forward = function forward () {\n this.go(1);\n};\n\nVueRouter.prototype.getMatchedComponents = function getMatchedComponents (to) {\n var route = to\n ? to.matched\n ? to\n : this.resolve(to).route\n : this.currentRoute;\n if (!route) {\n return []\n }\n return [].concat.apply(\n [],\n route.matched.map(function (m) {\n return Object.keys(m.components).map(function (key) {\n return m.components[key]\n })\n })\n )\n};\n\nVueRouter.prototype.resolve = function resolve (\n to,\n current,\n append\n) {\n current = current || this.history.current;\n var location = normalizeLocation(to, current, append, this);\n var route = this.match(location, current);\n var fullPath = route.redirectedFrom || route.fullPath;\n var base = this.history.base;\n var href = createHref(base, fullPath, this.mode);\n return {\n location: location,\n route: route,\n href: href,\n // for backwards compat\n normalizedTo: location,\n resolved: route\n }\n};\n\nVueRouter.prototype.getRoutes = function getRoutes () {\n return this.matcher.getRoutes()\n};\n\nVueRouter.prototype.addRoute = function addRoute (parentOrRoute, route) {\n this.matcher.addRoute(parentOrRoute, route);\n if (this.history.current !== START) {\n this.history.transitionTo(this.history.getCurrentLocation());\n }\n};\n\nVueRouter.prototype.addRoutes = function addRoutes (routes) {\n if (process.env.NODE_ENV !== 'production') {\n warn(false, 'router.addRoutes() is deprecated and has been removed in Vue Router 4. Use router.addRoute() instead.');\n }\n this.matcher.addRoutes(routes);\n if (this.history.current !== START) {\n this.history.transitionTo(this.history.getCurrentLocation());\n }\n};\n\nObject.defineProperties( VueRouter.prototype, prototypeAccessors );\n\nvar VueRouter$1 = VueRouter;\n\nfunction registerHook (list, fn) {\n list.push(fn);\n return function () {\n var i = list.indexOf(fn);\n if (i > -1) { list.splice(i, 1); }\n }\n}\n\nfunction createHref (base, fullPath, mode) {\n var path = mode === 'hash' ? '#' + fullPath : fullPath;\n return base ? cleanPath(base + '/' + path) : path\n}\n\n// We cannot remove this as it would be a breaking change\nVueRouter.install = install;\nVueRouter.version = '3.6.5';\nVueRouter.isNavigationFailure = isNavigationFailure;\nVueRouter.NavigationFailureType = NavigationFailureType;\nVueRouter.START_LOCATION = START;\n\nif (inBrowser && window.Vue) {\n window.Vue.use(VueRouter);\n}\n\nvar version = '3.6.5';\n\nexport { NavigationFailureType, Link as RouterLink, View as RouterView, START as START_LOCATION, VueRouter$1 as default, isNavigationFailure, version };\n","import { generateUrl } from '@nextcloud/router';\nimport queryString from 'query-string';\nimport Router from 'vue-router';\nimport Vue from 'vue';\nimport { ErrorHandler } from 'vue-router/types/router';\nVue.use(Router);\n// Prevent router from throwing errors when we're already on the page we're trying to go to\nconst originalPush = Router.prototype.push;\nRouter.prototype.push = function push(to, onComplete, onAbort) {\n if (onComplete || onAbort)\n return originalPush.call(this, to, onComplete, onAbort);\n return originalPush.call(this, to).catch(err => err);\n};\nconst router = new Router({\n mode: 'history',\n // if index.php is in the url AND we got this far, then it's working:\n // let's keep using index.php in the url\n base: generateUrl('/apps/files'),\n linkActiveClass: 'active',\n routes: [\n {\n path: '/',\n // Pretending we're using the default view\n redirect: { name: 'filelist', params: { view: 'files' } },\n },\n {\n path: '/:view/:fileid(\\\\d+)?',\n name: 'filelist',\n props: true,\n },\n ],\n // Custom stringifyQuery to prevent encoding of slashes in the url\n stringifyQuery(query) {\n const result = queryString.stringify(query).replace(/%2F/gmi, '/');\n return result ? ('?' + result) : '';\n },\n});\nexport default router;\n","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcContent',{attrs:{\"app-name\":\"files\"}},[_c('Navigation'),_vm._v(\" \"),_c('FilesList')],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon cog-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M12,15.5A3.5,3.5 0 0,1 8.5,12A3.5,3.5 0 0,1 12,8.5A3.5,3.5 0 0,1 15.5,12A3.5,3.5 0 0,1 12,15.5M19.43,12.97C19.47,12.65 19.5,12.33 19.5,12C19.5,11.67 19.47,11.34 19.43,11L21.54,9.37C21.73,9.22 21.78,8.95 21.66,8.73L19.66,5.27C19.54,5.05 19.27,4.96 19.05,5.05L16.56,6.05C16.04,5.66 15.5,5.32 14.87,5.07L14.5,2.42C14.46,2.18 14.25,2 14,2H10C9.75,2 9.54,2.18 9.5,2.42L9.13,5.07C8.5,5.32 7.96,5.66 7.44,6.05L4.95,5.05C4.73,4.96 4.46,5.05 4.34,5.27L2.34,8.73C2.21,8.95 2.27,9.22 2.46,9.37L4.57,11C4.53,11.34 4.5,11.67 4.5,12C4.5,12.33 4.53,12.65 4.57,12.97L2.46,14.63C2.27,14.78 2.21,15.05 2.34,15.27L4.34,18.73C4.46,18.95 4.73,19.03 4.95,18.95L7.44,17.94C7.96,18.34 8.5,18.68 9.13,18.93L9.5,21.58C9.54,21.82 9.75,22 10,22H14C14.25,22 14.46,21.82 14.5,21.58L14.87,18.93C15.5,18.67 16.04,18.34 16.56,17.94L19.05,18.95C19.27,19.03 19.54,18.95 19.66,18.73L21.66,15.27C21.78,15.05 21.73,14.78 21.54,14.63L19.43,12.97Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"CogIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Cog.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Cog.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./Cog.vue?vue&type=template&id=89df8f2e\"\nimport script from \"./Cog.vue?vue&type=script&lang=js\"\nexport * from \"./Cog.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon cog-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M12,15.5A3.5,3.5 0 0,1 8.5,12A3.5,3.5 0 0,1 12,8.5A3.5,3.5 0 0,1 15.5,12A3.5,3.5 0 0,1 12,15.5M19.43,12.97C19.47,12.65 19.5,12.33 19.5,12C19.5,11.67 19.47,11.34 19.43,11L21.54,9.37C21.73,9.22 21.78,8.95 21.66,8.73L19.66,5.27C19.54,5.05 19.27,4.96 19.05,5.05L16.56,6.05C16.04,5.66 15.5,5.32 14.87,5.07L14.5,2.42C14.46,2.18 14.25,2 14,2H10C9.75,2 9.54,2.18 9.5,2.42L9.13,5.07C8.5,5.32 7.96,5.66 7.44,6.05L4.95,5.05C4.73,4.96 4.46,5.05 4.34,5.27L2.34,8.73C2.21,8.95 2.27,9.22 2.46,9.37L4.57,11C4.53,11.34 4.5,11.67 4.5,12C4.5,12.33 4.53,12.65 4.57,12.97L2.46,14.63C2.27,14.78 2.21,15.05 2.34,15.27L4.34,18.73C4.46,18.95 4.73,19.03 4.95,18.95L7.44,17.94C7.96,18.34 8.5,18.68 9.13,18.93L9.5,21.58C9.54,21.82 9.75,22 10,22H14C14.25,22 14.46,21.82 14.5,21.58L14.87,18.93C15.5,18.67 16.04,18.34 16.56,17.94L19.05,18.95C19.27,19.03 19.54,18.95 19.66,18.73L21.66,15.27C21.78,15.05 21.73,14.78 21.54,14.63L19.43,12.97Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { defineStore } from 'pinia';\nimport { emit, subscribe } from '@nextcloud/event-bus';\nimport { generateUrl } from '@nextcloud/router';\nimport { loadState } from '@nextcloud/initial-state';\nimport axios from '@nextcloud/axios';\nimport Vue from 'vue';\nconst viewConfig = loadState('files', 'viewConfigs', {});\nexport const useViewConfigStore = function (...args) {\n const store = defineStore('viewconfig', {\n state: () => ({\n viewConfig,\n }),\n getters: {\n getConfig: (state) => (view) => state.viewConfig[view] || {},\n },\n actions: {\n /**\n * Update the view config local store\n */\n onUpdate(view, key, value) {\n if (!this.viewConfig[view]) {\n Vue.set(this.viewConfig, view, {});\n }\n Vue.set(this.viewConfig[view], key, value);\n },\n /**\n * Update the view config local store AND on server side\n */\n async update(view, key, value) {\n axios.put(generateUrl(`/apps/files/api/v1/views/${view}/${key}`), {\n value,\n });\n emit('files:viewconfig:updated', { view, key, value });\n },\n /**\n * Set the sorting key AND sort by ASC\n * The key param must be a valid key of a File object\n * If not found, will be searched within the File attributes\n */\n setSortingBy(key = 'basename', view = 'files') {\n // Save new config\n this.update(view, 'sorting_mode', key);\n this.update(view, 'sorting_direction', 'asc');\n },\n /**\n * Toggle the sorting direction\n */\n toggleSortingDirection(view = 'files') {\n const config = this.getConfig(view) || { sorting_direction: 'asc' };\n const newDirection = config.sorting_direction === 'asc' ? 'desc' : 'asc';\n // Save new config\n this.update(view, 'sorting_direction', newDirection);\n },\n },\n });\n const viewConfigStore = store(...args);\n // Make sure we only register the listeners once\n if (!viewConfigStore._initialized) {\n subscribe('files:viewconfig:updated', function ({ view, key, value }) {\n viewConfigStore.onUpdate(view, key, value);\n });\n viewConfigStore._initialized = true;\n }\n return viewConfigStore;\n};\n","/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { getLoggerBuilder } from '@nextcloud/logger'\n\nexport default getLoggerBuilder()\n\t.setApp('files')\n\t.detectUser()\n\t.build()\n","/* eslint-disable no-undefined,no-param-reassign,no-shadow */\n\n/**\n * Throttle execution of a function. Especially useful for rate limiting\n * execution of handlers on events like resize and scroll.\n *\n * @param {number} delay - A zero-or-greater delay in milliseconds. For event callbacks, values around 100 or 250 (or even higher)\n * are most useful.\n * @param {Function} callback - A function to be executed after delay milliseconds. The `this` context and all arguments are passed through,\n * as-is, to `callback` when the throttled-function is executed.\n * @param {object} [options] - An object to configure options.\n * @param {boolean} [options.noTrailing] - Optional, defaults to false. If noTrailing is true, callback will only execute every `delay` milliseconds\n * while the throttled-function is being called. If noTrailing is false or unspecified, callback will be executed\n * one final time after the last throttled-function call. (After the throttled-function has not been called for\n * `delay` milliseconds, the internal counter is reset).\n * @param {boolean} [options.noLeading] - Optional, defaults to false. If noLeading is false, the first throttled-function call will execute callback\n * immediately. If noLeading is true, the first the callback execution will be skipped. It should be noted that\n * callback will never executed if both noLeading = true and noTrailing = true.\n * @param {boolean} [options.debounceMode] - If `debounceMode` is true (at begin), schedule `clear` to execute after `delay` ms. If `debounceMode` is\n * false (at end), schedule `callback` to execute after `delay` ms.\n *\n * @returns {Function} A new, throttled, function.\n */\nfunction throttle (delay, callback, options) {\n var _ref = options || {},\n _ref$noTrailing = _ref.noTrailing,\n noTrailing = _ref$noTrailing === void 0 ? false : _ref$noTrailing,\n _ref$noLeading = _ref.noLeading,\n noLeading = _ref$noLeading === void 0 ? false : _ref$noLeading,\n _ref$debounceMode = _ref.debounceMode,\n debounceMode = _ref$debounceMode === void 0 ? undefined : _ref$debounceMode;\n /*\n * After wrapper has stopped being called, this timeout ensures that\n * `callback` is executed at the proper times in `throttle` and `end`\n * debounce modes.\n */\n\n\n var timeoutID;\n var cancelled = false; // Keep track of the last time `callback` was executed.\n\n var lastExec = 0; // Function to clear existing timeout\n\n function clearExistingTimeout() {\n if (timeoutID) {\n clearTimeout(timeoutID);\n }\n } // Function to cancel next exec\n\n\n function cancel(options) {\n var _ref2 = options || {},\n _ref2$upcomingOnly = _ref2.upcomingOnly,\n upcomingOnly = _ref2$upcomingOnly === void 0 ? false : _ref2$upcomingOnly;\n\n clearExistingTimeout();\n cancelled = !upcomingOnly;\n }\n /*\n * The `wrapper` function encapsulates all of the throttling / debouncing\n * functionality and when executed will limit the rate at which `callback`\n * is executed.\n */\n\n\n function wrapper() {\n for (var _len = arguments.length, arguments_ = new Array(_len), _key = 0; _key < _len; _key++) {\n arguments_[_key] = arguments[_key];\n }\n\n var self = this;\n var elapsed = Date.now() - lastExec;\n\n if (cancelled) {\n return;\n } // Execute `callback` and update the `lastExec` timestamp.\n\n\n function exec() {\n lastExec = Date.now();\n callback.apply(self, arguments_);\n }\n /*\n * If `debounceMode` is true (at begin) this is used to clear the flag\n * to allow future `callback` executions.\n */\n\n\n function clear() {\n timeoutID = undefined;\n }\n\n if (!noLeading && debounceMode && !timeoutID) {\n /*\n * Since `wrapper` is being called for the first time and\n * `debounceMode` is true (at begin), execute `callback`\n * and noLeading != true.\n */\n exec();\n }\n\n clearExistingTimeout();\n\n if (debounceMode === undefined && elapsed > delay) {\n if (noLeading) {\n /*\n * In throttle mode with noLeading, if `delay` time has\n * been exceeded, update `lastExec` and schedule `callback`\n * to execute after `delay` ms.\n */\n lastExec = Date.now();\n\n if (!noTrailing) {\n timeoutID = setTimeout(debounceMode ? clear : exec, delay);\n }\n } else {\n /*\n * In throttle mode without noLeading, if `delay` time has been exceeded, execute\n * `callback`.\n */\n exec();\n }\n } else if (noTrailing !== true) {\n /*\n * In trailing throttle mode, since `delay` time has not been\n * exceeded, schedule `callback` to execute `delay` ms after most\n * recent execution.\n *\n * If `debounceMode` is true (at begin), schedule `clear` to execute\n * after `delay` ms.\n *\n * If `debounceMode` is false (at end), schedule `callback` to\n * execute after `delay` ms.\n */\n timeoutID = setTimeout(debounceMode ? clear : exec, debounceMode === undefined ? delay - elapsed : delay);\n }\n }\n\n wrapper.cancel = cancel; // Return the wrapper function.\n\n return wrapper;\n}\n\n/* eslint-disable no-undefined */\n/**\n * Debounce execution of a function. Debouncing, unlike throttling,\n * guarantees that a function is only executed a single time, either at the\n * very beginning of a series of calls, or at the very end.\n *\n * @param {number} delay - A zero-or-greater delay in milliseconds. For event callbacks, values around 100 or 250 (or even higher) are most useful.\n * @param {Function} callback - A function to be executed after delay milliseconds. The `this` context and all arguments are passed through, as-is,\n * to `callback` when the debounced-function is executed.\n * @param {object} [options] - An object to configure options.\n * @param {boolean} [options.atBegin] - Optional, defaults to false. If atBegin is false or unspecified, callback will only be executed `delay` milliseconds\n * after the last debounced-function call. If atBegin is true, callback will be executed only at the first debounced-function call.\n * (After the throttled-function has not been called for `delay` milliseconds, the internal counter is reset).\n *\n * @returns {Function} A new, debounced function.\n */\n\nfunction debounce (delay, callback, options) {\n var _ref = options || {},\n _ref$atBegin = _ref.atBegin,\n atBegin = _ref$atBegin === void 0 ? false : _ref$atBegin;\n\n return throttle(delay, callback, {\n debounceMode: atBegin !== false\n });\n}\n\nexport { debounce, throttle };\n//# sourceMappingURL=index.js.map\n","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon chart-pie-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M11,2V22C5.9,21.5 2,17.2 2,12C2,6.8 5.9,2.5 11,2M13,2V11H22C21.5,6.2 17.8,2.5 13,2M13,13V22C17.7,21.5 21.5,17.8 22,13H13Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"ChartPieIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./ChartPie.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./ChartPie.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./ChartPie.vue?vue&type=template&id=b117066e\"\nimport script from \"./ChartPie.vue?vue&type=script&lang=js\"\nexport * from \"./ChartPie.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon chart-pie-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M11,2V22C5.9,21.5 2,17.2 2,12C2,6.8 5.9,2.5 11,2M13,2V11H22C21.5,6.2 17.8,2.5 13,2M13,13V22C17.7,21.5 21.5,17.8 22,13H13Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\n\t<NcAppNavigationItem v-if=\"storageStats\"\n\t\t:aria-label=\"t('files', 'Storage informations')\"\n\t\t:class=\"{ 'app-navigation-entry__settings-quota--not-unlimited': storageStats.quota >= 0}\"\n\t\t:loading=\"loadingStorageStats\"\n\t\t:name=\"storageStatsTitle\"\n\t\t:title=\"storageStatsTooltip\"\n\t\tclass=\"app-navigation-entry__settings-quota\"\n\t\tdata-cy-files-navigation-settings-quota\n\t\t@click.stop.prevent=\"debounceUpdateStorageStats\">\n\t\t<ChartPie slot=\"icon\" :size=\"20\" />\n\n\t\t<!-- Progress bar -->\n\t\t<NcProgressBar v-if=\"storageStats.quota >= 0\"\n\t\t\tslot=\"extra\"\n\t\t\t:error=\"storageStats.relative > 80\"\n\t\t\t:value=\"Math.min(storageStats.relative, 100)\" />\n\t</NcAppNavigationItem>\n</template>\n\n<script>\nimport { debounce, throttle } from 'throttle-debounce'\nimport { formatFileSize } from '@nextcloud/files'\nimport { generateUrl } from '@nextcloud/router'\nimport { loadState } from '@nextcloud/initial-state'\nimport { showError } from '@nextcloud/dialogs'\nimport { subscribe } from '@nextcloud/event-bus'\nimport { translate } from '@nextcloud/l10n'\nimport axios from '@nextcloud/axios'\n\nimport ChartPie from 'vue-material-design-icons/ChartPie.vue'\nimport NcAppNavigationItem from '@nextcloud/vue/dist/Components/NcAppNavigationItem.js'\nimport NcProgressBar from '@nextcloud/vue/dist/Components/NcProgressBar.js'\n\nimport logger from '../logger.js'\n\nexport default {\n\tname: 'NavigationQuota',\n\n\tcomponents: {\n\t\tChartPie,\n\t\tNcAppNavigationItem,\n\t\tNcProgressBar,\n\t},\n\n\tdata() {\n\t\treturn {\n\t\t\tloadingStorageStats: false,\n\t\t\tstorageStats: loadState('files', 'storageStats', null),\n\t\t}\n\t},\n\n\tcomputed: {\n\t\tstorageStatsTitle() {\n\t\t\tconst usedQuotaByte = formatFileSize(this.storageStats?.used, false, false)\n\t\t\tconst quotaByte = formatFileSize(this.storageStats?.quota, false, false)\n\n\t\t\t// If no quota set\n\t\t\tif (this.storageStats?.quota < 0) {\n\t\t\t\treturn this.t('files', '{usedQuotaByte} used', { usedQuotaByte })\n\t\t\t}\n\n\t\t\treturn this.t('files', '{used} of {quota} used', {\n\t\t\t\tused: usedQuotaByte,\n\t\t\t\tquota: quotaByte,\n\t\t\t})\n\t\t},\n\t\tstorageStatsTooltip() {\n\t\t\tif (!this.storageStats.relative) {\n\t\t\t\treturn ''\n\t\t\t}\n\n\t\t\treturn this.t('files', '{relative}% used', this.storageStats)\n\t\t},\n\t},\n\n\tbeforeMount() {\n\t\t/**\n\t\t * Update storage stats every minute\n\t\t * TODO: remove when all views are migrated to Vue\n\t\t */\n\t\tsetInterval(this.throttleUpdateStorageStats, 60 * 1000)\n\n\t\tsubscribe('files:node:created', this.throttleUpdateStorageStats)\n\t\tsubscribe('files:node:deleted', this.throttleUpdateStorageStats)\n\t\tsubscribe('files:node:moved', this.throttleUpdateStorageStats)\n\t\tsubscribe('files:node:updated', this.throttleUpdateStorageStats)\n\t},\n\n\tmounted() {\n\t\t// If the user has a quota set, warn if the available account storage is <=0\n\t\t//\n\t\t// NOTE: This doesn't catch situations where actual *server* \n\t\t// disk (non-quota) space is low, but those should probably\n\t\t// be handled differently anyway since a regular user can't\n\t\t// can't do much about them (If we did want to indicate server disk \n\t\t// space matters to users, we'd probably want to use a warning\n\t\t// specific to that situation anyhow. So this covers warning covers \n\t\t// our primary day-to-day concern (individual account quota usage).\n\t\t//\n\t\tif (this.storageStats?.quota > 0 && this.storageStats?.free <= 0) {\n\t\t\tthis.showStorageFullWarning()\n\t\t}\n\t},\n\n\tmethods: {\n\t\t// From user input\n\t\tdebounceUpdateStorageStats: debounce(200, function(event) {\n\t\t\tthis.updateStorageStats(event)\n\t\t}),\n\t\t// From interval or event bus\n\t\tthrottleUpdateStorageStats: throttle(1000, function(event) {\n\t\t\tthis.updateStorageStats(event)\n\t\t}),\n\n\t\t/**\n\t\t * Update the storage stats\n\t\t * Throttled at max 1 refresh per minute\n\t\t *\n\t\t * @param {Event} [event = null] if user interaction\n\t\t */\n\t\tasync updateStorageStats(event = null) {\n\t\t\tif (this.loadingStorageStats) {\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\tthis.loadingStorageStats = true\n\t\t\ttry {\n\t\t\t\tconst response = await axios.get(generateUrl('/apps/files/api/v1/stats'))\n\t\t\t\tif (!response?.data?.data) {\n\t\t\t\t\tthrow new Error('Invalid storage stats')\n\t\t\t\t}\n\n\t\t\t\t// Warn the user if the available account storage changed from > 0 to 0 \n\t\t\t\t// (unless only because quota was intentionally set to 0 by admin in the interim)\n\t\t\t\tif (this.storageStats?.free > 0 && response.data.data?.free <= 0 && response.data.data?.quota > 0) {\n\t\t\t\t\tthis.showStorageFullWarning()\n\t\t\t\t}\n\n\t\t\t\tthis.storageStats = response.data.data\n\t\t\t} catch (error) {\n\t\t\t\tlogger.error('Could not refresh storage stats', { error })\n\t\t\t\t// Only show to the user if it was manually triggered\n\t\t\t\tif (event) {\n\t\t\t\t\tshowError(t('files', 'Could not refresh storage stats'))\n\t\t\t\t}\n\t\t\t} finally {\n\t\t\t\tthis.loadingStorageStats = false\n\t\t\t}\n\t\t},\n\n\t\tshowStorageFullWarning() {\n\t\t\tshowError(this.t('files', 'Your storage is full, files can not be updated or synced anymore!'))\n\t\t},\n\n\t\tt: translate,\n\t},\n}\n</script>\n\n<style lang=\"scss\" scoped>\n// User storage stats display\n.app-navigation-entry__settings-quota {\n\t// Align title with progress and icon\n\t&--not-unlimited::v-deep .app-navigation-entry__name {\n\t\tmargin-top: -6px;\n\t}\n\n\tprogress {\n\t\tposition: absolute;\n\t\tbottom: 12px;\n\t\tmargin-left: 44px;\n\t\twidth: calc(100% - 44px - 22px);\n\t}\n}\n</style>\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavigationQuota.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavigationQuota.vue?vue&type=script&lang=js\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavigationQuota.vue?vue&type=style&index=0&id=063ed938&prod&lang=scss&scoped=true\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NavigationQuota.vue?vue&type=style&index=0&id=063ed938&prod&lang=scss&scoped=true\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./NavigationQuota.vue?vue&type=template&id=063ed938&scoped=true\"\nimport script from \"./NavigationQuota.vue?vue&type=script&lang=js\"\nexport * from \"./NavigationQuota.vue?vue&type=script&lang=js\"\nimport style0 from \"./NavigationQuota.vue?vue&type=style&index=0&id=063ed938&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"063ed938\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return (_vm.storageStats)?_c('NcAppNavigationItem',{staticClass:\"app-navigation-entry__settings-quota\",class:{ 'app-navigation-entry__settings-quota--not-unlimited': _vm.storageStats.quota >= 0},attrs:{\"aria-label\":_vm.t('files', 'Storage informations'),\"loading\":_vm.loadingStorageStats,\"name\":_vm.storageStatsTitle,\"title\":_vm.storageStatsTooltip,\"data-cy-files-navigation-settings-quota\":\"\"},on:{\"click\":function($event){$event.stopPropagation();$event.preventDefault();return _vm.debounceUpdateStorageStats.apply(null, arguments)}}},[_c('ChartPie',{attrs:{\"slot\":\"icon\",\"size\":20},slot:\"icon\"}),_vm._v(\" \"),(_vm.storageStats.quota >= 0)?_c('NcProgressBar',{attrs:{\"slot\":\"extra\",\"error\":_vm.storageStats.relative > 80,\"value\":Math.min(_vm.storageStats.relative, 100)},slot:\"extra\"}):_vm._e()],1):_vm._e()\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('NcAppSettingsDialog',{attrs:{\"open\":_vm.open,\"show-navigation\":true,\"name\":_vm.t('files', 'Files settings')},on:{\"update:open\":_vm.onClose}},[_c('NcAppSettingsSection',{attrs:{\"id\":\"settings\",\"name\":_vm.t('files', 'Files settings')}},[_c('NcCheckboxRadioSwitch',{attrs:{\"checked\":_vm.userConfig.sort_favorites_first},on:{\"update:checked\":function($event){return _vm.setConfig('sort_favorites_first', $event)}}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Sort favorites first'))+\"\\n\\t\\t\")]),_vm._v(\" \"),_c('NcCheckboxRadioSwitch',{attrs:{\"checked\":_vm.userConfig.sort_folders_first},on:{\"update:checked\":function($event){return _vm.setConfig('sort_folders_first', $event)}}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Sort folders before files'))+\"\\n\\t\\t\")]),_vm._v(\" \"),_c('NcCheckboxRadioSwitch',{attrs:{\"checked\":_vm.userConfig.show_hidden},on:{\"update:checked\":function($event){return _vm.setConfig('show_hidden', $event)}}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Show hidden files'))+\"\\n\\t\\t\")]),_vm._v(\" \"),_c('NcCheckboxRadioSwitch',{attrs:{\"checked\":_vm.userConfig.crop_image_previews},on:{\"update:checked\":function($event){return _vm.setConfig('crop_image_previews', $event)}}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Crop image previews'))+\"\\n\\t\\t\")]),_vm._v(\" \"),(_vm.enableGridView)?_c('NcCheckboxRadioSwitch',{attrs:{\"checked\":_vm.userConfig.grid_view},on:{\"update:checked\":function($event){return _vm.setConfig('grid_view', $event)}}},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.t('files', 'Enable the grid view'))+\"\\n\\t\\t\")]):_vm._e()],1),_vm._v(\" \"),(_vm.settings.length !== 0)?_c('NcAppSettingsSection',{attrs:{\"id\":\"more-settings\",\"name\":_vm.t('files', 'Additional settings')}},[_vm._l((_vm.settings),function(setting){return [_c('Setting',{key:setting.name,attrs:{\"el\":setting.el}})]})],2):_vm._e(),_vm._v(\" \"),_c('NcAppSettingsSection',{attrs:{\"id\":\"webdav\",\"name\":_vm.t('files', 'WebDAV')}},[_c('NcInputField',{attrs:{\"id\":\"webdav-url-input\",\"label\":_vm.t('files', 'WebDAV URL'),\"show-trailing-button\":true,\"success\":_vm.webdavUrlCopied,\"trailing-button-label\":_vm.t('files', 'Copy to clipboard'),\"value\":_vm.webdavUrl,\"readonly\":\"readonly\",\"type\":\"url\"},on:{\"focus\":function($event){return $event.target.select()},\"trailing-button-click\":_vm.copyCloudId},scopedSlots:_vm._u([{key:\"trailing-button-icon\",fn:function(){return [_c('Clipboard',{attrs:{\"size\":20}})]},proxy:true}])}),_vm._v(\" \"),_c('em',[_c('a',{staticClass:\"setting-link\",attrs:{\"href\":_vm.webdavDocs,\"target\":\"_blank\",\"rel\":\"noreferrer noopener\"}},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('files', 'Use this address to access your Files via WebDAV'))+\" ↗\\n\\t\\t\\t\")])]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('em',[_c('a',{staticClass:\"setting-link\",attrs:{\"href\":_vm.appPasswordUrl}},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('files', 'If you have enabled 2FA, you must create and use a new app password by clicking here.'))+\" ↗\\n\\t\\t\\t\")])])],1)],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon clipboard-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M19,3H14.82C14.4,1.84 13.3,1 12,1C10.7,1 9.6,1.84 9.18,3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5A2,2 0 0,0 19,3M12,3A1,1 0 0,1 13,4A1,1 0 0,1 12,5A1,1 0 0,1 11,4A1,1 0 0,1 12,3\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"ClipboardIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Clipboard.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Clipboard.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./Clipboard.vue?vue&type=template&id=0c133921\"\nimport script from \"./Clipboard.vue?vue&type=script&lang=js\"\nexport * from \"./Clipboard.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon clipboard-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M19,3H14.82C14.4,1.84 13.3,1 12,1C10.7,1 9.6,1.84 9.18,3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5A2,2 0 0,0 19,3M12,3A1,1 0 0,1 13,4A1,1 0 0,1 12,5A1,1 0 0,1 11,4A1,1 0 0,1 12,3\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<!--\n - @copyright Copyright (c) 2020 Gary Kim <gary@garykim.dev>\n -\n - @author John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n\n<template>\n\t<div />\n</template>\n<script>\nexport default {\n\tname: 'Setting',\n\tprops: {\n\t\tel: {\n\t\t\ttype: Function,\n\t\t\trequired: true,\n\t\t},\n\t},\n\tmounted() {\n\t\tthis.$el.appendChild(this.el())\n\t},\n}\n</script>\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Setting.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Setting.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./Setting.vue?vue&type=template&id=61d69eae\"\nimport script from \"./Setting.vue?vue&type=script&lang=js\"\nexport * from \"./Setting.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('div')\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import { defineStore } from 'pinia';\nimport { emit, subscribe } from '@nextcloud/event-bus';\nimport { generateUrl } from '@nextcloud/router';\nimport { loadState } from '@nextcloud/initial-state';\nimport axios from '@nextcloud/axios';\nimport Vue from 'vue';\nconst userConfig = loadState('files', 'config', {\n show_hidden: false,\n crop_image_previews: true,\n sort_favorites_first: true,\n sort_folders_first: true,\n grid_view: false,\n});\nexport const useUserConfigStore = function (...args) {\n const store = defineStore('userconfig', {\n state: () => ({\n userConfig,\n }),\n actions: {\n /**\n * Update the user config local store\n */\n onUpdate(key, value) {\n Vue.set(this.userConfig, key, value);\n },\n /**\n * Update the user config local store AND on server side\n */\n async update(key, value) {\n await axios.put(generateUrl('/apps/files/api/v1/config/' + key), {\n value,\n });\n emit('files:config:updated', { key, value });\n },\n },\n });\n const userConfigStore = store(...args);\n // Make sure we only register the listeners once\n if (!userConfigStore._initialized) {\n subscribe('files:config:updated', function ({ key, value }) {\n userConfigStore.onUpdate(key, value);\n });\n userConfigStore._initialized = true;\n }\n return userConfigStore;\n};\n","<!--\n - @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @author John Molakvoæ <skjnldsv@protonmail.com>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -\n -->\n<template>\n\t<NcAppSettingsDialog :open=\"open\"\n\t\t:show-navigation=\"true\"\n\t\t:name=\"t('files', 'Files settings')\"\n\t\t@update:open=\"onClose\">\n\t\t<!-- Settings API-->\n\t\t<NcAppSettingsSection id=\"settings\" :name=\"t('files', 'Files settings')\">\n\t\t\t<NcCheckboxRadioSwitch :checked=\"userConfig.sort_favorites_first\"\n\t\t\t\t@update:checked=\"setConfig('sort_favorites_first', $event)\">\n\t\t\t\t{{ t('files', 'Sort favorites first') }}\n\t\t\t</NcCheckboxRadioSwitch>\n\t\t\t<NcCheckboxRadioSwitch :checked=\"userConfig.sort_folders_first\"\n\t\t\t\t@update:checked=\"setConfig('sort_folders_first', $event)\">\n\t\t\t\t{{ t('files', 'Sort folders before files') }}\n\t\t\t</NcCheckboxRadioSwitch>\n\t\t\t<NcCheckboxRadioSwitch :checked=\"userConfig.show_hidden\"\n\t\t\t\t@update:checked=\"setConfig('show_hidden', $event)\">\n\t\t\t\t{{ t('files', 'Show hidden files') }}\n\t\t\t</NcCheckboxRadioSwitch>\n\t\t\t<NcCheckboxRadioSwitch :checked=\"userConfig.crop_image_previews\"\n\t\t\t\t@update:checked=\"setConfig('crop_image_previews', $event)\">\n\t\t\t\t{{ t('files', 'Crop image previews') }}\n\t\t\t</NcCheckboxRadioSwitch>\n\t\t\t<NcCheckboxRadioSwitch v-if=\"enableGridView\"\n\t\t\t\t:checked=\"userConfig.grid_view\"\n\t\t\t\t@update:checked=\"setConfig('grid_view', $event)\">\n\t\t\t\t{{ t('files', 'Enable the grid view') }}\n\t\t\t</NcCheckboxRadioSwitch>\n\t\t</NcAppSettingsSection>\n\n\t\t<!-- Settings API-->\n\t\t<NcAppSettingsSection v-if=\"settings.length !== 0\"\n\t\t\tid=\"more-settings\"\n\t\t\t:name=\"t('files', 'Additional settings')\">\n\t\t\t<template v-for=\"setting in settings\">\n\t\t\t\t<Setting :key=\"setting.name\" :el=\"setting.el\" />\n\t\t\t</template>\n\t\t</NcAppSettingsSection>\n\n\t\t<!-- Webdav URL-->\n\t\t<NcAppSettingsSection id=\"webdav\" :name=\"t('files', 'WebDAV')\">\n\t\t\t<NcInputField id=\"webdav-url-input\"\n\t\t\t\t:label=\"t('files', 'WebDAV URL')\"\n\t\t\t\t:show-trailing-button=\"true\"\n\t\t\t\t:success=\"webdavUrlCopied\"\n\t\t\t\t:trailing-button-label=\"t('files', 'Copy to clipboard')\"\n\t\t\t\t:value=\"webdavUrl\"\n\t\t\t\treadonly=\"readonly\"\n\t\t\t\ttype=\"url\"\n\t\t\t\t@focus=\"$event.target.select()\"\n\t\t\t\t@trailing-button-click=\"copyCloudId\">\n\t\t\t\t<template #trailing-button-icon>\n\t\t\t\t\t<Clipboard :size=\"20\" />\n\t\t\t\t</template>\n\t\t\t</NcInputField>\n\t\t\t<em>\n\t\t\t\t<a class=\"setting-link\"\n\t\t\t\t\t:href=\"webdavDocs\"\n\t\t\t\t\ttarget=\"_blank\"\n\t\t\t\t\trel=\"noreferrer noopener\">\n\t\t\t\t\t{{ t('files', 'Use this address to access your Files via WebDAV') }} ↗\n\t\t\t\t</a>\n\t\t\t</em>\n\t\t\t<br>\n\t\t\t<em>\n\t\t\t\t<a class=\"setting-link\" :href=\"appPasswordUrl\">\n\t\t\t\t\t{{ t('files', 'If you have enabled 2FA, you must create and use a new app password by clicking here.') }} ↗\n\t\t\t\t</a>\n\t\t\t</em>\n\t\t</NcAppSettingsSection>\n\t</NcAppSettingsDialog>\n</template>\n\n<script>\nimport NcAppSettingsDialog from '@nextcloud/vue/dist/Components/NcAppSettingsDialog.js'\nimport NcAppSettingsSection from '@nextcloud/vue/dist/Components/NcAppSettingsSection.js'\nimport NcCheckboxRadioSwitch from '@nextcloud/vue/dist/Components/NcCheckboxRadioSwitch.js'\nimport Clipboard from 'vue-material-design-icons/Clipboard.vue'\nimport NcInputField from '@nextcloud/vue/dist/Components/NcInputField.js'\nimport Setting from '../components/Setting.vue'\n\nimport { generateRemoteUrl, generateUrl } from '@nextcloud/router'\nimport { getCurrentUser } from '@nextcloud/auth'\nimport { showError, showSuccess } from '@nextcloud/dialogs'\nimport { translate } from '@nextcloud/l10n'\nimport { loadState } from '@nextcloud/initial-state'\nimport { useUserConfigStore } from '../store/userconfig.ts'\n\nexport default {\n\tname: 'Settings',\n\tcomponents: {\n\t\tClipboard,\n\t\tNcAppSettingsDialog,\n\t\tNcAppSettingsSection,\n\t\tNcCheckboxRadioSwitch,\n\t\tNcInputField,\n\t\tSetting,\n\t},\n\n\tprops: {\n\t\topen: {\n\t\t\ttype: Boolean,\n\t\t\tdefault: false,\n\t\t},\n\t},\n\n\tsetup() {\n\t\tconst userConfigStore = useUserConfigStore()\n\t\treturn {\n\t\t\tuserConfigStore,\n\t\t}\n\t},\n\n\tdata() {\n\t\treturn {\n\t\t\t// Settings API\n\t\t\tsettings: window.OCA?.Files?.Settings?.settings || [],\n\n\t\t\t// Webdav infos\n\t\t\twebdavUrl: generateRemoteUrl('dav/files/' + encodeURIComponent(getCurrentUser()?.uid)),\n\t\t\twebdavDocs: 'https://docs.nextcloud.com/server/stable/go.php?to=user-webdav',\n\t\t\tappPasswordUrl: generateUrl('/settings/user/security#generate-app-token-section'),\n\t\t\twebdavUrlCopied: false,\n\t\t\tenableGridView: (loadState('core', 'config', [])['enable_non-accessible_features'] ?? true),\n\t\t}\n\t},\n\n\tcomputed: {\n\t\tuserConfig() {\n\t\t\treturn this.userConfigStore.userConfig\n\t\t},\n\t},\n\n\tbeforeMount() {\n\t\t// Update the settings API entries state\n\t\tthis.settings.forEach(setting => setting.open())\n\t},\n\n\tbeforeDestroy() {\n\t\t// Update the settings API entries state\n\t\tthis.settings.forEach(setting => setting.close())\n\t},\n\n\tmethods: {\n\t\tonClose() {\n\t\t\tthis.$emit('close')\n\t\t},\n\n\t\tsetConfig(key, value) {\n\t\t\tthis.userConfigStore.update(key, value)\n\t\t},\n\n\t\tasync copyCloudId() {\n\t\t\tdocument.querySelector('input#webdav-url-input').select()\n\n\t\t\tif (!navigator.clipboard) {\n\t\t\t\t// Clipboard API not available\n\t\t\t\tshowError(t('files', 'Clipboard is not available'))\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\tawait navigator.clipboard.writeText(this.webdavUrl)\n\t\t\tthis.webdavUrlCopied = true\n\t\t\tshowSuccess(t('files', 'WebDAV URL copied to clipboard'))\n\t\t\tsetTimeout(() => {\n\t\t\t\tthis.webdavUrlCopied = false\n\t\t\t}, 5000)\n\t\t},\n\n\t\tt: translate,\n\t},\n}\n</script>\n\n<style lang=\"scss\" scoped>\n.setting-link:hover {\n\ttext-decoration: underline;\n}\n</style>\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Settings.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Settings.vue?vue&type=script&lang=js\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Settings.vue?vue&type=style&index=0&id=6d63c120&prod&lang=scss&scoped=true\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Settings.vue?vue&type=style&index=0&id=6d63c120&prod&lang=scss&scoped=true\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./Settings.vue?vue&type=template&id=6d63c120&scoped=true\"\nimport script from \"./Settings.vue?vue&type=script&lang=js\"\nexport * from \"./Settings.vue?vue&type=script&lang=js\"\nimport style0 from \"./Settings.vue?vue&type=style&index=0&id=6d63c120&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"6d63c120\",\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Navigation.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Navigation.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('NcAppNavigation',{attrs:{\"data-cy-files-navigation\":\"\",\"aria-label\":_vm.t('files', 'Files')},scopedSlots:_vm._u([{key:\"list\",fn:function(){return _vm._l((_vm.parentViews),function(view){return _c('NcAppNavigationItem',{key:view.id,attrs:{\"allow-collapse\":true,\"data-cy-files-navigation-item\":view.id,\"exact\":_vm.useExactRouteMatching(view),\"icon\":view.iconClass,\"name\":view.name,\"open\":_vm.isExpanded(view),\"pinned\":view.sticky,\"to\":_vm.generateToNavigation(view)},on:{\"update:open\":function($event){return _vm.onToggleExpand(view)}}},[(view.icon)?_c('NcIconSvgWrapper',{attrs:{\"slot\":\"icon\",\"svg\":view.icon},slot:\"icon\"}):_vm._e(),_vm._v(\" \"),_vm._l((_vm.childViews[view.id]),function(child){return _c('NcAppNavigationItem',{key:child.id,attrs:{\"data-cy-files-navigation-item\":child.id,\"exact-path\":true,\"icon\":child.iconClass,\"name\":child.name,\"to\":_vm.generateToNavigation(child)}},[(child.icon)?_c('NcIconSvgWrapper',{attrs:{\"slot\":\"icon\",\"svg\":child.icon},slot:\"icon\"}):_vm._e()],1)})],2)})},proxy:true},{key:\"footer\",fn:function(){return [_c('ul',{staticClass:\"app-navigation-entry__settings\"},[_c('NavigationQuota'),_vm._v(\" \"),_c('NcAppNavigationItem',{attrs:{\"aria-label\":_vm.t('files', 'Open the files app settings'),\"name\":_vm.t('files', 'Files settings'),\"data-cy-files-navigation-settings-button\":\"\"},on:{\"click\":function($event){$event.preventDefault();$event.stopPropagation();return _vm.openSettings.apply(null, arguments)}}},[_c('Cog',{attrs:{\"slot\":\"icon\",\"size\":20},slot:\"icon\"})],1)],1)]},proxy:true}])},[_vm._v(\" \"),_vm._v(\" \"),_c('SettingsModal',{attrs:{\"open\":_vm.settingsOpened,\"data-cy-files-navigation-settings\":\"\"},on:{\"close\":_vm.onSettingsClose}})],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Navigation.vue?vue&type=style&index=0&id=8291caa8&prod&scoped=true&lang=scss\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Navigation.vue?vue&type=style&index=0&id=8291caa8&prod&scoped=true&lang=scss\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./Navigation.vue?vue&type=template&id=8291caa8&scoped=true\"\nimport script from \"./Navigation.vue?vue&type=script&lang=ts\"\nexport * from \"./Navigation.vue?vue&type=script&lang=ts\"\nimport style0 from \"./Navigation.vue?vue&type=style&index=0&id=8291caa8&prod&scoped=true&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"8291caa8\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcAppContent',{attrs:{\"page-heading\":_vm.pageHeading,\"data-cy-files-content\":\"\"}},[_c('div',{staticClass:\"files-list__header\"},[_c('BreadCrumbs',{attrs:{\"path\":_vm.dir},on:{\"reload\":_vm.fetchContent},scopedSlots:_vm._u([{key:\"actions\",fn:function(){return [(_vm.canShare && _vm.filesListWidth >= 512)?_c('NcButton',{staticClass:\"files-list__header-share-button\",class:{ 'files-list__header-share-button--shared': _vm.shareButtonType },attrs:{\"aria-label\":_vm.shareButtonLabel,\"title\":_vm.shareButtonLabel,\"type\":\"tertiary\"},on:{\"click\":_vm.openSharingSidebar},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.shareButtonType === _vm.Type.SHARE_TYPE_LINK)?_c('LinkIcon'):_c('AccountPlusIcon',{attrs:{\"size\":20}})]},proxy:true}],null,false,2969853559)}):_vm._e(),_vm._v(\" \"),(!_vm.canUpload || _vm.isQuotaExceeded)?_c('NcButton',{staticClass:\"files-list__header-upload-button--disabled\",attrs:{\"aria-label\":_vm.cantUploadLabel,\"title\":_vm.cantUploadLabel,\"disabled\":true,\"type\":\"secondary\"},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [_c('PlusIcon',{attrs:{\"size\":20}})]},proxy:true}],null,false,2953566425)},[_vm._v(\"\\n\\t\\t\\t\\t\\t\"+_vm._s(_vm.t('files', 'New'))+\"\\n\\t\\t\\t\\t\")]):(_vm.currentFolder)?_c('UploadPicker',{staticClass:\"files-list__header-upload-button\",attrs:{\"content\":_vm.dirContents,\"destination\":_vm.currentFolder,\"multiple\":true},on:{\"failed\":_vm.onUploadFail,\"uploaded\":_vm.onUpload}}):_vm._e()]},proxy:true}])}),_vm._v(\" \"),(_vm.filesListWidth >= 512 && _vm.enableGridView)?_c('NcButton',{staticClass:\"files-list__header-grid-button\",attrs:{\"aria-label\":_vm.gridViewButtonLabel,\"title\":_vm.gridViewButtonLabel,\"type\":\"tertiary\"},on:{\"click\":_vm.toggleGridView},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.userConfig.grid_view)?_c('ListViewIcon'):_c('ViewGridIcon')]},proxy:true}],null,false,1682960703)}):_vm._e(),_vm._v(\" \"),(_vm.isRefreshing)?_c('NcLoadingIcon',{staticClass:\"files-list__refresh-icon\"}):_vm._e()],1),_vm._v(\" \"),(!_vm.loading && _vm.canUpload)?_c('DragAndDropNotice',{attrs:{\"current-folder\":_vm.currentFolder}}):_vm._e(),_vm._v(\" \"),(_vm.loading && !_vm.isRefreshing)?_c('NcLoadingIcon',{staticClass:\"files-list__loading-icon\",attrs:{\"size\":38,\"name\":_vm.t('files', 'Loading current folder')}}):(!_vm.loading && _vm.isEmptyDir)?_c('NcEmptyContent',{attrs:{\"name\":_vm.currentView?.emptyTitle || _vm.t('files', 'No files in here'),\"description\":_vm.currentView?.emptyCaption || _vm.t('files', 'Upload some content or sync with your devices!'),\"data-cy-files-content-empty\":\"\"},scopedSlots:_vm._u([{key:\"action\",fn:function(){return [(_vm.dir !== '/')?_c('NcButton',{attrs:{\"aria-label\":_vm.t('files', 'Go to the previous folder'),\"type\":\"primary\",\"to\":_vm.toPreviousDir}},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('files', 'Go back'))+\"\\n\\t\\t\\t\")]):_vm._e()]},proxy:true},{key:\"icon\",fn:function(){return [_c('NcIconSvgWrapper',{attrs:{\"svg\":_vm.currentView.icon}})]},proxy:true}])}):_c('FilesListVirtual',{ref:\"filesListVirtual\",attrs:{\"current-folder\":_vm.currentFolder,\"current-view\":_vm.currentView,\"nodes\":_vm.dirContentsSorted}})],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * natural-orderby v3.0.2\n *\n * Copyright (c) Olaf Ennen\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE.md file in the root directory of this source tree.\n *\n * @license MIT\n */\nvar compareNumbers = function compareNumbers(numberA, numberB) {\n if (numberA < numberB) {\n return -1;\n }\n if (numberA > numberB) {\n return 1;\n }\n return 0;\n};\n\nvar compareUnicode = function compareUnicode(stringA, stringB) {\n var result = stringA.localeCompare(stringB);\n return result ? result / Math.abs(result) : 0;\n};\n\nvar RE_NUMBERS = /(^0x[\\da-fA-F]+$|^([+-]?(?:\\d+(?:\\.\\d*)?|\\.\\d+)(?:[eE][+-]?\\d+)?(?!\\.\\d+)(?=\\D|\\s|$))|\\d+)/g;\nvar RE_LEADING_OR_TRAILING_WHITESPACES = /^\\s+|\\s+$/g; // trim pre-post whitespace\nvar RE_WHITESPACES = /\\s+/g; // normalize all whitespace to single ' ' character\nvar RE_INT_OR_FLOAT = /^[+-]?(?:\\d+(?:\\.\\d*)?|\\.\\d+)(?:[eE][+-]?\\d+)?$/; // identify integers and floats\nvar RE_DATE = /(^([\\w ]+,?[\\w ]+)?[\\w ]+,?[\\w ]+\\d+:\\d+(:\\d+)?[\\w ]?|^\\d{1,4}[/-]\\d{1,4}[/-]\\d{1,4}|^\\w+, \\w+ \\d+, \\d{4})/; // identify date strings\nvar RE_LEADING_ZERO = /^0+[1-9]{1}[0-9]*$/;\n// eslint-disable-next-line no-control-regex\nvar RE_UNICODE_CHARACTERS = /[^\\x00-\\x80]/;\n\nvar stringCompare = function stringCompare(stringA, stringB) {\n if (stringA < stringB) {\n return -1;\n }\n if (stringA > stringB) {\n return 1;\n }\n return 0;\n};\n\nvar compareChunks = function compareChunks(chunksA, chunksB) {\n var lengthA = chunksA.length;\n var lengthB = chunksB.length;\n var size = Math.min(lengthA, lengthB);\n for (var i = 0; i < size; i++) {\n var chunkA = chunksA[i];\n var chunkB = chunksB[i];\n if (chunkA.normalizedString !== chunkB.normalizedString) {\n if (chunkA.normalizedString === '' !== (chunkB.normalizedString === '')) {\n // empty strings have lowest value\n return chunkA.normalizedString === '' ? -1 : 1;\n }\n if (chunkA.parsedNumber !== undefined && chunkB.parsedNumber !== undefined) {\n // compare numbers\n var result = compareNumbers(chunkA.parsedNumber, chunkB.parsedNumber);\n if (result === 0) {\n // compare string value, if parsed numbers are equal\n // Example:\n // chunkA = { parsedNumber: 1, normalizedString: \"001\" }\n // chunkB = { parsedNumber: 1, normalizedString: \"01\" }\n // chunkA.parsedNumber === chunkB.parsedNumber\n // chunkA.normalizedString < chunkB.normalizedString\n return stringCompare(chunkA.normalizedString, chunkB.normalizedString);\n }\n return result;\n } else if (chunkA.parsedNumber !== undefined || chunkB.parsedNumber !== undefined) {\n // number < string\n return chunkA.parsedNumber !== undefined ? -1 : 1;\n } else if (RE_UNICODE_CHARACTERS.test(chunkA.normalizedString + chunkB.normalizedString)) {\n // use locale comparison only if one of the chunks contains unicode characters\n return compareUnicode(chunkA.normalizedString, chunkB.normalizedString);\n } else {\n // use common string comparison for performance reason\n return stringCompare(chunkA.normalizedString, chunkB.normalizedString);\n }\n }\n }\n // if the chunks are equal so far, the one which has more chunks is greater than the other one\n if (lengthA > size || lengthB > size) {\n return lengthA <= size ? -1 : 1;\n }\n return 0;\n};\n\nvar compareOtherTypes = function compareOtherTypes(valueA, valueB) {\n if (!valueA.chunks ? valueB.chunks : !valueB.chunks) {\n return !valueA.chunks ? 1 : -1;\n }\n if (valueA.isNaN ? !valueB.isNaN : valueB.isNaN) {\n return valueA.isNaN ? -1 : 1;\n }\n if (valueA.isSymbol ? !valueB.isSymbol : valueB.isSymbol) {\n return valueA.isSymbol ? -1 : 1;\n }\n if (valueA.isObject ? !valueB.isObject : valueB.isObject) {\n return valueA.isObject ? -1 : 1;\n }\n if (valueA.isArray ? !valueB.isArray : valueB.isArray) {\n return valueA.isArray ? -1 : 1;\n }\n if (valueA.isFunction ? !valueB.isFunction : valueB.isFunction) {\n return valueA.isFunction ? -1 : 1;\n }\n if (valueA.isNull ? !valueB.isNull : valueB.isNull) {\n return valueA.isNull ? -1 : 1;\n }\n return 0;\n};\n\nvar compareValues = function compareValues(valueA, valueB) {\n if (valueA.value === valueB.value) {\n return 0;\n }\n if (valueA.parsedNumber !== undefined && valueB.parsedNumber !== undefined) {\n return compareNumbers(valueA.parsedNumber, valueB.parsedNumber);\n }\n if (valueA.chunks && valueB.chunks) {\n return compareChunks(valueA.chunks, valueB.chunks);\n }\n return compareOtherTypes(valueA, valueB);\n};\n\nvar normalizeAlphaChunk = function normalizeAlphaChunk(chunk) {\n return chunk.replace(RE_WHITESPACES, ' ').replace(RE_LEADING_OR_TRAILING_WHITESPACES, '');\n};\n\nvar parseNumber = function parseNumber(value) {\n if (value.length !== 0) {\n var parsedNumber = Number(value);\n if (!Number.isNaN(parsedNumber)) {\n return parsedNumber;\n }\n }\n return undefined;\n};\n\nvar normalizeNumericChunk = function normalizeNumericChunk(chunk, index, chunks) {\n if (RE_INT_OR_FLOAT.test(chunk)) {\n // don´t parse a number, if there´s a preceding decimal point\n // to keep significance\n // e.g. 1.0020, 1.020\n if (!RE_LEADING_ZERO.test(chunk) || index === 0 || chunks[index - 1] !== '.') {\n return parseNumber(chunk) || 0;\n }\n }\n return undefined;\n};\n\nvar createChunkMap = function createChunkMap(chunk, index, chunks) {\n return {\n parsedNumber: normalizeNumericChunk(chunk, index, chunks),\n normalizedString: normalizeAlphaChunk(chunk)\n };\n};\n\nvar createChunks = function createChunks(value) {\n return value.replace(RE_NUMBERS, '\\0$1\\0').replace(/\\0$/, '').replace(/^\\0/, '').split('\\0');\n};\n\nvar createChunkMaps = function createChunkMaps(value) {\n var chunksMaps = createChunks(value).map(createChunkMap);\n return chunksMaps;\n};\n\nvar isFunction = function isFunction(value) {\n return typeof value === 'function';\n};\n\nvar isNaN = function isNaN(value) {\n return Number.isNaN(value) || value instanceof Number && Number.isNaN(value.valueOf());\n};\n\nvar isNull = function isNull(value) {\n return value === null;\n};\n\nvar isObject = function isObject(value) {\n return value !== null && typeof value === 'object' && !Array.isArray(value) && !(value instanceof Number) && !(value instanceof String) && !(value instanceof Boolean) && !(value instanceof Date);\n};\n\nvar isSymbol = function isSymbol(value) {\n return typeof value === 'symbol';\n};\n\nvar isUndefined = function isUndefined(value) {\n return value === undefined;\n};\n\nvar parseDate = function parseDate(value) {\n try {\n var parsedDate = Date.parse(value);\n if (!Number.isNaN(parsedDate)) {\n if (RE_DATE.test(value)) {\n return parsedDate;\n }\n }\n return undefined;\n } catch (_unused) {\n return undefined;\n }\n};\n\nvar numberify = function numberify(value) {\n var parsedNumber = parseNumber(value);\n if (parsedNumber !== undefined) {\n return parsedNumber;\n }\n return parseDate(value);\n};\n\nvar stringify = function stringify(value) {\n if (typeof value === 'boolean' || value instanceof Boolean) {\n return Number(value).toString();\n }\n if (typeof value === 'number' || value instanceof Number) {\n return value.toString();\n }\n if (value instanceof Date) {\n return value.getTime().toString();\n }\n if (typeof value === 'string' || value instanceof String) {\n return value.toLowerCase().replace(RE_LEADING_OR_TRAILING_WHITESPACES, '');\n }\n return '';\n};\n\nvar getMappedValueRecord = function getMappedValueRecord(value) {\n if (typeof value === 'string' || value instanceof String || (typeof value === 'number' || value instanceof Number) && !isNaN(value) || typeof value === 'boolean' || value instanceof Boolean || value instanceof Date) {\n var stringValue = stringify(value);\n var parsedNumber = numberify(stringValue);\n var chunks = createChunkMaps(parsedNumber ? \"\" + parsedNumber : stringValue);\n return {\n parsedNumber: parsedNumber,\n chunks: chunks,\n value: value\n };\n }\n return {\n isArray: Array.isArray(value),\n isFunction: isFunction(value),\n isNaN: isNaN(value),\n isNull: isNull(value),\n isObject: isObject(value),\n isSymbol: isSymbol(value),\n isUndefined: isUndefined(value),\n value: value\n };\n};\n\nvar baseCompare = function baseCompare(options) {\n return function (valueA, valueB) {\n var a = getMappedValueRecord(valueA);\n var b = getMappedValueRecord(valueB);\n var result = compareValues(a, b);\n return result * (options.order === 'desc' ? -1 : 1);\n };\n};\n\nvar isValidOrder = function isValidOrder(value) {\n return typeof value === 'string' && (value === 'asc' || value === 'desc');\n};\nvar getOptions = function getOptions(customOptions) {\n var order = 'asc';\n if (typeof customOptions === 'string' && isValidOrder(customOptions)) {\n order = customOptions;\n } else if (customOptions && typeof customOptions === 'object' && customOptions.order && isValidOrder(customOptions.order)) {\n order = customOptions.order;\n }\n return {\n order: order\n };\n};\n\n/**\n * Creates a compare function that defines the natural sort order considering\n * the given `options` which may be passed to [`Array.prototype.sort()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort).\n */\nfunction compare(options) {\n var validatedOptions = getOptions(options);\n return baseCompare(validatedOptions);\n}\n\nvar compareMultiple = function compareMultiple(recordA, recordB, orders) {\n var indexA = recordA.index,\n valuesA = recordA.values;\n var indexB = recordB.index,\n valuesB = recordB.values;\n var length = valuesA.length;\n var ordersLength = orders.length;\n for (var i = 0; i < length; i++) {\n var order = i < ordersLength ? orders[i] : null;\n if (order && typeof order === 'function') {\n var result = order(valuesA[i].value, valuesB[i].value);\n if (result) {\n return result;\n }\n } else {\n var _result = compareValues(valuesA[i], valuesB[i]);\n if (_result) {\n return _result * (order === 'desc' ? -1 : 1);\n }\n }\n }\n return indexA - indexB;\n};\n\nvar createIdentifierFn = function createIdentifierFn(identifier) {\n if (typeof identifier === 'function') {\n // identifier is already a lookup function\n return identifier;\n }\n return function (value) {\n if (Array.isArray(value)) {\n var index = Number(identifier);\n if (Number.isInteger(index)) {\n return value[index];\n }\n } else if (value && typeof value === 'object') {\n var result = Object.getOwnPropertyDescriptor(value, identifier);\n return result == null ? void 0 : result.value;\n }\n return value;\n };\n};\n\nvar getElementByIndex = function getElementByIndex(collection, index) {\n return collection[index];\n};\n\nvar getValueByIdentifier = function getValueByIdentifier(value, getValue) {\n return getValue(value);\n};\n\nvar baseOrderBy = function baseOrderBy(collection, identifiers, orders) {\n var identifierFns = identifiers.length ? identifiers.map(createIdentifierFn) : [function (value) {\n return value;\n }];\n\n // temporary array holds elements with position and sort-values\n var mappedCollection = collection.map(function (element, index) {\n var values = identifierFns.map(function (identifier) {\n return getValueByIdentifier(element, identifier);\n }).map(getMappedValueRecord);\n return {\n index: index,\n values: values\n };\n });\n\n // iterate over values and compare values until a != b or last value reached\n mappedCollection.sort(function (recordA, recordB) {\n return compareMultiple(recordA, recordB, orders);\n });\n return mappedCollection.map(function (element) {\n return getElementByIndex(collection, element.index);\n });\n};\n\nvar getIdentifiers = function getIdentifiers(identifiers) {\n if (!identifiers) {\n return [];\n }\n var identifierList = !Array.isArray(identifiers) ? [identifiers] : [].concat(identifiers);\n if (identifierList.some(function (identifier) {\n return typeof identifier !== 'string' && typeof identifier !== 'number' && typeof identifier !== 'function';\n })) {\n return [];\n }\n return identifierList;\n};\n\nvar getOrders = function getOrders(orders) {\n if (!orders) {\n return [];\n }\n var orderList = !Array.isArray(orders) ? [orders] : [].concat(orders);\n if (orderList.some(function (order) {\n return order !== 'asc' && order !== 'desc' && typeof order !== 'function';\n })) {\n return [];\n }\n return orderList;\n};\n\n/**\n * Creates an array of elements, natural sorted by specified identifiers and\n * the corresponding sort orders. This method implements a stable sort\n * algorithm, which means the original sort order of equal elements is\n * preserved.\n */\nfunction orderBy(collection, identifiers, orders) {\n if (!collection || !Array.isArray(collection)) {\n return [];\n }\n var validatedIdentifiers = getIdentifiers(identifiers);\n var validatedOrders = getOrders(orders);\n return baseOrderBy(collection, validatedIdentifiers, validatedOrders);\n}\n\nexport { compare, orderBy };\n","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon format-list-bulleted-square-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M3,4H7V8H3V4M9,5V7H21V5H9M3,10H7V14H3V10M9,11V13H21V11H9M3,16H7V20H3V16M9,17V19H21V17H9\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"FormatListBulletedSquareIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./FormatListBulletedSquare.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./FormatListBulletedSquare.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./FormatListBulletedSquare.vue?vue&type=template&id=00aea13f\"\nimport script from \"./FormatListBulletedSquare.vue?vue&type=script&lang=js\"\nexport * from \"./FormatListBulletedSquare.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon format-list-bulleted-square-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M3,4H7V8H3V4M9,5V7H21V5H9M3,10H7V14H3V10M9,11V13H21V11H9M3,16H7V20H3V16M9,17V19H21V17H9\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon account-plus-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M15,14C12.33,14 7,15.33 7,18V20H23V18C23,15.33 17.67,14 15,14M6,10V7H4V10H1V12H4V15H6V12H9V10M15,12A4,4 0 0,0 19,8A4,4 0 0,0 15,4A4,4 0 0,0 11,8A4,4 0 0,0 15,12Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"AccountPlusIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./AccountPlus.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./AccountPlus.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./AccountPlus.vue?vue&type=template&id=a16afc28\"\nimport script from \"./AccountPlus.vue?vue&type=script&lang=js\"\nexport * from \"./AccountPlus.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon account-plus-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M15,14C12.33,14 7,15.33 7,18V20H23V18C23,15.33 17.67,14 15,14M6,10V7H4V10H1V12H4V15H6V12H9V10M15,12A4,4 0 0,0 19,8A4,4 0 0,0 15,4A4,4 0 0,0 11,8A4,4 0 0,0 15,12Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./ViewGrid.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./ViewGrid.vue?vue&type=script&lang=js\"","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon view-grid-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M3,11H11V3H3M3,21H11V13H3M13,21H21V13H13M13,3V11H21V3\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"ViewGridIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import { render, staticRenderFns } from \"./ViewGrid.vue?vue&type=template&id=7b96a104\"\nimport script from \"./ViewGrid.vue?vue&type=script&lang=js\"\nexport * from \"./ViewGrid.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon view-grid-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M3,11H11V3H3M3,21H11V13H3M13,21H21V13H13M13,3V11H21V3\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { Permission, View, FileAction, FileType } from '@nextcloud/files';\nimport { translate as t } from '@nextcloud/l10n';\nimport InformationSvg from '@mdi/svg/svg/information-variant.svg?raw';\nimport logger from '../logger.js';\nexport const ACTION_DETAILS = 'details';\nexport const action = new FileAction({\n id: ACTION_DETAILS,\n displayName: () => t('files', 'Open details'),\n iconSvgInline: () => InformationSvg,\n // Sidebar currently supports user folder only, /files/USER\n enabled: (nodes) => {\n // Only works on single node\n if (nodes.length !== 1) {\n return false;\n }\n if (!nodes[0]) {\n return false;\n }\n // Only work if the sidebar is available\n if (!window?.OCA?.Files?.Sidebar) {\n return false;\n }\n return (nodes[0].root?.startsWith('/files/') && nodes[0].permissions !== Permission.NONE) ?? false;\n },\n async exec(node, view, dir) {\n try {\n // TODO: migrate Sidebar to use a Node instead\n await window.OCA.Files.Sidebar.open(node.path);\n // Silently update current fileid\n window.OCP.Files.Router.goToRoute(null, { view: view.id, fileid: node.fileid }, { dir }, true);\n return null;\n }\n catch (error) {\n logger.error('Error while opening sidebar', { error });\n return false;\n }\n },\n order: -50,\n});\n","import { defineStore } from 'pinia';\nimport { subscribe } from '@nextcloud/event-bus';\nimport logger from '../logger';\nimport Vue from 'vue';\nexport const useFilesStore = function (...args) {\n const store = defineStore('files', {\n state: () => ({\n files: {},\n roots: {},\n }),\n getters: {\n /**\n * Get a file or folder by id\n */\n getNode: (state) => (id) => state.files[id],\n /**\n * Get a list of files or folders by their IDs\n * Does not return undefined values\n */\n getNodes: (state) => (ids) => ids\n .map(id => state.files[id])\n .filter(Boolean),\n /**\n * Get a file or folder by id\n */\n getRoot: (state) => (service) => state.roots[service],\n },\n actions: {\n updateNodes(nodes) {\n // Update the store all at once\n const files = nodes.reduce((acc, node) => {\n if (!node.fileid) {\n logger.error('Trying to update/set a node without fileid', node);\n return acc;\n }\n acc[node.fileid] = node;\n return acc;\n }, {});\n Vue.set(this, 'files', { ...this.files, ...files });\n },\n deleteNodes(nodes) {\n nodes.forEach(node => {\n if (node.fileid) {\n Vue.delete(this.files, node.fileid);\n }\n });\n },\n setRoot({ service, root }) {\n Vue.set(this.roots, service, root);\n },\n onDeletedNode(node) {\n this.deleteNodes([node]);\n },\n onCreatedNode(node) {\n this.updateNodes([node]);\n },\n onUpdatedNode(node) {\n this.updateNodes([node]);\n },\n },\n });\n const fileStore = store(...args);\n // Make sure we only register the listeners once\n if (!fileStore._initialized) {\n subscribe('files:node:created', fileStore.onCreatedNode);\n subscribe('files:node:deleted', fileStore.onDeletedNode);\n subscribe('files:node:updated', fileStore.onUpdatedNode);\n fileStore._initialized = true;\n }\n return fileStore;\n};\n","import { defineStore } from 'pinia';\nimport { FileType, Folder, Node, getNavigation } from '@nextcloud/files';\nimport { subscribe } from '@nextcloud/event-bus';\nimport Vue from 'vue';\nimport logger from '../logger';\nimport { useFilesStore } from './files';\nexport const usePathsStore = function (...args) {\n const files = useFilesStore();\n const store = defineStore('paths', {\n state: () => ({\n paths: {},\n }),\n getters: {\n getPath: (state) => {\n return (service, path) => {\n if (!state.paths[service]) {\n return undefined;\n }\n return state.paths[service][path];\n };\n },\n },\n actions: {\n addPath(payload) {\n // If it doesn't exists, init the service state\n if (!this.paths[payload.service]) {\n Vue.set(this.paths, payload.service, {});\n }\n // Now we can set the provided path\n Vue.set(this.paths[payload.service], payload.path, payload.fileid);\n },\n onCreatedNode(node) {\n const service = getNavigation()?.active?.id || 'files';\n if (!node.fileid) {\n logger.error('Node has no fileid', { node });\n return;\n }\n // Only add path if it's a folder\n if (node.type === FileType.Folder) {\n this.addPath({\n service,\n path: node.path,\n fileid: node.fileid,\n });\n }\n // Update parent folder children if exists\n // If the folder is the root, get it and update it\n if (node.dirname === '/') {\n const root = files.getRoot(service);\n if (!root._children) {\n Vue.set(root, '_children', []);\n }\n root._children.push(node.fileid);\n return;\n }\n // If the folder doesn't exists yet, it will be\n // fetched later and its children updated anyway.\n if (this.paths[service][node.dirname]) {\n const parentId = this.paths[service][node.dirname];\n const parentFolder = files.getNode(parentId);\n logger.debug('Path already exists, updating children', { parentFolder, node });\n if (!parentFolder) {\n logger.error('Parent folder not found', { parentId });\n return;\n }\n if (!parentFolder._children) {\n Vue.set(parentFolder, '_children', []);\n }\n parentFolder._children.push(node.fileid);\n return;\n }\n logger.debug('Parent path does not exists, skipping children update', { node });\n },\n },\n });\n const pathsStore = store(...args);\n // Make sure we only register the listeners once\n if (!pathsStore._initialized) {\n // TODO: watch folders to update paths?\n subscribe('files:node:created', pathsStore.onCreatedNode);\n // subscribe('files:node:deleted', pathsStore.onDeletedNode)\n // subscribe('files:node:moved', pathsStore.onMovedNode)\n pathsStore._initialized = true;\n }\n return pathsStore;\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { defineStore } from 'pinia';\nimport Vue from 'vue';\nimport { FileId, SelectionStore } from '../types';\nexport const useSelectionStore = defineStore('selection', {\n state: () => ({\n selected: [],\n lastSelection: [],\n lastSelectedIndex: null,\n }),\n actions: {\n /**\n * Set the selection of fileIds\n */\n set(selection = []) {\n Vue.set(this, 'selected', [...new Set(selection)]);\n },\n /**\n * Set the last selected index\n */\n setLastIndex(lastSelectedIndex = null) {\n // Update the last selection if we provided a new selection starting point\n Vue.set(this, 'lastSelection', lastSelectedIndex ? this.selected : []);\n Vue.set(this, 'lastSelectedIndex', lastSelectedIndex);\n },\n /**\n * Reset the selection\n */\n reset() {\n Vue.set(this, 'selected', []);\n Vue.set(this, 'lastSelection', []);\n Vue.set(this, 'lastSelectedIndex', null);\n },\n },\n});\n","import { defineStore } from 'pinia';\nimport { getUploader } from '@nextcloud/upload';\nlet uploader;\nexport const useUploaderStore = function (...args) {\n // Only init on runtime\n uploader = getUploader();\n const store = defineStore('uploader', {\n state: () => ({\n queue: uploader.queue,\n }),\n });\n return store(...args);\n};\n","import { emit } from '@nextcloud/event-bus';\nimport { Folder, Node, davGetClient, davGetDefaultPropfind, davResultToNode } from '@nextcloud/files';\nimport { openConflictPicker } from '@nextcloud/upload';\nimport { showError, showInfo } from '@nextcloud/dialogs';\nimport { translate as t } from '@nextcloud/l10n';\nimport logger from '../logger.js';\n/**\n * This represents a Directory in the file tree\n * We extend the File class to better handling uploading\n * and stay as close as possible as the Filesystem API.\n * This also allow us to hijack the size or lastModified\n * properties to compute them dynamically.\n */\nexport class Directory extends File {\n /* eslint-disable no-use-before-define */\n _contents;\n constructor(name, contents = []) {\n super([], name, { type: 'httpd/unix-directory' });\n this._contents = contents;\n }\n set contents(contents) {\n this._contents = contents;\n }\n get contents() {\n return this._contents;\n }\n get size() {\n return this._computeDirectorySize(this);\n }\n get lastModified() {\n if (this._contents.length === 0) {\n return Date.now();\n }\n return this._computeDirectoryMtime(this);\n }\n /**\n * Get the last modification time of a file tree\n * This is not perfect, but will get us a pretty good approximation\n * @param directory the directory to traverse\n */\n _computeDirectoryMtime(directory) {\n return directory.contents.reduce((acc, file) => {\n return file.lastModified > acc\n // If the file is a directory, the lastModified will\n // also return the results of its _computeDirectoryMtime method\n // Fancy recursion, huh?\n ? file.lastModified\n : acc;\n }, 0);\n }\n /**\n * Get the size of a file tree\n * @param directory the directory to traverse\n */\n _computeDirectorySize(directory) {\n return directory.contents.reduce((acc, entry) => {\n // If the file is a directory, the size will\n // also return the results of its _computeDirectorySize method\n // Fancy recursion, huh?\n return acc + entry.size;\n }, 0);\n }\n}\n/**\n * Traverse a file tree using the Filesystem API\n * @param entry the entry to traverse\n */\nexport const traverseTree = async (entry) => {\n // Handle file\n if (entry.isFile) {\n return new Promise((resolve, reject) => {\n entry.file(resolve, reject);\n });\n }\n // Handle directory\n logger.debug('Handling recursive file tree', { entry: entry.name });\n const directory = entry;\n const entries = await readDirectory(directory);\n const contents = (await Promise.all(entries.map(traverseTree))).flat();\n return new Directory(directory.name, contents);\n};\n/**\n * Read a directory using Filesystem API\n * @param directory the directory to read\n */\nconst readDirectory = (directory) => {\n const dirReader = directory.createReader();\n return new Promise((resolve, reject) => {\n const entries = [];\n const getEntries = () => {\n dirReader.readEntries((results) => {\n if (results.length) {\n entries.push(...results);\n getEntries();\n }\n else {\n resolve(entries);\n }\n }, (error) => {\n reject(error);\n });\n };\n getEntries();\n });\n};\nexport const createDirectoryIfNotExists = async (absolutePath) => {\n const davClient = davGetClient();\n const dirExists = await davClient.exists(absolutePath);\n if (!dirExists) {\n logger.debug('Directory does not exist, creating it', { absolutePath });\n await davClient.createDirectory(absolutePath, { recursive: true });\n const stat = await davClient.stat(absolutePath, { details: true, data: davGetDefaultPropfind() });\n emit('files:node:created', davResultToNode(stat.data));\n }\n};\nexport const resolveConflict = async (files, destination, contents) => {\n try {\n // List all conflicting files\n const conflicts = files.filter((file) => {\n return contents.find((node) => node.basename === (file instanceof File ? file.name : file.basename));\n }).filter(Boolean);\n // List of incoming files that are NOT in conflict\n const uploads = files.filter((file) => {\n return !conflicts.includes(file);\n });\n // Let the user choose what to do with the conflicting files\n const { selected, renamed } = await openConflictPicker(destination.path, conflicts, contents);\n logger.debug('Conflict resolution', { uploads, selected, renamed });\n // If the user selected nothing, we cancel the upload\n if (selected.length === 0 && renamed.length === 0) {\n // User skipped\n showInfo(t('files', 'Conflicts resolution skipped'));\n logger.info('User skipped the conflict resolution');\n return [];\n }\n // Update the list of files to upload\n return [...uploads, ...selected, ...renamed];\n }\n catch (error) {\n console.error(error);\n // User cancelled\n showError(t('files', 'Upload cancelled'));\n logger.error('User cancelled the upload');\n }\n return [];\n};\n","\n import API from \"!../../../style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../css-loader/dist/cjs.js!./style.css\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../css-loader/dist/cjs.js!./style.css\";\n export default content && content.locals ? content.locals : undefined;\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport '@nextcloud/dialogs/style.css';\nimport { Permission } from '@nextcloud/files';\nimport PQueue from 'p-queue';\n// This is the processing queue. We only want to allow 3 concurrent requests\nlet queue;\n/**\n * Get the processing queue\n */\nexport const getQueue = () => {\n if (!queue) {\n queue = new PQueue({ concurrency: 3 });\n }\n return queue;\n};\nexport var MoveCopyAction;\n(function (MoveCopyAction) {\n MoveCopyAction[\"MOVE\"] = \"Move\";\n MoveCopyAction[\"COPY\"] = \"Copy\";\n MoveCopyAction[\"MOVE_OR_COPY\"] = \"move-or-copy\";\n})(MoveCopyAction || (MoveCopyAction = {}));\nexport const canMove = (nodes) => {\n const minPermission = nodes.reduce((min, node) => Math.min(min, node.permissions), Permission.ALL);\n return (minPermission & Permission.UPDATE) !== 0;\n};\nexport const canDownload = (nodes) => {\n return nodes.every(node => {\n const shareAttributes = JSON.parse(node.attributes?.['share-attributes'] ?? '[]');\n return !shareAttributes.some(attribute => attribute.scope === 'permissions' && attribute.enabled === false && attribute.key === 'download');\n });\n};\nexport const canCopy = (nodes) => {\n // For now the only restriction is that a shared file\n // cannot be copied if the download is disabled\n return canDownload(nodes);\n};\n","import { createClient, getPatcher } from 'webdav';\nimport { generateRemoteUrl } from '@nextcloud/router';\nimport { getCurrentUser, getRequestToken } from '@nextcloud/auth';\nimport { request } from 'webdav/dist/node/request.js';\nexport const rootPath = `/files/${getCurrentUser()?.uid}`;\nexport const defaultRootUrl = generateRemoteUrl('dav' + rootPath);\nexport const getClient = (rootUrl = defaultRootUrl) => {\n const client = createClient(rootUrl, {\n headers: {\n requesttoken: getRequestToken() || '',\n },\n });\n /**\n * Allow to override the METHOD to support dav REPORT\n *\n * @see https://github.com/perry-mitchell/webdav-client/blob/8d9694613c978ce7404e26a401c39a41f125f87f/source/request.ts\n */\n const patcher = getPatcher();\n // eslint-disable-next-line @typescript-eslint/ban-ts-comment\n // @ts-ignore\n // https://github.com/perry-mitchell/hot-patcher/issues/6\n patcher.patch('request', (options) => {\n if (options.headers?.method) {\n options.method = options.headers.method;\n delete options.headers.method;\n }\n return request(options);\n });\n return client;\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nexport const hashCode = function (str) {\n return str.split('').reduce(function (a, b) {\n a = ((a << 5) - a) + b.charCodeAt(0);\n return a & a;\n }, 0);\n};\n","import { CancelablePromise } from 'cancelable-promise';\nimport { File, Folder, davParsePermissions, davGetDefaultPropfind } from '@nextcloud/files';\nimport { generateRemoteUrl } from '@nextcloud/router';\nimport { getCurrentUser } from '@nextcloud/auth';\nimport { getClient, rootPath } from './WebdavClient';\nimport { hashCode } from '../utils/hashUtils';\nimport logger from '../logger';\nconst client = getClient();\nexport const resultToNode = function (node) {\n const userId = getCurrentUser()?.uid;\n if (!userId) {\n throw new Error('No user id found');\n }\n const props = node.props;\n const permissions = davParsePermissions(props?.permissions);\n const owner = (props['owner-id'] || userId).toString();\n const source = generateRemoteUrl('dav' + rootPath + node.filename);\n const id = props?.fileid < 0\n ? hashCode(source)\n : props?.fileid || 0;\n const nodeData = {\n id,\n source,\n mtime: new Date(node.lastmod),\n mime: node.mime || 'application/octet-stream',\n size: props?.size || 0,\n permissions,\n owner,\n root: rootPath,\n attributes: {\n ...node,\n ...props,\n hasPreview: props?.['has-preview'],\n failed: props?.fileid < 0,\n },\n };\n delete nodeData.attributes.props;\n return node.type === 'file'\n ? new File(nodeData)\n : new Folder(nodeData);\n};\nexport const getContents = (path = '/') => {\n const controller = new AbortController();\n const propfindPayload = davGetDefaultPropfind();\n return new CancelablePromise(async (resolve, reject, onCancel) => {\n onCancel(() => controller.abort());\n try {\n const contentsResponse = await client.getDirectoryContents(path, {\n details: true,\n data: propfindPayload,\n includeSelf: true,\n signal: controller.signal,\n });\n const root = contentsResponse.data[0];\n const contents = contentsResponse.data.slice(1);\n if (root.filename !== path) {\n throw new Error('Root node does not match requested path');\n }\n resolve({\n folder: resultToNode(root),\n contents: contents.map(result => {\n try {\n return resultToNode(result);\n }\n catch (error) {\n logger.error(`Invalid node detected '${result.basename}'`, { error });\n return null;\n }\n }).filter(Boolean),\n });\n }\n catch (error) {\n reject(error);\n }\n });\n};\n","/**\n * @copyright Copyright (c) 2021 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { FileType } from '@nextcloud/files';\nimport { translate as t, translatePlural as n } from '@nextcloud/l10n';\nimport { basename, extname } from 'path';\n// TODO: move to @nextcloud/files\n/**\n * Create an unique file name\n * @param name The initial name to use\n * @param otherNames Other names that are already used\n * @param suffix A function that takes an index an returns a suffix to add, defaults to '(index)'\n * @return Either the initial name, if unique, or the name with the suffix so that the name is unique\n */\nexport const getUniqueName = (name, otherNames, suffix = (n) => `(${n})`) => {\n let newName = name;\n let i = 1;\n while (otherNames.includes(newName)) {\n const ext = extname(name);\n newName = `${basename(name, ext)} ${suffix(i++)}${ext}`;\n }\n return newName;\n};\nexport const encodeFilePath = function (path) {\n const pathSections = (path.startsWith('/') ? path : `/${path}`).split('/');\n let relativePath = '';\n pathSections.forEach((section) => {\n if (section !== '') {\n relativePath += '/' + encodeURIComponent(section);\n }\n });\n return relativePath;\n};\n/**\n * Extract dir and name from file path\n *\n * @param {string} path the full path\n * @return {string[]} [dirPath, fileName]\n */\nexport const extractFilePaths = function (path) {\n const pathSections = path.split('/');\n const fileName = pathSections[pathSections.length - 1];\n const dirPath = pathSections.slice(0, pathSections.length - 1).join('/');\n return [dirPath, fileName];\n};\n/**\n * Generate a translated summary of an array of nodes\n * @param {Node[]} nodes the nodes to summarize\n * @return {string}\n */\nexport const getSummaryFor = (nodes) => {\n const fileCount = nodes.filter(node => node.type === FileType.File).length;\n const folderCount = nodes.filter(node => node.type === FileType.Folder).length;\n if (fileCount === 0) {\n return n('files', '{folderCount} folder', '{folderCount} folders', folderCount, { folderCount });\n }\n else if (folderCount === 0) {\n return n('files', '{fileCount} file', '{fileCount} files', fileCount, { fileCount });\n }\n if (fileCount === 1) {\n return n('files', '1 file and {folderCount} folder', '1 file and {folderCount} folders', folderCount, { folderCount });\n }\n if (folderCount === 1) {\n return n('files', '{fileCount} file and 1 folder', '{fileCount} files and 1 folder', fileCount, { fileCount });\n }\n return t('files', '{fileCount} files and {folderCount} folders', { fileCount, folderCount });\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport '@nextcloud/dialogs/style.css';\n// eslint-disable-next-line n/no-extraneous-import\nimport { AxiosError } from 'axios';\nimport { basename, join } from 'path';\nimport { emit } from '@nextcloud/event-bus';\nimport { FilePickerClosed, getFilePickerBuilder, showError } from '@nextcloud/dialogs';\nimport { Permission, FileAction, FileType, NodeStatus, davGetClient, davRootPath, davResultToNode, davGetDefaultPropfind } from '@nextcloud/files';\nimport { translate as t } from '@nextcloud/l10n';\nimport { openConflictPicker, hasConflict } from '@nextcloud/upload';\nimport Vue from 'vue';\nimport CopyIconSvg from '@mdi/svg/svg/folder-multiple.svg?raw';\nimport FolderMoveSvg from '@mdi/svg/svg/folder-move.svg?raw';\nimport { MoveCopyAction, canCopy, canMove, getQueue } from './moveOrCopyActionUtils';\nimport { getContents } from '../services/Files';\nimport logger from '../logger';\nimport { getUniqueName } from '../utils/fileUtils';\n/**\n * Return the action that is possible for the given nodes\n * @param {Node[]} nodes The nodes to check against\n * @return {MoveCopyAction} The action that is possible for the given nodes\n */\nconst getActionForNodes = (nodes) => {\n if (canMove(nodes)) {\n if (canCopy(nodes)) {\n return MoveCopyAction.MOVE_OR_COPY;\n }\n return MoveCopyAction.MOVE;\n }\n // Assuming we can copy as the enabled checks for copy permissions\n return MoveCopyAction.COPY;\n};\n/**\n * Handle the copy/move of a node to a destination\n * This can be imported and used by other scripts/components on server\n * @param {Node} node The node to copy/move\n * @param {Folder} destination The destination to copy/move the node to\n * @param {MoveCopyAction} method The method to use for the copy/move\n * @param {boolean} overwrite Whether to overwrite the destination if it exists\n * @return {Promise<void>} A promise that resolves when the copy/move is done\n */\nexport const handleCopyMoveNodeTo = async (node, destination, method, overwrite = false) => {\n if (!destination) {\n return;\n }\n if (destination.type !== FileType.Folder) {\n throw new Error(t('files', 'Destination is not a folder'));\n }\n // Do not allow to MOVE a node to the same folder it is already located\n if (method === MoveCopyAction.MOVE && node.dirname === destination.path) {\n throw new Error(t('files', 'This file/folder is already in that directory'));\n }\n /**\n * Example:\n * - node: /foo/bar/file.txt -> path = /foo/bar/file.txt, destination: /foo\n * Allow move of /foo does not start with /foo/bar/file.txt so allow\n * - node: /foo , destination: /foo/bar\n * Do not allow as it would copy foo within itself\n * - node: /foo/bar.txt, destination: /foo\n * Allow copy a file to the same directory\n * - node: \"/foo/bar\", destination: \"/foo/bar 1\"\n * Allow to move or copy but we need to check with trailing / otherwise it would report false positive\n */\n if (`${destination.path}/`.startsWith(`${node.path}/`)) {\n throw new Error(t('files', 'You cannot move a file/folder onto itself or into a subfolder of itself'));\n }\n // Set loading state\n Vue.set(node, 'status', NodeStatus.LOADING);\n const queue = getQueue();\n return await queue.add(async () => {\n const copySuffix = (index) => {\n if (index === 1) {\n return t('files', '(copy)'); // TRANSLATORS: Mark a file as a copy of another file\n }\n return t('files', '(copy %n)', undefined, index); // TRANSLATORS: Meaning it is the n'th copy of a file\n };\n try {\n const client = davGetClient();\n const currentPath = join(davRootPath, node.path);\n const destinationPath = join(davRootPath, destination.path);\n if (method === MoveCopyAction.COPY) {\n let target = node.basename;\n // If we do not allow overwriting then find an unique name\n if (!overwrite) {\n const otherNodes = await client.getDirectoryContents(destinationPath);\n target = getUniqueName(node.basename, otherNodes.map((n) => n.basename), copySuffix);\n }\n await client.copyFile(currentPath, join(destinationPath, target));\n // If the node is copied into current directory the view needs to be updated\n if (node.dirname === destination.path) {\n const { data } = await client.stat(join(destinationPath, target), {\n details: true,\n data: davGetDefaultPropfind(),\n });\n emit('files:node:created', davResultToNode(data));\n }\n }\n else {\n // show conflict file popup if we do not allow overwriting\n const otherNodes = await getContents(destination.path);\n if (hasConflict([node], otherNodes.contents)) {\n try {\n // Let the user choose what to do with the conflicting files\n const { selected, renamed } = await openConflictPicker(destination.path, [node], otherNodes.contents);\n // if the user selected to keep the old file, and did not select the new file\n // that means they opted to delete the current node\n if (!selected.length && !renamed.length) {\n await client.deleteFile(currentPath);\n emit('files:node:deleted', node);\n return;\n }\n }\n catch (error) {\n // User cancelled\n showError(t('files', 'Move cancelled'));\n return;\n }\n }\n // getting here means either no conflict, file was renamed to keep both files\n // in a conflict, or the selected file was chosen to be kept during the conflict\n await client.moveFile(currentPath, join(destinationPath, node.basename));\n // Delete the node as it will be fetched again\n // when navigating to the destination folder\n emit('files:node:deleted', node);\n }\n }\n catch (error) {\n if (error instanceof AxiosError) {\n if (error?.response?.status === 412) {\n throw new Error(t('files', 'A file or folder with that name already exists in this folder'));\n }\n else if (error?.response?.status === 423) {\n throw new Error(t('files', 'The files is locked'));\n }\n else if (error?.response?.status === 404) {\n throw new Error(t('files', 'The file does not exist anymore'));\n }\n else if (error.message) {\n throw new Error(error.message);\n }\n }\n logger.debug(error);\n throw new Error();\n }\n finally {\n Vue.set(node, 'status', undefined);\n }\n });\n};\n/**\n * Open a file picker for the given action\n * @param {MoveCopyAction} action The action to open the file picker for\n * @param {string} dir The directory to start the file picker in\n * @param {Node[]} nodes The nodes to move/copy\n * @return {Promise<MoveCopyResult>} The picked destination\n */\nconst openFilePickerForAction = async (action, dir = '/', nodes) => {\n const fileIDs = nodes.map(node => node.fileid).filter(Boolean);\n const filePicker = getFilePickerBuilder(t('files', 'Choose destination'))\n .allowDirectories(true)\n .setFilter((n) => {\n // We only want to show folders that we can create nodes in\n return (n.permissions & Permission.CREATE) !== 0\n // We don't want to show the current nodes in the file picker\n && !fileIDs.includes(n.fileid);\n })\n .setMimeTypeFilter([])\n .setMultiSelect(false)\n .startAt(dir);\n return new Promise((resolve, reject) => {\n filePicker.setButtonFactory((_selection, path) => {\n const buttons = [];\n const target = basename(path);\n const dirnames = nodes.map(node => node.dirname);\n const paths = nodes.map(node => node.path);\n if (action === MoveCopyAction.COPY || action === MoveCopyAction.MOVE_OR_COPY) {\n buttons.push({\n label: target ? t('files', 'Copy to {target}', { target }) : t('files', 'Copy'),\n type: 'primary',\n icon: CopyIconSvg,\n async callback(destination) {\n resolve({\n destination: destination[0],\n action: MoveCopyAction.COPY,\n });\n },\n });\n }\n // Invalid MOVE targets (but valid copy targets)\n if (dirnames.includes(path)) {\n // This file/folder is already in that directory\n return buttons;\n }\n if (paths.includes(path)) {\n // You cannot move a file/folder onto itself\n return buttons;\n }\n if (action === MoveCopyAction.MOVE || action === MoveCopyAction.MOVE_OR_COPY) {\n buttons.push({\n label: target ? t('files', 'Move to {target}', { target }) : t('files', 'Move'),\n type: action === MoveCopyAction.MOVE ? 'primary' : 'secondary',\n icon: FolderMoveSvg,\n async callback(destination) {\n resolve({\n destination: destination[0],\n action: MoveCopyAction.MOVE,\n });\n },\n });\n }\n return buttons;\n });\n const picker = filePicker.build();\n picker.pick().catch((error) => {\n logger.debug(error);\n if (error instanceof FilePickerClosed) {\n reject(new Error(t('files', 'Cancelled move or copy operation')));\n }\n else {\n reject(new Error(t('files', 'Move or copy operation failed')));\n }\n });\n });\n};\nexport const action = new FileAction({\n id: 'move-copy',\n displayName(nodes) {\n switch (getActionForNodes(nodes)) {\n case MoveCopyAction.MOVE:\n return t('files', 'Move');\n case MoveCopyAction.COPY:\n return t('files', 'Copy');\n case MoveCopyAction.MOVE_OR_COPY:\n return t('files', 'Move or copy');\n }\n },\n iconSvgInline: () => FolderMoveSvg,\n enabled(nodes) {\n // We only support moving/copying files within the user folder\n if (!nodes.every(node => node.root?.startsWith('/files/'))) {\n return false;\n }\n return nodes.length > 0 && (canMove(nodes) || canCopy(nodes));\n },\n async exec(node, view, dir) {\n const action = getActionForNodes([node]);\n let result;\n try {\n result = await openFilePickerForAction(action, dir, [node]);\n }\n catch (e) {\n logger.error(e);\n return false;\n }\n try {\n await handleCopyMoveNodeTo(node, result.destination, result.action);\n return true;\n }\n catch (error) {\n if (error instanceof Error && !!error.message) {\n showError(error.message);\n // Silent action as we handle the toast\n return null;\n }\n return false;\n }\n },\n async execBatch(nodes, view, dir) {\n const action = getActionForNodes(nodes);\n const result = await openFilePickerForAction(action, dir, nodes);\n const promises = nodes.map(async (node) => {\n try {\n await handleCopyMoveNodeTo(node, result.destination, result.action);\n return true;\n }\n catch (error) {\n logger.error(`Failed to ${result.action} node`, { node, error });\n return false;\n }\n });\n // We need to keep the selection on error!\n // So we do not return null, and for batch action\n // we let the front handle the error.\n return await Promise.all(promises);\n },\n order: 15,\n});\n","/**\n * @copyright Copyright (c) 2023 Ferdinand Thiessen <opensource@fthiessen.de>\n *\n * @author Ferdinand Thiessen <opensource@fthiessen.de>\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { Folder, Node, NodeStatus, davRootPath } from '@nextcloud/files';\nimport { getUploader, hasConflict } from '@nextcloud/upload';\nimport { join } from 'path';\nimport { joinPaths } from '@nextcloud/paths';\nimport { showError, showInfo, showSuccess, showWarning } from '@nextcloud/dialogs';\nimport { translate as t } from '@nextcloud/l10n';\nimport Vue from 'vue';\nimport { Directory, traverseTree, resolveConflict, createDirectoryIfNotExists } from './DropServiceUtils';\nimport { handleCopyMoveNodeTo } from '../actions/moveOrCopyAction';\nimport { MoveCopyAction } from '../actions/moveOrCopyActionUtils';\nimport logger from '../logger.js';\n/**\n * This function converts a list of DataTransferItems to a file tree.\n * It uses the Filesystem API if available, otherwise it falls back to the File API.\n * The File API will NOT be available if the browser is not in a secure context (e.g. HTTP).\n * ⚠️ When using this method, you need to use it as fast as possible, as the DataTransferItems\n * will be cleared after the first access to the props of one of the entries.\n *\n * @param items the list of DataTransferItems\n */\nexport const dataTransferToFileTree = async (items) => {\n // Check if the browser supports the Filesystem API\n // We need to cache the entries to prevent Blink engine bug that clears\n // the list (`data.items`) after first access props of one of the entries\n const entries = items\n .filter((item) => {\n if (item.kind !== 'file') {\n logger.debug('Skipping dropped item', { kind: item.kind, type: item.type });\n return false;\n }\n return true;\n }).map((item) => {\n // MDN recommends to try both, as it might be renamed in the future\n return item?.getAsEntry?.()\n ?? item?.webkitGetAsEntry?.()\n ?? item;\n });\n let warned = false;\n const fileTree = new Directory('root');\n // Traverse the file tree\n for (const entry of entries) {\n // Handle browser issues if Filesystem API is not available. Fallback to File API\n if (entry instanceof DataTransferItem) {\n logger.warn('Could not get FilesystemEntry of item, falling back to file');\n const file = entry.getAsFile();\n if (file === null) {\n logger.warn('Could not process DataTransferItem', { type: entry.type, kind: entry.kind });\n showError(t('files', 'One of the dropped files could not be processed'));\n continue;\n }\n // Warn the user that the browser does not support the Filesystem API\n // we therefore cannot upload directories recursively.\n if (file.type === 'httpd/unix-directory' || !file.type) {\n if (!warned) {\n logger.warn('Browser does not support Filesystem API. Directories will not be uploaded');\n showWarning(t('files', 'Your browser does not support the Filesystem API. Directories will not be uploaded'));\n warned = true;\n }\n continue;\n }\n fileTree.contents.push(file);\n continue;\n }\n // Use Filesystem API\n try {\n fileTree.contents.push(await traverseTree(entry));\n }\n catch (error) {\n // Do not throw, as we want to continue with the other files\n logger.error('Error while traversing file tree', { error });\n }\n }\n return fileTree;\n};\nexport const onDropExternalFiles = async (root, destination, contents) => {\n const uploader = getUploader();\n // Check for conflicts on root elements\n if (await hasConflict(root.contents, contents)) {\n root.contents = await resolveConflict(root.contents, destination, contents);\n }\n if (root.contents.length === 0) {\n logger.info('No files to upload', { root });\n showInfo(t('files', 'No files to upload'));\n return [];\n }\n // Let's process the files\n logger.debug(`Uploading files to ${destination.path}`, { root, contents: root.contents });\n const queue = [];\n const uploadDirectoryContents = async (directory, path) => {\n for (const file of directory.contents) {\n // This is the relative path to the resource\n // from the current uploader destination\n const relativePath = join(path, file.name);\n // If the file is a directory, we need to create it first\n // then browse its tree and upload its contents.\n if (file instanceof Directory) {\n const absolutePath = joinPaths(davRootPath, destination.path, relativePath);\n try {\n console.debug('Processing directory', { relativePath });\n await createDirectoryIfNotExists(absolutePath);\n await uploadDirectoryContents(file, relativePath);\n }\n catch (error) {\n showError(t('files', 'Unable to create the directory {directory}', { directory: file.name }));\n logger.error('', { error, absolutePath, directory: file });\n }\n continue;\n }\n // If we've reached a file, we can upload it\n logger.debug('Uploading file to ' + join(destination.path, relativePath), { file });\n // Overriding the root to avoid changing the current uploader context\n queue.push(uploader.upload(relativePath, file, destination.source));\n }\n };\n // Pause the uploader to prevent it from starting\n // while we compute the queue\n uploader.pause();\n // Upload the files. Using '/' as the starting point\n // as we already adjusted the uploader destination\n await uploadDirectoryContents(root, '/');\n uploader.start();\n // Wait for all promises to settle\n const results = await Promise.allSettled(queue);\n // Check for errors\n const errors = results.filter(result => result.status === 'rejected');\n if (errors.length > 0) {\n logger.error('Error while uploading files', { errors });\n showError(t('files', 'Some files could not be uploaded'));\n return [];\n }\n logger.debug('Files uploaded successfully');\n showSuccess(t('files', 'Files uploaded successfully'));\n return Promise.all(queue);\n};\nexport const onDropInternalFiles = async (nodes, destination, contents, isCopy = false) => {\n const queue = [];\n // Check for conflicts on root elements\n if (await hasConflict(nodes, contents)) {\n nodes = await resolveConflict(nodes, destination, contents);\n }\n if (nodes.length === 0) {\n logger.info('No files to process', { nodes });\n showInfo(t('files', 'No files to process'));\n return;\n }\n for (const node of nodes) {\n Vue.set(node, 'status', NodeStatus.LOADING);\n // TODO: resolve potential conflicts prior and force overwrite\n queue.push(handleCopyMoveNodeTo(node, destination, isCopy ? MoveCopyAction.COPY : MoveCopyAction.MOVE));\n }\n // Wait for all promises to settle\n const results = await Promise.allSettled(queue);\n nodes.forEach(node => Vue.set(node, 'status', undefined));\n // Check for errors\n const errors = results.filter(result => result.status === 'rejected');\n if (errors.length > 0) {\n logger.error('Error while copying or moving files', { errors });\n showError(isCopy ? t('files', 'Some files could not be copied') : t('files', 'Some files could not be moved'));\n return;\n }\n logger.debug('Files copy/move successful');\n showSuccess(isCopy ? t('files', 'Files copied successfully') : t('files', 'Files moved successfully'));\n};\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { defineStore } from 'pinia';\nimport Vue from 'vue';\nexport const useDragAndDropStore = defineStore('dragging', {\n state: () => ({\n dragging: [],\n }),\n actions: {\n /**\n * Set the selection of fileIds\n */\n set(selection = []) {\n Vue.set(this, 'dragging', selection);\n },\n /**\n * Reset the selection\n */\n reset() {\n Vue.set(this, 'dragging', []);\n },\n },\n});\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport Vue from 'vue';\nexport default Vue.extend({\n data() {\n return {\n filesListWidth: null,\n };\n },\n mounted() {\n const fileListEl = document.querySelector('#app-content-vue');\n this.filesListWidth = fileListEl?.clientWidth ?? null;\n this.$resizeObserver = new ResizeObserver((entries) => {\n if (entries.length > 0 && entries[0].target === fileListEl) {\n this.filesListWidth = entries[0].contentRect.width;\n }\n });\n this.$resizeObserver.observe(fileListEl);\n },\n beforeDestroy() {\n this.$resizeObserver.disconnect();\n },\n});\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./BreadCrumbs.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./BreadCrumbs.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcBreadcrumbs',{attrs:{\"data-cy-files-content-breadcrumbs\":\"\",\"aria-label\":_vm.t('files', 'Current directory path')},scopedSlots:_vm._u([{key:\"actions\",fn:function(){return [_vm._t(\"actions\")]},proxy:true}],null,true)},_vm._l((_vm.sections),function(section,index){return _c('NcBreadcrumb',_vm._b({directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.shouldShowBreadcrumbs),expression:\"shouldShowBreadcrumbs\"}],key:section.dir,attrs:{\"dir\":\"auto\",\"to\":section.to,\"force-icon-text\":true,\"title\":_vm.titleForSection(index, section),\"aria-description\":_vm.ariaForSection(section)},on:{\"drop\":function($event){return _vm.onDrop($event, section.dir)}},nativeOn:{\"click\":function($event){return _vm.onClick(section.to)},\"dragover\":function($event){return _vm.onDragOver($event, section.dir)}},scopedSlots:_vm._u([(index === 0)?{key:\"icon\",fn:function(){return [_c('NcIconSvgWrapper',{attrs:{\"size\":20,\"svg\":_vm.viewIcon}})]},proxy:true}:null],null,true)},'NcBreadcrumb',section,false))}),1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./BreadCrumbs.vue?vue&type=style&index=0&id=88ea2982&prod&lang=scss&scoped=true\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./BreadCrumbs.vue?vue&type=style&index=0&id=88ea2982&prod&lang=scss&scoped=true\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./BreadCrumbs.vue?vue&type=template&id=88ea2982&scoped=true\"\nimport script from \"./BreadCrumbs.vue?vue&type=script&lang=ts\"\nexport * from \"./BreadCrumbs.vue?vue&type=script&lang=ts\"\nimport style0 from \"./BreadCrumbs.vue?vue&type=style&index=0&id=88ea2982&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"88ea2982\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('VirtualList',{ref:\"table\",attrs:{\"data-component\":_vm.userConfig.grid_view ? _vm.FileEntryGrid : _vm.FileEntry,\"data-key\":'source',\"data-sources\":_vm.nodes,\"grid-mode\":_vm.userConfig.grid_view,\"extra-props\":{\n\t\tisMtimeAvailable: _vm.isMtimeAvailable,\n\t\tisSizeAvailable: _vm.isSizeAvailable,\n\t\tnodes: _vm.nodes,\n\t\tfilesListWidth: _vm.filesListWidth,\n\t},\"scroll-to-index\":_vm.scrollToIndex,\"caption\":_vm.caption},scopedSlots:_vm._u([(!_vm.isNoneSelected)?{key:\"header-overlay\",fn:function(){return [_c('FilesListTableHeaderActions',{attrs:{\"current-view\":_vm.currentView,\"selected-nodes\":_vm.selectedNodes}})]},proxy:true}:null,{key:\"before\",fn:function(){return _vm._l((_vm.sortedHeaders),function(header){return _c('FilesListHeader',{key:header.id,attrs:{\"current-folder\":_vm.currentFolder,\"current-view\":_vm.currentView,\"header\":header}})})},proxy:true},{key:\"header\",fn:function(){return [_c('FilesListTableHeader',{ref:\"thead\",attrs:{\"files-list-width\":_vm.filesListWidth,\"is-mtime-available\":_vm.isMtimeAvailable,\"is-size-available\":_vm.isSizeAvailable,\"nodes\":_vm.nodes}})]},proxy:true},{key:\"footer\",fn:function(){return [_c('FilesListTableFooter',{attrs:{\"files-list-width\":_vm.filesListWidth,\"is-mtime-available\":_vm.isMtimeAvailable,\"is-size-available\":_vm.isSizeAvailable,\"nodes\":_vm.nodes,\"summary\":_vm.summary}})]},proxy:true}],null,true)})\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { defineStore } from 'pinia';\nexport const useActionsMenuStore = defineStore('actionsmenu', {\n state: () => ({\n opened: null,\n }),\n});\n","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { defineStore } from 'pinia';\nimport { subscribe } from '@nextcloud/event-bus';\nexport const useRenamingStore = function (...args) {\n const store = defineStore('renaming', {\n state: () => ({\n renamingNode: undefined,\n newName: '',\n }),\n });\n const renamingStore = store(...args);\n // Make sure we only register the listeners once\n if (!renamingStore._initialized) {\n subscribe('files:node:rename', function (node) {\n renamingStore.renamingNode = node;\n renamingStore.newName = node.basename;\n });\n renamingStore._initialized = true;\n }\n return renamingStore;\n};\n","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon file-multiple-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M15,7H20.5L15,1.5V7M8,0H16L22,6V18A2,2 0 0,1 20,20H8C6.89,20 6,19.1 6,18V2A2,2 0 0,1 8,0M4,4V22H20V24H4A2,2 0 0,1 2,22V4H4Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"FileMultipleIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./FileMultiple.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./FileMultiple.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./FileMultiple.vue?vue&type=template&id=27b46e04\"\nimport script from \"./FileMultiple.vue?vue&type=script&lang=js\"\nexport * from \"./FileMultiple.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon file-multiple-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M15,7H20.5L15,1.5V7M8,0H16L22,6V18A2,2 0 0,1 20,20H8C6.89,20 6,19.1 6,18V2A2,2 0 0,1 8,0M4,4V22H20V24H4A2,2 0 0,1 2,22V4H4Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Folder.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Folder.vue?vue&type=script&lang=js\"","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon folder-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6H12L10,4Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"FolderIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import { render, staticRenderFns } from \"./Folder.vue?vue&type=template&id=07f089a4\"\nimport script from \"./Folder.vue?vue&type=script&lang=js\"\nexport * from \"./Folder.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon folder-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6H12L10,4Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('div',{staticClass:\"files-list-drag-image\"},[_c('span',{staticClass:\"files-list-drag-image__icon\"},[_c('span',{ref:\"previewImg\"}),_vm._v(\" \"),(_vm.isSingleFolder)?_c('FolderIcon'):_c('FileMultipleIcon')],1),_vm._v(\" \"),_c('span',{staticClass:\"files-list-drag-image__name\"},[_vm._v(_vm._s(_vm.name))])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropPreview.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropPreview.vue?vue&type=script&lang=ts\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropPreview.vue?vue&type=style&index=0&id=578d5cf6&prod&lang=scss\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropPreview.vue?vue&type=style&index=0&id=578d5cf6&prod&lang=scss\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./DragAndDropPreview.vue?vue&type=template&id=578d5cf6\"\nimport script from \"./DragAndDropPreview.vue?vue&type=script&lang=ts\"\nexport * from \"./DragAndDropPreview.vue?vue&type=script&lang=ts\"\nimport style0 from \"./DragAndDropPreview.vue?vue&type=style&index=0&id=578d5cf6&prod&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import DragAndDropPreview from '../components/DragAndDropPreview.vue';\nimport Vue from 'vue';\nconst Preview = Vue.extend(DragAndDropPreview);\nlet preview;\nexport const getDragAndDropPreview = async (nodes) => {\n return new Promise((resolve) => {\n if (!preview) {\n preview = new Preview().$mount();\n document.body.appendChild(preview.$el);\n }\n preview.update(nodes);\n preview.$on('loaded', () => {\n resolve(preview.$el);\n preview.$off('loaded');\n });\n });\n};\n","/**\n * @copyright Copyright (c) 2024 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { extname } from 'path';\nimport { FileType, Permission, Folder, File as NcFile, NodeStatus, Node, View } from '@nextcloud/files';\nimport { generateUrl } from '@nextcloud/router';\nimport { translate as t } from '@nextcloud/l10n';\nimport { vOnClickOutside } from '@vueuse/components';\nimport Vue, { defineComponent } from 'vue';\nimport { action as sidebarAction } from '../actions/sidebarAction.ts';\nimport { getDragAndDropPreview } from '../utils/dragUtils.ts';\nimport { hashCode } from '../utils/hashUtils.ts';\nimport { dataTransferToFileTree, onDropExternalFiles, onDropInternalFiles } from '../services/DropService.ts';\nimport logger from '../logger.js';\nimport { showError } from '@nextcloud/dialogs';\nVue.directive('onClickOutside', vOnClickOutside);\nexport default defineComponent({\n props: {\n source: {\n type: [Folder, NcFile, Node],\n required: true,\n },\n nodes: {\n type: Array,\n required: true,\n },\n filesListWidth: {\n type: Number,\n default: 0,\n },\n },\n data() {\n return {\n loading: '',\n dragover: false,\n gridMode: false,\n };\n },\n computed: {\n currentView() {\n return this.$navigation.active;\n },\n currentDir() {\n // Remove any trailing slash but leave root slash\n return (this.$route?.query?.dir?.toString() || '/').replace(/^(.+)\\/$/, '$1');\n },\n currentFileId() {\n return this.$route.params?.fileid || this.$route.query?.fileid || null;\n },\n fileid() {\n return this.source?.fileid;\n },\n uniqueId() {\n return hashCode(this.source.source);\n },\n isLoading() {\n return this.source.status === NodeStatus.LOADING;\n },\n extension() {\n if (this.source.attributes?.displayName) {\n return extname(this.source.attributes.displayName);\n }\n return this.source.extension || '';\n },\n displayName() {\n const ext = this.extension;\n const name = (this.source.attributes.displayName\n || this.source.basename);\n // Strip extension from name if defined\n return !ext ? name : name.slice(0, 0 - ext.length);\n },\n draggingFiles() {\n return this.draggingStore.dragging;\n },\n selectedFiles() {\n return this.selectionStore.selected;\n },\n isSelected() {\n return this.fileid && this.selectedFiles.includes(this.fileid);\n },\n isRenaming() {\n return this.renamingStore.renamingNode === this.source;\n },\n isRenamingSmallScreen() {\n return this.isRenaming && this.filesListWidth < 512;\n },\n isActive() {\n return this.fileid?.toString?.() === this.currentFileId?.toString?.();\n },\n canDrag() {\n if (this.isRenaming) {\n return false;\n }\n const canDrag = (node) => {\n return (node?.permissions & Permission.UPDATE) !== 0;\n };\n // If we're dragging a selection, we need to check all files\n if (this.selectedFiles.length > 0) {\n const nodes = this.selectedFiles.map(fileid => this.filesStore.getNode(fileid));\n return nodes.every(canDrag);\n }\n return canDrag(this.source);\n },\n canDrop() {\n if (this.source.type !== FileType.Folder) {\n return false;\n }\n // If the current folder is also being dragged, we can't drop it on itself\n if (this.fileid && this.draggingFiles.includes(this.fileid)) {\n return false;\n }\n return (this.source.permissions & Permission.CREATE) !== 0;\n },\n openedMenu: {\n get() {\n return this.actionsMenuStore.opened === this.uniqueId.toString();\n },\n set(opened) {\n // Only reset when opening a new menu\n if (opened) {\n // Reset any right click position override on close\n // Wait for css animation to be done\n const root = this.$el?.closest('main.app-content');\n root.style.removeProperty('--mouse-pos-x');\n root.style.removeProperty('--mouse-pos-y');\n }\n this.actionsMenuStore.opened = opened ? this.uniqueId.toString() : null;\n },\n },\n },\n watch: {\n /**\n * When the source changes, reset the preview\n * and fetch the new one.\n */\n source() {\n this.resetState();\n },\n },\n beforeDestroy() {\n this.resetState();\n },\n methods: {\n resetState() {\n // Reset loading state\n this.loading = '';\n this.$refs.preview.reset();\n // Close menu\n this.openedMenu = false;\n },\n // Open the actions menu on right click\n onRightClick(event) {\n // If already opened, fallback to default browser\n if (this.openedMenu) {\n return;\n }\n // The grid mode is compact enough to not care about\n // the actions menu mouse position\n if (!this.gridMode) {\n // Actions menu is contained within the app content\n const root = this.$el?.closest('main.app-content');\n const contentRect = root.getBoundingClientRect();\n // Using Math.min/max to prevent the menu from going out of the AppContent\n // 200 = max width of the menu\n root.style.setProperty('--mouse-pos-x', Math.max(0, event.clientX - contentRect.left - 200) + 'px');\n root.style.setProperty('--mouse-pos-y', Math.max(0, event.clientY - contentRect.top) + 'px');\n }\n // If the clicked row is in the selection, open global menu\n const isMoreThanOneSelected = this.selectedFiles.length > 1;\n this.actionsMenuStore.opened = this.isSelected && isMoreThanOneSelected ? 'global' : this.uniqueId.toString();\n // Prevent any browser defaults\n event.preventDefault();\n event.stopPropagation();\n },\n execDefaultAction(event) {\n if (event.ctrlKey || event.metaKey) {\n event.preventDefault();\n window.open(generateUrl('/f/{fileId}', { fileId: this.fileid }));\n return false;\n }\n this.$refs.actions.execDefaultAction(event);\n },\n openDetailsIfAvailable(event) {\n event.preventDefault();\n event.stopPropagation();\n if (sidebarAction?.enabled?.([this.source], this.currentView)) {\n sidebarAction.exec(this.source, this.currentView, this.currentDir);\n }\n },\n onDragOver(event) {\n this.dragover = this.canDrop;\n if (!this.canDrop) {\n event.dataTransfer.dropEffect = 'none';\n return;\n }\n // Handle copy/move drag and drop\n if (event.ctrlKey) {\n event.dataTransfer.dropEffect = 'copy';\n }\n else {\n event.dataTransfer.dropEffect = 'move';\n }\n },\n onDragLeave(event) {\n // Counter bubbling, make sure we're ending the drag\n // only when we're leaving the current element\n const currentTarget = event.currentTarget;\n if (currentTarget?.contains(event.relatedTarget)) {\n return;\n }\n this.dragover = false;\n },\n async onDragStart(event) {\n event.stopPropagation();\n if (!this.canDrag || !this.fileid) {\n event.preventDefault();\n event.stopPropagation();\n return;\n }\n logger.debug('Drag started', { event });\n // Make sure that we're not dragging a file like the preview\n event.dataTransfer?.clearData?.();\n // Reset any renaming\n this.renamingStore.$reset();\n // Dragging set of files, if we're dragging a file\n // that is already selected, we use the entire selection\n if (this.selectedFiles.includes(this.fileid)) {\n this.draggingStore.set(this.selectedFiles);\n }\n else {\n this.draggingStore.set([this.fileid]);\n }\n const nodes = this.draggingStore.dragging\n .map(fileid => this.filesStore.getNode(fileid));\n const image = await getDragAndDropPreview(nodes);\n event.dataTransfer?.setDragImage(image, -10, -10);\n },\n onDragEnd() {\n this.draggingStore.reset();\n this.dragover = false;\n logger.debug('Drag ended');\n },\n async onDrop(event) {\n // skip if native drop like text drag and drop from files names\n if (!this.draggingFiles && !event.dataTransfer?.items?.length) {\n return;\n }\n event.preventDefault();\n event.stopPropagation();\n // Caching the selection\n const selection = this.draggingFiles;\n const items = [...event.dataTransfer?.items || []];\n // We need to process the dataTransfer ASAP before the\n // browser clears it. This is why we cache the items too.\n const fileTree = await dataTransferToFileTree(items);\n // We might not have the target directory fetched yet\n const contents = await this.currentView?.getContents(this.source.path);\n const folder = contents?.folder;\n if (!folder) {\n showError(this.t('files', 'Target folder does not exist any more'));\n return;\n }\n // If another button is pressed, cancel it. This\n // allows cancelling the drag with the right click.\n if (!this.canDrop || event.button) {\n return;\n }\n const isCopy = event.ctrlKey;\n this.dragover = false;\n logger.debug('Dropped', { event, folder, selection, fileTree });\n // Check whether we're uploading files\n if (fileTree.contents.length > 0) {\n await onDropExternalFiles(fileTree, folder, contents.contents);\n return;\n }\n // Else we're moving/copying files\n const nodes = selection.map(fileid => this.filesStore.getNode(fileid));\n await onDropInternalFiles(nodes, folder, contents.contents, isCopy);\n // Reset selection after we dropped the files\n // if the dropped files are within the selection\n if (selection.some(fileid => this.selectedFiles.includes(fileid))) {\n logger.debug('Dropped selection, resetting select store...');\n this.selectionStore.reset();\n }\n },\n t,\n },\n});\n","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span')\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CustomElementRender.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CustomElementRender.vue?vue&type=script&lang=ts\"","import { render, staticRenderFns } from \"./CustomElementRender.vue?vue&type=template&id=08a118c6\"\nimport script from \"./CustomElementRender.vue?vue&type=script&lang=ts\"\nexport * from \"./CustomElementRender.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./ArrowLeft.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./ArrowLeft.vue?vue&type=script&lang=js\"","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon arrow-left-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"ArrowLeftIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import { render, staticRenderFns } from \"./ArrowLeft.vue?vue&type=template&id=214c9a86\"\nimport script from \"./ArrowLeft.vue?vue&type=script&lang=js\"\nexport * from \"./ArrowLeft.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon arrow-left-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./ChevronRight.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./ChevronRight.vue?vue&type=script&lang=js\"","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon chevron-right-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"ChevronRightIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import { render, staticRenderFns } from \"./ChevronRight.vue?vue&type=template&id=d6df4f34\"\nimport script from \"./ChevronRight.vue?vue&type=script&lang=js\"\nexport * from \"./ChevronRight.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon chevron-right-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('td',{staticClass:\"files-list__row-actions\",attrs:{\"data-cy-files-list-row-actions\":\"\"}},[_vm._l((_vm.enabledRenderActions),function(action){return _c('CustomElementRender',{key:action.id,staticClass:\"files-list__row-action--inline\",class:'files-list__row-action-' + action.id,attrs:{\"current-view\":_vm.currentView,\"render\":action.renderInline,\"source\":_vm.source}})}),_vm._v(\" \"),_c('NcActions',{ref:\"actionsMenu\",attrs:{\"boundaries-element\":_vm.getBoundariesElement,\"container\":_vm.getBoundariesElement,\"force-name\":true,\"type\":\"tertiary\",\"force-menu\":_vm.enabledInlineActions.length === 0 /* forceMenu only if no inline actions */,\"inline\":_vm.enabledInlineActions.length,\"open\":_vm.openedMenu},on:{\"update:open\":function($event){_vm.openedMenu=$event},\"close\":function($event){_vm.openedSubmenu = null}}},[_vm._l((_vm.enabledMenuActions),function(action){return _c('NcActionButton',{key:action.id,ref:`action-${action.id}`,refInFor:true,class:{\n\t\t\t\t[`files-list__row-action-${action.id}`]: true,\n\t\t\t\t[`files-list__row-action--menu`]: _vm.isMenu(action.id)\n\t\t\t},attrs:{\"close-after-click\":!_vm.isMenu(action.id),\"data-cy-files-list-row-action\":action.id,\"is-menu\":_vm.isMenu(action.id),\"title\":action.title?.([_vm.source], _vm.currentView)},on:{\"click\":function($event){return _vm.onActionClick(action)}},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.loading === action.id)?_c('NcLoadingIcon',{attrs:{\"size\":18}}):_c('NcIconSvgWrapper',{attrs:{\"svg\":action.iconSvgInline([_vm.source], _vm.currentView)}})]},proxy:true}],null,true)},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.mountType === 'shared' && action.id === 'sharing-status' ? '' : _vm.actionDisplayName(action))+\"\\n\\t\\t\")])}),_vm._v(\" \"),(_vm.openedSubmenu && _vm.enabledSubmenuActions[_vm.openedSubmenu?.id])?[_c('NcActionButton',{staticClass:\"files-list__row-action-back\",on:{\"click\":function($event){return _vm.onBackToMenuClick(_vm.openedSubmenu)}},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [_c('ArrowLeftIcon')]},proxy:true}],null,false,3001860362)},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.actionDisplayName(_vm.openedSubmenu))+\"\\n\\t\\t\\t\")]),_vm._v(\" \"),_c('NcActionSeparator'),_vm._v(\" \"),_vm._l((_vm.enabledSubmenuActions[_vm.openedSubmenu?.id]),function(action){return _c('NcActionButton',{key:action.id,staticClass:\"files-list__row-action--submenu\",class:`files-list__row-action-${action.id}`,attrs:{\"close-after-click\":false /* never close submenu, just go back */,\"data-cy-files-list-row-action\":action.id,\"title\":action.title?.([_vm.source], _vm.currentView)},on:{\"click\":function($event){return _vm.onActionClick(action)}},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.loading === action.id)?_c('NcLoadingIcon',{attrs:{\"size\":18}}):_c('NcIconSvgWrapper',{attrs:{\"svg\":action.iconSvgInline([_vm.source], _vm.currentView)}})]},proxy:true}],null,true)},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.actionDisplayName(action))+\"\\n\\t\\t\\t\")])})]:_vm._e()],2)],2)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryActions.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryActions.vue?vue&type=script&lang=ts\"","\n import API from \"!../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryActions.vue?vue&type=style&index=0&id=6168180a&prod&lang=scss\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryActions.vue?vue&type=style&index=0&id=6168180a&prod&lang=scss\";\n export default content && content.locals ? content.locals : undefined;\n","\n import API from \"!../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryActions.vue?vue&type=style&index=1&id=6168180a&prod&lang=scss&scoped=true\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryActions.vue?vue&type=style&index=1&id=6168180a&prod&lang=scss&scoped=true\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FileEntryActions.vue?vue&type=template&id=6168180a&scoped=true\"\nimport script from \"./FileEntryActions.vue?vue&type=script&lang=ts\"\nexport * from \"./FileEntryActions.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FileEntryActions.vue?vue&type=style&index=0&id=6168180a&prod&lang=scss\"\nimport style1 from \"./FileEntryActions.vue?vue&type=style&index=1&id=6168180a&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"6168180a\",\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryCheckbox.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryCheckbox.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('td',{staticClass:\"files-list__row-checkbox\",on:{\"keyup\":function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,\"esc\",27,$event.key,[\"Esc\",\"Escape\"]))return null;if($event.ctrlKey||$event.shiftKey||$event.altKey||$event.metaKey)return null;return _vm.resetSelection.apply(null, arguments)}}},[(_vm.isLoading)?_c('NcLoadingIcon'):_c('NcCheckboxRadioSwitch',{attrs:{\"aria-label\":_vm.ariaLabel,\"checked\":_vm.isSelected},on:{\"update:checked\":_vm.onSelectionChange}})],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { defineStore } from 'pinia';\nimport Vue from 'vue';\n/**\n * Observe various events and save the current\n * special keys states. Useful for checking the\n * current status of a key when executing a method.\n */\nexport const useKeyboardStore = function (...args) {\n const store = defineStore('keyboard', {\n state: () => ({\n altKey: false,\n ctrlKey: false,\n metaKey: false,\n shiftKey: false,\n }),\n actions: {\n onEvent(event) {\n if (!event) {\n event = window.event;\n }\n Vue.set(this, 'altKey', !!event.altKey);\n Vue.set(this, 'ctrlKey', !!event.ctrlKey);\n Vue.set(this, 'metaKey', !!event.metaKey);\n Vue.set(this, 'shiftKey', !!event.shiftKey);\n },\n },\n });\n const keyboardStore = store(...args);\n // Make sure we only register the listeners once\n if (!keyboardStore._initialized) {\n window.addEventListener('keydown', keyboardStore.onEvent);\n window.addEventListener('keyup', keyboardStore.onEvent);\n window.addEventListener('mousemove', keyboardStore.onEvent);\n keyboardStore._initialized = true;\n }\n return keyboardStore;\n};\n","import { render, staticRenderFns } from \"./FileEntryCheckbox.vue?vue&type=template&id=6992c304\"\nimport script from \"./FileEntryCheckbox.vue?vue&type=script&lang=ts\"\nexport * from \"./FileEntryCheckbox.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return (_vm.isRenaming)?_c('form',{directives:[{name:\"on-click-outside\",rawName:\"v-on-click-outside\",value:(_vm.stopRenaming),expression:\"stopRenaming\"}],staticClass:\"files-list__row-rename\",attrs:{\"aria-label\":_vm.t('files', 'Rename file')},on:{\"submit\":function($event){$event.preventDefault();$event.stopPropagation();return _vm.onRename.apply(null, arguments)}}},[_c('NcTextField',{ref:\"renameInput\",attrs:{\"label\":_vm.renameLabel,\"autofocus\":true,\"minlength\":1,\"required\":true,\"value\":_vm.newName,\"enterkeyhint\":\"done\"},on:{\"update:value\":function($event){_vm.newName=$event},\"keyup\":[_vm.checkInputValidity,function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,\"esc\",27,$event.key,[\"Esc\",\"Escape\"]))return null;return _vm.stopRenaming.apply(null, arguments)}]}})],1):_c(_vm.linkTo.is,_vm._b({ref:\"basename\",tag:\"component\",staticClass:\"files-list__row-name-link\",attrs:{\"aria-hidden\":_vm.isRenaming,\"data-cy-files-list-row-name-link\":\"\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'component',_vm.linkTo.params,false),[_c('span',{staticClass:\"files-list__row-name-text\"},[_c('span',{staticClass:\"files-list__row-name-\",domProps:{\"textContent\":_vm._s(_vm.displayName)}}),_vm._v(\" \"),_c('span',{staticClass:\"files-list__row-name-ext\",domProps:{\"textContent\":_vm._s(_vm.extension)}})])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryName.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryName.vue?vue&type=script&lang=ts\"","import { render, staticRenderFns } from \"./FileEntryName.vue?vue&type=template&id=637facfc\"\nimport script from \"./FileEntryName.vue?vue&type=script&lang=ts\"\nexport * from \"./FileEntryName.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('span',{staticClass:\"files-list__row-icon\"},[(_vm.source.type === 'folder')?[(_vm.dragover)?_vm._m(0):[_vm._m(1),_vm._v(\" \"),(_vm.folderOverlay)?_c(_vm.folderOverlay,{tag:\"OverlayIcon\",staticClass:\"files-list__row-icon-overlay\"}):_vm._e()]]:(_vm.previewUrl && _vm.backgroundFailed !== true)?_c('img',{ref:\"previewImg\",staticClass:\"files-list__row-icon-preview\",class:{'files-list__row-icon-preview--loaded': _vm.backgroundFailed === false},attrs:{\"alt\":\"\",\"loading\":\"lazy\",\"src\":_vm.previewUrl},on:{\"error\":function($event){_vm.backgroundFailed = true},\"load\":function($event){_vm.backgroundFailed = false}}}):_vm._m(2),_vm._v(\" \"),(_vm.isFavorite)?_c('span',{staticClass:\"files-list__row-icon-favorite\"},[_vm._m(3)],1):_vm._e(),_vm._v(\" \"),(_vm.fileOverlay)?_c(_vm.fileOverlay,{tag:\"OverlayIcon\",staticClass:\"files-list__row-icon-overlay files-list__row-icon-overlay--file\"}):_vm._e()],2)\n}\nvar staticRenderFns = [function (){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('FolderOpenIcon')\n},function (){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('FolderIcon')\n},function (){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('FileIcon')\n},function (){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('FavoriteIcon')\n}]\n\nexport { render, staticRenderFns }","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon file-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M13,9V3.5L18.5,9M6,2C4.89,2 4,2.89 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2H6Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"FileIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./File.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./File.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./File.vue?vue&type=template&id=e3c8d598\"\nimport script from \"./File.vue?vue&type=script&lang=js\"\nexport * from \"./File.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon file-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M13,9V3.5L18.5,9M6,2C4.89,2 4,2.89 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2H6Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./FolderOpen.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./FolderOpen.vue?vue&type=script&lang=js\"","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon folder-open-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M19,20H4C2.89,20 2,19.1 2,18V6C2,4.89 2.89,4 4,4H10L12,6H19A2,2 0 0,1 21,8H21L4,8V18L6.14,10H23.21L20.93,18.5C20.7,19.37 19.92,20 19,20Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"FolderOpenIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import { render, staticRenderFns } from \"./FolderOpen.vue?vue&type=template&id=79cee0a4\"\nimport script from \"./FolderOpen.vue?vue&type=script&lang=js\"\nexport * from \"./FolderOpen.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon folder-open-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M19,20H4C2.89,20 2,19.1 2,18V6C2,4.89 2.89,4 4,4H10L12,6H19A2,2 0 0,1 21,8H21L4,8V18L6.14,10H23.21L20.93,18.5C20.7,19.37 19.92,20 19,20Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Key.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Key.vue?vue&type=script&lang=js\"","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon key-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M7 14C5.9 14 5 13.1 5 12S5.9 10 7 10 9 10.9 9 12 8.1 14 7 14M12.6 10C11.8 7.7 9.6 6 7 6C3.7 6 1 8.7 1 12S3.7 18 7 18C9.6 18 11.8 16.3 12.6 14H16V18H20V14H23V10H12.6Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"KeyIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import { render, staticRenderFns } from \"./Key.vue?vue&type=template&id=01a06d54\"\nimport script from \"./Key.vue?vue&type=script&lang=js\"\nexport * from \"./Key.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon key-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M7 14C5.9 14 5 13.1 5 12S5.9 10 7 10 9 10.9 9 12 8.1 14 7 14M12.6 10C11.8 7.7 9.6 6 7 6C3.7 6 1 8.7 1 12S3.7 18 7 18C9.6 18 11.8 16.3 12.6 14H16V18H20V14H23V10H12.6Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Network.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Network.vue?vue&type=script&lang=js\"","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon network-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M17,3A2,2 0 0,1 19,5V15A2,2 0 0,1 17,17H13V19H14A1,1 0 0,1 15,20H22V22H15A1,1 0 0,1 14,23H10A1,1 0 0,1 9,22H2V20H9A1,1 0 0,1 10,19H11V17H7C5.89,17 5,16.1 5,15V5A2,2 0 0,1 7,3H17Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"NetworkIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import { render, staticRenderFns } from \"./Network.vue?vue&type=template&id=29f8873c\"\nimport script from \"./Network.vue?vue&type=script&lang=js\"\nexport * from \"./Network.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon network-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M17,3A2,2 0 0,1 19,5V15A2,2 0 0,1 17,17H13V19H14A1,1 0 0,1 15,20H22V22H15A1,1 0 0,1 14,23H10A1,1 0 0,1 9,22H2V20H9A1,1 0 0,1 10,19H11V17H7C5.89,17 5,16.1 5,15V5A2,2 0 0,1 7,3H17Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./Tag.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./Tag.vue?vue&type=script&lang=js\"","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon tag-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M5.5,7A1.5,1.5 0 0,1 4,5.5A1.5,1.5 0 0,1 5.5,4A1.5,1.5 0 0,1 7,5.5A1.5,1.5 0 0,1 5.5,7M21.41,11.58L12.41,2.58C12.05,2.22 11.55,2 11,2H4C2.89,2 2,2.89 2,4V11C2,11.55 2.22,12.05 2.59,12.41L11.58,21.41C11.95,21.77 12.45,22 13,22C13.55,22 14.05,21.77 14.41,21.41L21.41,14.41C21.78,14.05 22,13.55 22,13C22,12.44 21.77,11.94 21.41,11.58Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"TagIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import { render, staticRenderFns } from \"./Tag.vue?vue&type=template&id=75dd05e4\"\nimport script from \"./Tag.vue?vue&type=script&lang=js\"\nexport * from \"./Tag.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon tag-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M5.5,7A1.5,1.5 0 0,1 4,5.5A1.5,1.5 0 0,1 5.5,4A1.5,1.5 0 0,1 7,5.5A1.5,1.5 0 0,1 5.5,7M21.41,11.58L12.41,2.58C12.05,2.22 11.55,2 11,2H4C2.89,2 2,2.89 2,4V11C2,11.55 2.22,12.05 2.59,12.41L11.58,21.41C11.95,21.77 12.45,22 13,22C13.55,22 14.05,21.77 14.41,21.41L21.41,14.41C21.78,14.05 22,13.55 22,13C22,12.44 21.77,11.94 21.41,11.58Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./PlayCircle.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./PlayCircle.vue?vue&type=script&lang=js\"","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon play-circle-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M10,16.5V7.5L16,12M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"PlayCircleIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import { render, staticRenderFns } from \"./PlayCircle.vue?vue&type=template&id=6901b3e6\"\nimport script from \"./PlayCircle.vue?vue&type=script&lang=js\"\nexport * from \"./PlayCircle.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon play-circle-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M10,16.5V7.5L16,12M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CollectivesIcon.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./CollectivesIcon.vue?vue&type=script&lang=js\"","<template>\n\t<span :aria-hidden=\"!title\"\n\t\t:aria-label=\"title\"\n\t\tclass=\"material-design-icon collectives-icon\"\n\t\trole=\"img\"\n\t\tv-bind=\"$attrs\"\n\t\t@click=\"$emit('click', $event)\">\n\t\t<svg :fill=\"fillColor\"\n\t\t\tclass=\"material-design-icon__svg\"\n\t\t\t:width=\"size\"\n\t\t\t:height=\"size\"\n\t\t\tviewBox=\"0 0 16 16\">\n\t\t\t<path d=\"M2.9,8.8c0-1.2,0.4-2.4,1.2-3.3L0.3,6c-0.2,0-0.3,0.3-0.1,0.4l2.7,2.6C2.9,9,2.9,8.9,2.9,8.8z\" />\n\t\t\t<path d=\"M8,3.7c0.7,0,1.3,0.1,1.9,0.4L8.2,0.6c-0.1-0.2-0.3-0.2-0.4,0L6.1,4C6.7,3.8,7.3,3.7,8,3.7z\" />\n\t\t\t<path d=\"M3.7,11.5L3,15.2c0,0.2,0.2,0.4,0.4,0.3l3.3-1.7C5.4,13.4,4.4,12.6,3.7,11.5z\" />\n\t\t\t<path d=\"M15.7,6l-3.7-0.5c0.7,0.9,1.2,2,1.2,3.3c0,0.1,0,0.2,0,0.3l2.7-2.6C15.9,6.3,15.9,6.1,15.7,6z\" />\n\t\t\t<path d=\"M12.3,11.5c-0.7,1.1-1.8,1.9-3,2.2l3.3,1.7c0.2,0.1,0.4-0.1,0.4-0.3L12.3,11.5z\" />\n\t\t\t<path d=\"M9.6,10.1c-0.4,0.5-1,0.8-1.6,0.8c-1.1,0-2-0.9-2.1-2C5.9,7.7,6.8,6.7,8,6.7c0.6,0,1.1,0.3,1.5,0.7 c0.1,0.1,0.1,0.1,0.2,0.1h1.4c0.2,0,0.4-0.2,0.3-0.5c-0.7-1.3-2.1-2.2-3.8-2.1C5.8,5,4.3,6.6,4.1,8.5C4,10.8,5.8,12.7,8,12.7 c1.6,0,2.9-0.9,3.5-2.3c0.1-0.2-0.1-0.4-0.3-0.4H9.9C9.8,10,9.7,10,9.6,10.1z\" />\n\t\t</svg>\n\t</span>\n</template>\n\n<script>\nexport default {\n\tname: 'CollectivesIcon',\n\tprops: {\n\t\ttitle: {\n\t\t\ttype: String,\n\t\t\tdefault: '',\n\t\t},\n\t\tfillColor: {\n\t\t\ttype: String,\n\t\t\tdefault: 'currentColor',\n\t\t},\n\t\tsize: {\n\t\t\ttype: Number,\n\t\t\tdefault: 24,\n\t\t},\n\t},\n}\n</script>\n","import { render, staticRenderFns } from \"./CollectivesIcon.vue?vue&type=template&id=18541dcc\"\nimport script from \"./CollectivesIcon.vue?vue&type=script&lang=js\"\nexport * from \"./CollectivesIcon.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon collectives-icon\",attrs:{\"aria-hidden\":!_vm.title,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 16 16\"}},[_c('path',{attrs:{\"d\":\"M2.9,8.8c0-1.2,0.4-2.4,1.2-3.3L0.3,6c-0.2,0-0.3,0.3-0.1,0.4l2.7,2.6C2.9,9,2.9,8.9,2.9,8.8z\"}}),_vm._v(\" \"),_c('path',{attrs:{\"d\":\"M8,3.7c0.7,0,1.3,0.1,1.9,0.4L8.2,0.6c-0.1-0.2-0.3-0.2-0.4,0L6.1,4C6.7,3.8,7.3,3.7,8,3.7z\"}}),_vm._v(\" \"),_c('path',{attrs:{\"d\":\"M3.7,11.5L3,15.2c0,0.2,0.2,0.4,0.4,0.3l3.3-1.7C5.4,13.4,4.4,12.6,3.7,11.5z\"}}),_vm._v(\" \"),_c('path',{attrs:{\"d\":\"M15.7,6l-3.7-0.5c0.7,0.9,1.2,2,1.2,3.3c0,0.1,0,0.2,0,0.3l2.7-2.6C15.9,6.3,15.9,6.1,15.7,6z\"}}),_vm._v(\" \"),_c('path',{attrs:{\"d\":\"M12.3,11.5c-0.7,1.1-1.8,1.9-3,2.2l3.3,1.7c0.2,0.1,0.4-0.1,0.4-0.3L12.3,11.5z\"}}),_vm._v(\" \"),_c('path',{attrs:{\"d\":\"M9.6,10.1c-0.4,0.5-1,0.8-1.6,0.8c-1.1,0-2-0.9-2.1-2C5.9,7.7,6.8,6.7,8,6.7c0.6,0,1.1,0.3,1.5,0.7 c0.1,0.1,0.1,0.1,0.2,0.1h1.4c0.2,0,0.4-0.2,0.3-0.5c-0.7-1.3-2.1-2.2-3.8-2.1C5.8,5,4.3,6.6,4.1,8.5C4,10.8,5.8,12.7,8,12.7 c1.6,0,2.9-0.9,3.5-2.3c0.1-0.2-0.1-0.4-0.3-0.4H9.9C9.8,10,9.7,10,9.6,10.1z\"}})])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FavoriteIcon.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FavoriteIcon.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcIconSvgWrapper',{staticClass:\"favorite-marker-icon\",attrs:{\"name\":_vm.t('files', 'Favorite'),\"svg\":_vm.StarSvg}})\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n import API from \"!../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FavoriteIcon.vue?vue&type=style&index=0&id=04e52abc&prod&lang=scss&scoped=true\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FavoriteIcon.vue?vue&type=style&index=0&id=04e52abc&prod&lang=scss&scoped=true\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FavoriteIcon.vue?vue&type=template&id=04e52abc&scoped=true\"\nimport script from \"./FavoriteIcon.vue?vue&type=script&lang=ts\"\nexport * from \"./FavoriteIcon.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FavoriteIcon.vue?vue&type=style&index=0&id=04e52abc&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"04e52abc\",\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryPreview.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryPreview.vue?vue&type=script&lang=ts\"","/**\n * @copyright Copyright (c) 2023 Louis Chmn <louis@chmn.me>\n *\n * @author Louis Chmn <louis@chmn.me>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport { Node, registerDavProperty } from '@nextcloud/files';\nexport function initLivePhotos() {\n registerDavProperty('nc:metadata-files-live-photo', { nc: 'http://nextcloud.org/ns' });\n}\n/**\n * @param {Node} node - The node\n */\nexport function isLivePhoto(node) {\n return node.attributes['metadata-files-live-photo'] !== undefined;\n}\n","import { render, staticRenderFns } from \"./FileEntryPreview.vue?vue&type=template&id=3c23da48\"\nimport script from \"./FileEntryPreview.vue?vue&type=script&lang=ts\"\nexport * from \"./FileEntryPreview.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntry.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntry.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('tr',_vm._g({staticClass:\"files-list__row\",class:{\n\t\t'files-list__row--dragover': _vm.dragover,\n\t\t'files-list__row--loading': _vm.isLoading,\n\t\t'files-list__row--active': _vm.isActive,\n\t},attrs:{\"data-cy-files-list-row\":\"\",\"data-cy-files-list-row-fileid\":_vm.fileid,\"data-cy-files-list-row-name\":_vm.source.basename,\"draggable\":_vm.canDrag}},_vm.rowListeners),[(_vm.source.attributes.failed)?_c('span',{staticClass:\"files-list__row--failed\"}):_vm._e(),_vm._v(\" \"),_c('FileEntryCheckbox',{attrs:{\"fileid\":_vm.fileid,\"is-loading\":_vm.isLoading,\"nodes\":_vm.nodes,\"source\":_vm.source}}),_vm._v(\" \"),_c('td',{staticClass:\"files-list__row-name\",attrs:{\"data-cy-files-list-row-name\":\"\"}},[_c('FileEntryPreview',{ref:\"preview\",attrs:{\"source\":_vm.source,\"dragover\":_vm.dragover},nativeOn:{\"click\":function($event){return _vm.execDefaultAction.apply(null, arguments)}}}),_vm._v(\" \"),_c('FileEntryName',{ref:\"name\",attrs:{\"display-name\":_vm.displayName,\"extension\":_vm.extension,\"files-list-width\":_vm.filesListWidth,\"nodes\":_vm.nodes,\"source\":_vm.source},on:{\"click\":_vm.execDefaultAction}})],1),_vm._v(\" \"),_c('FileEntryActions',{directives:[{name:\"show\",rawName:\"v-show\",value:(!_vm.isRenamingSmallScreen),expression:\"!isRenamingSmallScreen\"}],ref:\"actions\",class:`files-list__row-actions-${_vm.uniqueId}`,attrs:{\"files-list-width\":_vm.filesListWidth,\"loading\":_vm.loading,\"opened\":_vm.openedMenu,\"source\":_vm.source},on:{\"update:loading\":function($event){_vm.loading=$event},\"update:opened\":function($event){_vm.openedMenu=$event}}}),_vm._v(\" \"),(!_vm.compact && _vm.isSizeAvailable)?_c('td',{staticClass:\"files-list__row-size\",style:(_vm.sizeOpacity),attrs:{\"data-cy-files-list-row-size\":\"\"},on:{\"click\":_vm.openDetailsIfAvailable}},[_c('span',[_vm._v(_vm._s(_vm.size))])]):_vm._e(),_vm._v(\" \"),(!_vm.compact && _vm.isMtimeAvailable)?_c('td',{staticClass:\"files-list__row-mtime\",style:(_vm.mtimeOpacity),attrs:{\"data-cy-files-list-row-mtime\":\"\"},on:{\"click\":_vm.openDetailsIfAvailable}},[_c('NcDateTime',{attrs:{\"timestamp\":_vm.source.mtime,\"ignore-seconds\":true}})],1):_vm._e(),_vm._v(\" \"),_vm._l((_vm.columns),function(column){return _c('td',{key:column.id,staticClass:\"files-list__row-column-custom\",class:`files-list__row-${_vm.currentView?.id}-${column.id}`,attrs:{\"data-cy-files-list-row-column-custom\":column.id},on:{\"click\":_vm.openDetailsIfAvailable}},[_c('CustomElementRender',{attrs:{\"current-view\":_vm.currentView,\"render\":column.render,\"source\":_vm.source}})],1)})],2)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import { render, staticRenderFns } from \"./FileEntry.vue?vue&type=template&id=6ae0d517\"\nimport script from \"./FileEntry.vue?vue&type=script&lang=ts\"\nexport * from \"./FileEntry.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryGrid.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FileEntryGrid.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('tr',{staticClass:\"files-list__row\",class:{'files-list__row--active': _vm.isActive, 'files-list__row--dragover': _vm.dragover, 'files-list__row--loading': _vm.isLoading},attrs:{\"data-cy-files-list-row\":\"\",\"data-cy-files-list-row-fileid\":_vm.fileid,\"data-cy-files-list-row-name\":_vm.source.basename,\"draggable\":_vm.canDrag},on:{\"contextmenu\":_vm.onRightClick,\"dragover\":_vm.onDragOver,\"dragleave\":_vm.onDragLeave,\"dragstart\":_vm.onDragStart,\"dragend\":_vm.onDragEnd,\"drop\":_vm.onDrop}},[(_vm.source.attributes.failed)?_c('span',{staticClass:\"files-list__row--failed\"}):_vm._e(),_vm._v(\" \"),_c('FileEntryCheckbox',{attrs:{\"fileid\":_vm.fileid,\"is-loading\":_vm.isLoading,\"nodes\":_vm.nodes,\"source\":_vm.source}}),_vm._v(\" \"),_c('td',{staticClass:\"files-list__row-name\",attrs:{\"data-cy-files-list-row-name\":\"\"}},[_c('FileEntryPreview',{ref:\"preview\",attrs:{\"dragover\":_vm.dragover,\"grid-mode\":true,\"source\":_vm.source},nativeOn:{\"click\":function($event){return _vm.execDefaultAction.apply(null, arguments)}}}),_vm._v(\" \"),_c('FileEntryName',{ref:\"name\",attrs:{\"display-name\":_vm.displayName,\"extension\":_vm.extension,\"files-list-width\":_vm.filesListWidth,\"grid-mode\":true,\"nodes\":_vm.nodes,\"source\":_vm.source},on:{\"click\":_vm.execDefaultAction}})],1),_vm._v(\" \"),_c('FileEntryActions',{ref:\"actions\",class:`files-list__row-actions-${_vm.uniqueId}`,attrs:{\"files-list-width\":_vm.filesListWidth,\"grid-mode\":true,\"loading\":_vm.loading,\"opened\":_vm.openedMenu,\"source\":_vm.source},on:{\"update:loading\":function($event){_vm.loading=$event},\"update:opened\":function($event){_vm.openedMenu=$event}}})],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import { render, staticRenderFns } from \"./FileEntryGrid.vue?vue&type=template&id=337076f0\"\nimport script from \"./FileEntryGrid.vue?vue&type=script&lang=ts\"\nexport * from \"./FileEntryGrid.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('div',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.enabled),expression:\"enabled\"}],class:`files-list__header-${_vm.header.id}`},[_c('span',{ref:\"mount\"})])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListHeader.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListHeader.vue?vue&type=script&lang=ts\"","import { render, staticRenderFns } from \"./FilesListHeader.vue?vue&type=template&id=0434f153\"\nimport script from \"./FilesListHeader.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesListHeader.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableFooter.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableFooter.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('tr',[_c('th',{staticClass:\"files-list__row-checkbox\"},[_c('span',{staticClass:\"hidden-visually\"},[_vm._v(_vm._s(_vm.t('files', 'Total rows summary')))])]),_vm._v(\" \"),_c('td',{staticClass:\"files-list__row-name\"},[_c('span',{staticClass:\"files-list__row-icon\"}),_vm._v(\" \"),_c('span',[_vm._v(_vm._s(_vm.summary))])]),_vm._v(\" \"),_c('td',{staticClass:\"files-list__row-actions\"}),_vm._v(\" \"),(_vm.isSizeAvailable)?_c('td',{staticClass:\"files-list__column files-list__row-size\"},[_c('span',[_vm._v(_vm._s(_vm.totalSize))])]):_vm._e(),_vm._v(\" \"),(_vm.isMtimeAvailable)?_c('td',{staticClass:\"files-list__column files-list__row-mtime\"}):_vm._e(),_vm._v(\" \"),_vm._l((_vm.columns),function(column){return _c('th',{key:column.id,class:_vm.classForColumn(column)},[_c('span',[_vm._v(_vm._s(column.summary?.(_vm.nodes, _vm.currentView)))])])})],2)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableFooter.vue?vue&type=style&index=0&id=a85bde20&prod&scoped=true&lang=scss\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableFooter.vue?vue&type=style&index=0&id=a85bde20&prod&scoped=true&lang=scss\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListTableFooter.vue?vue&type=template&id=a85bde20&scoped=true\"\nimport script from \"./FilesListTableFooter.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesListTableFooter.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FilesListTableFooter.vue?vue&type=style&index=0&id=a85bde20&prod&scoped=true&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"a85bde20\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('tr',{staticClass:\"files-list__row-head\"},[_c('th',{staticClass:\"files-list__column files-list__row-checkbox\",on:{\"keyup\":function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,\"esc\",27,$event.key,[\"Esc\",\"Escape\"]))return null;if($event.ctrlKey||$event.shiftKey||$event.altKey||$event.metaKey)return null;return _vm.resetSelection.apply(null, arguments)}}},[_c('NcCheckboxRadioSwitch',_vm._b({on:{\"update:checked\":_vm.onToggleAll}},'NcCheckboxRadioSwitch',_vm.selectAllBind,false))],1),_vm._v(\" \"),_c('th',{staticClass:\"files-list__column files-list__row-name files-list__column--sortable\",attrs:{\"aria-sort\":_vm.ariaSortForMode('basename')}},[_c('span',{staticClass:\"files-list__row-icon\"}),_vm._v(\" \"),_c('FilesListTableHeaderButton',{attrs:{\"name\":_vm.t('files', 'Name'),\"mode\":\"basename\"}})],1),_vm._v(\" \"),_c('th',{staticClass:\"files-list__row-actions\"}),_vm._v(\" \"),(_vm.isSizeAvailable)?_c('th',{staticClass:\"files-list__column files-list__row-size\",class:{ 'files-list__column--sortable': _vm.isSizeAvailable },attrs:{\"aria-sort\":_vm.ariaSortForMode('size')}},[_c('FilesListTableHeaderButton',{attrs:{\"name\":_vm.t('files', 'Size'),\"mode\":\"size\"}})],1):_vm._e(),_vm._v(\" \"),(_vm.isMtimeAvailable)?_c('th',{staticClass:\"files-list__column files-list__row-mtime\",class:{ 'files-list__column--sortable': _vm.isMtimeAvailable },attrs:{\"aria-sort\":_vm.ariaSortForMode('mtime')}},[_c('FilesListTableHeaderButton',{attrs:{\"name\":_vm.t('files', 'Modified'),\"mode\":\"mtime\"}})],1):_vm._e(),_vm._v(\" \"),_vm._l((_vm.columns),function(column){return _c('th',{key:column.id,class:_vm.classForColumn(column),attrs:{\"aria-sort\":_vm.ariaSortForMode(column.id)}},[(!!column.sort)?_c('FilesListTableHeaderButton',{attrs:{\"name\":column.title,\"mode\":column.id}}):_c('span',[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(column.title)+\"\\n\\t\\t\")])],1)})],2)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nimport Vue from 'vue';\nimport { mapState } from 'pinia';\nimport { useViewConfigStore } from '../store/viewConfig';\nimport { Navigation, View } from '@nextcloud/files';\nexport default Vue.extend({\n computed: {\n ...mapState(useViewConfigStore, ['getConfig', 'setSortingBy', 'toggleSortingDirection']),\n currentView() {\n return this.$navigation.active;\n },\n /**\n * Get the sorting mode for the current view\n */\n sortingMode() {\n return this.getConfig(this.currentView.id)?.sorting_mode\n || this.currentView?.defaultSortKey\n || 'basename';\n },\n /**\n * Get the sorting direction for the current view\n */\n isAscSorting() {\n const sortingDirection = this.getConfig(this.currentView.id)?.sorting_direction;\n return sortingDirection !== 'desc';\n },\n },\n methods: {\n toggleSortBy(key) {\n // If we're already sorting by this key, flip the direction\n if (this.sortingMode === key) {\n this.toggleSortingDirection(this.currentView.id);\n return;\n }\n // else sort ASC by this new key\n this.setSortingBy(key, this.currentView.id);\n },\n },\n});\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderButton.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderButton.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('NcButton',{class:['files-list__column-sort-button', {\n\t\t'files-list__column-sort-button--active': _vm.sortingMode === _vm.mode,\n\t\t'files-list__column-sort-button--size': _vm.sortingMode === 'size',\n\t}],attrs:{\"alignment\":_vm.mode === 'size' ? 'end' : 'start-reverse',\"type\":\"tertiary\"},on:{\"click\":function($event){return _vm.toggleSortBy(_vm.mode)}},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.sortingMode !== _vm.mode || _vm.isAscSorting)?_c('MenuUp',{staticClass:\"files-list__column-sort-button-icon\"}):_c('MenuDown',{staticClass:\"files-list__column-sort-button-icon\"})]},proxy:true}])},[_vm._v(\" \"),_c('span',{staticClass:\"files-list__column-sort-button-text\"},[_vm._v(_vm._s(_vm.name))])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderButton.vue?vue&type=style&index=0&id=097f69d4&prod&scoped=true&lang=scss\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderButton.vue?vue&type=style&index=0&id=097f69d4&prod&scoped=true&lang=scss\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListTableHeaderButton.vue?vue&type=template&id=097f69d4&scoped=true\"\nimport script from \"./FilesListTableHeaderButton.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesListTableHeaderButton.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FilesListTableHeaderButton.vue?vue&type=style&index=0&id=097f69d4&prod&scoped=true&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"097f69d4\",\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeader.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeader.vue?vue&type=script&lang=ts\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeader.vue?vue&type=style&index=0&id=952162c2&prod&scoped=true&lang=scss\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeader.vue?vue&type=style&index=0&id=952162c2&prod&scoped=true&lang=scss\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListTableHeader.vue?vue&type=template&id=952162c2&scoped=true\"\nimport script from \"./FilesListTableHeader.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesListTableHeader.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FilesListTableHeader.vue?vue&type=style&index=0&id=952162c2&prod&scoped=true&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"952162c2\",\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('div',{staticClass:\"files-list\",attrs:{\"data-cy-files-list\":\"\"}},[_c('div',{ref:\"before\",staticClass:\"files-list__before\"},[_vm._t(\"before\")],2),_vm._v(\" \"),(!!_vm.$scopedSlots['header-overlay'])?_c('div',{staticClass:\"files-list__thead-overlay\"},[_vm._t(\"header-overlay\")],2):_vm._e(),_vm._v(\" \"),_c('table',{staticClass:\"files-list__table\",class:{ 'files-list__table--with-thead-overlay': !!_vm.$scopedSlots['header-overlay'] }},[(_vm.caption)?_c('caption',{staticClass:\"hidden-visually\"},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(_vm.caption)+\"\\n\\t\\t\")]):_vm._e(),_vm._v(\" \"),_c('thead',{ref:\"thead\",staticClass:\"files-list__thead\",attrs:{\"data-cy-files-list-thead\":\"\"}},[_vm._t(\"header\")],2),_vm._v(\" \"),_c('tbody',{staticClass:\"files-list__tbody\",class:_vm.gridMode ? 'files-list__tbody--grid' : 'files-list__tbody--list',style:(_vm.tbodyStyle),attrs:{\"data-cy-files-list-tbody\":\"\"}},_vm._l((_vm.renderedItems),function({key, item},i){return _c(_vm.dataComponent,_vm._b({key:key,tag:\"component\",attrs:{\"source\":item,\"index\":i}},'component',_vm.extraProps,false))}),1),_vm._v(\" \"),_c('tfoot',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.isReady),expression:\"isReady\"}],staticClass:\"files-list__tfoot\",attrs:{\"data-cy-files-list-tfoot\":\"\"}},[_vm._t(\"footer\")],2)])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./VirtualList.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./VirtualList.vue?vue&type=script&lang=ts\"","import { render, staticRenderFns } from \"./VirtualList.vue?vue&type=template&id=6932388d\"\nimport script from \"./VirtualList.vue?vue&type=script&lang=ts\"\nexport * from \"./VirtualList.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('div',{staticClass:\"files-list__column files-list__row-actions-batch\"},[_c('NcActions',{ref:\"actionsMenu\",attrs:{\"disabled\":!!_vm.loading || _vm.areSomeNodesLoading,\"force-name\":true,\"inline\":_vm.inlineActions,\"menu-name\":_vm.inlineActions <= 1 ? _vm.t('files', 'Actions') : null,\"open\":_vm.openedMenu},on:{\"update:open\":function($event){_vm.openedMenu=$event}}},_vm._l((_vm.enabledActions),function(action){return _c('NcActionButton',{key:action.id,class:'files-list__row-actions-batch-' + action.id,on:{\"click\":function($event){return _vm.onActionClick(action)}},scopedSlots:_vm._u([{key:\"icon\",fn:function(){return [(_vm.loading === action.id)?_c('NcLoadingIcon',{attrs:{\"size\":18}}):_c('NcIconSvgWrapper',{attrs:{\"svg\":action.iconSvgInline(_vm.nodes, _vm.currentView)}})]},proxy:true}],null,true)},[_vm._v(\"\\n\\t\\t\\t\"+_vm._s(action.displayName(_vm.nodes, _vm.currentView))+\"\\n\\t\\t\")])}),1)],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderActions.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderActions.vue?vue&type=script&lang=ts\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderActions.vue?vue&type=style&index=0&id=d939292c&prod&scoped=true&lang=scss\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListTableHeaderActions.vue?vue&type=style&index=0&id=d939292c&prod&scoped=true&lang=scss\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListTableHeaderActions.vue?vue&type=template&id=d939292c&scoped=true\"\nimport script from \"./FilesListTableHeaderActions.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesListTableHeaderActions.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FilesListTableHeaderActions.vue?vue&type=style&index=0&id=d939292c&prod&scoped=true&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"d939292c\",\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=script&lang=ts\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=style&index=0&id=2bbbfb12&prod&scoped=true&lang=scss\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=style&index=0&id=2bbbfb12&prod&scoped=true&lang=scss\";\n export default content && content.locals ? content.locals : undefined;\n","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=style&index=1&id=2bbbfb12&prod&lang=scss\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesListVirtual.vue?vue&type=style&index=1&id=2bbbfb12&prod&lang=scss\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesListVirtual.vue?vue&type=template&id=2bbbfb12&scoped=true\"\nimport script from \"./FilesListVirtual.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesListVirtual.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FilesListVirtual.vue?vue&type=style&index=0&id=2bbbfb12&prod&scoped=true&lang=scss\"\nimport style1 from \"./FilesListVirtual.vue?vue&type=style&index=1&id=2bbbfb12&prod&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"2bbbfb12\",\n null\n \n)\n\nexport default component.exports","import mod from \"-!../vue-loader/lib/index.js??vue-loader-options!./TrayArrowDown.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../vue-loader/lib/index.js??vue-loader-options!./TrayArrowDown.vue?vue&type=script&lang=js\"","<template>\n <span v-bind=\"$attrs\"\n :aria-hidden=\"title ? null : true\"\n :aria-label=\"title\"\n class=\"material-design-icon tray-arrow-down-icon\"\n role=\"img\"\n @click=\"$emit('click', $event)\">\n <svg :fill=\"fillColor\"\n class=\"material-design-icon__svg\"\n :width=\"size\"\n :height=\"size\"\n viewBox=\"0 0 24 24\">\n <path d=\"M2 12H4V17H20V12H22V17C22 18.11 21.11 19 20 19H4C2.9 19 2 18.11 2 17V12M12 15L17.55 9.54L16.13 8.13L13 11.25V2H11V11.25L7.88 8.13L6.46 9.55L12 15Z\">\n <title v-if=\"title\">{{ title }}</title>\n </path>\n </svg>\n </span>\n</template>\n\n<script>\nexport default {\n name: \"TrayArrowDownIcon\",\n emits: ['click'],\n props: {\n title: {\n type: String,\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n}\n</script>","import { render, staticRenderFns } from \"./TrayArrowDown.vue?vue&type=template&id=447c2cd4\"\nimport script from \"./TrayArrowDown.vue?vue&type=script&lang=js\"\nexport * from \"./TrayArrowDown.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('span',_vm._b({staticClass:\"material-design-icon tray-arrow-down-icon\",attrs:{\"aria-hidden\":_vm.title ? null : true,\"aria-label\":_vm.title,\"role\":\"img\"},on:{\"click\":function($event){return _vm.$emit('click', $event)}}},'span',_vm.$attrs,false),[_c('svg',{staticClass:\"material-design-icon__svg\",attrs:{\"fill\":_vm.fillColor,\"width\":_vm.size,\"height\":_vm.size,\"viewBox\":\"0 0 24 24\"}},[_c('path',{attrs:{\"d\":\"M2 12H4V17H20V12H22V17C22 18.11 21.11 19 20 19H4C2.9 19 2 18.11 2 17V12M12 15L17.55 9.54L16.13 8.13L13 11.25V2H11V11.25L7.88 8.13L6.46 9.55L12 15Z\"}},[(_vm.title)?_c('title',[_vm._v(_vm._s(_vm.title))]):_vm._e()])])])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropNotice.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropNotice.vue?vue&type=script&lang=ts\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('div',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.dragover),expression:\"dragover\"}],staticClass:\"files-list__drag-drop-notice\",attrs:{\"data-cy-files-drag-drop-area\":\"\"},on:{\"drop\":_vm.onDrop}},[_c('div',{staticClass:\"files-list__drag-drop-notice-wrapper\"},[(_vm.canUpload && !_vm.isQuotaExceeded)?[_c('TrayArrowDownIcon',{attrs:{\"size\":48}}),_vm._v(\" \"),_c('h3',{staticClass:\"files-list-drag-drop-notice__title\"},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.t('files', 'Drag and drop files here to upload'))+\"\\n\\t\\t\\t\")])]:[_c('h3',{staticClass:\"files-list-drag-drop-notice__title\"},[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(_vm.cantUploadLabel)+\"\\n\\t\\t\\t\")])]],2)])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropNotice.vue?vue&type=style&index=0&id=02c943a6&prod&lang=scss&scoped=true\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./DragAndDropNotice.vue?vue&type=style&index=0&id=02c943a6&prod&lang=scss&scoped=true\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./DragAndDropNotice.vue?vue&type=template&id=02c943a6&scoped=true\"\nimport script from \"./DragAndDropNotice.vue?vue&type=script&lang=ts\"\nexport * from \"./DragAndDropNotice.vue?vue&type=script&lang=ts\"\nimport style0 from \"./DragAndDropNotice.vue?vue&type=style&index=0&id=02c943a6&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"02c943a6\",\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesList.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesList.vue?vue&type=script&lang=ts\"","\n import API from \"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../node_modules/style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesList.vue?vue&type=style&index=0&id=1b7c1ce0&prod&scoped=true&lang=scss\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesList.vue?vue&type=style&index=0&id=1b7c1ce0&prod&scoped=true&lang=scss\";\n export default content && content.locals ? content.locals : undefined;\n","import { render, staticRenderFns } from \"./FilesList.vue?vue&type=template&id=1b7c1ce0&scoped=true\"\nimport script from \"./FilesList.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesList.vue?vue&type=script&lang=ts\"\nimport style0 from \"./FilesList.vue?vue&type=style&index=0&id=1b7c1ce0&prod&scoped=true&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"1b7c1ce0\",\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesApp.vue?vue&type=script&lang=ts\"; export default mod; export * from \"-!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/ts-loader/index.js??clonedRuleSet-4.use[1]!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./FilesApp.vue?vue&type=script&lang=ts\"","import { render, staticRenderFns } from \"./FilesApp.vue?vue&type=template&id=11e0f2dd\"\nimport script from \"./FilesApp.vue?vue&type=script&lang=ts\"\nexport * from \"./FilesApp.vue?vue&type=script&lang=ts\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import Vue from 'vue';\nimport { createPinia, PiniaVuePlugin } from 'pinia';\nimport { getNavigation } from '@nextcloud/files';\nimport { getRequestToken } from '@nextcloud/auth';\nimport router from './router/router';\nimport RouterService from './services/RouterService';\nimport SettingsModel from './models/Setting.js';\nimport SettingsService from './services/Settings.js';\nimport FilesApp from './FilesApp.vue';\n// @ts-expect-error __webpack_nonce__ is injected by webpack\n__webpack_nonce__ = btoa(getRequestToken());\n// Init private and public Files namespace\nwindow.OCA.Files = window.OCA.Files ?? {};\nwindow.OCP.Files = window.OCP.Files ?? {};\n// Expose router\nconst Router = new RouterService(router);\nObject.assign(window.OCP.Files, { Router });\n// Init Pinia store\nVue.use(PiniaVuePlugin);\nconst pinia = createPinia();\n// Init Navigation Service\n// This only works with Vue 2 - with Vue 3 this will not modify the source but return just a oberserver\nconst Navigation = Vue.observable(getNavigation());\nVue.prototype.$navigation = Navigation;\n// Init Files App Settings Service\nconst Settings = new SettingsService();\nObject.assign(window.OCA.Files, { Settings });\nObject.assign(window.OCA.Files.Settings, { Setting: SettingsModel });\nconst FilesAppVue = Vue.extend(FilesApp);\nnew FilesAppVue({\n router,\n pinia,\n}).$mount('#content');\n","export default class RouterService {\n _router;\n constructor(router) {\n this._router = router;\n }\n get name() {\n return this._router.currentRoute.name;\n }\n get query() {\n return this._router.currentRoute.query || {};\n }\n get params() {\n return this._router.currentRoute.params || {};\n }\n /**\n * Trigger a route change on the files app\n *\n * @param path the url path, eg: '/trashbin?dir=/Deleted'\n * @param replace replace the current history\n * @see https://router.vuejs.org/guide/essentials/navigation.html#navigate-to-a-different-location\n */\n goTo(path, replace = false) {\n return this._router.push({\n path,\n replace,\n });\n }\n /**\n * Trigger a route change on the files App\n *\n * @param name the route name\n * @param params the route parameters\n * @param query the url query parameters\n * @param replace replace the current history\n * @see https://router.vuejs.org/guide/essentials/navigation.html#navigate-to-a-different-location\n */\n goToRoute(name, params, query, replace) {\n return this._router.push({\n name,\n query,\n params,\n replace,\n });\n }\n}\n","/**\n * @copyright Copyright (c) 2019 Gary Kim <gary@garykim.dev>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\nexport default class Settings {\n\n\t_settings\n\n\tconstructor() {\n\t\tthis._settings = []\n\t\tconsole.debug('OCA.Files.Settings initialized')\n\t}\n\n\t/**\n\t * Register a new setting\n\t *\n\t * @since 19.0.0\n\t * @param {OCA.Files.Settings.Setting} view element to add to settings\n\t * @return {boolean} whether registering was successful\n\t */\n\tregister(view) {\n\t\tif (this._settings.filter(e => e.name === view.name).length > 0) {\n\t\t\tconsole.error('A setting with the same name is already registered')\n\t\t\treturn false\n\t\t}\n\t\tthis._settings.push(view)\n\t\treturn true\n\t}\n\n\t/**\n\t * All settings elements\n\t *\n\t * @return {OCA.Files.Settings.Setting[]} All currently registered settings\n\t */\n\tget settings() {\n\t\treturn this._settings\n\t}\n\n}\n","/**\n * @copyright Copyright (c) 2019 Gary Kim <gary@garykim.dev>\n * @copyright Copyright (c) 2019 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\nexport default class Setting {\n\n\t_close\n\t_el\n\t_name\n\t_open\n\n\t/**\n\t * Create a new files app setting\n\t *\n\t * @since 19.0.0\n\t * @param {string} name the name of this setting\n\t * @param {object} component the component\n\t * @param {Function} component.el function that returns an unmounted dom element to be added\n\t * @param {Function} [component.open] callback for when setting is added\n\t * @param {Function} [component.close] callback for when setting is closed\n\t */\n\tconstructor(name, { el, open, close }) {\n\t\tthis._name = name\n\t\tthis._el = el\n\t\tthis._open = open\n\t\tthis._close = close\n\n\t\tif (typeof this._open !== 'function') {\n\t\t\tthis._open = () => {}\n\t\t}\n\n\t\tif (typeof this._close !== 'function') {\n\t\t\tthis._close = () => {}\n\t\t}\n\t}\n\n\tget name() {\n\t\treturn this._name\n\t}\n\n\tget el() {\n\t\treturn this._el\n\t}\n\n\tget open() {\n\t\treturn this._open\n\t}\n\n\tget close() {\n\t\treturn this._close\n\t}\n\n}\n","function _typeof(obj) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && \"function\" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }, _typeof(obj); }\n\n(function (global, factory) {\n if (typeof define === \"function\" && define.amd) {\n define([\"exports\"], factory);\n } else if (typeof exports !== \"undefined\") {\n factory(exports);\n } else {\n var mod = {\n exports: {}\n };\n factory(mod.exports);\n global.CancelablePromise = mod.exports;\n }\n})(typeof globalThis !== \"undefined\" ? globalThis : typeof self !== \"undefined\" ? self : this, function (_exports) {\n \"use strict\";\n\n Object.defineProperty(_exports, \"__esModule\", {\n value: true\n });\n _exports.CancelablePromise = void 0;\n _exports.cancelable = cancelable;\n _exports.default = void 0;\n _exports.isCancelablePromise = isCancelablePromise;\n\n function _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, \"prototype\", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\n function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\n function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\n function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } else if (call !== void 0) { throw new TypeError(\"Derived constructors may only return object or undefined\"); } return _assertThisInitialized(self); }\n\n function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\n function _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\n function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\n function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== \"undefined\" && o[Symbol.iterator] || o[\"@@iterator\"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === \"number\") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }\n\n function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\n\n function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\n function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\n function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, \"prototype\", { writable: false }); return Constructor; }\n\n function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\n function _classPrivateFieldInitSpec(obj, privateMap, value) { _checkPrivateRedeclaration(obj, privateMap); privateMap.set(obj, value); }\n\n function _checkPrivateRedeclaration(obj, privateCollection) { if (privateCollection.has(obj)) { throw new TypeError(\"Cannot initialize the same private elements twice on an object\"); } }\n\n function _classPrivateFieldGet(receiver, privateMap) { var descriptor = _classExtractFieldDescriptor(receiver, privateMap, \"get\"); return _classApplyDescriptorGet(receiver, descriptor); }\n\n function _classApplyDescriptorGet(receiver, descriptor) { if (descriptor.get) { return descriptor.get.call(receiver); } return descriptor.value; }\n\n function _classPrivateFieldSet(receiver, privateMap, value) { var descriptor = _classExtractFieldDescriptor(receiver, privateMap, \"set\"); _classApplyDescriptorSet(receiver, descriptor, value); return value; }\n\n function _classExtractFieldDescriptor(receiver, privateMap, action) { if (!privateMap.has(receiver)) { throw new TypeError(\"attempted to \" + action + \" private field on non-instance\"); } return privateMap.get(receiver); }\n\n function _classApplyDescriptorSet(receiver, descriptor, value) { if (descriptor.set) { descriptor.set.call(receiver, value); } else { if (!descriptor.writable) { throw new TypeError(\"attempted to set read only private field\"); } descriptor.value = value; } }\n\n var toStringTag = typeof Symbol !== 'undefined' ? Symbol.toStringTag : '@@toStringTag';\n\n var _internals = /*#__PURE__*/new WeakMap();\n\n var _promise = /*#__PURE__*/new WeakMap();\n\n var CancelablePromiseInternal = /*#__PURE__*/function () {\n function CancelablePromiseInternal(_ref) {\n var _ref$executor = _ref.executor,\n executor = _ref$executor === void 0 ? function () {} : _ref$executor,\n _ref$internals = _ref.internals,\n internals = _ref$internals === void 0 ? defaultInternals() : _ref$internals,\n _ref$promise = _ref.promise,\n promise = _ref$promise === void 0 ? new Promise(function (resolve, reject) {\n return executor(resolve, reject, function (onCancel) {\n internals.onCancelList.push(onCancel);\n });\n }) : _ref$promise;\n\n _classCallCheck(this, CancelablePromiseInternal);\n\n _classPrivateFieldInitSpec(this, _internals, {\n writable: true,\n value: void 0\n });\n\n _classPrivateFieldInitSpec(this, _promise, {\n writable: true,\n value: void 0\n });\n\n _defineProperty(this, toStringTag, 'CancelablePromise');\n\n this.cancel = this.cancel.bind(this);\n\n _classPrivateFieldSet(this, _internals, internals);\n\n _classPrivateFieldSet(this, _promise, promise || new Promise(function (resolve, reject) {\n return executor(resolve, reject, function (onCancel) {\n internals.onCancelList.push(onCancel);\n });\n }));\n }\n\n _createClass(CancelablePromiseInternal, [{\n key: \"then\",\n value: function then(onfulfilled, onrejected) {\n return makeCancelable(_classPrivateFieldGet(this, _promise).then(createCallback(onfulfilled, _classPrivateFieldGet(this, _internals)), createCallback(onrejected, _classPrivateFieldGet(this, _internals))), _classPrivateFieldGet(this, _internals));\n }\n }, {\n key: \"catch\",\n value: function _catch(onrejected) {\n return makeCancelable(_classPrivateFieldGet(this, _promise).catch(createCallback(onrejected, _classPrivateFieldGet(this, _internals))), _classPrivateFieldGet(this, _internals));\n }\n }, {\n key: \"finally\",\n value: function _finally(onfinally, runWhenCanceled) {\n var _this = this;\n\n if (runWhenCanceled) {\n _classPrivateFieldGet(this, _internals).onCancelList.push(onfinally);\n }\n\n return makeCancelable(_classPrivateFieldGet(this, _promise).finally(createCallback(function () {\n if (onfinally) {\n if (runWhenCanceled) {\n _classPrivateFieldGet(_this, _internals).onCancelList = _classPrivateFieldGet(_this, _internals).onCancelList.filter(function (callback) {\n return callback !== onfinally;\n });\n }\n\n return onfinally();\n }\n }, _classPrivateFieldGet(this, _internals))), _classPrivateFieldGet(this, _internals));\n }\n }, {\n key: \"cancel\",\n value: function cancel() {\n _classPrivateFieldGet(this, _internals).isCanceled = true;\n\n var callbacks = _classPrivateFieldGet(this, _internals).onCancelList;\n\n _classPrivateFieldGet(this, _internals).onCancelList = [];\n\n var _iterator = _createForOfIteratorHelper(callbacks),\n _step;\n\n try {\n for (_iterator.s(); !(_step = _iterator.n()).done;) {\n var callback = _step.value;\n\n if (typeof callback === 'function') {\n try {\n callback();\n } catch (err) {\n console.error(err);\n }\n }\n }\n } catch (err) {\n _iterator.e(err);\n } finally {\n _iterator.f();\n }\n }\n }, {\n key: \"isCanceled\",\n value: function isCanceled() {\n return _classPrivateFieldGet(this, _internals).isCanceled === true;\n }\n }]);\n\n return CancelablePromiseInternal;\n }();\n\n var CancelablePromise = /*#__PURE__*/function (_CancelablePromiseInt) {\n _inherits(CancelablePromise, _CancelablePromiseInt);\n\n var _super = _createSuper(CancelablePromise);\n\n function CancelablePromise(executor) {\n _classCallCheck(this, CancelablePromise);\n\n return _super.call(this, {\n executor: executor\n });\n }\n\n return _createClass(CancelablePromise);\n }(CancelablePromiseInternal);\n\n _exports.CancelablePromise = CancelablePromise;\n\n _defineProperty(CancelablePromise, \"all\", function all(iterable) {\n return makeAllCancelable(iterable, Promise.all(iterable));\n });\n\n _defineProperty(CancelablePromise, \"allSettled\", function allSettled(iterable) {\n return makeAllCancelable(iterable, Promise.allSettled(iterable));\n });\n\n _defineProperty(CancelablePromise, \"any\", function any(iterable) {\n return makeAllCancelable(iterable, Promise.any(iterable));\n });\n\n _defineProperty(CancelablePromise, \"race\", function race(iterable) {\n return makeAllCancelable(iterable, Promise.race(iterable));\n });\n\n _defineProperty(CancelablePromise, \"resolve\", function resolve(value) {\n return cancelable(Promise.resolve(value));\n });\n\n _defineProperty(CancelablePromise, \"reject\", function reject(reason) {\n return cancelable(Promise.reject(reason));\n });\n\n _defineProperty(CancelablePromise, \"isCancelable\", isCancelablePromise);\n\n var _default = CancelablePromise;\n _exports.default = _default;\n\n function cancelable(promise) {\n return makeCancelable(promise, defaultInternals());\n }\n\n function isCancelablePromise(promise) {\n return promise instanceof CancelablePromise || promise instanceof CancelablePromiseInternal;\n }\n\n function createCallback(onResult, internals) {\n if (onResult) {\n return function (arg) {\n if (!internals.isCanceled) {\n var result = onResult(arg);\n\n if (isCancelablePromise(result)) {\n internals.onCancelList.push(result.cancel);\n }\n\n return result;\n }\n\n return arg;\n };\n }\n }\n\n function makeCancelable(promise, internals) {\n return new CancelablePromiseInternal({\n internals: internals,\n promise: promise\n });\n }\n\n function makeAllCancelable(iterable, promise) {\n var internals = defaultInternals();\n internals.onCancelList.push(function () {\n var _iterator2 = _createForOfIteratorHelper(iterable),\n _step2;\n\n try {\n for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {\n var resolvable = _step2.value;\n\n if (isCancelablePromise(resolvable)) {\n resolvable.cancel();\n }\n }\n } catch (err) {\n _iterator2.e(err);\n } finally {\n _iterator2.f();\n }\n });\n return new CancelablePromiseInternal({\n internals: internals,\n promise: promise\n });\n }\n\n function defaultInternals() {\n return {\n isCanceled: false,\n onCancelList: []\n };\n }\n});\n//# sourceMappingURL=CancelablePromise.js.map","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../css-loader/dist/runtime/api.js\";\nimport ___CSS_LOADER_GET_URL_IMPORT___ from \"../../../css-loader/dist/runtime/getUrl.js\";\nvar ___CSS_LOADER_URL_IMPORT_0___ = new URL(\"data:image/svg+xml,%3csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20height=%2716%27%20width=%2716%27%3e%3cpath%20d=%27M14%2012.3L12.3%2014%208%209.7%203.7%2014%202%2012.3%206.3%208%202%203.7%203.7%202%208%206.3%2012.3%202%2014%203.7%209.7%208z%27/%3e%3c/svg%3e\", import.meta.url);\nvar ___CSS_LOADER_URL_IMPORT_1___ = new URL(\"data:image/svg+xml,%3csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20height=%2716%27%20width=%2716%27%3e%3cpath%20d=%27M14%2012.3L12.3%2014%208%209.7%203.7%2014%202%2012.3%206.3%208%202%203.7%203.7%202%208%206.3%2012.3%202%2014%203.7%209.7%208z%27%20style=%27fill-opacity:1;fill:%23ffffff%27/%3e%3c/svg%3e\", import.meta.url);\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\nvar ___CSS_LOADER_URL_REPLACEMENT_0___ = ___CSS_LOADER_GET_URL_IMPORT___(___CSS_LOADER_URL_IMPORT_0___);\nvar ___CSS_LOADER_URL_REPLACEMENT_1___ = ___CSS_LOADER_GET_URL_IMPORT___(___CSS_LOADER_URL_IMPORT_1___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `@charset \"UTF-8\";\n/**\n * @copyright Copyright (c) 2019 Julius Härtl <jus@bitgrid.net>\n *\n * @author Julius Härtl <jus@bitgrid.net>\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n */\n.toastify.dialogs {\n min-width: 200px;\n background: none;\n background-color: var(--color-main-background);\n color: var(--color-main-text);\n box-shadow: 0 0 6px 0 var(--color-box-shadow);\n padding: 0 12px;\n margin-top: 45px;\n position: fixed;\n z-index: 10100;\n border-radius: var(--border-radius);\n display: flex;\n align-items: center;\n}\n.toastify.dialogs .toast-undo-container {\n display: flex;\n align-items: center;\n}\n.toastify.dialogs .toast-undo-button,\n.toastify.dialogs .toast-close {\n position: static;\n overflow: hidden;\n box-sizing: border-box;\n min-width: 44px;\n height: 100%;\n padding: 12px;\n white-space: nowrap;\n background-repeat: no-repeat;\n background-position: center;\n background-color: transparent;\n min-height: 0;\n}\n.toastify.dialogs .toast-undo-button.toast-close,\n.toastify.dialogs .toast-close.toast-close {\n text-indent: 0;\n opacity: .4;\n border: none;\n min-height: 44px;\n margin-left: 10px;\n font-size: 0;\n}\n.toastify.dialogs .toast-undo-button.toast-close:before,\n.toastify.dialogs .toast-close.toast-close:before {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_0___});\n content: \" \";\n filter: var(--background-invert-if-dark);\n display: inline-block;\n width: 16px;\n height: 16px;\n}\n.toastify.dialogs .toast-undo-button.toast-undo-button,\n.toastify.dialogs .toast-close.toast-undo-button {\n height: calc(100% - 6px);\n margin: 3px 3px 3px 12px;\n}\n.toastify.dialogs .toast-undo-button:hover,\n.toastify.dialogs .toast-undo-button:focus,\n.toastify.dialogs .toast-undo-button:active,\n.toastify.dialogs .toast-close:hover,\n.toastify.dialogs .toast-close:focus,\n.toastify.dialogs .toast-close:active {\n cursor: pointer;\n opacity: 1;\n}\n.toastify.dialogs.toastify-top {\n right: 10px;\n}\n.toastify.dialogs.toast-with-click {\n cursor: pointer;\n}\n.toastify.dialogs.toast-error {\n border-left: 3px solid var(--color-error);\n}\n.toastify.dialogs.toast-info {\n border-left: 3px solid var(--color-primary);\n}\n.toastify.dialogs.toast-warning {\n border-left: 3px solid var(--color-warning);\n}\n.toastify.dialogs.toast-success,\n.toastify.dialogs.toast-undo {\n border-left: 3px solid var(--color-success);\n}\n.theme--dark .toastify.dialogs .toast-close.toast-close:before {\n background-image: url(${___CSS_LOADER_URL_REPLACEMENT_1___});\n}\n._file-picker__file-icon_1vgv4_5 {\n width: 32px;\n height: 32px;\n min-width: 32px;\n min-height: 32px;\n background-repeat: no-repeat;\n background-size: contain;\n display: flex;\n justify-content: center;\n}\ntr.file-picker__row[data-v-6aded0d9] {\n height: var(--row-height, 50px);\n}\ntr.file-picker__row td[data-v-6aded0d9] {\n cursor: pointer;\n overflow: hidden;\n text-overflow: ellipsis;\n border-bottom: none;\n}\ntr.file-picker__row td.row-checkbox[data-v-6aded0d9] {\n padding: 0 2px;\n}\ntr.file-picker__row td[data-v-6aded0d9]:not(.row-checkbox) {\n padding-inline: 14px 0;\n}\ntr.file-picker__row td.row-size[data-v-6aded0d9] {\n text-align: end;\n padding-inline: 0 14px;\n}\ntr.file-picker__row td.row-name[data-v-6aded0d9] {\n padding-inline: 2px 0;\n}\n@keyframes gradient-6aded0d9 {\n 0% {\n background-position: 0% 50%;\n }\n 50% {\n background-position: 100% 50%;\n }\n to {\n background-position: 0% 50%;\n }\n}\n.loading-row .row-checkbox[data-v-6aded0d9] {\n text-align: center !important;\n}\n.loading-row span[data-v-6aded0d9] {\n display: inline-block;\n height: 24px;\n background: linear-gradient(to right, var(--color-background-darker), var(--color-text-maxcontrast), var(--color-background-darker));\n background-size: 600px 100%;\n border-radius: var(--border-radius);\n animation: gradient-6aded0d9 12s ease infinite;\n}\n.loading-row .row-wrapper[data-v-6aded0d9] {\n display: inline-flex;\n align-items: center;\n}\n.loading-row .row-checkbox span[data-v-6aded0d9] {\n width: 24px;\n}\n.loading-row .row-name span[data-v-6aded0d9]:last-of-type {\n margin-inline-start: 6px;\n width: 130px;\n}\n.loading-row .row-size span[data-v-6aded0d9] {\n width: 80px;\n}\n.loading-row .row-modified span[data-v-6aded0d9] {\n width: 90px;\n}\ntr.file-picker__row[data-v-48df4f27] {\n height: var(--row-height, 50px);\n}\ntr.file-picker__row td[data-v-48df4f27] {\n cursor: pointer;\n overflow: hidden;\n text-overflow: ellipsis;\n border-bottom: none;\n}\ntr.file-picker__row td.row-checkbox[data-v-48df4f27] {\n padding: 0 2px;\n}\ntr.file-picker__row td[data-v-48df4f27]:not(.row-checkbox) {\n padding-inline: 14px 0;\n}\ntr.file-picker__row td.row-size[data-v-48df4f27] {\n text-align: end;\n padding-inline: 0 14px;\n}\ntr.file-picker__row td.row-name[data-v-48df4f27] {\n padding-inline: 2px 0;\n}\n.file-picker__row--selected[data-v-48df4f27] {\n background-color: var(--color-background-dark);\n}\n.file-picker__row[data-v-48df4f27]:hover {\n background-color: var(--color-background-hover);\n}\n.file-picker__name-container[data-v-48df4f27] {\n display: flex;\n justify-content: start;\n align-items: center;\n height: 100%;\n}\n.file-picker__file-name[data-v-48df4f27] {\n padding-inline-start: 6px;\n min-width: 0;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.file-picker__file-extension[data-v-48df4f27] {\n color: var(--color-text-maxcontrast);\n min-width: fit-content;\n}\n.file-picker__header-preview[data-v-d3c94818] {\n width: 22px;\n height: 32px;\n flex: 0 0 auto;\n}\n.file-picker__files[data-v-d3c94818] {\n margin: 2px;\n margin-inline-start: 12px;\n overflow: scroll auto;\n}\n.file-picker__files table[data-v-d3c94818] {\n width: 100%;\n max-height: 100%;\n table-layout: fixed;\n}\n.file-picker__files th[data-v-d3c94818] {\n position: sticky;\n z-index: 1;\n top: 0;\n background-color: var(--color-main-background);\n padding: 2px;\n}\n.file-picker__files th .header-wrapper[data-v-d3c94818] {\n display: flex;\n}\n.file-picker__files th.row-checkbox[data-v-d3c94818] {\n width: 44px;\n}\n.file-picker__files th.row-name[data-v-d3c94818] {\n width: 230px;\n}\n.file-picker__files th.row-size[data-v-d3c94818] {\n width: 100px;\n}\n.file-picker__files th.row-modified[data-v-d3c94818] {\n width: 120px;\n}\n.file-picker__files th[data-v-d3c94818]:not(.row-size) .button-vue__wrapper {\n justify-content: start;\n flex-direction: row-reverse;\n}\n.file-picker__files th[data-v-d3c94818]:not(.row-size) .button-vue {\n padding-inline: 16px 4px;\n}\n.file-picker__files th.row-size[data-v-d3c94818] .button-vue__wrapper {\n justify-content: end;\n}\n.file-picker__files th[data-v-d3c94818] .button-vue__wrapper {\n color: var(--color-text-maxcontrast);\n}\n.file-picker__files th[data-v-d3c94818] .button-vue__wrapper .button-vue__text {\n font-weight: 400;\n}\n.file-picker__breadcrumbs[data-v-a25a2652] {\n flex-grow: 0 !important;\n}\n.file-picker__side[data-v-a06474d4] {\n display: flex;\n flex-direction: column;\n align-items: stretch;\n gap: .5rem;\n min-width: 200px;\n padding: 2px;\n margin-block-start: 7px;\n overflow: auto;\n}\n.file-picker__side[data-v-a06474d4] .button-vue__wrapper {\n justify-content: start;\n}\n.file-picker__filter-input[data-v-a06474d4] {\n margin-block: 7px;\n max-width: 260px;\n}\n@media (max-width: 736px) {\n .file-picker__side[data-v-a06474d4] {\n flex-direction: row;\n min-width: unset;\n }\n}\n@media (max-width: 512px) {\n .file-picker__side[data-v-a06474d4] {\n flex-direction: row;\n min-width: unset;\n }\n .file-picker__filter-input[data-v-a06474d4] {\n max-width: unset;\n }\n}\n.file-picker__navigation {\n padding-inline: 8px 2px;\n}\n.file-picker__navigation,\n.file-picker__navigation * {\n box-sizing: border-box;\n}\n.file-picker__navigation .v-select.select {\n min-width: 220px;\n}\n@media (min-width: 513px) and (max-width: 736px) {\n .file-picker__navigation {\n gap: 11px;\n }\n}\n@media (max-width: 512px) {\n .file-picker__navigation {\n flex-direction: column-reverse !important;\n }\n}\n.file-picker__view[data-v-9def3ca4] {\n height: 50px;\n display: flex;\n justify-content: start;\n align-items: center;\n}\n.file-picker__view h3[data-v-9def3ca4] {\n font-weight: 700;\n height: fit-content;\n margin: 0;\n}\n.file-picker__main[data-v-9def3ca4] {\n box-sizing: border-box;\n width: 100%;\n display: flex;\n flex-direction: column;\n min-height: 0;\n flex: 1;\n padding-inline: 2px;\n}\n.file-picker__main *[data-v-9def3ca4] {\n box-sizing: border-box;\n}\n[data-v-9def3ca4] .file-picker {\n height: min(80vh, 800px) !important;\n}\n@media (max-width: 512px) {\n [data-v-9def3ca4] .file-picker {\n height: calc(100% - 16px - var(--default-clickable-area)) !important;\n }\n}\n[data-v-9def3ca4] .file-picker__content {\n display: flex;\n flex-direction: column;\n overflow: hidden;\n}\n`, \"\",{\"version\":3,\"sources\":[\"webpack://./node_modules/@nextcloud/dialogs/dist/style.css\"],\"names\":[],\"mappings\":\"AAAA,gBAAgB;AAChB;;;;;;;;;;;;;;;;;;;;EAoBE;AACF;EACE,gBAAgB;EAChB,gBAAgB;EAChB,8CAA8C;EAC9C,6BAA6B;EAC7B,6CAA6C;EAC7C,eAAe;EACf,gBAAgB;EAChB,eAAe;EACf,cAAc;EACd,mCAAmC;EACnC,aAAa;EACb,mBAAmB;AACrB;AACA;EACE,aAAa;EACb,mBAAmB;AACrB;AACA;;EAEE,gBAAgB;EAChB,gBAAgB;EAChB,sBAAsB;EACtB,eAAe;EACf,YAAY;EACZ,aAAa;EACb,mBAAmB;EACnB,4BAA4B;EAC5B,2BAA2B;EAC3B,6BAA6B;EAC7B,aAAa;AACf;AACA;;EAEE,cAAc;EACd,WAAW;EACX,YAAY;EACZ,gBAAgB;EAChB,iBAAiB;EACjB,YAAY;AACd;AACA;;EAEE,yDAA8Q;EAC9Q,YAAY;EACZ,wCAAwC;EACxC,qBAAqB;EACrB,WAAW;EACX,YAAY;AACd;AACA;;EAEE,wBAAwB;EACxB,wBAAwB;AAC1B;AACA;;;;;;EAME,eAAe;EACf,UAAU;AACZ;AACA;EACE,WAAW;AACb;AACA;EACE,eAAe;AACjB;AACA;EACE,yCAAyC;AAC3C;AACA;EACE,2CAA2C;AAC7C;AACA;EACE,2CAA2C;AAC7C;AACA;;EAEE,2CAA2C;AAC7C;AACA;EACE,yDAAsT;AACxT;AACA;EACE,WAAW;EACX,YAAY;EACZ,eAAe;EACf,gBAAgB;EAChB,4BAA4B;EAC5B,wBAAwB;EACxB,aAAa;EACb,uBAAuB;AACzB;AACA;EACE,+BAA+B;AACjC;AACA;EACE,eAAe;EACf,gBAAgB;EAChB,uBAAuB;EACvB,mBAAmB;AACrB;AACA;EACE,cAAc;AAChB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,eAAe;EACf,sBAAsB;AACxB;AACA;EACE,qBAAqB;AACvB;AACA;EACE;IACE,2BAA2B;EAC7B;EACA;IACE,6BAA6B;EAC/B;EACA;IACE,2BAA2B;EAC7B;AACF;AACA;EACE,6BAA6B;AAC/B;AACA;EACE,qBAAqB;EACrB,YAAY;EACZ,oIAAoI;EACpI,2BAA2B;EAC3B,mCAAmC;EACnC,8CAA8C;AAChD;AACA;EACE,oBAAoB;EACpB,mBAAmB;AACrB;AACA;EACE,WAAW;AACb;AACA;EACE,wBAAwB;EACxB,YAAY;AACd;AACA;EACE,WAAW;AACb;AACA;EACE,WAAW;AACb;AACA;EACE,+BAA+B;AACjC;AACA;EACE,eAAe;EACf,gBAAgB;EAChB,uBAAuB;EACvB,mBAAmB;AACrB;AACA;EACE,cAAc;AAChB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,eAAe;EACf,sBAAsB;AACxB;AACA;EACE,qBAAqB;AACvB;AACA;EACE,8CAA8C;AAChD;AACA;EACE,+CAA+C;AACjD;AACA;EACE,aAAa;EACb,sBAAsB;EACtB,mBAAmB;EACnB,YAAY;AACd;AACA;EACE,yBAAyB;EACzB,YAAY;EACZ,gBAAgB;EAChB,uBAAuB;AACzB;AACA;EACE,oCAAoC;EACpC,sBAAsB;AACxB;AACA;EACE,WAAW;EACX,YAAY;EACZ,cAAc;AAChB;AACA;EACE,WAAW;EACX,yBAAyB;EACzB,qBAAqB;AACvB;AACA;EACE,WAAW;EACX,gBAAgB;EAChB,mBAAmB;AACrB;AACA;EACE,gBAAgB;EAChB,UAAU;EACV,MAAM;EACN,8CAA8C;EAC9C,YAAY;AACd;AACA;EACE,aAAa;AACf;AACA;EACE,WAAW;AACb;AACA;EACE,YAAY;AACd;AACA;EACE,YAAY;AACd;AACA;EACE,YAAY;AACd;AACA;EACE,sBAAsB;EACtB,2BAA2B;AAC7B;AACA;EACE,wBAAwB;AAC1B;AACA;EACE,oBAAoB;AACtB;AACA;EACE,oCAAoC;AACtC;AACA;EACE,gBAAgB;AAClB;AACA;EACE,uBAAuB;AACzB;AACA;EACE,aAAa;EACb,sBAAsB;EACtB,oBAAoB;EACpB,UAAU;EACV,gBAAgB;EAChB,YAAY;EACZ,uBAAuB;EACvB,cAAc;AAChB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,iBAAiB;EACjB,gBAAgB;AAClB;AACA;EACE;IACE,mBAAmB;IACnB,gBAAgB;EAClB;AACF;AACA;EACE;IACE,mBAAmB;IACnB,gBAAgB;EAClB;EACA;IACE,gBAAgB;EAClB;AACF;AACA;EACE,uBAAuB;AACzB;AACA;;EAEE,sBAAsB;AACxB;AACA;EACE,gBAAgB;AAClB;AACA;EACE;IACE,SAAS;EACX;AACF;AACA;EACE;IACE,yCAAyC;EAC3C;AACF;AACA;EACE,YAAY;EACZ,aAAa;EACb,sBAAsB;EACtB,mBAAmB;AACrB;AACA;EACE,gBAAgB;EAChB,mBAAmB;EACnB,SAAS;AACX;AACA;EACE,sBAAsB;EACtB,WAAW;EACX,aAAa;EACb,sBAAsB;EACtB,aAAa;EACb,OAAO;EACP,mBAAmB;AACrB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,mCAAmC;AACrC;AACA;EACE;IACE,oEAAoE;EACtE;AACF;AACA;EACE,aAAa;EACb,sBAAsB;EACtB,gBAAgB;AAClB\",\"sourcesContent\":[\"@charset \\\"UTF-8\\\";\\n/**\\n * @copyright Copyright (c) 2019 Julius Härtl <jus@bitgrid.net>\\n *\\n * @author Julius Härtl <jus@bitgrid.net>\\n * @author John Molakvoæ <skjnldsv@protonmail.com>\\n *\\n * @license GNU AGPL version 3 or any later version\\n *\\n * This program is free software: you can redistribute it and/or modify\\n * it under the terms of the GNU Affero General Public License as\\n * published by the Free Software Foundation, either version 3 of the\\n * License, or (at your option) any later version.\\n *\\n * This program is distributed in the hope that it will be useful,\\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\\n * GNU Affero General Public License for more details.\\n *\\n * You should have received a copy of the GNU Affero General Public License\\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\\n */\\n.toastify.dialogs {\\n min-width: 200px;\\n background: none;\\n background-color: var(--color-main-background);\\n color: var(--color-main-text);\\n box-shadow: 0 0 6px 0 var(--color-box-shadow);\\n padding: 0 12px;\\n margin-top: 45px;\\n position: fixed;\\n z-index: 10100;\\n border-radius: var(--border-radius);\\n display: flex;\\n align-items: center;\\n}\\n.toastify.dialogs .toast-undo-container {\\n display: flex;\\n align-items: center;\\n}\\n.toastify.dialogs .toast-undo-button,\\n.toastify.dialogs .toast-close {\\n position: static;\\n overflow: hidden;\\n box-sizing: border-box;\\n min-width: 44px;\\n height: 100%;\\n padding: 12px;\\n white-space: nowrap;\\n background-repeat: no-repeat;\\n background-position: center;\\n background-color: transparent;\\n min-height: 0;\\n}\\n.toastify.dialogs .toast-undo-button.toast-close,\\n.toastify.dialogs .toast-close.toast-close {\\n text-indent: 0;\\n opacity: .4;\\n border: none;\\n min-height: 44px;\\n margin-left: 10px;\\n font-size: 0;\\n}\\n.toastify.dialogs .toast-undo-button.toast-close:before,\\n.toastify.dialogs .toast-close.toast-close:before {\\n background-image: url(\\\"data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20height='16'%20width='16'%3e%3cpath%20d='M14%2012.3L12.3%2014%208%209.7%203.7%2014%202%2012.3%206.3%208%202%203.7%203.7%202%208%206.3%2012.3%202%2014%203.7%209.7%208z'/%3e%3c/svg%3e\\\");\\n content: \\\" \\\";\\n filter: var(--background-invert-if-dark);\\n display: inline-block;\\n width: 16px;\\n height: 16px;\\n}\\n.toastify.dialogs .toast-undo-button.toast-undo-button,\\n.toastify.dialogs .toast-close.toast-undo-button {\\n height: calc(100% - 6px);\\n margin: 3px 3px 3px 12px;\\n}\\n.toastify.dialogs .toast-undo-button:hover,\\n.toastify.dialogs .toast-undo-button:focus,\\n.toastify.dialogs .toast-undo-button:active,\\n.toastify.dialogs .toast-close:hover,\\n.toastify.dialogs .toast-close:focus,\\n.toastify.dialogs .toast-close:active {\\n cursor: pointer;\\n opacity: 1;\\n}\\n.toastify.dialogs.toastify-top {\\n right: 10px;\\n}\\n.toastify.dialogs.toast-with-click {\\n cursor: pointer;\\n}\\n.toastify.dialogs.toast-error {\\n border-left: 3px solid var(--color-error);\\n}\\n.toastify.dialogs.toast-info {\\n border-left: 3px solid var(--color-primary);\\n}\\n.toastify.dialogs.toast-warning {\\n border-left: 3px solid var(--color-warning);\\n}\\n.toastify.dialogs.toast-success,\\n.toastify.dialogs.toast-undo {\\n border-left: 3px solid var(--color-success);\\n}\\n.theme--dark .toastify.dialogs .toast-close.toast-close:before {\\n background-image: url(\\\"data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20height='16'%20width='16'%3e%3cpath%20d='M14%2012.3L12.3%2014%208%209.7%203.7%2014%202%2012.3%206.3%208%202%203.7%203.7%202%208%206.3%2012.3%202%2014%203.7%209.7%208z'%20style='fill-opacity:1;fill:%23ffffff'/%3e%3c/svg%3e\\\");\\n}\\n._file-picker__file-icon_1vgv4_5 {\\n width: 32px;\\n height: 32px;\\n min-width: 32px;\\n min-height: 32px;\\n background-repeat: no-repeat;\\n background-size: contain;\\n display: flex;\\n justify-content: center;\\n}\\ntr.file-picker__row[data-v-6aded0d9] {\\n height: var(--row-height, 50px);\\n}\\ntr.file-picker__row td[data-v-6aded0d9] {\\n cursor: pointer;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n border-bottom: none;\\n}\\ntr.file-picker__row td.row-checkbox[data-v-6aded0d9] {\\n padding: 0 2px;\\n}\\ntr.file-picker__row td[data-v-6aded0d9]:not(.row-checkbox) {\\n padding-inline: 14px 0;\\n}\\ntr.file-picker__row td.row-size[data-v-6aded0d9] {\\n text-align: end;\\n padding-inline: 0 14px;\\n}\\ntr.file-picker__row td.row-name[data-v-6aded0d9] {\\n padding-inline: 2px 0;\\n}\\n@keyframes gradient-6aded0d9 {\\n 0% {\\n background-position: 0% 50%;\\n }\\n 50% {\\n background-position: 100% 50%;\\n }\\n to {\\n background-position: 0% 50%;\\n }\\n}\\n.loading-row .row-checkbox[data-v-6aded0d9] {\\n text-align: center !important;\\n}\\n.loading-row span[data-v-6aded0d9] {\\n display: inline-block;\\n height: 24px;\\n background: linear-gradient(to right, var(--color-background-darker), var(--color-text-maxcontrast), var(--color-background-darker));\\n background-size: 600px 100%;\\n border-radius: var(--border-radius);\\n animation: gradient-6aded0d9 12s ease infinite;\\n}\\n.loading-row .row-wrapper[data-v-6aded0d9] {\\n display: inline-flex;\\n align-items: center;\\n}\\n.loading-row .row-checkbox span[data-v-6aded0d9] {\\n width: 24px;\\n}\\n.loading-row .row-name span[data-v-6aded0d9]:last-of-type {\\n margin-inline-start: 6px;\\n width: 130px;\\n}\\n.loading-row .row-size span[data-v-6aded0d9] {\\n width: 80px;\\n}\\n.loading-row .row-modified span[data-v-6aded0d9] {\\n width: 90px;\\n}\\ntr.file-picker__row[data-v-48df4f27] {\\n height: var(--row-height, 50px);\\n}\\ntr.file-picker__row td[data-v-48df4f27] {\\n cursor: pointer;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n border-bottom: none;\\n}\\ntr.file-picker__row td.row-checkbox[data-v-48df4f27] {\\n padding: 0 2px;\\n}\\ntr.file-picker__row td[data-v-48df4f27]:not(.row-checkbox) {\\n padding-inline: 14px 0;\\n}\\ntr.file-picker__row td.row-size[data-v-48df4f27] {\\n text-align: end;\\n padding-inline: 0 14px;\\n}\\ntr.file-picker__row td.row-name[data-v-48df4f27] {\\n padding-inline: 2px 0;\\n}\\n.file-picker__row--selected[data-v-48df4f27] {\\n background-color: var(--color-background-dark);\\n}\\n.file-picker__row[data-v-48df4f27]:hover {\\n background-color: var(--color-background-hover);\\n}\\n.file-picker__name-container[data-v-48df4f27] {\\n display: flex;\\n justify-content: start;\\n align-items: center;\\n height: 100%;\\n}\\n.file-picker__file-name[data-v-48df4f27] {\\n padding-inline-start: 6px;\\n min-width: 0;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n}\\n.file-picker__file-extension[data-v-48df4f27] {\\n color: var(--color-text-maxcontrast);\\n min-width: fit-content;\\n}\\n.file-picker__header-preview[data-v-d3c94818] {\\n width: 22px;\\n height: 32px;\\n flex: 0 0 auto;\\n}\\n.file-picker__files[data-v-d3c94818] {\\n margin: 2px;\\n margin-inline-start: 12px;\\n overflow: scroll auto;\\n}\\n.file-picker__files table[data-v-d3c94818] {\\n width: 100%;\\n max-height: 100%;\\n table-layout: fixed;\\n}\\n.file-picker__files th[data-v-d3c94818] {\\n position: sticky;\\n z-index: 1;\\n top: 0;\\n background-color: var(--color-main-background);\\n padding: 2px;\\n}\\n.file-picker__files th .header-wrapper[data-v-d3c94818] {\\n display: flex;\\n}\\n.file-picker__files th.row-checkbox[data-v-d3c94818] {\\n width: 44px;\\n}\\n.file-picker__files th.row-name[data-v-d3c94818] {\\n width: 230px;\\n}\\n.file-picker__files th.row-size[data-v-d3c94818] {\\n width: 100px;\\n}\\n.file-picker__files th.row-modified[data-v-d3c94818] {\\n width: 120px;\\n}\\n.file-picker__files th[data-v-d3c94818]:not(.row-size) .button-vue__wrapper {\\n justify-content: start;\\n flex-direction: row-reverse;\\n}\\n.file-picker__files th[data-v-d3c94818]:not(.row-size) .button-vue {\\n padding-inline: 16px 4px;\\n}\\n.file-picker__files th.row-size[data-v-d3c94818] .button-vue__wrapper {\\n justify-content: end;\\n}\\n.file-picker__files th[data-v-d3c94818] .button-vue__wrapper {\\n color: var(--color-text-maxcontrast);\\n}\\n.file-picker__files th[data-v-d3c94818] .button-vue__wrapper .button-vue__text {\\n font-weight: 400;\\n}\\n.file-picker__breadcrumbs[data-v-a25a2652] {\\n flex-grow: 0 !important;\\n}\\n.file-picker__side[data-v-a06474d4] {\\n display: flex;\\n flex-direction: column;\\n align-items: stretch;\\n gap: .5rem;\\n min-width: 200px;\\n padding: 2px;\\n margin-block-start: 7px;\\n overflow: auto;\\n}\\n.file-picker__side[data-v-a06474d4] .button-vue__wrapper {\\n justify-content: start;\\n}\\n.file-picker__filter-input[data-v-a06474d4] {\\n margin-block: 7px;\\n max-width: 260px;\\n}\\n@media (max-width: 736px) {\\n .file-picker__side[data-v-a06474d4] {\\n flex-direction: row;\\n min-width: unset;\\n }\\n}\\n@media (max-width: 512px) {\\n .file-picker__side[data-v-a06474d4] {\\n flex-direction: row;\\n min-width: unset;\\n }\\n .file-picker__filter-input[data-v-a06474d4] {\\n max-width: unset;\\n }\\n}\\n.file-picker__navigation {\\n padding-inline: 8px 2px;\\n}\\n.file-picker__navigation,\\n.file-picker__navigation * {\\n box-sizing: border-box;\\n}\\n.file-picker__navigation .v-select.select {\\n min-width: 220px;\\n}\\n@media (min-width: 513px) and (max-width: 736px) {\\n .file-picker__navigation {\\n gap: 11px;\\n }\\n}\\n@media (max-width: 512px) {\\n .file-picker__navigation {\\n flex-direction: column-reverse !important;\\n }\\n}\\n.file-picker__view[data-v-9def3ca4] {\\n height: 50px;\\n display: flex;\\n justify-content: start;\\n align-items: center;\\n}\\n.file-picker__view h3[data-v-9def3ca4] {\\n font-weight: 700;\\n height: fit-content;\\n margin: 0;\\n}\\n.file-picker__main[data-v-9def3ca4] {\\n box-sizing: border-box;\\n width: 100%;\\n display: flex;\\n flex-direction: column;\\n min-height: 0;\\n flex: 1;\\n padding-inline: 2px;\\n}\\n.file-picker__main *[data-v-9def3ca4] {\\n box-sizing: border-box;\\n}\\n[data-v-9def3ca4] .file-picker {\\n height: min(80vh, 800px) !important;\\n}\\n@media (max-width: 512px) {\\n [data-v-9def3ca4] .file-picker {\\n height: calc(100% - 16px - var(--default-clickable-area)) !important;\\n }\\n}\\n[data-v-9def3ca4] .file-picker__content {\\n display: flex;\\n flex-direction: column;\\n overflow: hidden;\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.upload-picker[data-v-eca9500a] {\n display: inline-flex;\n align-items: center;\n height: 44px;\n}\n.upload-picker__progress[data-v-eca9500a] {\n width: 200px;\n max-width: 0;\n transition: max-width var(--animation-quick) ease-in-out;\n margin-top: 8px;\n}\n.upload-picker__progress p[data-v-eca9500a] {\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.upload-picker--uploading .upload-picker__progress[data-v-eca9500a] {\n max-width: 200px;\n margin-right: 20px;\n margin-left: 8px;\n}\n.upload-picker--paused .upload-picker__progress[data-v-eca9500a] {\n animation: breathing-eca9500a 3s ease-out infinite normal;\n}\n@keyframes breathing-eca9500a {\n 0% {\n opacity: .5;\n }\n 25% {\n opacity: 1;\n }\n 60% {\n opacity: .5;\n }\n to {\n opacity: .5;\n }\n}\n`, \"\",{\"version\":3,\"sources\":[\"webpack://./node_modules/@nextcloud/upload/dist/assets/index-FLLHP6Jd.css\"],\"names\":[],\"mappings\":\"AAAA;EACE,oBAAoB;EACpB,mBAAmB;EACnB,YAAY;AACd;AACA;EACE,YAAY;EACZ,YAAY;EACZ,wDAAwD;EACxD,eAAe;AACjB;AACA;EACE,gBAAgB;EAChB,mBAAmB;EACnB,uBAAuB;AACzB;AACA;EACE,gBAAgB;EAChB,kBAAkB;EAClB,gBAAgB;AAClB;AACA;EACE,yDAAyD;AAC3D;AACA;EACE;IACE,WAAW;EACb;EACA;IACE,UAAU;EACZ;EACA;IACE,WAAW;EACb;EACA;IACE,WAAW;EACb;AACF\",\"sourcesContent\":[\".upload-picker[data-v-eca9500a] {\\n display: inline-flex;\\n align-items: center;\\n height: 44px;\\n}\\n.upload-picker__progress[data-v-eca9500a] {\\n width: 200px;\\n max-width: 0;\\n transition: max-width var(--animation-quick) ease-in-out;\\n margin-top: 8px;\\n}\\n.upload-picker__progress p[data-v-eca9500a] {\\n overflow: hidden;\\n white-space: nowrap;\\n text-overflow: ellipsis;\\n}\\n.upload-picker--uploading .upload-picker__progress[data-v-eca9500a] {\\n max-width: 200px;\\n margin-right: 20px;\\n margin-left: 8px;\\n}\\n.upload-picker--paused .upload-picker__progress[data-v-eca9500a] {\\n animation: breathing-eca9500a 3s ease-out infinite normal;\\n}\\n@keyframes breathing-eca9500a {\\n 0% {\\n opacity: .5;\\n }\\n 25% {\\n opacity: 1;\\n }\\n 60% {\\n opacity: .5;\\n }\\n to {\\n opacity: .5;\\n }\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.breadcrumb[data-v-88ea2982]{flex:1 1 100% !important;width:100%;margin-inline:0px 10px 0px 10px}.breadcrumb[data-v-88ea2982] a{cursor:pointer !important}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/BreadCrumbs.vue\"],\"names\":[],\"mappings\":\"AACA,6BAEC,wBAAA,CACA,UAAA,CACA,+BAAA,CAEA,+BACC,yBAAA\",\"sourcesContent\":[\"\\n.breadcrumb {\\n\\t// Take as much space as possible\\n\\tflex: 1 1 100% !important;\\n\\twidth: 100%;\\n\\tmargin-inline: 0px 10px 0px 10px;\\n\\n\\t::v-deep a {\\n\\t\\tcursor: pointer !important;\\n\\t}\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.files-list__drag-drop-notice[data-v-02c943a6]{display:flex;align-items:center;justify-content:center;width:100%;min-height:113px;margin:0;user-select:none;color:var(--color-text-maxcontrast);background-color:var(--color-main-background);border-color:#000}.files-list__drag-drop-notice h3[data-v-02c943a6]{margin-left:16px;color:inherit}.files-list__drag-drop-notice-wrapper[data-v-02c943a6]{display:flex;align-items:center;justify-content:center;height:15vh;max-height:70%;padding:0 5vw;border:2px var(--color-border-dark) dashed;border-radius:var(--border-radius-large)}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/DragAndDropNotice.vue\"],\"names\":[],\"mappings\":\"AACA,+CACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CAEA,gBAAA,CACA,QAAA,CACA,gBAAA,CACA,mCAAA,CACA,6CAAA,CACA,iBAAA,CAEA,kDACC,gBAAA,CACA,aAAA,CAGD,uDACC,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,WAAA,CACA,cAAA,CACA,aAAA,CACA,0CAAA,CACA,wCAAA\",\"sourcesContent\":[\"\\n.files-list__drag-drop-notice {\\n\\tdisplay: flex;\\n\\talign-items: center;\\n\\tjustify-content: center;\\n\\twidth: 100%;\\n\\t// Breadcrumbs height + row thead height\\n\\tmin-height: calc(58px + 55px);\\n\\tmargin: 0;\\n\\tuser-select: none;\\n\\tcolor: var(--color-text-maxcontrast);\\n\\tbackground-color: var(--color-main-background);\\n\\tborder-color: black;\\n\\n\\th3 {\\n\\t\\tmargin-left: 16px;\\n\\t\\tcolor: inherit;\\n\\t}\\n\\n\\t&-wrapper {\\n\\t\\tdisplay: flex;\\n\\t\\talign-items: center;\\n\\t\\tjustify-content: center;\\n\\t\\theight: 15vh;\\n\\t\\tmax-height: 70%;\\n\\t\\tpadding: 0 5vw;\\n\\t\\tborder: 2px var(--color-border-dark) dashed;\\n\\t\\tborder-radius: var(--border-radius-large);\\n\\t}\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.files-list-drag-image{position:absolute;top:-9999px;left:-9999px;display:flex;overflow:hidden;align-items:center;height:44px;padding:6px 12px;background:var(--color-main-background)}.files-list-drag-image__icon,.files-list-drag-image .files-list__row-icon{display:flex;overflow:hidden;align-items:center;justify-content:center;width:32px;height:32px;border-radius:var(--border-radius)}.files-list-drag-image__icon{overflow:visible;margin-right:12px}.files-list-drag-image__icon img{max-width:100%;max-height:100%}.files-list-drag-image__icon .material-design-icon{color:var(--color-text-maxcontrast)}.files-list-drag-image__icon .material-design-icon.folder-icon{color:var(--color-primary-element)}.files-list-drag-image__icon>span{display:flex}.files-list-drag-image__icon>span .files-list__row-icon+.files-list__row-icon{margin-top:6px;margin-left:-26px}.files-list-drag-image__icon>span .files-list__row-icon+.files-list__row-icon+.files-list__row-icon{margin-top:12px}.files-list-drag-image__icon>span:not(:empty)+*{display:none}.files-list-drag-image__name{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/DragAndDropPreview.vue\"],\"names\":[],\"mappings\":\"AAIA,uBACC,iBAAA,CACA,WAAA,CACA,YAAA,CACA,YAAA,CACA,eAAA,CACA,kBAAA,CACA,WAAA,CACA,gBAAA,CACA,uCAAA,CAEA,0EAEC,YAAA,CACA,eAAA,CACA,kBAAA,CACA,sBAAA,CACA,UAAA,CACA,WAAA,CACA,kCAAA,CAGD,6BACC,gBAAA,CACA,iBAAA,CAEA,iCACC,cAAA,CACA,eAAA,CAGD,mDACC,mCAAA,CACA,+DACC,kCAAA,CAKF,kCACC,YAAA,CAGA,8EACC,cA9CU,CA+CV,iBAAA,CACA,oGACC,eAAA,CAKF,gDACC,YAAA,CAKH,6BACC,eAAA,CACA,kBAAA,CACA,sBAAA\",\"sourcesContent\":[\"\\n$size: 32px;\\n$stack-shift: 6px;\\n\\n.files-list-drag-image {\\n\\tposition: absolute;\\n\\ttop: -9999px;\\n\\tleft: -9999px;\\n\\tdisplay: flex;\\n\\toverflow: hidden;\\n\\talign-items: center;\\n\\theight: 44px;\\n\\tpadding: 6px 12px;\\n\\tbackground: var(--color-main-background);\\n\\n\\t&__icon,\\n\\t.files-list__row-icon {\\n\\t\\tdisplay: flex;\\n\\t\\toverflow: hidden;\\n\\t\\talign-items: center;\\n\\t\\tjustify-content: center;\\n\\t\\twidth: 32px;\\n\\t\\theight: 32px;\\n\\t\\tborder-radius: var(--border-radius);\\n\\t}\\n\\n\\t&__icon {\\n\\t\\toverflow: visible;\\n\\t\\tmargin-right: 12px;\\n\\n\\t\\timg {\\n\\t\\t\\tmax-width: 100%;\\n\\t\\t\\tmax-height: 100%;\\n\\t\\t}\\n\\n\\t\\t.material-design-icon {\\n\\t\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\t\\t&.folder-icon {\\n\\t\\t\\t\\tcolor: var(--color-primary-element);\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Previews container\\n\\t\\t> span {\\n\\t\\t\\tdisplay: flex;\\n\\n\\t\\t\\t// Stack effect if more than one element\\n\\t\\t\\t.files-list__row-icon + .files-list__row-icon {\\n\\t\\t\\t\\tmargin-top: $stack-shift;\\n\\t\\t\\t\\tmargin-left: $stack-shift - $size;\\n\\t\\t\\t\\t& + .files-list__row-icon {\\n\\t\\t\\t\\t\\tmargin-top: $stack-shift * 2;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t\\t// If we have manually clone the preview,\\n\\t\\t\\t// let's hide any fallback icons\\n\\t\\t\\t&:not(:empty) + * {\\n\\t\\t\\t\\tdisplay: none;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\t&__name {\\n\\t\\toverflow: hidden;\\n\\t\\twhite-space: nowrap;\\n\\t\\ttext-overflow: ellipsis;\\n\\t}\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.favorite-marker-icon[data-v-04e52abc]{color:#a08b00;min-width:unset !important;min-height:unset !important}.favorite-marker-icon[data-v-04e52abc] svg{width:26px !important;height:26px !important;max-width:unset !important;max-height:unset !important}.favorite-marker-icon[data-v-04e52abc] svg path{stroke:var(--color-main-background);stroke-width:8px;stroke-linejoin:round;paint-order:stroke}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FileEntry/FavoriteIcon.vue\"],\"names\":[],\"mappings\":\"AACA,uCACC,aAAA,CAEA,0BAAA,CACG,2BAAA,CAGF,4CAEC,qBAAA,CACA,sBAAA,CAGA,0BAAA,CACA,2BAAA,CAGA,iDACC,mCAAA,CACA,gBAAA,CACA,qBAAA,CACA,kBAAA\",\"sourcesContent\":[\"\\n.favorite-marker-icon {\\n\\tcolor: #a08b00;\\n\\t// Override NcIconSvgWrapper defaults (clickable area)\\n\\tmin-width: unset !important;\\n min-height: unset !important;\\n\\n\\t:deep() {\\n\\t\\tsvg {\\n\\t\\t\\t// We added a stroke for a11y so we must increase the size to include the stroke\\n\\t\\t\\twidth: 26px !important;\\n\\t\\t\\theight: 26px !important;\\n\\n\\t\\t\\t// Override NcIconSvgWrapper defaults of 20px\\n\\t\\t\\tmax-width: unset !important;\\n\\t\\t\\tmax-height: unset !important;\\n\\n\\t\\t\\t// Sow a border around the icon for better contrast\\n\\t\\t\\tpath {\\n\\t\\t\\t\\tstroke: var(--color-main-background);\\n\\t\\t\\t\\tstroke-width: 8px;\\n\\t\\t\\t\\tstroke-linejoin: round;\\n\\t\\t\\t\\tpaint-order: stroke;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `main.app-content[style*=mouse-pos-x] .v-popper__popper{transform:translate3d(var(--mouse-pos-x), var(--mouse-pos-y), 0px) !important}main.app-content[style*=mouse-pos-x] .v-popper__popper[data-popper-placement=top]{transform:translate3d(var(--mouse-pos-x), calc(var(--mouse-pos-y) - 50vh + 34px), 0px) !important}main.app-content[style*=mouse-pos-x] .v-popper__popper .v-popper__arrow-container{display:none}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FileEntry/FileEntryActions.vue\"],\"names\":[],\"mappings\":\"AAGA,uDACC,6EAAA,CAGA,kFAEC,iGAAA,CAGD,kFACC,YAAA\",\"sourcesContent\":[\"\\n// Allow right click to define the position of the menu\\n// only if defined\\nmain.app-content[style*=\\\"mouse-pos-x\\\"] .v-popper__popper {\\n\\ttransform: translate3d(var(--mouse-pos-x), var(--mouse-pos-y), 0px) !important;\\n\\n\\t// If the menu is too close to the bottom, we move it up\\n\\t&[data-popper-placement=\\\"top\\\"] {\\n\\t\\t// 34px added to align with the top of the cursor\\n\\t\\ttransform: translate3d(var(--mouse-pos-x), calc(var(--mouse-pos-y) - 50vh + 34px), 0px) !important;\\n\\t}\\n\\t// Hide arrow if floating\\n\\t.v-popper__arrow-container {\\n\\t\\tdisplay: none;\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `[data-v-6168180a] .button-vue--icon-and-text .button-vue__text{color:var(--color-primary-element)}[data-v-6168180a] .button-vue--icon-and-text .button-vue__icon{color:var(--color-primary-element)}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FileEntry/FileEntryActions.vue\"],\"names\":[],\"mappings\":\"AAEC,+DACC,kCAAA,CAED,+DACC,kCAAA\",\"sourcesContent\":[\"\\n:deep(.button-vue--icon-and-text, .files-list__row-action-sharing-status) {\\n\\t.button-vue__text {\\n\\t\\tcolor: var(--color-primary-element);\\n\\t}\\n\\t.button-vue__icon {\\n\\t\\tcolor: var(--color-primary-element);\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `tr[data-v-a85bde20]{margin-bottom:300px;border-top:1px solid var(--color-border);background-color:rgba(0,0,0,0) !important;border-bottom:none !important}tr td[data-v-a85bde20]{user-select:none;color:var(--color-text-maxcontrast) !important}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListTableFooter.vue\"],\"names\":[],\"mappings\":\"AAEA,oBACC,mBAAA,CACA,wCAAA,CAEA,yCAAA,CACA,6BAAA,CAEA,uBACC,gBAAA,CAEA,8CAAA\",\"sourcesContent\":[\"\\n// Scoped row\\ntr {\\n\\tmargin-bottom: 300px;\\n\\tborder-top: 1px solid var(--color-border);\\n\\t// Prevent hover effect on the whole row\\n\\tbackground-color: transparent !important;\\n\\tborder-bottom: none !important;\\n\\n\\ttd {\\n\\t\\tuser-select: none;\\n\\t\\t// Make sure the cell colors don't apply to column headers\\n\\t\\tcolor: var(--color-text-maxcontrast) !important;\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.files-list__column[data-v-952162c2]{user-select:none;color:var(--color-text-maxcontrast) !important}.files-list__column--sortable[data-v-952162c2]{cursor:pointer}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListTableHeader.vue\"],\"names\":[],\"mappings\":\"AACA,qCACC,gBAAA,CAEA,8CAAA,CAEA,+CACC,cAAA\",\"sourcesContent\":[\"\\n.files-list__column {\\n\\tuser-select: none;\\n\\t// Make sure the cell colors don't apply to column headers\\n\\tcolor: var(--color-text-maxcontrast) !important;\\n\\n\\t&--sortable {\\n\\t\\tcursor: pointer;\\n\\t}\\n}\\n\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.files-list__row-actions-batch[data-v-d939292c]{flex:1 1 100% !important;max-width:100%}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListTableHeaderActions.vue\"],\"names\":[],\"mappings\":\"AACA,gDACC,wBAAA,CACA,cAAA\",\"sourcesContent\":[\"\\n.files-list__row-actions-batch {\\n\\tflex: 1 1 100% !important;\\n\\tmax-width: 100%;\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.files-list__column-sort-button[data-v-097f69d4]{margin:0 calc(var(--cell-margin)*-1);min-width:calc(100% - 3*var(--cell-margin)) !important}.files-list__column-sort-button-text[data-v-097f69d4]{color:var(--color-text-maxcontrast);font-weight:normal}.files-list__column-sort-button-icon[data-v-097f69d4]{color:var(--color-text-maxcontrast);opacity:0;transition:opacity var(--animation-quick);inset-inline-start:-10px}.files-list__column-sort-button--size .files-list__column-sort-button-icon[data-v-097f69d4]{inset-inline-start:10px}.files-list__column-sort-button--active .files-list__column-sort-button-icon[data-v-097f69d4],.files-list__column-sort-button:hover .files-list__column-sort-button-icon[data-v-097f69d4],.files-list__column-sort-button:focus .files-list__column-sort-button-icon[data-v-097f69d4],.files-list__column-sort-button:active .files-list__column-sort-button-icon[data-v-097f69d4]{opacity:1}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListTableHeaderButton.vue\"],\"names\":[],\"mappings\":\"AACA,iDAEC,oCAAA,CACA,sDAAA,CAEA,sDACC,mCAAA,CACA,kBAAA,CAGD,sDACC,mCAAA,CACA,SAAA,CACA,yCAAA,CACA,wBAAA,CAGD,4FACC,uBAAA,CAGD,mXAIC,SAAA\",\"sourcesContent\":[\"\\n.files-list__column-sort-button {\\n\\t// Compensate for cells margin\\n\\tmargin: 0 calc(var(--cell-margin) * -1);\\n\\tmin-width: calc(100% - 3 * var(--cell-margin))!important;\\n\\n\\t&-text {\\n\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\tfont-weight: normal;\\n\\t}\\n\\n\\t&-icon {\\n\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\topacity: 0;\\n\\t\\ttransition: opacity var(--animation-quick);\\n\\t\\tinset-inline-start: -10px;\\n\\t}\\n\\n\\t&--size &-icon {\\n\\t\\tinset-inline-start: 10px;\\n\\t}\\n\\n\\t&--active &-icon,\\n\\t&:hover &-icon,\\n\\t&:focus &-icon,\\n\\t&:active &-icon {\\n\\t\\topacity: 1;\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.files-list[data-v-2bbbfb12]{--row-height: 55px;--cell-margin: 14px;--checkbox-padding: calc((var(--row-height) - var(--checkbox-size)) / 2);--checkbox-size: 24px;--clickable-area: 44px;--icon-preview-size: 32px;overflow:auto;height:100%;will-change:scroll-position}.files-list[data-v-2bbbfb12] tbody{will-change:padding;contain:layout paint style;display:flex;flex-direction:column;width:100%;position:relative}.files-list[data-v-2bbbfb12] tbody tr{contain:strict}.files-list[data-v-2bbbfb12] tbody tr:hover,.files-list[data-v-2bbbfb12] tbody tr:focus{background-color:var(--color-background-dark)}.files-list[data-v-2bbbfb12] .files-list__before{display:flex;flex-direction:column}.files-list[data-v-2bbbfb12] .files-list__table{display:block}.files-list[data-v-2bbbfb12] .files-list__table.files-list__table--with-thead-overlay{margin-top:calc(-1*var(--row-height))}.files-list[data-v-2bbbfb12] .files-list__thead-overlay{position:sticky;top:0;margin-left:var(--row-height);z-index:20;display:flex;align-items:center;background-color:var(--color-main-background);border-bottom:1px solid var(--color-border);height:var(--row-height)}.files-list[data-v-2bbbfb12] .files-list__thead,.files-list[data-v-2bbbfb12] .files-list__tfoot{display:flex;flex-direction:column;width:100%;background-color:var(--color-main-background)}.files-list[data-v-2bbbfb12] .files-list__thead{position:sticky;z-index:10;top:0}.files-list[data-v-2bbbfb12] .files-list__tfoot{min-height:300px}.files-list[data-v-2bbbfb12] tr{position:relative;display:flex;align-items:center;width:100%;user-select:none;border-bottom:1px solid var(--color-border);box-sizing:border-box;user-select:none;height:var(--row-height)}.files-list[data-v-2bbbfb12] td,.files-list[data-v-2bbbfb12] th{display:flex;align-items:center;flex:0 0 auto;justify-content:left;width:var(--row-height);height:var(--row-height);margin:0;padding:0;color:var(--color-text-maxcontrast);border:none}.files-list[data-v-2bbbfb12] td span,.files-list[data-v-2bbbfb12] th span{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.files-list[data-v-2bbbfb12] .files-list__row--failed{position:absolute;display:block;top:0;left:0;right:0;bottom:0;opacity:.1;z-index:-1;background:var(--color-error)}.files-list[data-v-2bbbfb12] .files-list__row-checkbox{justify-content:center}.files-list[data-v-2bbbfb12] .files-list__row-checkbox .checkbox-radio-switch{display:flex;justify-content:center;--icon-size: var(--checkbox-size)}.files-list[data-v-2bbbfb12] .files-list__row-checkbox .checkbox-radio-switch label.checkbox-radio-switch__label{width:var(--clickable-area);height:var(--clickable-area);margin:0;padding:calc((var(--clickable-area) - var(--checkbox-size))/2)}.files-list[data-v-2bbbfb12] .files-list__row-checkbox .checkbox-radio-switch .checkbox-radio-switch__icon{margin:0 !important}.files-list[data-v-2bbbfb12] .files-list__row:hover,.files-list[data-v-2bbbfb12] .files-list__row:focus,.files-list[data-v-2bbbfb12] .files-list__row:active,.files-list[data-v-2bbbfb12] .files-list__row--active,.files-list[data-v-2bbbfb12] .files-list__row--dragover{background-color:var(--color-background-hover);--color-text-maxcontrast: var(--color-main-text)}.files-list[data-v-2bbbfb12] .files-list__row:hover>*,.files-list[data-v-2bbbfb12] .files-list__row:focus>*,.files-list[data-v-2bbbfb12] .files-list__row:active>*,.files-list[data-v-2bbbfb12] .files-list__row--active>*,.files-list[data-v-2bbbfb12] .files-list__row--dragover>*{--color-border: var(--color-border-dark)}.files-list[data-v-2bbbfb12] .files-list__row:hover .favorite-marker-icon svg path,.files-list[data-v-2bbbfb12] .files-list__row:focus .favorite-marker-icon svg path,.files-list[data-v-2bbbfb12] .files-list__row:active .favorite-marker-icon svg path,.files-list[data-v-2bbbfb12] .files-list__row--active .favorite-marker-icon svg path,.files-list[data-v-2bbbfb12] .files-list__row--dragover .favorite-marker-icon svg path{stroke:var(--color-background-hover)}.files-list[data-v-2bbbfb12] .files-list__row--dragover *{pointer-events:none}.files-list[data-v-2bbbfb12] .files-list__row-icon{position:relative;display:flex;overflow:visible;align-items:center;flex:0 0 var(--icon-preview-size);justify-content:center;width:var(--icon-preview-size);height:100%;margin-right:var(--checkbox-padding);color:var(--color-primary-element)}.files-list[data-v-2bbbfb12] .files-list__row-icon *{cursor:pointer}.files-list[data-v-2bbbfb12] .files-list__row-icon>span{justify-content:flex-start}.files-list[data-v-2bbbfb12] .files-list__row-icon>span:not(.files-list__row-icon-favorite) svg{width:var(--icon-preview-size);height:var(--icon-preview-size)}.files-list[data-v-2bbbfb12] .files-list__row-icon>span.folder-icon,.files-list[data-v-2bbbfb12] .files-list__row-icon>span.folder-open-icon{margin:-3px}.files-list[data-v-2bbbfb12] .files-list__row-icon>span.folder-icon svg,.files-list[data-v-2bbbfb12] .files-list__row-icon>span.folder-open-icon svg{width:calc(var(--icon-preview-size) + 6px);height:calc(var(--icon-preview-size) + 6px)}.files-list[data-v-2bbbfb12] .files-list__row-icon-preview{overflow:hidden;width:var(--icon-preview-size);height:var(--icon-preview-size);border-radius:var(--border-radius);object-fit:contain;object-position:center}.files-list[data-v-2bbbfb12] .files-list__row-icon-preview:not(.files-list__row-icon-preview--loaded){background:var(--color-loading-dark)}.files-list[data-v-2bbbfb12] .files-list__row-icon-favorite{position:absolute;top:0px;right:-10px}.files-list[data-v-2bbbfb12] .files-list__row-icon-overlay{position:absolute;max-height:calc(var(--icon-preview-size)*.5);max-width:calc(var(--icon-preview-size)*.5);color:var(--color-primary-element-text);margin-top:2px}.files-list[data-v-2bbbfb12] .files-list__row-icon-overlay--file{color:var(--color-main-text);background:var(--color-main-background);border-radius:100%}.files-list[data-v-2bbbfb12] .files-list__row-name{overflow:hidden;flex:1 1 auto}.files-list[data-v-2bbbfb12] .files-list__row-name a{display:flex;align-items:center;width:100%;height:100%;min-width:0}.files-list[data-v-2bbbfb12] .files-list__row-name a:focus-visible{outline:none}.files-list[data-v-2bbbfb12] .files-list__row-name a:focus .files-list__row-name-text{outline:2px solid var(--color-main-text) !important;border-radius:20px}.files-list[data-v-2bbbfb12] .files-list__row-name a:focus:not(:focus-visible) .files-list__row-name-text{outline:none !important}.files-list[data-v-2bbbfb12] .files-list__row-name .files-list__row-name-text{color:var(--color-main-text);padding:5px 10px;margin-left:-10px;display:inline-flex}.files-list[data-v-2bbbfb12] .files-list__row-name .files-list__row-name-ext{color:var(--color-text-maxcontrast);overflow:visible}.files-list[data-v-2bbbfb12] .files-list__row-rename{width:100%;max-width:600px}.files-list[data-v-2bbbfb12] .files-list__row-rename input{width:100%;margin-left:-8px;padding:2px 6px;border-width:2px}.files-list[data-v-2bbbfb12] .files-list__row-rename input:invalid{border-color:var(--color-error);color:red}.files-list[data-v-2bbbfb12] .files-list__row-actions{width:auto}.files-list[data-v-2bbbfb12] .files-list__row-actions~td,.files-list[data-v-2bbbfb12] .files-list__row-actions~th{margin:0 var(--cell-margin)}.files-list[data-v-2bbbfb12] .files-list__row-actions button .button-vue__text{font-weight:normal}.files-list[data-v-2bbbfb12] .files-list__row-action--inline{margin-right:7px}.files-list[data-v-2bbbfb12] .files-list__row-mtime,.files-list[data-v-2bbbfb12] .files-list__row-size{color:var(--color-text-maxcontrast)}.files-list[data-v-2bbbfb12] .files-list__row-size{width:calc(var(--row-height)*1.5);justify-content:flex-end}.files-list[data-v-2bbbfb12] .files-list__row-mtime{width:calc(var(--row-height)*2)}.files-list[data-v-2bbbfb12] .files-list__row-column-custom{width:calc(var(--row-height)*2)}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListVirtual.vue\"],\"names\":[],\"mappings\":\"AACA,6BACC,kBAAA,CACA,mBAAA,CAEA,wEAAA,CACA,qBAAA,CACA,sBAAA,CACA,yBAAA,CAEA,aAAA,CACA,WAAA,CACA,2BAAA,CAIC,oCACC,mBAAA,CACA,0BAAA,CACA,YAAA,CACA,qBAAA,CACA,UAAA,CAEA,iBAAA,CAGA,uCACC,cAAA,CACA,0FAEC,6CAAA,CAMH,kDACC,YAAA,CACA,qBAAA,CAGD,iDACC,aAAA,CAEA,uFAEC,qCAAA,CAIF,yDAEC,eAAA,CACA,KAAA,CAEA,6BAAA,CAEA,UAAA,CAEA,YAAA,CACA,kBAAA,CAGA,6CAAA,CACA,2CAAA,CACA,wBAAA,CAGD,kGAEC,YAAA,CACA,qBAAA,CACA,UAAA,CACA,6CAAA,CAKD,iDAEC,eAAA,CACA,UAAA,CACA,KAAA,CAID,iDACC,gBAAA,CAGD,iCACC,iBAAA,CACA,YAAA,CACA,kBAAA,CACA,UAAA,CACA,gBAAA,CACA,2CAAA,CACA,qBAAA,CACA,gBAAA,CACA,wBAAA,CAGD,kEACC,YAAA,CACA,kBAAA,CACA,aAAA,CACA,oBAAA,CACA,uBAAA,CACA,wBAAA,CACA,QAAA,CACA,SAAA,CACA,mCAAA,CACA,WAAA,CAKA,4EACC,eAAA,CACA,kBAAA,CACA,sBAAA,CAIF,uDACC,iBAAA,CACA,aAAA,CACA,KAAA,CACA,MAAA,CACA,OAAA,CACA,QAAA,CACA,UAAA,CACA,UAAA,CACA,6BAAA,CAGD,wDACC,sBAAA,CAEA,+EACC,YAAA,CACA,sBAAA,CAEA,iCAAA,CAEA,kHACC,2BAAA,CACA,4BAAA,CACA,QAAA,CACA,8DAAA,CAGD,4GACC,mBAAA,CAMF,gRAEC,8CAAA,CAGA,gDAAA,CACA,0RACC,wCAAA,CAID,2aACC,oCAAA,CAIF,2DAEC,mBAAA,CAKF,oDACC,iBAAA,CACA,YAAA,CACA,gBAAA,CACA,kBAAA,CAEA,iCAAA,CACA,sBAAA,CACA,8BAAA,CACA,WAAA,CAEA,oCAAA,CACA,kCAAA,CAGA,sDACC,cAAA,CAGD,yDACC,0BAAA,CAEA,iGACC,8BAAA,CACA,+BAAA,CAID,+IAEC,WAAA,CACA,uJACC,0CAAA,CACA,2CAAA,CAKH,4DACC,eAAA,CACA,8BAAA,CACA,+BAAA,CACA,kCAAA,CAEA,kBAAA,CACA,sBAAA,CAGA,uGACC,oCAAA,CAKF,6DACC,iBAAA,CACA,OAAA,CACA,WAAA,CAID,4DACC,iBAAA,CACA,4CAAA,CACA,2CAAA,CACA,uCAAA,CAEA,cAAA,CAGA,kEACC,4BAAA,CACA,uCAAA,CACA,kBAAA,CAMH,oDAEC,eAAA,CAEA,aAAA,CAEA,sDACC,YAAA,CACA,kBAAA,CAEA,UAAA,CACA,WAAA,CAEA,WAAA,CAGA,oEACC,YAAA,CAID,uFACC,mDAAA,CACA,kBAAA,CAED,2GACC,uBAAA,CAIF,+EACC,4BAAA,CAEA,gBAAA,CACA,iBAAA,CAEA,mBAAA,CAGD,8EACC,mCAAA,CAEA,gBAAA,CAKF,sDACC,UAAA,CACA,eAAA,CACA,4DACC,UAAA,CAEA,gBAAA,CACA,eAAA,CACA,gBAAA,CAEA,oEAEC,+BAAA,CACA,SAAA,CAKH,uDAEC,UAAA,CAGA,oHAEC,2BAAA,CAIA,gFAEC,kBAAA,CAKH,8DACC,gBAAA,CAGD,yGAEC,mCAAA,CAED,oDACC,iCAAA,CAEA,wBAAA,CAGD,qDACC,+BAAA,CAGD,6DACC,+BAAA\",\"sourcesContent\":[\"\\n.files-list {\\n\\t--row-height: 55px;\\n\\t--cell-margin: 14px;\\n\\n\\t--checkbox-padding: calc((var(--row-height) - var(--checkbox-size)) / 2);\\n\\t--checkbox-size: 24px;\\n\\t--clickable-area: 44px;\\n\\t--icon-preview-size: 32px;\\n\\n\\toverflow: auto;\\n\\theight: 100%;\\n\\twill-change: scroll-position;\\n\\n\\t& :deep() {\\n\\t\\t// Table head, body and footer\\n\\t\\ttbody {\\n\\t\\t\\twill-change: padding;\\n\\t\\t\\tcontain: layout paint style;\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\tflex-direction: column;\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\t// Necessary for virtual scrolling absolute\\n\\t\\t\\tposition: relative;\\n\\n\\t\\t\\t/* Hover effect on tbody lines only */\\n\\t\\t\\ttr {\\n\\t\\t\\t\\tcontain: strict;\\n\\t\\t\\t\\t&:hover,\\n\\t\\t\\t\\t&:focus {\\n\\t\\t\\t\\t\\tbackground-color: var(--color-background-dark);\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Before table and thead\\n\\t\\t.files-list__before {\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\tflex-direction: column;\\n\\t\\t}\\n\\n\\t\\t.files-list__table {\\n\\t\\t\\tdisplay: block;\\n\\n\\t\\t\\t&.files-list__table--with-thead-overlay {\\n\\t\\t\\t\\t// Hide the table header below the overlay\\n\\t\\t\\t\\tmargin-top: calc(-1 * var(--row-height));\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__thead-overlay {\\n\\t\\t\\t// Pinned on top when scrolling\\n\\t\\t\\tposition: sticky;\\n\\t\\t\\ttop: 0;\\n\\t\\t\\t// Save space for a row checkbox\\n\\t\\t\\tmargin-left: var(--row-height);\\n\\t\\t\\t// More than .files-list__thead\\n\\t\\t\\tz-index: 20;\\n\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\talign-items: center;\\n\\n\\t\\t\\t// Reuse row styles\\n\\t\\t\\tbackground-color: var(--color-main-background);\\n\\t\\t\\tborder-bottom: 1px solid var(--color-border);\\n\\t\\t\\theight: var(--row-height);\\n\\t\\t}\\n\\n\\t\\t.files-list__thead,\\n\\t\\t.files-list__tfoot {\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\tflex-direction: column;\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\tbackground-color: var(--color-main-background);\\n\\n\\t\\t}\\n\\n\\t\\t// Table header\\n\\t\\t.files-list__thead {\\n\\t\\t\\t// Pinned on top when scrolling\\n\\t\\t\\tposition: sticky;\\n\\t\\t\\tz-index: 10;\\n\\t\\t\\ttop: 0;\\n\\t\\t}\\n\\n\\t\\t// Table footer\\n\\t\\t.files-list__tfoot {\\n\\t\\t\\tmin-height: 300px;\\n\\t\\t}\\n\\n\\t\\ttr {\\n\\t\\t\\tposition: relative;\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\talign-items: center;\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\tuser-select: none;\\n\\t\\t\\tborder-bottom: 1px solid var(--color-border);\\n\\t\\t\\tbox-sizing: border-box;\\n\\t\\t\\tuser-select: none;\\n\\t\\t\\theight: var(--row-height);\\n\\t\\t}\\n\\n\\t\\ttd, th {\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\talign-items: center;\\n\\t\\t\\tflex: 0 0 auto;\\n\\t\\t\\tjustify-content: left;\\n\\t\\t\\twidth: var(--row-height);\\n\\t\\t\\theight: var(--row-height);\\n\\t\\t\\tmargin: 0;\\n\\t\\t\\tpadding: 0;\\n\\t\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\t\\tborder: none;\\n\\n\\t\\t\\t// Columns should try to add any text\\n\\t\\t\\t// node wrapped in a span. That should help\\n\\t\\t\\t// with the ellipsis on overflow.\\n\\t\\t\\tspan {\\n\\t\\t\\t\\toverflow: hidden;\\n\\t\\t\\t\\twhite-space: nowrap;\\n\\t\\t\\t\\ttext-overflow: ellipsis;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__row--failed {\\n\\t\\t\\tposition: absolute;\\n\\t\\t\\tdisplay: block;\\n\\t\\t\\ttop: 0;\\n\\t\\t\\tleft: 0;\\n\\t\\t\\tright: 0;\\n\\t\\t\\tbottom: 0;\\n\\t\\t\\topacity: .1;\\n\\t\\t\\tz-index: -1;\\n\\t\\t\\tbackground: var(--color-error);\\n\\t\\t}\\n\\n\\t\\t.files-list__row-checkbox {\\n\\t\\t\\tjustify-content: center;\\n\\n\\t\\t\\t.checkbox-radio-switch {\\n\\t\\t\\t\\tdisplay: flex;\\n\\t\\t\\t\\tjustify-content: center;\\n\\n\\t\\t\\t\\t--icon-size: var(--checkbox-size);\\n\\n\\t\\t\\t\\tlabel.checkbox-radio-switch__label {\\n\\t\\t\\t\\t\\twidth: var(--clickable-area);\\n\\t\\t\\t\\t\\theight: var(--clickable-area);\\n\\t\\t\\t\\t\\tmargin: 0;\\n\\t\\t\\t\\t\\tpadding: calc((var(--clickable-area) - var(--checkbox-size)) / 2);\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t.checkbox-radio-switch__icon {\\n\\t\\t\\t\\t\\tmargin: 0 !important;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__row {\\n\\t\\t\\t&:hover, &:focus, &:active, &--active, &--dragover {\\n\\t\\t\\t\\t// WCAG AA compliant\\n\\t\\t\\t\\tbackground-color: var(--color-background-hover);\\n\\t\\t\\t\\t// text-maxcontrast have been designed to pass WCAG AA over\\n\\t\\t\\t\\t// a white background, we need to adjust then.\\n\\t\\t\\t\\t--color-text-maxcontrast: var(--color-main-text);\\n\\t\\t\\t\\t> * {\\n\\t\\t\\t\\t\\t--color-border: var(--color-border-dark);\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t// Hover state of the row should also change the favorite markers background\\n\\t\\t\\t\\t.favorite-marker-icon svg path {\\n\\t\\t\\t\\t\\tstroke: var(--color-background-hover);\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\t&--dragover * {\\n\\t\\t\\t\\t// Prevent dropping on row children\\n\\t\\t\\t\\tpointer-events: none;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Entry preview or mime icon\\n\\t\\t.files-list__row-icon {\\n\\t\\t\\tposition: relative;\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\toverflow: visible;\\n\\t\\t\\talign-items: center;\\n\\t\\t\\t// No shrinking or growing allowed\\n\\t\\t\\tflex: 0 0 var(--icon-preview-size);\\n\\t\\t\\tjustify-content: center;\\n\\t\\t\\twidth: var(--icon-preview-size);\\n\\t\\t\\theight: 100%;\\n\\t\\t\\t// Show same padding as the checkbox right padding for visual balance\\n\\t\\t\\tmargin-right: var(--checkbox-padding);\\n\\t\\t\\tcolor: var(--color-primary-element);\\n\\n\\t\\t\\t// Icon is also clickable\\n\\t\\t\\t* {\\n\\t\\t\\t\\tcursor: pointer;\\n\\t\\t\\t}\\n\\n\\t\\t\\t& > span {\\n\\t\\t\\t\\tjustify-content: flex-start;\\n\\n\\t\\t\\t\\t&:not(.files-list__row-icon-favorite) svg {\\n\\t\\t\\t\\t\\twidth: var(--icon-preview-size);\\n\\t\\t\\t\\t\\theight: var(--icon-preview-size);\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t// Slightly increase the size of the folder icon\\n\\t\\t\\t\\t&.folder-icon,\\n\\t\\t\\t\\t&.folder-open-icon {\\n\\t\\t\\t\\t\\tmargin: -3px;\\n\\t\\t\\t\\t\\tsvg {\\n\\t\\t\\t\\t\\t\\twidth: calc(var(--icon-preview-size) + 6px);\\n\\t\\t\\t\\t\\t\\theight: calc(var(--icon-preview-size) + 6px);\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\t&-preview {\\n\\t\\t\\t\\toverflow: hidden;\\n\\t\\t\\t\\twidth: var(--icon-preview-size);\\n\\t\\t\\t\\theight: var(--icon-preview-size);\\n\\t\\t\\t\\tborder-radius: var(--border-radius);\\n\\t\\t\\t\\t// Center and contain the preview\\n\\t\\t\\t\\tobject-fit: contain;\\n\\t\\t\\t\\tobject-position: center;\\n\\n\\t\\t\\t\\t/* Preview not loaded animation effect */\\n\\t\\t\\t\\t&:not(.files-list__row-icon-preview--loaded) {\\n\\t\\t\\t\\t\\tbackground: var(--color-loading-dark);\\n\\t\\t\\t\\t\\t// animation: preview-gradient-fade 1.2s ease-in-out infinite;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\t&-favorite {\\n\\t\\t\\t\\tposition: absolute;\\n\\t\\t\\t\\ttop: 0px;\\n\\t\\t\\t\\tright: -10px;\\n\\t\\t\\t}\\n\\n\\t\\t\\t// File and folder overlay\\n\\t\\t\\t&-overlay {\\n\\t\\t\\t\\tposition: absolute;\\n\\t\\t\\t\\tmax-height: calc(var(--icon-preview-size) * 0.5);\\n\\t\\t\\t\\tmax-width: calc(var(--icon-preview-size) * 0.5);\\n\\t\\t\\t\\tcolor: var(--color-primary-element-text);\\n\\t\\t\\t\\t// better alignment with the folder icon\\n\\t\\t\\t\\tmargin-top: 2px;\\n\\n\\t\\t\\t\\t// Improve icon contrast with a background for files\\n\\t\\t\\t\\t&--file {\\n\\t\\t\\t\\t\\tcolor: var(--color-main-text);\\n\\t\\t\\t\\t\\tbackground: var(--color-main-background);\\n\\t\\t\\t\\t\\tborder-radius: 100%;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Entry link\\n\\t\\t.files-list__row-name {\\n\\t\\t\\t// Prevent link from overflowing\\n\\t\\t\\toverflow: hidden;\\n\\t\\t\\t// Take as much space as possible\\n\\t\\t\\tflex: 1 1 auto;\\n\\n\\t\\t\\ta {\\n\\t\\t\\t\\tdisplay: flex;\\n\\t\\t\\t\\talign-items: center;\\n\\t\\t\\t\\t// Fill cell height and width\\n\\t\\t\\t\\twidth: 100%;\\n\\t\\t\\t\\theight: 100%;\\n\\t\\t\\t\\t// Necessary for flex grow to work\\n\\t\\t\\t\\tmin-width: 0;\\n\\n\\t\\t\\t\\t// Already added to the inner text, see rule below\\n\\t\\t\\t\\t&:focus-visible {\\n\\t\\t\\t\\t\\toutline: none;\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\t// Keyboard indicator a11y\\n\\t\\t\\t\\t&:focus .files-list__row-name-text {\\n\\t\\t\\t\\t\\toutline: 2px solid var(--color-main-text) !important;\\n\\t\\t\\t\\t\\tborder-radius: 20px;\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\t&:focus:not(:focus-visible) .files-list__row-name-text {\\n\\t\\t\\t\\t\\toutline: none !important;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\n\\t\\t\\t.files-list__row-name-text {\\n\\t\\t\\t\\tcolor: var(--color-main-text);\\n\\t\\t\\t\\t// Make some space for the outline\\n\\t\\t\\t\\tpadding: 5px 10px;\\n\\t\\t\\t\\tmargin-left: -10px;\\n\\t\\t\\t\\t// Align two name and ext\\n\\t\\t\\t\\tdisplay: inline-flex;\\n\\t\\t\\t}\\n\\n\\t\\t\\t.files-list__row-name-ext {\\n\\t\\t\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\t\\t\\t// always show the extension\\n\\t\\t\\t\\toverflow: visible;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t// Rename form\\n\\t\\t.files-list__row-rename {\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\tmax-width: 600px;\\n\\t\\t\\tinput {\\n\\t\\t\\t\\twidth: 100%;\\n\\t\\t\\t\\t// Align with text, 0 - padding - border\\n\\t\\t\\t\\tmargin-left: -8px;\\n\\t\\t\\t\\tpadding: 2px 6px;\\n\\t\\t\\t\\tborder-width: 2px;\\n\\n\\t\\t\\t\\t&:invalid {\\n\\t\\t\\t\\t\\t// Show red border on invalid input\\n\\t\\t\\t\\t\\tborder-color: var(--color-error);\\n\\t\\t\\t\\t\\tcolor: red;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__row-actions {\\n\\t\\t\\t// take as much space as necessary\\n\\t\\t\\twidth: auto;\\n\\n\\t\\t\\t// Add margin to all cells after the actions\\n\\t\\t\\t& ~ td,\\n\\t\\t\\t& ~ th {\\n\\t\\t\\t\\tmargin: 0 var(--cell-margin);\\n\\t\\t\\t}\\n\\n\\t\\t\\tbutton {\\n\\t\\t\\t\\t.button-vue__text {\\n\\t\\t\\t\\t\\t// Remove bold from default button styling\\n\\t\\t\\t\\t\\tfont-weight: normal;\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.files-list__row-action--inline {\\n\\t\\t\\tmargin-right: 7px;\\n\\t\\t}\\n\\n\\t\\t.files-list__row-mtime,\\n\\t\\t.files-list__row-size {\\n\\t\\t\\tcolor: var(--color-text-maxcontrast);\\n\\t\\t}\\n\\t\\t.files-list__row-size {\\n\\t\\t\\twidth: calc(var(--row-height) * 1.5);\\n\\t\\t\\t// Right align content/text\\n\\t\\t\\tjustify-content: flex-end;\\n\\t\\t}\\n\\n\\t\\t.files-list__row-mtime {\\n\\t\\t\\twidth: calc(var(--row-height) * 2);\\n\\t\\t}\\n\\n\\t\\t.files-list__row-column-custom {\\n\\t\\t\\twidth: calc(var(--row-height) * 2);\\n\\t\\t}\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `tbody.files-list__tbody.files-list__tbody--grid{--half-clickable-area: calc(var(--clickable-area) / 2);--row-width: 160px;--row-height: calc(var(--row-width) - var(--half-clickable-area));--icon-preview-size: calc(var(--row-width) - var(--clickable-area));--checkbox-padding: 0px;display:grid;grid-template-columns:repeat(auto-fill, var(--row-width));grid-gap:15px;row-gap:15px;align-content:center;align-items:center;justify-content:space-around;justify-items:center}tbody.files-list__tbody.files-list__tbody--grid tr{width:var(--row-width);height:calc(var(--row-height) + var(--clickable-area));border:none;border-radius:var(--border-radius)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-checkbox{position:absolute;z-index:9;top:0;left:0;overflow:hidden;width:var(--clickable-area);height:var(--clickable-area);border-radius:var(--half-clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-icon-favorite{position:absolute;top:0;right:0;display:flex;align-items:center;justify-content:center;width:var(--clickable-area);height:var(--clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name{display:grid;justify-content:stretch;width:100%;height:100%;grid-auto-rows:var(--row-height) var(--clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name span.files-list__row-icon{width:100%;height:100%;padding-top:var(--half-clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name a.files-list__row-name-link{width:calc(100% - var(--clickable-area));height:var(--clickable-area)}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-name .files-list__row-name-text{margin:0;padding-right:0}tbody.files-list__tbody.files-list__tbody--grid .files-list__row-actions{position:absolute;right:0;bottom:0;width:var(--clickable-area);height:var(--clickable-area)}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/FilesListVirtual.vue\"],\"names\":[],\"mappings\":\"AAEA,gDACC,sDAAA,CACA,kBAAA,CAEA,iEAAA,CACA,mEAAA,CACA,uBAAA,CAEA,YAAA,CACA,yDAAA,CACA,aAAA,CACA,YAAA,CAEA,oBAAA,CACA,kBAAA,CACA,4BAAA,CACA,oBAAA,CAEA,mDACC,sBAAA,CACA,sDAAA,CACA,WAAA,CACA,kCAAA,CAID,0EACC,iBAAA,CACA,SAAA,CACA,KAAA,CACA,MAAA,CACA,eAAA,CACA,2BAAA,CACA,4BAAA,CACA,wCAAA,CAID,+EACC,iBAAA,CACA,KAAA,CACA,OAAA,CACA,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,2BAAA,CACA,4BAAA,CAGD,sEACC,YAAA,CACA,uBAAA,CACA,UAAA,CACA,WAAA,CACA,sDAAA,CAEA,gGACC,UAAA,CACA,WAAA,CAGA,sCAAA,CAGD,kGAEC,wCAAA,CACA,4BAAA,CAGD,iGACC,QAAA,CACA,eAAA,CAIF,yEACC,iBAAA,CACA,OAAA,CACA,QAAA,CACA,2BAAA,CACA,4BAAA\",\"sourcesContent\":[\"\\n// Grid mode\\ntbody.files-list__tbody.files-list__tbody--grid {\\n\\t--half-clickable-area: calc(var(--clickable-area) / 2);\\n\\t--row-width: 160px;\\n\\t// We use half of the clickable area as visual balance margin\\n\\t--row-height: calc(var(--row-width) - var(--half-clickable-area));\\n\\t--icon-preview-size: calc(var(--row-width) - var(--clickable-area));\\n\\t--checkbox-padding: 0px;\\n\\n\\tdisplay: grid;\\n\\tgrid-template-columns: repeat(auto-fill, var(--row-width));\\n\\tgrid-gap: 15px;\\n\\trow-gap: 15px;\\n\\n\\talign-content: center;\\n\\talign-items: center;\\n\\tjustify-content: space-around;\\n\\tjustify-items: center;\\n\\n\\ttr {\\n\\t\\twidth: var(--row-width);\\n\\t\\theight: calc(var(--row-height) + var(--clickable-area));\\n\\t\\tborder: none;\\n\\t\\tborder-radius: var(--border-radius);\\n\\t}\\n\\n\\t// Checkbox in the top left\\n\\t.files-list__row-checkbox {\\n\\t\\tposition: absolute;\\n\\t\\tz-index: 9;\\n\\t\\ttop: 0;\\n\\t\\tleft: 0;\\n\\t\\toverflow: hidden;\\n\\t\\twidth: var(--clickable-area);\\n\\t\\theight: var(--clickable-area);\\n\\t\\tborder-radius: var(--half-clickable-area);\\n\\t}\\n\\n\\t// Star icon in the top right\\n\\t.files-list__row-icon-favorite {\\n\\t\\tposition: absolute;\\n\\t\\ttop: 0;\\n\\t\\tright: 0;\\n\\t\\tdisplay: flex;\\n\\t\\talign-items: center;\\n\\t\\tjustify-content: center;\\n\\t\\twidth: var(--clickable-area);\\n\\t\\theight: var(--clickable-area);\\n\\t}\\n\\n\\t.files-list__row-name {\\n\\t\\tdisplay: grid;\\n\\t\\tjustify-content: stretch;\\n\\t\\twidth: 100%;\\n\\t\\theight: 100%;\\n\\t\\tgrid-auto-rows: var(--row-height) var(--clickable-area);\\n\\n\\t\\tspan.files-list__row-icon {\\n\\t\\t\\twidth: 100%;\\n\\t\\t\\theight: 100%;\\n\\t\\t\\t// Visual balance, we use half of the clickable area\\n\\t\\t\\t// as a margin around the preview\\n\\t\\t\\tpadding-top: var(--half-clickable-area);\\n\\t\\t}\\n\\n\\t\\ta.files-list__row-name-link {\\n\\t\\t\\t// Minus action menu\\n\\t\\t\\twidth: calc(100% - var(--clickable-area));\\n\\t\\t\\theight: var(--clickable-area);\\n\\t\\t}\\n\\n\\t\\t.files-list__row-name-text {\\n\\t\\t\\tmargin: 0;\\n\\t\\t\\tpadding-right: 0;\\n\\t\\t}\\n\\t}\\n\\n\\t.files-list__row-actions {\\n\\t\\tposition: absolute;\\n\\t\\tright: 0;\\n\\t\\tbottom: 0;\\n\\t\\twidth: var(--clickable-area);\\n\\t\\theight: var(--clickable-area);\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.app-navigation-entry__settings-quota--not-unlimited[data-v-063ed938] .app-navigation-entry__name{margin-top:-6px}.app-navigation-entry__settings-quota progress[data-v-063ed938]{position:absolute;bottom:12px;margin-left:44px;width:calc(100% - 44px - 22px)}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/components/NavigationQuota.vue\"],\"names\":[],\"mappings\":\"AAIC,kGACC,eAAA,CAGD,gEACC,iBAAA,CACA,WAAA,CACA,gBAAA,CACA,8BAAA\",\"sourcesContent\":[\"\\n// User storage stats display\\n.app-navigation-entry__settings-quota {\\n\\t// Align title with progress and icon\\n\\t&--not-unlimited::v-deep .app-navigation-entry__name {\\n\\t\\tmargin-top: -6px;\\n\\t}\\n\\n\\tprogress {\\n\\t\\tposition: absolute;\\n\\t\\tbottom: 12px;\\n\\t\\tmargin-left: 44px;\\n\\t\\twidth: calc(100% - 44px - 22px);\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.app-content[data-v-1b7c1ce0]{display:flex;overflow:hidden;flex-direction:column;max-height:100%;position:relative !important}.files-list__header[data-v-1b7c1ce0]{display:flex;align-items:center;flex:0 0;margin:4px 4px 4px 50px;max-width:100%}.files-list__header>*[data-v-1b7c1ce0]{flex:0 0}.files-list__header-share-button[data-v-1b7c1ce0]{color:var(--color-text-maxcontrast) !important}.files-list__header-share-button--shared[data-v-1b7c1ce0]{color:var(--color-main-text) !important}.files-list__refresh-icon[data-v-1b7c1ce0]{flex:0 0 44px;width:44px;height:44px}.files-list__loading-icon[data-v-1b7c1ce0]{margin:auto}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/views/FilesList.vue\"],\"names\":[],\"mappings\":\"AACA,8BAEC,YAAA,CACA,eAAA,CACA,qBAAA,CACA,eAAA,CACA,4BAAA,CAOA,qCACC,YAAA,CACA,kBAAA,CAEA,QAAA,CAEA,uBAAA,CACA,cAAA,CAEA,uCAGC,QAAA,CAGD,kDACC,8CAAA,CAEA,0DACC,uCAAA,CAKH,2CACC,aAAA,CACA,UAAA,CACA,WAAA,CAGD,2CACC,WAAA\",\"sourcesContent\":[\"\\n.app-content {\\n\\t// Virtual list needs to be full height and is scrollable\\n\\tdisplay: flex;\\n\\toverflow: hidden;\\n\\tflex-direction: column;\\n\\tmax-height: 100%;\\n\\tposition: relative !important;\\n}\\n\\n$margin: 4px;\\n$navigationToggleSize: 50px;\\n\\n.files-list {\\n\\t&__header {\\n\\t\\tdisplay: flex;\\n\\t\\talign-items: center;\\n\\t\\t// Do not grow or shrink (vertically)\\n\\t\\tflex: 0 0;\\n\\t\\t// Align with the navigation toggle icon\\n\\t\\tmargin: $margin $margin $margin $navigationToggleSize;\\n\\t\\tmax-width: 100%;\\n\\n\\t\\t>* {\\n\\t\\t\\t// Do not grow or shrink (horizontally)\\n\\t\\t\\t// Only the breadcrumbs shrinks\\n\\t\\t\\tflex: 0 0;\\n\\t\\t}\\n\\n\\t\\t&-share-button {\\n\\t\\t\\tcolor: var(--color-text-maxcontrast) !important;\\n\\n\\t\\t\\t&--shared {\\n\\t\\t\\t\\tcolor: var(--color-main-text) !important;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\t&__refresh-icon {\\n\\t\\tflex: 0 0 44px;\\n\\t\\twidth: 44px;\\n\\t\\theight: 44px;\\n\\t}\\n\\n\\t&__loading-icon {\\n\\t\\tmargin: auto;\\n\\t}\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.app-navigation[data-v-8291caa8] .app-navigation-entry-icon{background-repeat:no-repeat;background-position:center}.app-navigation[data-v-8291caa8] .app-navigation-entry.active .button-vue.icon-collapse:not(:hover){color:var(--color-primary-element-text)}.app-navigation>ul.app-navigation__list[data-v-8291caa8]{padding-bottom:var(--default-grid-baseline, 4px)}.app-navigation-entry__settings[data-v-8291caa8]{height:auto !important;overflow:hidden !important;padding-top:0 !important;flex:0 0 auto}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/views/Navigation.vue\"],\"names\":[],\"mappings\":\"AAEA,4DACC,2BAAA,CACA,0BAAA,CAGD,oGACC,uCAAA,CAGD,yDAEC,gDAAA,CAGD,iDACC,sBAAA,CACA,0BAAA,CACA,wBAAA,CAEA,aAAA\",\"sourcesContent\":[\"\\n// TODO: remove when https://github.com/nextcloud/nextcloud-vue/pull/3539 is in\\n.app-navigation::v-deep .app-navigation-entry-icon {\\n\\tbackground-repeat: no-repeat;\\n\\tbackground-position: center;\\n}\\n\\n.app-navigation::v-deep .app-navigation-entry.active .button-vue.icon-collapse:not(:hover) {\\n\\tcolor: var(--color-primary-element-text);\\n}\\n\\n.app-navigation > ul.app-navigation__list {\\n\\t// Use flex gap value for more elegant spacing\\n\\tpadding-bottom: var(--default-grid-baseline, 4px);\\n}\\n\\n.app-navigation-entry__settings {\\n\\theight: auto !important;\\n\\toverflow: hidden !important;\\n\\tpadding-top: 0 !important;\\n\\t// Prevent shrinking or growing\\n\\tflex: 0 0 auto;\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/sourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.setting-link[data-v-6d63c120]:hover{text-decoration:underline}`, \"\",{\"version\":3,\"sources\":[\"webpack://./apps/files/src/views/Settings.vue\"],\"names\":[],\"mappings\":\"AACA,qCACC,yBAAA\",\"sourcesContent\":[\"\\n.setting-link:hover {\\n\\ttext-decoration: underline;\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n",";(function (sax) { // wrapper for non-node envs\n sax.parser = function (strict, opt) { return new SAXParser(strict, opt) }\n sax.SAXParser = SAXParser\n sax.SAXStream = SAXStream\n sax.createStream = createStream\n\n // When we pass the MAX_BUFFER_LENGTH position, start checking for buffer overruns.\n // When we check, schedule the next check for MAX_BUFFER_LENGTH - (max(buffer lengths)),\n // since that's the earliest that a buffer overrun could occur. This way, checks are\n // as rare as required, but as often as necessary to ensure never crossing this bound.\n // Furthermore, buffers are only tested at most once per write(), so passing a very\n // large string into write() might have undesirable effects, but this is manageable by\n // the caller, so it is assumed to be safe. Thus, a call to write() may, in the extreme\n // edge case, result in creating at most one complete copy of the string passed in.\n // Set to Infinity to have unlimited buffers.\n sax.MAX_BUFFER_LENGTH = 64 * 1024\n\n var buffers = [\n 'comment', 'sgmlDecl', 'textNode', 'tagName', 'doctype',\n 'procInstName', 'procInstBody', 'entity', 'attribName',\n 'attribValue', 'cdata', 'script'\n ]\n\n sax.EVENTS = [\n 'text',\n 'processinginstruction',\n 'sgmldeclaration',\n 'doctype',\n 'comment',\n 'opentagstart',\n 'attribute',\n 'opentag',\n 'closetag',\n 'opencdata',\n 'cdata',\n 'closecdata',\n 'error',\n 'end',\n 'ready',\n 'script',\n 'opennamespace',\n 'closenamespace'\n ]\n\n function SAXParser (strict, opt) {\n if (!(this instanceof SAXParser)) {\n return new SAXParser(strict, opt)\n }\n\n var parser = this\n clearBuffers(parser)\n parser.q = parser.c = ''\n parser.bufferCheckPosition = sax.MAX_BUFFER_LENGTH\n parser.opt = opt || {}\n parser.opt.lowercase = parser.opt.lowercase || parser.opt.lowercasetags\n parser.looseCase = parser.opt.lowercase ? 'toLowerCase' : 'toUpperCase'\n parser.tags = []\n parser.closed = parser.closedRoot = parser.sawRoot = false\n parser.tag = parser.error = null\n parser.strict = !!strict\n parser.noscript = !!(strict || parser.opt.noscript)\n parser.state = S.BEGIN\n parser.strictEntities = parser.opt.strictEntities\n parser.ENTITIES = parser.strictEntities ? Object.create(sax.XML_ENTITIES) : Object.create(sax.ENTITIES)\n parser.attribList = []\n\n // namespaces form a prototype chain.\n // it always points at the current tag,\n // which protos to its parent tag.\n if (parser.opt.xmlns) {\n parser.ns = Object.create(rootNS)\n }\n\n // mostly just for error reporting\n parser.trackPosition = parser.opt.position !== false\n if (parser.trackPosition) {\n parser.position = parser.line = parser.column = 0\n }\n emit(parser, 'onready')\n }\n\n if (!Object.create) {\n Object.create = function (o) {\n function F () {}\n F.prototype = o\n var newf = new F()\n return newf\n }\n }\n\n if (!Object.keys) {\n Object.keys = function (o) {\n var a = []\n for (var i in o) if (o.hasOwnProperty(i)) a.push(i)\n return a\n }\n }\n\n function checkBufferLength (parser) {\n var maxAllowed = Math.max(sax.MAX_BUFFER_LENGTH, 10)\n var maxActual = 0\n for (var i = 0, l = buffers.length; i < l; i++) {\n var len = parser[buffers[i]].length\n if (len > maxAllowed) {\n // Text/cdata nodes can get big, and since they're buffered,\n // we can get here under normal conditions.\n // Avoid issues by emitting the text node now,\n // so at least it won't get any bigger.\n switch (buffers[i]) {\n case 'textNode':\n closeText(parser)\n break\n\n case 'cdata':\n emitNode(parser, 'oncdata', parser.cdata)\n parser.cdata = ''\n break\n\n case 'script':\n emitNode(parser, 'onscript', parser.script)\n parser.script = ''\n break\n\n default:\n error(parser, 'Max buffer length exceeded: ' + buffers[i])\n }\n }\n maxActual = Math.max(maxActual, len)\n }\n // schedule the next check for the earliest possible buffer overrun.\n var m = sax.MAX_BUFFER_LENGTH - maxActual\n parser.bufferCheckPosition = m + parser.position\n }\n\n function clearBuffers (parser) {\n for (var i = 0, l = buffers.length; i < l; i++) {\n parser[buffers[i]] = ''\n }\n }\n\n function flushBuffers (parser) {\n closeText(parser)\n if (parser.cdata !== '') {\n emitNode(parser, 'oncdata', parser.cdata)\n parser.cdata = ''\n }\n if (parser.script !== '') {\n emitNode(parser, 'onscript', parser.script)\n parser.script = ''\n }\n }\n\n SAXParser.prototype = {\n end: function () { end(this) },\n write: write,\n resume: function () { this.error = null; return this },\n close: function () { return this.write(null) },\n flush: function () { flushBuffers(this) }\n }\n\n var Stream\n try {\n Stream = require('stream').Stream\n } catch (ex) {\n Stream = function () {}\n }\n if (!Stream) Stream = function () {}\n\n var streamWraps = sax.EVENTS.filter(function (ev) {\n return ev !== 'error' && ev !== 'end'\n })\n\n function createStream (strict, opt) {\n return new SAXStream(strict, opt)\n }\n\n function SAXStream (strict, opt) {\n if (!(this instanceof SAXStream)) {\n return new SAXStream(strict, opt)\n }\n\n Stream.apply(this)\n\n this._parser = new SAXParser(strict, opt)\n this.writable = true\n this.readable = true\n\n var me = this\n\n this._parser.onend = function () {\n me.emit('end')\n }\n\n this._parser.onerror = function (er) {\n me.emit('error', er)\n\n // if didn't throw, then means error was handled.\n // go ahead and clear error, so we can write again.\n me._parser.error = null\n }\n\n this._decoder = null\n\n streamWraps.forEach(function (ev) {\n Object.defineProperty(me, 'on' + ev, {\n get: function () {\n return me._parser['on' + ev]\n },\n set: function (h) {\n if (!h) {\n me.removeAllListeners(ev)\n me._parser['on' + ev] = h\n return h\n }\n me.on(ev, h)\n },\n enumerable: true,\n configurable: false\n })\n })\n }\n\n SAXStream.prototype = Object.create(Stream.prototype, {\n constructor: {\n value: SAXStream\n }\n })\n\n SAXStream.prototype.write = function (data) {\n if (typeof Buffer === 'function' &&\n typeof Buffer.isBuffer === 'function' &&\n Buffer.isBuffer(data)) {\n if (!this._decoder) {\n var SD = require('string_decoder').StringDecoder\n this._decoder = new SD('utf8')\n }\n data = this._decoder.write(data)\n }\n\n this._parser.write(data.toString())\n this.emit('data', data)\n return true\n }\n\n SAXStream.prototype.end = function (chunk) {\n if (chunk && chunk.length) {\n this.write(chunk)\n }\n this._parser.end()\n return true\n }\n\n SAXStream.prototype.on = function (ev, handler) {\n var me = this\n if (!me._parser['on' + ev] && streamWraps.indexOf(ev) !== -1) {\n me._parser['on' + ev] = function () {\n var args = arguments.length === 1 ? [arguments[0]] : Array.apply(null, arguments)\n args.splice(0, 0, ev)\n me.emit.apply(me, args)\n }\n }\n\n return Stream.prototype.on.call(me, ev, handler)\n }\n\n // this really needs to be replaced with character classes.\n // XML allows all manner of ridiculous numbers and digits.\n var CDATA = '[CDATA['\n var DOCTYPE = 'DOCTYPE'\n var XML_NAMESPACE = 'http://www.w3.org/XML/1998/namespace'\n var XMLNS_NAMESPACE = 'http://www.w3.org/2000/xmlns/'\n var rootNS = { xml: XML_NAMESPACE, xmlns: XMLNS_NAMESPACE }\n\n // http://www.w3.org/TR/REC-xml/#NT-NameStartChar\n // This implementation works on strings, a single character at a time\n // as such, it cannot ever support astral-plane characters (10000-EFFFF)\n // without a significant breaking change to either this parser, or the\n // JavaScript language. Implementation of an emoji-capable xml parser\n // is left as an exercise for the reader.\n var nameStart = /[:_A-Za-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD]/\n\n var nameBody = /[:_A-Za-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\u00B7\\u0300-\\u036F\\u203F-\\u2040.\\d-]/\n\n var entityStart = /[#:_A-Za-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD]/\n var entityBody = /[#:_A-Za-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\u00B7\\u0300-\\u036F\\u203F-\\u2040.\\d-]/\n\n function isWhitespace (c) {\n return c === ' ' || c === '\\n' || c === '\\r' || c === '\\t'\n }\n\n function isQuote (c) {\n return c === '\"' || c === '\\''\n }\n\n function isAttribEnd (c) {\n return c === '>' || isWhitespace(c)\n }\n\n function isMatch (regex, c) {\n return regex.test(c)\n }\n\n function notMatch (regex, c) {\n return !isMatch(regex, c)\n }\n\n var S = 0\n sax.STATE = {\n BEGIN: S++, // leading byte order mark or whitespace\n BEGIN_WHITESPACE: S++, // leading whitespace\n TEXT: S++, // general stuff\n TEXT_ENTITY: S++, // &amp and such.\n OPEN_WAKA: S++, // <\n SGML_DECL: S++, // <!BLARG\n SGML_DECL_QUOTED: S++, // <!BLARG foo \"bar\n DOCTYPE: S++, // <!DOCTYPE\n DOCTYPE_QUOTED: S++, // <!DOCTYPE \"//blah\n DOCTYPE_DTD: S++, // <!DOCTYPE \"//blah\" [ ...\n DOCTYPE_DTD_QUOTED: S++, // <!DOCTYPE \"//blah\" [ \"foo\n COMMENT_STARTING: S++, // <!-\n COMMENT: S++, // <!--\n COMMENT_ENDING: S++, // <!-- blah -\n COMMENT_ENDED: S++, // <!-- blah --\n CDATA: S++, // <![CDATA[ something\n CDATA_ENDING: S++, // ]\n CDATA_ENDING_2: S++, // ]]\n PROC_INST: S++, // <?hi\n PROC_INST_BODY: S++, // <?hi there\n PROC_INST_ENDING: S++, // <?hi \"there\" ?\n OPEN_TAG: S++, // <strong\n OPEN_TAG_SLASH: S++, // <strong /\n ATTRIB: S++, // <a\n ATTRIB_NAME: S++, // <a foo\n ATTRIB_NAME_SAW_WHITE: S++, // <a foo _\n ATTRIB_VALUE: S++, // <a foo=\n ATTRIB_VALUE_QUOTED: S++, // <a foo=\"bar\n ATTRIB_VALUE_CLOSED: S++, // <a foo=\"bar\"\n ATTRIB_VALUE_UNQUOTED: S++, // <a foo=bar\n ATTRIB_VALUE_ENTITY_Q: S++, // <foo bar=\"&quot;\"\n ATTRIB_VALUE_ENTITY_U: S++, // <foo bar=&quot\n CLOSE_TAG: S++, // </a\n CLOSE_TAG_SAW_WHITE: S++, // </a >\n SCRIPT: S++, // <script> ...\n SCRIPT_ENDING: S++ // <script> ... <\n }\n\n sax.XML_ENTITIES = {\n 'amp': '&',\n 'gt': '>',\n 'lt': '<',\n 'quot': '\"',\n 'apos': \"'\"\n }\n\n sax.ENTITIES = {\n 'amp': '&',\n 'gt': '>',\n 'lt': '<',\n 'quot': '\"',\n 'apos': \"'\",\n 'AElig': 198,\n 'Aacute': 193,\n 'Acirc': 194,\n 'Agrave': 192,\n 'Aring': 197,\n 'Atilde': 195,\n 'Auml': 196,\n 'Ccedil': 199,\n 'ETH': 208,\n 'Eacute': 201,\n 'Ecirc': 202,\n 'Egrave': 200,\n 'Euml': 203,\n 'Iacute': 205,\n 'Icirc': 206,\n 'Igrave': 204,\n 'Iuml': 207,\n 'Ntilde': 209,\n 'Oacute': 211,\n 'Ocirc': 212,\n 'Ograve': 210,\n 'Oslash': 216,\n 'Otilde': 213,\n 'Ouml': 214,\n 'THORN': 222,\n 'Uacute': 218,\n 'Ucirc': 219,\n 'Ugrave': 217,\n 'Uuml': 220,\n 'Yacute': 221,\n 'aacute': 225,\n 'acirc': 226,\n 'aelig': 230,\n 'agrave': 224,\n 'aring': 229,\n 'atilde': 227,\n 'auml': 228,\n 'ccedil': 231,\n 'eacute': 233,\n 'ecirc': 234,\n 'egrave': 232,\n 'eth': 240,\n 'euml': 235,\n 'iacute': 237,\n 'icirc': 238,\n 'igrave': 236,\n 'iuml': 239,\n 'ntilde': 241,\n 'oacute': 243,\n 'ocirc': 244,\n 'ograve': 242,\n 'oslash': 248,\n 'otilde': 245,\n 'ouml': 246,\n 'szlig': 223,\n 'thorn': 254,\n 'uacute': 250,\n 'ucirc': 251,\n 'ugrave': 249,\n 'uuml': 252,\n 'yacute': 253,\n 'yuml': 255,\n 'copy': 169,\n 'reg': 174,\n 'nbsp': 160,\n 'iexcl': 161,\n 'cent': 162,\n 'pound': 163,\n 'curren': 164,\n 'yen': 165,\n 'brvbar': 166,\n 'sect': 167,\n 'uml': 168,\n 'ordf': 170,\n 'laquo': 171,\n 'not': 172,\n 'shy': 173,\n 'macr': 175,\n 'deg': 176,\n 'plusmn': 177,\n 'sup1': 185,\n 'sup2': 178,\n 'sup3': 179,\n 'acute': 180,\n 'micro': 181,\n 'para': 182,\n 'middot': 183,\n 'cedil': 184,\n 'ordm': 186,\n 'raquo': 187,\n 'frac14': 188,\n 'frac12': 189,\n 'frac34': 190,\n 'iquest': 191,\n 'times': 215,\n 'divide': 247,\n 'OElig': 338,\n 'oelig': 339,\n 'Scaron': 352,\n 'scaron': 353,\n 'Yuml': 376,\n 'fnof': 402,\n 'circ': 710,\n 'tilde': 732,\n 'Alpha': 913,\n 'Beta': 914,\n 'Gamma': 915,\n 'Delta': 916,\n 'Epsilon': 917,\n 'Zeta': 918,\n 'Eta': 919,\n 'Theta': 920,\n 'Iota': 921,\n 'Kappa': 922,\n 'Lambda': 923,\n 'Mu': 924,\n 'Nu': 925,\n 'Xi': 926,\n 'Omicron': 927,\n 'Pi': 928,\n 'Rho': 929,\n 'Sigma': 931,\n 'Tau': 932,\n 'Upsilon': 933,\n 'Phi': 934,\n 'Chi': 935,\n 'Psi': 936,\n 'Omega': 937,\n 'alpha': 945,\n 'beta': 946,\n 'gamma': 947,\n 'delta': 948,\n 'epsilon': 949,\n 'zeta': 950,\n 'eta': 951,\n 'theta': 952,\n 'iota': 953,\n 'kappa': 954,\n 'lambda': 955,\n 'mu': 956,\n 'nu': 957,\n 'xi': 958,\n 'omicron': 959,\n 'pi': 960,\n 'rho': 961,\n 'sigmaf': 962,\n 'sigma': 963,\n 'tau': 964,\n 'upsilon': 965,\n 'phi': 966,\n 'chi': 967,\n 'psi': 968,\n 'omega': 969,\n 'thetasym': 977,\n 'upsih': 978,\n 'piv': 982,\n 'ensp': 8194,\n 'emsp': 8195,\n 'thinsp': 8201,\n 'zwnj': 8204,\n 'zwj': 8205,\n 'lrm': 8206,\n 'rlm': 8207,\n 'ndash': 8211,\n 'mdash': 8212,\n 'lsquo': 8216,\n 'rsquo': 8217,\n 'sbquo': 8218,\n 'ldquo': 8220,\n 'rdquo': 8221,\n 'bdquo': 8222,\n 'dagger': 8224,\n 'Dagger': 8225,\n 'bull': 8226,\n 'hellip': 8230,\n 'permil': 8240,\n 'prime': 8242,\n 'Prime': 8243,\n 'lsaquo': 8249,\n 'rsaquo': 8250,\n 'oline': 8254,\n 'frasl': 8260,\n 'euro': 8364,\n 'image': 8465,\n 'weierp': 8472,\n 'real': 8476,\n 'trade': 8482,\n 'alefsym': 8501,\n 'larr': 8592,\n 'uarr': 8593,\n 'rarr': 8594,\n 'darr': 8595,\n 'harr': 8596,\n 'crarr': 8629,\n 'lArr': 8656,\n 'uArr': 8657,\n 'rArr': 8658,\n 'dArr': 8659,\n 'hArr': 8660,\n 'forall': 8704,\n 'part': 8706,\n 'exist': 8707,\n 'empty': 8709,\n 'nabla': 8711,\n 'isin': 8712,\n 'notin': 8713,\n 'ni': 8715,\n 'prod': 8719,\n 'sum': 8721,\n 'minus': 8722,\n 'lowast': 8727,\n 'radic': 8730,\n 'prop': 8733,\n 'infin': 8734,\n 'ang': 8736,\n 'and': 8743,\n 'or': 8744,\n 'cap': 8745,\n 'cup': 8746,\n 'int': 8747,\n 'there4': 8756,\n 'sim': 8764,\n 'cong': 8773,\n 'asymp': 8776,\n 'ne': 8800,\n 'equiv': 8801,\n 'le': 8804,\n 'ge': 8805,\n 'sub': 8834,\n 'sup': 8835,\n 'nsub': 8836,\n 'sube': 8838,\n 'supe': 8839,\n 'oplus': 8853,\n 'otimes': 8855,\n 'perp': 8869,\n 'sdot': 8901,\n 'lceil': 8968,\n 'rceil': 8969,\n 'lfloor': 8970,\n 'rfloor': 8971,\n 'lang': 9001,\n 'rang': 9002,\n 'loz': 9674,\n 'spades': 9824,\n 'clubs': 9827,\n 'hearts': 9829,\n 'diams': 9830\n }\n\n Object.keys(sax.ENTITIES).forEach(function (key) {\n var e = sax.ENTITIES[key]\n var s = typeof e === 'number' ? String.fromCharCode(e) : e\n sax.ENTITIES[key] = s\n })\n\n for (var s in sax.STATE) {\n sax.STATE[sax.STATE[s]] = s\n }\n\n // shorthand\n S = sax.STATE\n\n function emit (parser, event, data) {\n parser[event] && parser[event](data)\n }\n\n function emitNode (parser, nodeType, data) {\n if (parser.textNode) closeText(parser)\n emit(parser, nodeType, data)\n }\n\n function closeText (parser) {\n parser.textNode = textopts(parser.opt, parser.textNode)\n if (parser.textNode) emit(parser, 'ontext', parser.textNode)\n parser.textNode = ''\n }\n\n function textopts (opt, text) {\n if (opt.trim) text = text.trim()\n if (opt.normalize) text = text.replace(/\\s+/g, ' ')\n return text\n }\n\n function error (parser, er) {\n closeText(parser)\n if (parser.trackPosition) {\n er += '\\nLine: ' + parser.line +\n '\\nColumn: ' + parser.column +\n '\\nChar: ' + parser.c\n }\n er = new Error(er)\n parser.error = er\n emit(parser, 'onerror', er)\n return parser\n }\n\n function end (parser) {\n if (parser.sawRoot && !parser.closedRoot) strictFail(parser, 'Unclosed root tag')\n if ((parser.state !== S.BEGIN) &&\n (parser.state !== S.BEGIN_WHITESPACE) &&\n (parser.state !== S.TEXT)) {\n error(parser, 'Unexpected end')\n }\n closeText(parser)\n parser.c = ''\n parser.closed = true\n emit(parser, 'onend')\n SAXParser.call(parser, parser.strict, parser.opt)\n return parser\n }\n\n function strictFail (parser, message) {\n if (typeof parser !== 'object' || !(parser instanceof SAXParser)) {\n throw new Error('bad call to strictFail')\n }\n if (parser.strict) {\n error(parser, message)\n }\n }\n\n function newTag (parser) {\n if (!parser.strict) parser.tagName = parser.tagName[parser.looseCase]()\n var parent = parser.tags[parser.tags.length - 1] || parser\n var tag = parser.tag = { name: parser.tagName, attributes: {} }\n\n // will be overridden if tag contails an xmlns=\"foo\" or xmlns:foo=\"bar\"\n if (parser.opt.xmlns) {\n tag.ns = parent.ns\n }\n parser.attribList.length = 0\n emitNode(parser, 'onopentagstart', tag)\n }\n\n function qname (name, attribute) {\n var i = name.indexOf(':')\n var qualName = i < 0 ? [ '', name ] : name.split(':')\n var prefix = qualName[0]\n var local = qualName[1]\n\n // <x \"xmlns\"=\"http://foo\">\n if (attribute && name === 'xmlns') {\n prefix = 'xmlns'\n local = ''\n }\n\n return { prefix: prefix, local: local }\n }\n\n function attrib (parser) {\n if (!parser.strict) {\n parser.attribName = parser.attribName[parser.looseCase]()\n }\n\n if (parser.attribList.indexOf(parser.attribName) !== -1 ||\n parser.tag.attributes.hasOwnProperty(parser.attribName)) {\n parser.attribName = parser.attribValue = ''\n return\n }\n\n if (parser.opt.xmlns) {\n var qn = qname(parser.attribName, true)\n var prefix = qn.prefix\n var local = qn.local\n\n if (prefix === 'xmlns') {\n // namespace binding attribute. push the binding into scope\n if (local === 'xml' && parser.attribValue !== XML_NAMESPACE) {\n strictFail(parser,\n 'xml: prefix must be bound to ' + XML_NAMESPACE + '\\n' +\n 'Actual: ' + parser.attribValue)\n } else if (local === 'xmlns' && parser.attribValue !== XMLNS_NAMESPACE) {\n strictFail(parser,\n 'xmlns: prefix must be bound to ' + XMLNS_NAMESPACE + '\\n' +\n 'Actual: ' + parser.attribValue)\n } else {\n var tag = parser.tag\n var parent = parser.tags[parser.tags.length - 1] || parser\n if (tag.ns === parent.ns) {\n tag.ns = Object.create(parent.ns)\n }\n tag.ns[local] = parser.attribValue\n }\n }\n\n // defer onattribute events until all attributes have been seen\n // so any new bindings can take effect. preserve attribute order\n // so deferred events can be emitted in document order\n parser.attribList.push([parser.attribName, parser.attribValue])\n } else {\n // in non-xmlns mode, we can emit the event right away\n parser.tag.attributes[parser.attribName] = parser.attribValue\n emitNode(parser, 'onattribute', {\n name: parser.attribName,\n value: parser.attribValue\n })\n }\n\n parser.attribName = parser.attribValue = ''\n }\n\n function openTag (parser, selfClosing) {\n if (parser.opt.xmlns) {\n // emit namespace binding events\n var tag = parser.tag\n\n // add namespace info to tag\n var qn = qname(parser.tagName)\n tag.prefix = qn.prefix\n tag.local = qn.local\n tag.uri = tag.ns[qn.prefix] || ''\n\n if (tag.prefix && !tag.uri) {\n strictFail(parser, 'Unbound namespace prefix: ' +\n JSON.stringify(parser.tagName))\n tag.uri = qn.prefix\n }\n\n var parent = parser.tags[parser.tags.length - 1] || parser\n if (tag.ns && parent.ns !== tag.ns) {\n Object.keys(tag.ns).forEach(function (p) {\n emitNode(parser, 'onopennamespace', {\n prefix: p,\n uri: tag.ns[p]\n })\n })\n }\n\n // handle deferred onattribute events\n // Note: do not apply default ns to attributes:\n // http://www.w3.org/TR/REC-xml-names/#defaulting\n for (var i = 0, l = parser.attribList.length; i < l; i++) {\n var nv = parser.attribList[i]\n var name = nv[0]\n var value = nv[1]\n var qualName = qname(name, true)\n var prefix = qualName.prefix\n var local = qualName.local\n var uri = prefix === '' ? '' : (tag.ns[prefix] || '')\n var a = {\n name: name,\n value: value,\n prefix: prefix,\n local: local,\n uri: uri\n }\n\n // if there's any attributes with an undefined namespace,\n // then fail on them now.\n if (prefix && prefix !== 'xmlns' && !uri) {\n strictFail(parser, 'Unbound namespace prefix: ' +\n JSON.stringify(prefix))\n a.uri = prefix\n }\n parser.tag.attributes[name] = a\n emitNode(parser, 'onattribute', a)\n }\n parser.attribList.length = 0\n }\n\n parser.tag.isSelfClosing = !!selfClosing\n\n // process the tag\n parser.sawRoot = true\n parser.tags.push(parser.tag)\n emitNode(parser, 'onopentag', parser.tag)\n if (!selfClosing) {\n // special case for <script> in non-strict mode.\n if (!parser.noscript && parser.tagName.toLowerCase() === 'script') {\n parser.state = S.SCRIPT\n } else {\n parser.state = S.TEXT\n }\n parser.tag = null\n parser.tagName = ''\n }\n parser.attribName = parser.attribValue = ''\n parser.attribList.length = 0\n }\n\n function closeTag (parser) {\n if (!parser.tagName) {\n strictFail(parser, 'Weird empty close tag.')\n parser.textNode += '</>'\n parser.state = S.TEXT\n return\n }\n\n if (parser.script) {\n if (parser.tagName !== 'script') {\n parser.script += '</' + parser.tagName + '>'\n parser.tagName = ''\n parser.state = S.SCRIPT\n return\n }\n emitNode(parser, 'onscript', parser.script)\n parser.script = ''\n }\n\n // first make sure that the closing tag actually exists.\n // <a><b></c></b></a> will close everything, otherwise.\n var t = parser.tags.length\n var tagName = parser.tagName\n if (!parser.strict) {\n tagName = tagName[parser.looseCase]()\n }\n var closeTo = tagName\n while (t--) {\n var close = parser.tags[t]\n if (close.name !== closeTo) {\n // fail the first time in strict mode\n strictFail(parser, 'Unexpected close tag')\n } else {\n break\n }\n }\n\n // didn't find it. we already failed for strict, so just abort.\n if (t < 0) {\n strictFail(parser, 'Unmatched closing tag: ' + parser.tagName)\n parser.textNode += '</' + parser.tagName + '>'\n parser.state = S.TEXT\n return\n }\n parser.tagName = tagName\n var s = parser.tags.length\n while (s-- > t) {\n var tag = parser.tag = parser.tags.pop()\n parser.tagName = parser.tag.name\n emitNode(parser, 'onclosetag', parser.tagName)\n\n var x = {}\n for (var i in tag.ns) {\n x[i] = tag.ns[i]\n }\n\n var parent = parser.tags[parser.tags.length - 1] || parser\n if (parser.opt.xmlns && tag.ns !== parent.ns) {\n // remove namespace bindings introduced by tag\n Object.keys(tag.ns).forEach(function (p) {\n var n = tag.ns[p]\n emitNode(parser, 'onclosenamespace', { prefix: p, uri: n })\n })\n }\n }\n if (t === 0) parser.closedRoot = true\n parser.tagName = parser.attribValue = parser.attribName = ''\n parser.attribList.length = 0\n parser.state = S.TEXT\n }\n\n function parseEntity (parser) {\n var entity = parser.entity\n var entityLC = entity.toLowerCase()\n var num\n var numStr = ''\n\n if (parser.ENTITIES[entity]) {\n return parser.ENTITIES[entity]\n }\n if (parser.ENTITIES[entityLC]) {\n return parser.ENTITIES[entityLC]\n }\n entity = entityLC\n if (entity.charAt(0) === '#') {\n if (entity.charAt(1) === 'x') {\n entity = entity.slice(2)\n num = parseInt(entity, 16)\n numStr = num.toString(16)\n } else {\n entity = entity.slice(1)\n num = parseInt(entity, 10)\n numStr = num.toString(10)\n }\n }\n entity = entity.replace(/^0+/, '')\n if (isNaN(num) || numStr.toLowerCase() !== entity) {\n strictFail(parser, 'Invalid character entity')\n return '&' + parser.entity + ';'\n }\n\n return String.fromCodePoint(num)\n }\n\n function beginWhiteSpace (parser, c) {\n if (c === '<') {\n parser.state = S.OPEN_WAKA\n parser.startTagPosition = parser.position\n } else if (!isWhitespace(c)) {\n // have to process this as a text node.\n // weird, but happens.\n strictFail(parser, 'Non-whitespace before first tag.')\n parser.textNode = c\n parser.state = S.TEXT\n }\n }\n\n function charAt (chunk, i) {\n var result = ''\n if (i < chunk.length) {\n result = chunk.charAt(i)\n }\n return result\n }\n\n function write (chunk) {\n var parser = this\n if (this.error) {\n throw this.error\n }\n if (parser.closed) {\n return error(parser,\n 'Cannot write after close. Assign an onready handler.')\n }\n if (chunk === null) {\n return end(parser)\n }\n if (typeof chunk === 'object') {\n chunk = chunk.toString()\n }\n var i = 0\n var c = ''\n while (true) {\n c = charAt(chunk, i++)\n parser.c = c\n\n if (!c) {\n break\n }\n\n if (parser.trackPosition) {\n parser.position++\n if (c === '\\n') {\n parser.line++\n parser.column = 0\n } else {\n parser.column++\n }\n }\n\n switch (parser.state) {\n case S.BEGIN:\n parser.state = S.BEGIN_WHITESPACE\n if (c === '\\uFEFF') {\n continue\n }\n beginWhiteSpace(parser, c)\n continue\n\n case S.BEGIN_WHITESPACE:\n beginWhiteSpace(parser, c)\n continue\n\n case S.TEXT:\n if (parser.sawRoot && !parser.closedRoot) {\n var starti = i - 1\n while (c && c !== '<' && c !== '&') {\n c = charAt(chunk, i++)\n if (c && parser.trackPosition) {\n parser.position++\n if (c === '\\n') {\n parser.line++\n parser.column = 0\n } else {\n parser.column++\n }\n }\n }\n parser.textNode += chunk.substring(starti, i - 1)\n }\n if (c === '<' && !(parser.sawRoot && parser.closedRoot && !parser.strict)) {\n parser.state = S.OPEN_WAKA\n parser.startTagPosition = parser.position\n } else {\n if (!isWhitespace(c) && (!parser.sawRoot || parser.closedRoot)) {\n strictFail(parser, 'Text data outside of root node.')\n }\n if (c === '&') {\n parser.state = S.TEXT_ENTITY\n } else {\n parser.textNode += c\n }\n }\n continue\n\n case S.SCRIPT:\n // only non-strict\n if (c === '<') {\n parser.state = S.SCRIPT_ENDING\n } else {\n parser.script += c\n }\n continue\n\n case S.SCRIPT_ENDING:\n if (c === '/') {\n parser.state = S.CLOSE_TAG\n } else {\n parser.script += '<' + c\n parser.state = S.SCRIPT\n }\n continue\n\n case S.OPEN_WAKA:\n // either a /, ?, !, or text is coming next.\n if (c === '!') {\n parser.state = S.SGML_DECL\n parser.sgmlDecl = ''\n } else if (isWhitespace(c)) {\n // wait for it...\n } else if (isMatch(nameStart, c)) {\n parser.state = S.OPEN_TAG\n parser.tagName = c\n } else if (c === '/') {\n parser.state = S.CLOSE_TAG\n parser.tagName = ''\n } else if (c === '?') {\n parser.state = S.PROC_INST\n parser.procInstName = parser.procInstBody = ''\n } else {\n strictFail(parser, 'Unencoded <')\n // if there was some whitespace, then add that in.\n if (parser.startTagPosition + 1 < parser.position) {\n var pad = parser.position - parser.startTagPosition\n c = new Array(pad).join(' ') + c\n }\n parser.textNode += '<' + c\n parser.state = S.TEXT\n }\n continue\n\n case S.SGML_DECL:\n if ((parser.sgmlDecl + c).toUpperCase() === CDATA) {\n emitNode(parser, 'onopencdata')\n parser.state = S.CDATA\n parser.sgmlDecl = ''\n parser.cdata = ''\n } else if (parser.sgmlDecl + c === '--') {\n parser.state = S.COMMENT\n parser.comment = ''\n parser.sgmlDecl = ''\n } else if ((parser.sgmlDecl + c).toUpperCase() === DOCTYPE) {\n parser.state = S.DOCTYPE\n if (parser.doctype || parser.sawRoot) {\n strictFail(parser,\n 'Inappropriately located doctype declaration')\n }\n parser.doctype = ''\n parser.sgmlDecl = ''\n } else if (c === '>') {\n emitNode(parser, 'onsgmldeclaration', parser.sgmlDecl)\n parser.sgmlDecl = ''\n parser.state = S.TEXT\n } else if (isQuote(c)) {\n parser.state = S.SGML_DECL_QUOTED\n parser.sgmlDecl += c\n } else {\n parser.sgmlDecl += c\n }\n continue\n\n case S.SGML_DECL_QUOTED:\n if (c === parser.q) {\n parser.state = S.SGML_DECL\n parser.q = ''\n }\n parser.sgmlDecl += c\n continue\n\n case S.DOCTYPE:\n if (c === '>') {\n parser.state = S.TEXT\n emitNode(parser, 'ondoctype', parser.doctype)\n parser.doctype = true // just remember that we saw it.\n } else {\n parser.doctype += c\n if (c === '[') {\n parser.state = S.DOCTYPE_DTD\n } else if (isQuote(c)) {\n parser.state = S.DOCTYPE_QUOTED\n parser.q = c\n }\n }\n continue\n\n case S.DOCTYPE_QUOTED:\n parser.doctype += c\n if (c === parser.q) {\n parser.q = ''\n parser.state = S.DOCTYPE\n }\n continue\n\n case S.DOCTYPE_DTD:\n parser.doctype += c\n if (c === ']') {\n parser.state = S.DOCTYPE\n } else if (isQuote(c)) {\n parser.state = S.DOCTYPE_DTD_QUOTED\n parser.q = c\n }\n continue\n\n case S.DOCTYPE_DTD_QUOTED:\n parser.doctype += c\n if (c === parser.q) {\n parser.state = S.DOCTYPE_DTD\n parser.q = ''\n }\n continue\n\n case S.COMMENT:\n if (c === '-') {\n parser.state = S.COMMENT_ENDING\n } else {\n parser.comment += c\n }\n continue\n\n case S.COMMENT_ENDING:\n if (c === '-') {\n parser.state = S.COMMENT_ENDED\n parser.comment = textopts(parser.opt, parser.comment)\n if (parser.comment) {\n emitNode(parser, 'oncomment', parser.comment)\n }\n parser.comment = ''\n } else {\n parser.comment += '-' + c\n parser.state = S.COMMENT\n }\n continue\n\n case S.COMMENT_ENDED:\n if (c !== '>') {\n strictFail(parser, 'Malformed comment')\n // allow <!-- blah -- bloo --> in non-strict mode,\n // which is a comment of \" blah -- bloo \"\n parser.comment += '--' + c\n parser.state = S.COMMENT\n } else {\n parser.state = S.TEXT\n }\n continue\n\n case S.CDATA:\n if (c === ']') {\n parser.state = S.CDATA_ENDING\n } else {\n parser.cdata += c\n }\n continue\n\n case S.CDATA_ENDING:\n if (c === ']') {\n parser.state = S.CDATA_ENDING_2\n } else {\n parser.cdata += ']' + c\n parser.state = S.CDATA\n }\n continue\n\n case S.CDATA_ENDING_2:\n if (c === '>') {\n if (parser.cdata) {\n emitNode(parser, 'oncdata', parser.cdata)\n }\n emitNode(parser, 'onclosecdata')\n parser.cdata = ''\n parser.state = S.TEXT\n } else if (c === ']') {\n parser.cdata += ']'\n } else {\n parser.cdata += ']]' + c\n parser.state = S.CDATA\n }\n continue\n\n case S.PROC_INST:\n if (c === '?') {\n parser.state = S.PROC_INST_ENDING\n } else if (isWhitespace(c)) {\n parser.state = S.PROC_INST_BODY\n } else {\n parser.procInstName += c\n }\n continue\n\n case S.PROC_INST_BODY:\n if (!parser.procInstBody && isWhitespace(c)) {\n continue\n } else if (c === '?') {\n parser.state = S.PROC_INST_ENDING\n } else {\n parser.procInstBody += c\n }\n continue\n\n case S.PROC_INST_ENDING:\n if (c === '>') {\n emitNode(parser, 'onprocessinginstruction', {\n name: parser.procInstName,\n body: parser.procInstBody\n })\n parser.procInstName = parser.procInstBody = ''\n parser.state = S.TEXT\n } else {\n parser.procInstBody += '?' + c\n parser.state = S.PROC_INST_BODY\n }\n continue\n\n case S.OPEN_TAG:\n if (isMatch(nameBody, c)) {\n parser.tagName += c\n } else {\n newTag(parser)\n if (c === '>') {\n openTag(parser)\n } else if (c === '/') {\n parser.state = S.OPEN_TAG_SLASH\n } else {\n if (!isWhitespace(c)) {\n strictFail(parser, 'Invalid character in tag name')\n }\n parser.state = S.ATTRIB\n }\n }\n continue\n\n case S.OPEN_TAG_SLASH:\n if (c === '>') {\n openTag(parser, true)\n closeTag(parser)\n } else {\n strictFail(parser, 'Forward-slash in opening tag not followed by >')\n parser.state = S.ATTRIB\n }\n continue\n\n case S.ATTRIB:\n // haven't read the attribute name yet.\n if (isWhitespace(c)) {\n continue\n } else if (c === '>') {\n openTag(parser)\n } else if (c === '/') {\n parser.state = S.OPEN_TAG_SLASH\n } else if (isMatch(nameStart, c)) {\n parser.attribName = c\n parser.attribValue = ''\n parser.state = S.ATTRIB_NAME\n } else {\n strictFail(parser, 'Invalid attribute name')\n }\n continue\n\n case S.ATTRIB_NAME:\n if (c === '=') {\n parser.state = S.ATTRIB_VALUE\n } else if (c === '>') {\n strictFail(parser, 'Attribute without value')\n parser.attribValue = parser.attribName\n attrib(parser)\n openTag(parser)\n } else if (isWhitespace(c)) {\n parser.state = S.ATTRIB_NAME_SAW_WHITE\n } else if (isMatch(nameBody, c)) {\n parser.attribName += c\n } else {\n strictFail(parser, 'Invalid attribute name')\n }\n continue\n\n case S.ATTRIB_NAME_SAW_WHITE:\n if (c === '=') {\n parser.state = S.ATTRIB_VALUE\n } else if (isWhitespace(c)) {\n continue\n } else {\n strictFail(parser, 'Attribute without value')\n parser.tag.attributes[parser.attribName] = ''\n parser.attribValue = ''\n emitNode(parser, 'onattribute', {\n name: parser.attribName,\n value: ''\n })\n parser.attribName = ''\n if (c === '>') {\n openTag(parser)\n } else if (isMatch(nameStart, c)) {\n parser.attribName = c\n parser.state = S.ATTRIB_NAME\n } else {\n strictFail(parser, 'Invalid attribute name')\n parser.state = S.ATTRIB\n }\n }\n continue\n\n case S.ATTRIB_VALUE:\n if (isWhitespace(c)) {\n continue\n } else if (isQuote(c)) {\n parser.q = c\n parser.state = S.ATTRIB_VALUE_QUOTED\n } else {\n strictFail(parser, 'Unquoted attribute value')\n parser.state = S.ATTRIB_VALUE_UNQUOTED\n parser.attribValue = c\n }\n continue\n\n case S.ATTRIB_VALUE_QUOTED:\n if (c !== parser.q) {\n if (c === '&') {\n parser.state = S.ATTRIB_VALUE_ENTITY_Q\n } else {\n parser.attribValue += c\n }\n continue\n }\n attrib(parser)\n parser.q = ''\n parser.state = S.ATTRIB_VALUE_CLOSED\n continue\n\n case S.ATTRIB_VALUE_CLOSED:\n if (isWhitespace(c)) {\n parser.state = S.ATTRIB\n } else if (c === '>') {\n openTag(parser)\n } else if (c === '/') {\n parser.state = S.OPEN_TAG_SLASH\n } else if (isMatch(nameStart, c)) {\n strictFail(parser, 'No whitespace between attributes')\n parser.attribName = c\n parser.attribValue = ''\n parser.state = S.ATTRIB_NAME\n } else {\n strictFail(parser, 'Invalid attribute name')\n }\n continue\n\n case S.ATTRIB_VALUE_UNQUOTED:\n if (!isAttribEnd(c)) {\n if (c === '&') {\n parser.state = S.ATTRIB_VALUE_ENTITY_U\n } else {\n parser.attribValue += c\n }\n continue\n }\n attrib(parser)\n if (c === '>') {\n openTag(parser)\n } else {\n parser.state = S.ATTRIB\n }\n continue\n\n case S.CLOSE_TAG:\n if (!parser.tagName) {\n if (isWhitespace(c)) {\n continue\n } else if (notMatch(nameStart, c)) {\n if (parser.script) {\n parser.script += '</' + c\n parser.state = S.SCRIPT\n } else {\n strictFail(parser, 'Invalid tagname in closing tag.')\n }\n } else {\n parser.tagName = c\n }\n } else if (c === '>') {\n closeTag(parser)\n } else if (isMatch(nameBody, c)) {\n parser.tagName += c\n } else if (parser.script) {\n parser.script += '</' + parser.tagName\n parser.tagName = ''\n parser.state = S.SCRIPT\n } else {\n if (!isWhitespace(c)) {\n strictFail(parser, 'Invalid tagname in closing tag')\n }\n parser.state = S.CLOSE_TAG_SAW_WHITE\n }\n continue\n\n case S.CLOSE_TAG_SAW_WHITE:\n if (isWhitespace(c)) {\n continue\n }\n if (c === '>') {\n closeTag(parser)\n } else {\n strictFail(parser, 'Invalid characters in closing tag')\n }\n continue\n\n case S.TEXT_ENTITY:\n case S.ATTRIB_VALUE_ENTITY_Q:\n case S.ATTRIB_VALUE_ENTITY_U:\n var returnState\n var buffer\n switch (parser.state) {\n case S.TEXT_ENTITY:\n returnState = S.TEXT\n buffer = 'textNode'\n break\n\n case S.ATTRIB_VALUE_ENTITY_Q:\n returnState = S.ATTRIB_VALUE_QUOTED\n buffer = 'attribValue'\n break\n\n case S.ATTRIB_VALUE_ENTITY_U:\n returnState = S.ATTRIB_VALUE_UNQUOTED\n buffer = 'attribValue'\n break\n }\n\n if (c === ';') {\n if (parser.opt.unparsedEntities) {\n var parsedEntity = parseEntity(parser)\n parser.entity = ''\n parser.state = returnState\n parser.write(parsedEntity)\n } else {\n parser[buffer] += parseEntity(parser)\n parser.entity = ''\n parser.state = returnState\n }\n } else if (isMatch(parser.entity.length ? entityBody : entityStart, c)) {\n parser.entity += c\n } else {\n strictFail(parser, 'Invalid character in entity name')\n parser[buffer] += '&' + parser.entity + c\n parser.entity = ''\n parser.state = returnState\n }\n\n continue\n\n default: /* istanbul ignore next */ {\n throw new Error(parser, 'Unknown state: ' + parser.state)\n }\n }\n } // while\n\n if (parser.position >= parser.bufferCheckPosition) {\n checkBufferLength(parser)\n }\n return parser\n }\n\n /*! http://mths.be/fromcodepoint v0.1.0 by @mathias */\n /* istanbul ignore next */\n if (!String.fromCodePoint) {\n (function () {\n var stringFromCharCode = String.fromCharCode\n var floor = Math.floor\n var fromCodePoint = function () {\n var MAX_SIZE = 0x4000\n var codeUnits = []\n var highSurrogate\n var lowSurrogate\n var index = -1\n var length = arguments.length\n if (!length) {\n return ''\n }\n var result = ''\n while (++index < length) {\n var codePoint = Number(arguments[index])\n if (\n !isFinite(codePoint) || // `NaN`, `+Infinity`, or `-Infinity`\n codePoint < 0 || // not a valid Unicode code point\n codePoint > 0x10FFFF || // not a valid Unicode code point\n floor(codePoint) !== codePoint // not an integer\n ) {\n throw RangeError('Invalid code point: ' + codePoint)\n }\n if (codePoint <= 0xFFFF) { // BMP code point\n codeUnits.push(codePoint)\n } else { // Astral code point; split in surrogate halves\n // http://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae\n codePoint -= 0x10000\n highSurrogate = (codePoint >> 10) + 0xD800\n lowSurrogate = (codePoint % 0x400) + 0xDC00\n codeUnits.push(highSurrogate, lowSurrogate)\n }\n if (index + 1 === length || codeUnits.length > MAX_SIZE) {\n result += stringFromCharCode.apply(null, codeUnits)\n codeUnits.length = 0\n }\n }\n return result\n }\n /* istanbul ignore next */\n if (Object.defineProperty) {\n Object.defineProperty(String, 'fromCodePoint', {\n value: fromCodePoint,\n configurable: true,\n writable: true\n })\n } else {\n String.fromCodePoint = fromCodePoint\n }\n }())\n }\n})(typeof exports === 'undefined' ? this.sax = {} : exports)\n","(function (global, undefined) {\n \"use strict\";\n\n if (global.setImmediate) {\n return;\n }\n\n var nextHandle = 1; // Spec says greater than zero\n var tasksByHandle = {};\n var currentlyRunningATask = false;\n var doc = global.document;\n var registerImmediate;\n\n function setImmediate(callback) {\n // Callback can either be a function or a string\n if (typeof callback !== \"function\") {\n callback = new Function(\"\" + callback);\n }\n // Copy function arguments\n var args = new Array(arguments.length - 1);\n for (var i = 0; i < args.length; i++) {\n args[i] = arguments[i + 1];\n }\n // Store and register the task\n var task = { callback: callback, args: args };\n tasksByHandle[nextHandle] = task;\n registerImmediate(nextHandle);\n return nextHandle++;\n }\n\n function clearImmediate(handle) {\n delete tasksByHandle[handle];\n }\n\n function run(task) {\n var callback = task.callback;\n var args = task.args;\n switch (args.length) {\n case 0:\n callback();\n break;\n case 1:\n callback(args[0]);\n break;\n case 2:\n callback(args[0], args[1]);\n break;\n case 3:\n callback(args[0], args[1], args[2]);\n break;\n default:\n callback.apply(undefined, args);\n break;\n }\n }\n\n function runIfPresent(handle) {\n // From the spec: \"Wait until any invocations of this algorithm started before this one have completed.\"\n // So if we're currently running a task, we'll need to delay this invocation.\n if (currentlyRunningATask) {\n // Delay by doing a setTimeout. setImmediate was tried instead, but in Firefox 7 it generated a\n // \"too much recursion\" error.\n setTimeout(runIfPresent, 0, handle);\n } else {\n var task = tasksByHandle[handle];\n if (task) {\n currentlyRunningATask = true;\n try {\n run(task);\n } finally {\n clearImmediate(handle);\n currentlyRunningATask = false;\n }\n }\n }\n }\n\n function installNextTickImplementation() {\n registerImmediate = function(handle) {\n process.nextTick(function () { runIfPresent(handle); });\n };\n }\n\n function canUsePostMessage() {\n // The test against `importScripts` prevents this implementation from being installed inside a web worker,\n // where `global.postMessage` means something completely different and can't be used for this purpose.\n if (global.postMessage && !global.importScripts) {\n var postMessageIsAsynchronous = true;\n var oldOnMessage = global.onmessage;\n global.onmessage = function() {\n postMessageIsAsynchronous = false;\n };\n global.postMessage(\"\", \"*\");\n global.onmessage = oldOnMessage;\n return postMessageIsAsynchronous;\n }\n }\n\n function installPostMessageImplementation() {\n // Installs an event handler on `global` for the `message` event: see\n // * https://developer.mozilla.org/en/DOM/window.postMessage\n // * http://www.whatwg.org/specs/web-apps/current-work/multipage/comms.html#crossDocumentMessages\n\n var messagePrefix = \"setImmediate$\" + Math.random() + \"$\";\n var onGlobalMessage = function(event) {\n if (event.source === global &&\n typeof event.data === \"string\" &&\n event.data.indexOf(messagePrefix) === 0) {\n runIfPresent(+event.data.slice(messagePrefix.length));\n }\n };\n\n if (global.addEventListener) {\n global.addEventListener(\"message\", onGlobalMessage, false);\n } else {\n global.attachEvent(\"onmessage\", onGlobalMessage);\n }\n\n registerImmediate = function(handle) {\n global.postMessage(messagePrefix + handle, \"*\");\n };\n }\n\n function installMessageChannelImplementation() {\n var channel = new MessageChannel();\n channel.port1.onmessage = function(event) {\n var handle = event.data;\n runIfPresent(handle);\n };\n\n registerImmediate = function(handle) {\n channel.port2.postMessage(handle);\n };\n }\n\n function installReadyStateChangeImplementation() {\n var html = doc.documentElement;\n registerImmediate = function(handle) {\n // Create a <script> element; its readystatechange event will be fired asynchronously once it is inserted\n // into the document. Do so, thus queuing up the task. Remember to clean up once it's been called.\n var script = doc.createElement(\"script\");\n script.onreadystatechange = function () {\n runIfPresent(handle);\n script.onreadystatechange = null;\n html.removeChild(script);\n script = null;\n };\n html.appendChild(script);\n };\n }\n\n function installSetTimeoutImplementation() {\n registerImmediate = function(handle) {\n setTimeout(runIfPresent, 0, handle);\n };\n }\n\n // If supported, we should attach to the prototype of global, since that is where setTimeout et al. live.\n var attachTo = Object.getPrototypeOf && Object.getPrototypeOf(global);\n attachTo = attachTo && attachTo.setTimeout ? attachTo : global;\n\n // Don't get fooled by e.g. browserify environments.\n if ({}.toString.call(global.process) === \"[object process]\") {\n // For Node.js before 0.9\n installNextTickImplementation();\n\n } else if (canUsePostMessage()) {\n // For non-IE10 modern browsers\n installPostMessageImplementation();\n\n } else if (global.MessageChannel) {\n // For web workers, where supported\n installMessageChannelImplementation();\n\n } else if (doc && \"onreadystatechange\" in doc.createElement(\"script\")) {\n // For IE 6–8\n installReadyStateChangeImplementation();\n\n } else {\n // For older browsers\n installSetTimeoutImplementation();\n }\n\n attachTo.setImmediate = setImmediate;\n attachTo.clearImmediate = clearImmediate;\n}(typeof self === \"undefined\" ? typeof global === \"undefined\" ? this : global : self));\n","// @flow\n\n/*::\ntype Options = {\n max?: number,\n min?: number,\n historyTimeConstant?: number,\n autostart?: boolean,\n ignoreSameProgress?: boolean,\n}\n*/\n\nfunction makeLowPassFilter(RC/*: number*/) {\n return function (previousOutput, input, dt) {\n const alpha = dt / (dt + RC);\n return previousOutput + alpha * (input - previousOutput);\n }\n}\n\nfunction def/*:: <T>*/(x/*: ?T*/, d/*: T*/)/*: T*/ {\n return (x === undefined || x === null) ? d : x;\n}\n\nfunction makeEta(options/*::?: Options */) {\n options = options || {};\n var max = def(options.max, 1);\n var min = def(options.min, 0);\n var autostart = def(options.autostart, true);\n var ignoreSameProgress = def(options.ignoreSameProgress, false);\n\n var rate/*: number | null */ = null;\n var lastTimestamp/*: number | null */ = null;\n var lastProgress/*: number | null */ = null;\n\n var filter = makeLowPassFilter(def(options.historyTimeConstant, 2.5));\n\n function start() {\n report(min);\n }\n\n function reset() {\n rate = null;\n lastTimestamp = null;\n lastProgress = null;\n if (autostart) {\n start();\n }\n }\n\n function report(progress /*: number */, timestamp/*::?: number */) {\n if (typeof timestamp !== 'number') {\n timestamp = Date.now();\n }\n\n if (lastTimestamp === timestamp) { return; }\n if (ignoreSameProgress && lastProgress === progress) { return; }\n\n if (lastTimestamp === null || lastProgress === null) {\n lastProgress = progress;\n lastTimestamp = timestamp;\n return;\n }\n\n var deltaProgress = progress - lastProgress;\n var deltaTimestamp = 0.001 * (timestamp - lastTimestamp);\n var currentRate = deltaProgress / deltaTimestamp;\n\n rate = rate === null\n ? currentRate\n : filter(rate, currentRate, deltaTimestamp);\n lastProgress = progress;\n lastTimestamp = timestamp;\n }\n\n function estimate(timestamp/*::?: number*/) {\n if (lastProgress === null) { return Infinity; }\n if (lastProgress >= max) { return 0; }\n if (rate === null) { return Infinity; }\n\n var estimatedTime = (max - lastProgress) / rate;\n if (typeof timestamp === 'number' && typeof lastTimestamp === 'number') {\n estimatedTime -= (timestamp - lastTimestamp) * 0.001;\n }\n return Math.max(0, estimatedTime);\n }\n\n function getRate() {\n return rate === null ? 0 : rate;\n }\n\n return {\n start: start,\n reset: reset,\n report: report,\n estimate: estimate,\n rate: getRate,\n }\n}\n\nmodule.exports = makeEta;\n","var scope = (typeof global !== \"undefined\" && global) ||\n (typeof self !== \"undefined\" && self) ||\n window;\nvar apply = Function.prototype.apply;\n\n// DOM APIs, for completeness\n\nexports.setTimeout = function() {\n return new Timeout(apply.call(setTimeout, scope, arguments), clearTimeout);\n};\nexports.setInterval = function() {\n return new Timeout(apply.call(setInterval, scope, arguments), clearInterval);\n};\nexports.clearTimeout =\nexports.clearInterval = function(timeout) {\n if (timeout) {\n timeout.close();\n }\n};\n\nfunction Timeout(id, clearFn) {\n this._id = id;\n this._clearFn = clearFn;\n}\nTimeout.prototype.unref = Timeout.prototype.ref = function() {};\nTimeout.prototype.close = function() {\n this._clearFn.call(scope, this._id);\n};\n\n// Does not start the time, just sets up the members needed.\nexports.enroll = function(item, msecs) {\n clearTimeout(item._idleTimeoutId);\n item._idleTimeout = msecs;\n};\n\nexports.unenroll = function(item) {\n clearTimeout(item._idleTimeoutId);\n item._idleTimeout = -1;\n};\n\nexports._unrefActive = exports.active = function(item) {\n clearTimeout(item._idleTimeoutId);\n\n var msecs = item._idleTimeout;\n if (msecs >= 0) {\n item._idleTimeoutId = setTimeout(function onTimeout() {\n if (item._onTimeout)\n item._onTimeout();\n }, msecs);\n }\n};\n\n// setimmediate attaches itself to the global object\nrequire(\"setimmediate\");\n// On some exotic environments, it's not clear which object `setimmediate` was\n// able to install onto. Search each possibility in the same order as the\n// `setimmediate` library.\nexports.setImmediate = (typeof self !== \"undefined\" && self.setImmediate) ||\n (typeof global !== \"undefined\" && global.setImmediate) ||\n (this && this.setImmediate);\nexports.clearImmediate = (typeof self !== \"undefined\" && self.clearImmediate) ||\n (typeof global !== \"undefined\" && global.clearImmediate) ||\n (this && this.clearImmediate);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n \"use strict\";\n exports.stripBOM = function(str) {\n if (str[0] === '\\uFEFF') {\n return str.substring(1);\n } else {\n return str;\n }\n };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n \"use strict\";\n var builder, defaults, escapeCDATA, requiresCDATA, wrapCDATA,\n hasProp = {}.hasOwnProperty;\n\n builder = require('xmlbuilder');\n\n defaults = require('./defaults').defaults;\n\n requiresCDATA = function(entry) {\n return typeof entry === \"string\" && (entry.indexOf('&') >= 0 || entry.indexOf('>') >= 0 || entry.indexOf('<') >= 0);\n };\n\n wrapCDATA = function(entry) {\n return \"<![CDATA[\" + (escapeCDATA(entry)) + \"]]>\";\n };\n\n escapeCDATA = function(entry) {\n return entry.replace(']]>', ']]]]><![CDATA[>');\n };\n\n exports.Builder = (function() {\n function Builder(opts) {\n var key, ref, value;\n this.options = {};\n ref = defaults[\"0.2\"];\n for (key in ref) {\n if (!hasProp.call(ref, key)) continue;\n value = ref[key];\n this.options[key] = value;\n }\n for (key in opts) {\n if (!hasProp.call(opts, key)) continue;\n value = opts[key];\n this.options[key] = value;\n }\n }\n\n Builder.prototype.buildObject = function(rootObj) {\n var attrkey, charkey, render, rootElement, rootName;\n attrkey = this.options.attrkey;\n charkey = this.options.charkey;\n if ((Object.keys(rootObj).length === 1) && (this.options.rootName === defaults['0.2'].rootName)) {\n rootName = Object.keys(rootObj)[0];\n rootObj = rootObj[rootName];\n } else {\n rootName = this.options.rootName;\n }\n render = (function(_this) {\n return function(element, obj) {\n var attr, child, entry, index, key, value;\n if (typeof obj !== 'object') {\n if (_this.options.cdata && requiresCDATA(obj)) {\n element.raw(wrapCDATA(obj));\n } else {\n element.txt(obj);\n }\n } else if (Array.isArray(obj)) {\n for (index in obj) {\n if (!hasProp.call(obj, index)) continue;\n child = obj[index];\n for (key in child) {\n entry = child[key];\n element = render(element.ele(key), entry).up();\n }\n }\n } else {\n for (key in obj) {\n if (!hasProp.call(obj, key)) continue;\n child = obj[key];\n if (key === attrkey) {\n if (typeof child === \"object\") {\n for (attr in child) {\n value = child[attr];\n element = element.att(attr, value);\n }\n }\n } else if (key === charkey) {\n if (_this.options.cdata && requiresCDATA(child)) {\n element = element.raw(wrapCDATA(child));\n } else {\n element = element.txt(child);\n }\n } else if (Array.isArray(child)) {\n for (index in child) {\n if (!hasProp.call(child, index)) continue;\n entry = child[index];\n if (typeof entry === 'string') {\n if (_this.options.cdata && requiresCDATA(entry)) {\n element = element.ele(key).raw(wrapCDATA(entry)).up();\n } else {\n element = element.ele(key, entry).up();\n }\n } else {\n element = render(element.ele(key), entry).up();\n }\n }\n } else if (typeof child === \"object\") {\n element = render(element.ele(key), child).up();\n } else {\n if (typeof child === 'string' && _this.options.cdata && requiresCDATA(child)) {\n element = element.ele(key).raw(wrapCDATA(child)).up();\n } else {\n if (child == null) {\n child = '';\n }\n element = element.ele(key, child.toString()).up();\n }\n }\n }\n }\n return element;\n };\n })(this);\n rootElement = builder.create(rootName, this.options.xmldec, this.options.doctype, {\n headless: this.options.headless,\n allowSurrogateChars: this.options.allowSurrogateChars\n });\n return render(rootElement, rootObj).end(this.options.renderOpts);\n };\n\n return Builder;\n\n })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n exports.defaults = {\n \"0.1\": {\n explicitCharkey: false,\n trim: true,\n normalize: true,\n normalizeTags: false,\n attrkey: \"@\",\n charkey: \"#\",\n explicitArray: false,\n ignoreAttrs: false,\n mergeAttrs: false,\n explicitRoot: false,\n validator: null,\n xmlns: false,\n explicitChildren: false,\n childkey: '@@',\n charsAsChildren: false,\n includeWhiteChars: false,\n async: false,\n strict: true,\n attrNameProcessors: null,\n attrValueProcessors: null,\n tagNameProcessors: null,\n valueProcessors: null,\n emptyTag: ''\n },\n \"0.2\": {\n explicitCharkey: false,\n trim: false,\n normalize: false,\n normalizeTags: false,\n attrkey: \"$\",\n charkey: \"_\",\n explicitArray: true,\n ignoreAttrs: false,\n mergeAttrs: false,\n explicitRoot: true,\n validator: null,\n xmlns: false,\n explicitChildren: false,\n preserveChildrenOrder: false,\n childkey: '$$',\n charsAsChildren: false,\n includeWhiteChars: false,\n async: false,\n strict: true,\n attrNameProcessors: null,\n attrValueProcessors: null,\n tagNameProcessors: null,\n valueProcessors: null,\n rootName: 'root',\n xmldec: {\n 'version': '1.0',\n 'encoding': 'UTF-8',\n 'standalone': true\n },\n doctype: null,\n renderOpts: {\n 'pretty': true,\n 'indent': ' ',\n 'newline': '\\n'\n },\n headless: false,\n chunkSize: 10000,\n emptyTag: '',\n cdata: false\n }\n };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n \"use strict\";\n var bom, defaults, defineProperty, events, isEmpty, processItem, processors, sax, setImmediate,\n bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; },\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n sax = require('sax');\n\n events = require('events');\n\n bom = require('./bom');\n\n processors = require('./processors');\n\n setImmediate = require('timers').setImmediate;\n\n defaults = require('./defaults').defaults;\n\n isEmpty = function(thing) {\n return typeof thing === \"object\" && (thing != null) && Object.keys(thing).length === 0;\n };\n\n processItem = function(processors, item, key) {\n var i, len, process;\n for (i = 0, len = processors.length; i < len; i++) {\n process = processors[i];\n item = process(item, key);\n }\n return item;\n };\n\n defineProperty = function(obj, key, value) {\n var descriptor;\n descriptor = Object.create(null);\n descriptor.value = value;\n descriptor.writable = true;\n descriptor.enumerable = true;\n descriptor.configurable = true;\n return Object.defineProperty(obj, key, descriptor);\n };\n\n exports.Parser = (function(superClass) {\n extend(Parser, superClass);\n\n function Parser(opts) {\n this.parseStringPromise = bind(this.parseStringPromise, this);\n this.parseString = bind(this.parseString, this);\n this.reset = bind(this.reset, this);\n this.assignOrPush = bind(this.assignOrPush, this);\n this.processAsync = bind(this.processAsync, this);\n var key, ref, value;\n if (!(this instanceof exports.Parser)) {\n return new exports.Parser(opts);\n }\n this.options = {};\n ref = defaults[\"0.2\"];\n for (key in ref) {\n if (!hasProp.call(ref, key)) continue;\n value = ref[key];\n this.options[key] = value;\n }\n for (key in opts) {\n if (!hasProp.call(opts, key)) continue;\n value = opts[key];\n this.options[key] = value;\n }\n if (this.options.xmlns) {\n this.options.xmlnskey = this.options.attrkey + \"ns\";\n }\n if (this.options.normalizeTags) {\n if (!this.options.tagNameProcessors) {\n this.options.tagNameProcessors = [];\n }\n this.options.tagNameProcessors.unshift(processors.normalize);\n }\n this.reset();\n }\n\n Parser.prototype.processAsync = function() {\n var chunk, err;\n try {\n if (this.remaining.length <= this.options.chunkSize) {\n chunk = this.remaining;\n this.remaining = '';\n this.saxParser = this.saxParser.write(chunk);\n return this.saxParser.close();\n } else {\n chunk = this.remaining.substr(0, this.options.chunkSize);\n this.remaining = this.remaining.substr(this.options.chunkSize, this.remaining.length);\n this.saxParser = this.saxParser.write(chunk);\n return setImmediate(this.processAsync);\n }\n } catch (error1) {\n err = error1;\n if (!this.saxParser.errThrown) {\n this.saxParser.errThrown = true;\n return this.emit(err);\n }\n }\n };\n\n Parser.prototype.assignOrPush = function(obj, key, newValue) {\n if (!(key in obj)) {\n if (!this.options.explicitArray) {\n return defineProperty(obj, key, newValue);\n } else {\n return defineProperty(obj, key, [newValue]);\n }\n } else {\n if (!(obj[key] instanceof Array)) {\n defineProperty(obj, key, [obj[key]]);\n }\n return obj[key].push(newValue);\n }\n };\n\n Parser.prototype.reset = function() {\n var attrkey, charkey, ontext, stack;\n this.removeAllListeners();\n this.saxParser = sax.parser(this.options.strict, {\n trim: false,\n normalize: false,\n xmlns: this.options.xmlns\n });\n this.saxParser.errThrown = false;\n this.saxParser.onerror = (function(_this) {\n return function(error) {\n _this.saxParser.resume();\n if (!_this.saxParser.errThrown) {\n _this.saxParser.errThrown = true;\n return _this.emit(\"error\", error);\n }\n };\n })(this);\n this.saxParser.onend = (function(_this) {\n return function() {\n if (!_this.saxParser.ended) {\n _this.saxParser.ended = true;\n return _this.emit(\"end\", _this.resultObject);\n }\n };\n })(this);\n this.saxParser.ended = false;\n this.EXPLICIT_CHARKEY = this.options.explicitCharkey;\n this.resultObject = null;\n stack = [];\n attrkey = this.options.attrkey;\n charkey = this.options.charkey;\n this.saxParser.onopentag = (function(_this) {\n return function(node) {\n var key, newValue, obj, processedKey, ref;\n obj = {};\n obj[charkey] = \"\";\n if (!_this.options.ignoreAttrs) {\n ref = node.attributes;\n for (key in ref) {\n if (!hasProp.call(ref, key)) continue;\n if (!(attrkey in obj) && !_this.options.mergeAttrs) {\n obj[attrkey] = {};\n }\n newValue = _this.options.attrValueProcessors ? processItem(_this.options.attrValueProcessors, node.attributes[key], key) : node.attributes[key];\n processedKey = _this.options.attrNameProcessors ? processItem(_this.options.attrNameProcessors, key) : key;\n if (_this.options.mergeAttrs) {\n _this.assignOrPush(obj, processedKey, newValue);\n } else {\n defineProperty(obj[attrkey], processedKey, newValue);\n }\n }\n }\n obj[\"#name\"] = _this.options.tagNameProcessors ? processItem(_this.options.tagNameProcessors, node.name) : node.name;\n if (_this.options.xmlns) {\n obj[_this.options.xmlnskey] = {\n uri: node.uri,\n local: node.local\n };\n }\n return stack.push(obj);\n };\n })(this);\n this.saxParser.onclosetag = (function(_this) {\n return function() {\n var cdata, emptyStr, key, node, nodeName, obj, objClone, old, s, xpath;\n obj = stack.pop();\n nodeName = obj[\"#name\"];\n if (!_this.options.explicitChildren || !_this.options.preserveChildrenOrder) {\n delete obj[\"#name\"];\n }\n if (obj.cdata === true) {\n cdata = obj.cdata;\n delete obj.cdata;\n }\n s = stack[stack.length - 1];\n if (obj[charkey].match(/^\\s*$/) && !cdata) {\n emptyStr = obj[charkey];\n delete obj[charkey];\n } else {\n if (_this.options.trim) {\n obj[charkey] = obj[charkey].trim();\n }\n if (_this.options.normalize) {\n obj[charkey] = obj[charkey].replace(/\\s{2,}/g, \" \").trim();\n }\n obj[charkey] = _this.options.valueProcessors ? processItem(_this.options.valueProcessors, obj[charkey], nodeName) : obj[charkey];\n if (Object.keys(obj).length === 1 && charkey in obj && !_this.EXPLICIT_CHARKEY) {\n obj = obj[charkey];\n }\n }\n if (isEmpty(obj)) {\n if (typeof _this.options.emptyTag === 'function') {\n obj = _this.options.emptyTag();\n } else {\n obj = _this.options.emptyTag !== '' ? _this.options.emptyTag : emptyStr;\n }\n }\n if (_this.options.validator != null) {\n xpath = \"/\" + ((function() {\n var i, len, results;\n results = [];\n for (i = 0, len = stack.length; i < len; i++) {\n node = stack[i];\n results.push(node[\"#name\"]);\n }\n return results;\n })()).concat(nodeName).join(\"/\");\n (function() {\n var err;\n try {\n return obj = _this.options.validator(xpath, s && s[nodeName], obj);\n } catch (error1) {\n err = error1;\n return _this.emit(\"error\", err);\n }\n })();\n }\n if (_this.options.explicitChildren && !_this.options.mergeAttrs && typeof obj === 'object') {\n if (!_this.options.preserveChildrenOrder) {\n node = {};\n if (_this.options.attrkey in obj) {\n node[_this.options.attrkey] = obj[_this.options.attrkey];\n delete obj[_this.options.attrkey];\n }\n if (!_this.options.charsAsChildren && _this.options.charkey in obj) {\n node[_this.options.charkey] = obj[_this.options.charkey];\n delete obj[_this.options.charkey];\n }\n if (Object.getOwnPropertyNames(obj).length > 0) {\n node[_this.options.childkey] = obj;\n }\n obj = node;\n } else if (s) {\n s[_this.options.childkey] = s[_this.options.childkey] || [];\n objClone = {};\n for (key in obj) {\n if (!hasProp.call(obj, key)) continue;\n defineProperty(objClone, key, obj[key]);\n }\n s[_this.options.childkey].push(objClone);\n delete obj[\"#name\"];\n if (Object.keys(obj).length === 1 && charkey in obj && !_this.EXPLICIT_CHARKEY) {\n obj = obj[charkey];\n }\n }\n }\n if (stack.length > 0) {\n return _this.assignOrPush(s, nodeName, obj);\n } else {\n if (_this.options.explicitRoot) {\n old = obj;\n obj = {};\n defineProperty(obj, nodeName, old);\n }\n _this.resultObject = obj;\n _this.saxParser.ended = true;\n return _this.emit(\"end\", _this.resultObject);\n }\n };\n })(this);\n ontext = (function(_this) {\n return function(text) {\n var charChild, s;\n s = stack[stack.length - 1];\n if (s) {\n s[charkey] += text;\n if (_this.options.explicitChildren && _this.options.preserveChildrenOrder && _this.options.charsAsChildren && (_this.options.includeWhiteChars || text.replace(/\\\\n/g, '').trim() !== '')) {\n s[_this.options.childkey] = s[_this.options.childkey] || [];\n charChild = {\n '#name': '__text__'\n };\n charChild[charkey] = text;\n if (_this.options.normalize) {\n charChild[charkey] = charChild[charkey].replace(/\\s{2,}/g, \" \").trim();\n }\n s[_this.options.childkey].push(charChild);\n }\n return s;\n }\n };\n })(this);\n this.saxParser.ontext = ontext;\n return this.saxParser.oncdata = (function(_this) {\n return function(text) {\n var s;\n s = ontext(text);\n if (s) {\n return s.cdata = true;\n }\n };\n })(this);\n };\n\n Parser.prototype.parseString = function(str, cb) {\n var err;\n if ((cb != null) && typeof cb === \"function\") {\n this.on(\"end\", function(result) {\n this.reset();\n return cb(null, result);\n });\n this.on(\"error\", function(err) {\n this.reset();\n return cb(err);\n });\n }\n try {\n str = str.toString();\n if (str.trim() === '') {\n this.emit(\"end\", null);\n return true;\n }\n str = bom.stripBOM(str);\n if (this.options.async) {\n this.remaining = str;\n setImmediate(this.processAsync);\n return this.saxParser;\n }\n return this.saxParser.write(str).close();\n } catch (error1) {\n err = error1;\n if (!(this.saxParser.errThrown || this.saxParser.ended)) {\n this.emit('error', err);\n return this.saxParser.errThrown = true;\n } else if (this.saxParser.ended) {\n throw err;\n }\n }\n };\n\n Parser.prototype.parseStringPromise = function(str) {\n return new Promise((function(_this) {\n return function(resolve, reject) {\n return _this.parseString(str, function(err, value) {\n if (err) {\n return reject(err);\n } else {\n return resolve(value);\n }\n });\n };\n })(this));\n };\n\n return Parser;\n\n })(events);\n\n exports.parseString = function(str, a, b) {\n var cb, options, parser;\n if (b != null) {\n if (typeof b === 'function') {\n cb = b;\n }\n if (typeof a === 'object') {\n options = a;\n }\n } else {\n if (typeof a === 'function') {\n cb = a;\n }\n options = {};\n }\n parser = new exports.Parser(options);\n return parser.parseString(str, cb);\n };\n\n exports.parseStringPromise = function(str, a) {\n var options, parser;\n if (typeof a === 'object') {\n options = a;\n }\n parser = new exports.Parser(options);\n return parser.parseStringPromise(str);\n };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n \"use strict\";\n var prefixMatch;\n\n prefixMatch = new RegExp(/(?!xmlns)^.*:/);\n\n exports.normalize = function(str) {\n return str.toLowerCase();\n };\n\n exports.firstCharLowerCase = function(str) {\n return str.charAt(0).toLowerCase() + str.slice(1);\n };\n\n exports.stripPrefix = function(str) {\n return str.replace(prefixMatch, '');\n };\n\n exports.parseNumbers = function(str) {\n if (!isNaN(str)) {\n str = str % 1 === 0 ? parseInt(str, 10) : parseFloat(str);\n }\n return str;\n };\n\n exports.parseBooleans = function(str) {\n if (/^(?:true|false)$/i.test(str)) {\n str = str.toLowerCase() === 'true';\n }\n return str;\n };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n \"use strict\";\n var builder, defaults, parser, processors,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n defaults = require('./defaults');\n\n builder = require('./builder');\n\n parser = require('./parser');\n\n processors = require('./processors');\n\n exports.defaults = defaults.defaults;\n\n exports.processors = processors;\n\n exports.ValidationError = (function(superClass) {\n extend(ValidationError, superClass);\n\n function ValidationError(message) {\n this.message = message;\n }\n\n return ValidationError;\n\n })(Error);\n\n exports.Builder = builder.Builder;\n\n exports.Parser = parser.Parser;\n\n exports.parseString = parser.parseString;\n\n exports.parseStringPromise = parser.parseStringPromise;\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n module.exports = {\n Disconnected: 1,\n Preceding: 2,\n Following: 4,\n Contains: 8,\n ContainedBy: 16,\n ImplementationSpecific: 32\n };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n module.exports = {\n Element: 1,\n Attribute: 2,\n Text: 3,\n CData: 4,\n EntityReference: 5,\n EntityDeclaration: 6,\n ProcessingInstruction: 7,\n Comment: 8,\n Document: 9,\n DocType: 10,\n DocumentFragment: 11,\n NotationDeclaration: 12,\n Declaration: 201,\n Raw: 202,\n AttributeDeclaration: 203,\n ElementDeclaration: 204,\n Dummy: 205\n };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var assign, getValue, isArray, isEmpty, isFunction, isObject, isPlainObject,\n slice = [].slice,\n hasProp = {}.hasOwnProperty;\n\n assign = function() {\n var i, key, len, source, sources, target;\n target = arguments[0], sources = 2 <= arguments.length ? slice.call(arguments, 1) : [];\n if (isFunction(Object.assign)) {\n Object.assign.apply(null, arguments);\n } else {\n for (i = 0, len = sources.length; i < len; i++) {\n source = sources[i];\n if (source != null) {\n for (key in source) {\n if (!hasProp.call(source, key)) continue;\n target[key] = source[key];\n }\n }\n }\n }\n return target;\n };\n\n isFunction = function(val) {\n return !!val && Object.prototype.toString.call(val) === '[object Function]';\n };\n\n isObject = function(val) {\n var ref;\n return !!val && ((ref = typeof val) === 'function' || ref === 'object');\n };\n\n isArray = function(val) {\n if (isFunction(Array.isArray)) {\n return Array.isArray(val);\n } else {\n return Object.prototype.toString.call(val) === '[object Array]';\n }\n };\n\n isEmpty = function(val) {\n var key;\n if (isArray(val)) {\n return !val.length;\n } else {\n for (key in val) {\n if (!hasProp.call(val, key)) continue;\n return false;\n }\n return true;\n }\n };\n\n isPlainObject = function(val) {\n var ctor, proto;\n return isObject(val) && (proto = Object.getPrototypeOf(val)) && (ctor = proto.constructor) && (typeof ctor === 'function') && (ctor instanceof ctor) && (Function.prototype.toString.call(ctor) === Function.prototype.toString.call(Object));\n };\n\n getValue = function(obj) {\n if (isFunction(obj.valueOf)) {\n return obj.valueOf();\n } else {\n return obj;\n }\n };\n\n module.exports.assign = assign;\n\n module.exports.isFunction = isFunction;\n\n module.exports.isObject = isObject;\n\n module.exports.isArray = isArray;\n\n module.exports.isEmpty = isEmpty;\n\n module.exports.isPlainObject = isPlainObject;\n\n module.exports.getValue = getValue;\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n module.exports = {\n None: 0,\n OpenTag: 1,\n InsideTag: 2,\n CloseTag: 3\n };\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLAttribute, XMLNode;\n\n NodeType = require('./NodeType');\n\n XMLNode = require('./XMLNode');\n\n module.exports = XMLAttribute = (function() {\n function XMLAttribute(parent, name, value) {\n this.parent = parent;\n if (this.parent) {\n this.options = this.parent.options;\n this.stringify = this.parent.stringify;\n }\n if (name == null) {\n throw new Error(\"Missing attribute name. \" + this.debugInfo(name));\n }\n this.name = this.stringify.name(name);\n this.value = this.stringify.attValue(value);\n this.type = NodeType.Attribute;\n this.isId = false;\n this.schemaTypeInfo = null;\n }\n\n Object.defineProperty(XMLAttribute.prototype, 'nodeType', {\n get: function() {\n return this.type;\n }\n });\n\n Object.defineProperty(XMLAttribute.prototype, 'ownerElement', {\n get: function() {\n return this.parent;\n }\n });\n\n Object.defineProperty(XMLAttribute.prototype, 'textContent', {\n get: function() {\n return this.value;\n },\n set: function(value) {\n return this.value = value || '';\n }\n });\n\n Object.defineProperty(XMLAttribute.prototype, 'namespaceURI', {\n get: function() {\n return '';\n }\n });\n\n Object.defineProperty(XMLAttribute.prototype, 'prefix', {\n get: function() {\n return '';\n }\n });\n\n Object.defineProperty(XMLAttribute.prototype, 'localName', {\n get: function() {\n return this.name;\n }\n });\n\n Object.defineProperty(XMLAttribute.prototype, 'specified', {\n get: function() {\n return true;\n }\n });\n\n XMLAttribute.prototype.clone = function() {\n return Object.create(this);\n };\n\n XMLAttribute.prototype.toString = function(options) {\n return this.options.writer.attribute(this, this.options.writer.filterOptions(options));\n };\n\n XMLAttribute.prototype.debugInfo = function(name) {\n name = name || this.name;\n if (name == null) {\n return \"parent: <\" + this.parent.name + \">\";\n } else {\n return \"attribute: {\" + name + \"}, parent: <\" + this.parent.name + \">\";\n }\n };\n\n XMLAttribute.prototype.isEqualNode = function(node) {\n if (node.namespaceURI !== this.namespaceURI) {\n return false;\n }\n if (node.prefix !== this.prefix) {\n return false;\n }\n if (node.localName !== this.localName) {\n return false;\n }\n if (node.value !== this.value) {\n return false;\n }\n return true;\n };\n\n return XMLAttribute;\n\n })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLCData, XMLCharacterData,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n NodeType = require('./NodeType');\n\n XMLCharacterData = require('./XMLCharacterData');\n\n module.exports = XMLCData = (function(superClass) {\n extend(XMLCData, superClass);\n\n function XMLCData(parent, text) {\n XMLCData.__super__.constructor.call(this, parent);\n if (text == null) {\n throw new Error(\"Missing CDATA text. \" + this.debugInfo());\n }\n this.name = \"#cdata-section\";\n this.type = NodeType.CData;\n this.value = this.stringify.cdata(text);\n }\n\n XMLCData.prototype.clone = function() {\n return Object.create(this);\n };\n\n XMLCData.prototype.toString = function(options) {\n return this.options.writer.cdata(this, this.options.writer.filterOptions(options));\n };\n\n return XMLCData;\n\n })(XMLCharacterData);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var XMLCharacterData, XMLNode,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n XMLNode = require('./XMLNode');\n\n module.exports = XMLCharacterData = (function(superClass) {\n extend(XMLCharacterData, superClass);\n\n function XMLCharacterData(parent) {\n XMLCharacterData.__super__.constructor.call(this, parent);\n this.value = '';\n }\n\n Object.defineProperty(XMLCharacterData.prototype, 'data', {\n get: function() {\n return this.value;\n },\n set: function(value) {\n return this.value = value || '';\n }\n });\n\n Object.defineProperty(XMLCharacterData.prototype, 'length', {\n get: function() {\n return this.value.length;\n }\n });\n\n Object.defineProperty(XMLCharacterData.prototype, 'textContent', {\n get: function() {\n return this.value;\n },\n set: function(value) {\n return this.value = value || '';\n }\n });\n\n XMLCharacterData.prototype.clone = function() {\n return Object.create(this);\n };\n\n XMLCharacterData.prototype.substringData = function(offset, count) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLCharacterData.prototype.appendData = function(arg) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLCharacterData.prototype.insertData = function(offset, arg) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLCharacterData.prototype.deleteData = function(offset, count) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLCharacterData.prototype.replaceData = function(offset, count, arg) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLCharacterData.prototype.isEqualNode = function(node) {\n if (!XMLCharacterData.__super__.isEqualNode.apply(this, arguments).isEqualNode(node)) {\n return false;\n }\n if (node.data !== this.data) {\n return false;\n }\n return true;\n };\n\n return XMLCharacterData;\n\n })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLCharacterData, XMLComment,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n NodeType = require('./NodeType');\n\n XMLCharacterData = require('./XMLCharacterData');\n\n module.exports = XMLComment = (function(superClass) {\n extend(XMLComment, superClass);\n\n function XMLComment(parent, text) {\n XMLComment.__super__.constructor.call(this, parent);\n if (text == null) {\n throw new Error(\"Missing comment text. \" + this.debugInfo());\n }\n this.name = \"#comment\";\n this.type = NodeType.Comment;\n this.value = this.stringify.comment(text);\n }\n\n XMLComment.prototype.clone = function() {\n return Object.create(this);\n };\n\n XMLComment.prototype.toString = function(options) {\n return this.options.writer.comment(this, this.options.writer.filterOptions(options));\n };\n\n return XMLComment;\n\n })(XMLCharacterData);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var XMLDOMConfiguration, XMLDOMErrorHandler, XMLDOMStringList;\n\n XMLDOMErrorHandler = require('./XMLDOMErrorHandler');\n\n XMLDOMStringList = require('./XMLDOMStringList');\n\n module.exports = XMLDOMConfiguration = (function() {\n function XMLDOMConfiguration() {\n var clonedSelf;\n this.defaultParams = {\n \"canonical-form\": false,\n \"cdata-sections\": false,\n \"comments\": false,\n \"datatype-normalization\": false,\n \"element-content-whitespace\": true,\n \"entities\": true,\n \"error-handler\": new XMLDOMErrorHandler(),\n \"infoset\": true,\n \"validate-if-schema\": false,\n \"namespaces\": true,\n \"namespace-declarations\": true,\n \"normalize-characters\": false,\n \"schema-location\": '',\n \"schema-type\": '',\n \"split-cdata-sections\": true,\n \"validate\": false,\n \"well-formed\": true\n };\n this.params = clonedSelf = Object.create(this.defaultParams);\n }\n\n Object.defineProperty(XMLDOMConfiguration.prototype, 'parameterNames', {\n get: function() {\n return new XMLDOMStringList(Object.keys(this.defaultParams));\n }\n });\n\n XMLDOMConfiguration.prototype.getParameter = function(name) {\n if (this.params.hasOwnProperty(name)) {\n return this.params[name];\n } else {\n return null;\n }\n };\n\n XMLDOMConfiguration.prototype.canSetParameter = function(name, value) {\n return true;\n };\n\n XMLDOMConfiguration.prototype.setParameter = function(name, value) {\n if (value != null) {\n return this.params[name] = value;\n } else {\n return delete this.params[name];\n }\n };\n\n return XMLDOMConfiguration;\n\n })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var XMLDOMErrorHandler;\n\n module.exports = XMLDOMErrorHandler = (function() {\n function XMLDOMErrorHandler() {}\n\n XMLDOMErrorHandler.prototype.handleError = function(error) {\n throw new Error(error);\n };\n\n return XMLDOMErrorHandler;\n\n })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var XMLDOMImplementation;\n\n module.exports = XMLDOMImplementation = (function() {\n function XMLDOMImplementation() {}\n\n XMLDOMImplementation.prototype.hasFeature = function(feature, version) {\n return true;\n };\n\n XMLDOMImplementation.prototype.createDocumentType = function(qualifiedName, publicId, systemId) {\n throw new Error(\"This DOM method is not implemented.\");\n };\n\n XMLDOMImplementation.prototype.createDocument = function(namespaceURI, qualifiedName, doctype) {\n throw new Error(\"This DOM method is not implemented.\");\n };\n\n XMLDOMImplementation.prototype.createHTMLDocument = function(title) {\n throw new Error(\"This DOM method is not implemented.\");\n };\n\n XMLDOMImplementation.prototype.getFeature = function(feature, version) {\n throw new Error(\"This DOM method is not implemented.\");\n };\n\n return XMLDOMImplementation;\n\n })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var XMLDOMStringList;\n\n module.exports = XMLDOMStringList = (function() {\n function XMLDOMStringList(arr) {\n this.arr = arr || [];\n }\n\n Object.defineProperty(XMLDOMStringList.prototype, 'length', {\n get: function() {\n return this.arr.length;\n }\n });\n\n XMLDOMStringList.prototype.item = function(index) {\n return this.arr[index] || null;\n };\n\n XMLDOMStringList.prototype.contains = function(str) {\n return this.arr.indexOf(str) !== -1;\n };\n\n return XMLDOMStringList;\n\n })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLDTDAttList, XMLNode,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n XMLNode = require('./XMLNode');\n\n NodeType = require('./NodeType');\n\n module.exports = XMLDTDAttList = (function(superClass) {\n extend(XMLDTDAttList, superClass);\n\n function XMLDTDAttList(parent, elementName, attributeName, attributeType, defaultValueType, defaultValue) {\n XMLDTDAttList.__super__.constructor.call(this, parent);\n if (elementName == null) {\n throw new Error(\"Missing DTD element name. \" + this.debugInfo());\n }\n if (attributeName == null) {\n throw new Error(\"Missing DTD attribute name. \" + this.debugInfo(elementName));\n }\n if (!attributeType) {\n throw new Error(\"Missing DTD attribute type. \" + this.debugInfo(elementName));\n }\n if (!defaultValueType) {\n throw new Error(\"Missing DTD attribute default. \" + this.debugInfo(elementName));\n }\n if (defaultValueType.indexOf('#') !== 0) {\n defaultValueType = '#' + defaultValueType;\n }\n if (!defaultValueType.match(/^(#REQUIRED|#IMPLIED|#FIXED|#DEFAULT)$/)) {\n throw new Error(\"Invalid default value type; expected: #REQUIRED, #IMPLIED, #FIXED or #DEFAULT. \" + this.debugInfo(elementName));\n }\n if (defaultValue && !defaultValueType.match(/^(#FIXED|#DEFAULT)$/)) {\n throw new Error(\"Default value only applies to #FIXED or #DEFAULT. \" + this.debugInfo(elementName));\n }\n this.elementName = this.stringify.name(elementName);\n this.type = NodeType.AttributeDeclaration;\n this.attributeName = this.stringify.name(attributeName);\n this.attributeType = this.stringify.dtdAttType(attributeType);\n if (defaultValue) {\n this.defaultValue = this.stringify.dtdAttDefault(defaultValue);\n }\n this.defaultValueType = defaultValueType;\n }\n\n XMLDTDAttList.prototype.toString = function(options) {\n return this.options.writer.dtdAttList(this, this.options.writer.filterOptions(options));\n };\n\n return XMLDTDAttList;\n\n })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLDTDElement, XMLNode,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n XMLNode = require('./XMLNode');\n\n NodeType = require('./NodeType');\n\n module.exports = XMLDTDElement = (function(superClass) {\n extend(XMLDTDElement, superClass);\n\n function XMLDTDElement(parent, name, value) {\n XMLDTDElement.__super__.constructor.call(this, parent);\n if (name == null) {\n throw new Error(\"Missing DTD element name. \" + this.debugInfo());\n }\n if (!value) {\n value = '(#PCDATA)';\n }\n if (Array.isArray(value)) {\n value = '(' + value.join(',') + ')';\n }\n this.name = this.stringify.name(name);\n this.type = NodeType.ElementDeclaration;\n this.value = this.stringify.dtdElementValue(value);\n }\n\n XMLDTDElement.prototype.toString = function(options) {\n return this.options.writer.dtdElement(this, this.options.writer.filterOptions(options));\n };\n\n return XMLDTDElement;\n\n })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLDTDEntity, XMLNode, isObject,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n isObject = require('./Utility').isObject;\n\n XMLNode = require('./XMLNode');\n\n NodeType = require('./NodeType');\n\n module.exports = XMLDTDEntity = (function(superClass) {\n extend(XMLDTDEntity, superClass);\n\n function XMLDTDEntity(parent, pe, name, value) {\n XMLDTDEntity.__super__.constructor.call(this, parent);\n if (name == null) {\n throw new Error(\"Missing DTD entity name. \" + this.debugInfo(name));\n }\n if (value == null) {\n throw new Error(\"Missing DTD entity value. \" + this.debugInfo(name));\n }\n this.pe = !!pe;\n this.name = this.stringify.name(name);\n this.type = NodeType.EntityDeclaration;\n if (!isObject(value)) {\n this.value = this.stringify.dtdEntityValue(value);\n this.internal = true;\n } else {\n if (!value.pubID && !value.sysID) {\n throw new Error(\"Public and/or system identifiers are required for an external entity. \" + this.debugInfo(name));\n }\n if (value.pubID && !value.sysID) {\n throw new Error(\"System identifier is required for a public external entity. \" + this.debugInfo(name));\n }\n this.internal = false;\n if (value.pubID != null) {\n this.pubID = this.stringify.dtdPubID(value.pubID);\n }\n if (value.sysID != null) {\n this.sysID = this.stringify.dtdSysID(value.sysID);\n }\n if (value.nData != null) {\n this.nData = this.stringify.dtdNData(value.nData);\n }\n if (this.pe && this.nData) {\n throw new Error(\"Notation declaration is not allowed in a parameter entity. \" + this.debugInfo(name));\n }\n }\n }\n\n Object.defineProperty(XMLDTDEntity.prototype, 'publicId', {\n get: function() {\n return this.pubID;\n }\n });\n\n Object.defineProperty(XMLDTDEntity.prototype, 'systemId', {\n get: function() {\n return this.sysID;\n }\n });\n\n Object.defineProperty(XMLDTDEntity.prototype, 'notationName', {\n get: function() {\n return this.nData || null;\n }\n });\n\n Object.defineProperty(XMLDTDEntity.prototype, 'inputEncoding', {\n get: function() {\n return null;\n }\n });\n\n Object.defineProperty(XMLDTDEntity.prototype, 'xmlEncoding', {\n get: function() {\n return null;\n }\n });\n\n Object.defineProperty(XMLDTDEntity.prototype, 'xmlVersion', {\n get: function() {\n return null;\n }\n });\n\n XMLDTDEntity.prototype.toString = function(options) {\n return this.options.writer.dtdEntity(this, this.options.writer.filterOptions(options));\n };\n\n return XMLDTDEntity;\n\n })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLDTDNotation, XMLNode,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n XMLNode = require('./XMLNode');\n\n NodeType = require('./NodeType');\n\n module.exports = XMLDTDNotation = (function(superClass) {\n extend(XMLDTDNotation, superClass);\n\n function XMLDTDNotation(parent, name, value) {\n XMLDTDNotation.__super__.constructor.call(this, parent);\n if (name == null) {\n throw new Error(\"Missing DTD notation name. \" + this.debugInfo(name));\n }\n if (!value.pubID && !value.sysID) {\n throw new Error(\"Public or system identifiers are required for an external entity. \" + this.debugInfo(name));\n }\n this.name = this.stringify.name(name);\n this.type = NodeType.NotationDeclaration;\n if (value.pubID != null) {\n this.pubID = this.stringify.dtdPubID(value.pubID);\n }\n if (value.sysID != null) {\n this.sysID = this.stringify.dtdSysID(value.sysID);\n }\n }\n\n Object.defineProperty(XMLDTDNotation.prototype, 'publicId', {\n get: function() {\n return this.pubID;\n }\n });\n\n Object.defineProperty(XMLDTDNotation.prototype, 'systemId', {\n get: function() {\n return this.sysID;\n }\n });\n\n XMLDTDNotation.prototype.toString = function(options) {\n return this.options.writer.dtdNotation(this, this.options.writer.filterOptions(options));\n };\n\n return XMLDTDNotation;\n\n })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLDeclaration, XMLNode, isObject,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n isObject = require('./Utility').isObject;\n\n XMLNode = require('./XMLNode');\n\n NodeType = require('./NodeType');\n\n module.exports = XMLDeclaration = (function(superClass) {\n extend(XMLDeclaration, superClass);\n\n function XMLDeclaration(parent, version, encoding, standalone) {\n var ref;\n XMLDeclaration.__super__.constructor.call(this, parent);\n if (isObject(version)) {\n ref = version, version = ref.version, encoding = ref.encoding, standalone = ref.standalone;\n }\n if (!version) {\n version = '1.0';\n }\n this.type = NodeType.Declaration;\n this.version = this.stringify.xmlVersion(version);\n if (encoding != null) {\n this.encoding = this.stringify.xmlEncoding(encoding);\n }\n if (standalone != null) {\n this.standalone = this.stringify.xmlStandalone(standalone);\n }\n }\n\n XMLDeclaration.prototype.toString = function(options) {\n return this.options.writer.declaration(this, this.options.writer.filterOptions(options));\n };\n\n return XMLDeclaration;\n\n })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLDTDAttList, XMLDTDElement, XMLDTDEntity, XMLDTDNotation, XMLDocType, XMLNamedNodeMap, XMLNode, isObject,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n isObject = require('./Utility').isObject;\n\n XMLNode = require('./XMLNode');\n\n NodeType = require('./NodeType');\n\n XMLDTDAttList = require('./XMLDTDAttList');\n\n XMLDTDEntity = require('./XMLDTDEntity');\n\n XMLDTDElement = require('./XMLDTDElement');\n\n XMLDTDNotation = require('./XMLDTDNotation');\n\n XMLNamedNodeMap = require('./XMLNamedNodeMap');\n\n module.exports = XMLDocType = (function(superClass) {\n extend(XMLDocType, superClass);\n\n function XMLDocType(parent, pubID, sysID) {\n var child, i, len, ref, ref1, ref2;\n XMLDocType.__super__.constructor.call(this, parent);\n this.type = NodeType.DocType;\n if (parent.children) {\n ref = parent.children;\n for (i = 0, len = ref.length; i < len; i++) {\n child = ref[i];\n if (child.type === NodeType.Element) {\n this.name = child.name;\n break;\n }\n }\n }\n this.documentObject = parent;\n if (isObject(pubID)) {\n ref1 = pubID, pubID = ref1.pubID, sysID = ref1.sysID;\n }\n if (sysID == null) {\n ref2 = [pubID, sysID], sysID = ref2[0], pubID = ref2[1];\n }\n if (pubID != null) {\n this.pubID = this.stringify.dtdPubID(pubID);\n }\n if (sysID != null) {\n this.sysID = this.stringify.dtdSysID(sysID);\n }\n }\n\n Object.defineProperty(XMLDocType.prototype, 'entities', {\n get: function() {\n var child, i, len, nodes, ref;\n nodes = {};\n ref = this.children;\n for (i = 0, len = ref.length; i < len; i++) {\n child = ref[i];\n if ((child.type === NodeType.EntityDeclaration) && !child.pe) {\n nodes[child.name] = child;\n }\n }\n return new XMLNamedNodeMap(nodes);\n }\n });\n\n Object.defineProperty(XMLDocType.prototype, 'notations', {\n get: function() {\n var child, i, len, nodes, ref;\n nodes = {};\n ref = this.children;\n for (i = 0, len = ref.length; i < len; i++) {\n child = ref[i];\n if (child.type === NodeType.NotationDeclaration) {\n nodes[child.name] = child;\n }\n }\n return new XMLNamedNodeMap(nodes);\n }\n });\n\n Object.defineProperty(XMLDocType.prototype, 'publicId', {\n get: function() {\n return this.pubID;\n }\n });\n\n Object.defineProperty(XMLDocType.prototype, 'systemId', {\n get: function() {\n return this.sysID;\n }\n });\n\n Object.defineProperty(XMLDocType.prototype, 'internalSubset', {\n get: function() {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n }\n });\n\n XMLDocType.prototype.element = function(name, value) {\n var child;\n child = new XMLDTDElement(this, name, value);\n this.children.push(child);\n return this;\n };\n\n XMLDocType.prototype.attList = function(elementName, attributeName, attributeType, defaultValueType, defaultValue) {\n var child;\n child = new XMLDTDAttList(this, elementName, attributeName, attributeType, defaultValueType, defaultValue);\n this.children.push(child);\n return this;\n };\n\n XMLDocType.prototype.entity = function(name, value) {\n var child;\n child = new XMLDTDEntity(this, false, name, value);\n this.children.push(child);\n return this;\n };\n\n XMLDocType.prototype.pEntity = function(name, value) {\n var child;\n child = new XMLDTDEntity(this, true, name, value);\n this.children.push(child);\n return this;\n };\n\n XMLDocType.prototype.notation = function(name, value) {\n var child;\n child = new XMLDTDNotation(this, name, value);\n this.children.push(child);\n return this;\n };\n\n XMLDocType.prototype.toString = function(options) {\n return this.options.writer.docType(this, this.options.writer.filterOptions(options));\n };\n\n XMLDocType.prototype.ele = function(name, value) {\n return this.element(name, value);\n };\n\n XMLDocType.prototype.att = function(elementName, attributeName, attributeType, defaultValueType, defaultValue) {\n return this.attList(elementName, attributeName, attributeType, defaultValueType, defaultValue);\n };\n\n XMLDocType.prototype.ent = function(name, value) {\n return this.entity(name, value);\n };\n\n XMLDocType.prototype.pent = function(name, value) {\n return this.pEntity(name, value);\n };\n\n XMLDocType.prototype.not = function(name, value) {\n return this.notation(name, value);\n };\n\n XMLDocType.prototype.up = function() {\n return this.root() || this.documentObject;\n };\n\n XMLDocType.prototype.isEqualNode = function(node) {\n if (!XMLDocType.__super__.isEqualNode.apply(this, arguments).isEqualNode(node)) {\n return false;\n }\n if (node.name !== this.name) {\n return false;\n }\n if (node.publicId !== this.publicId) {\n return false;\n }\n if (node.systemId !== this.systemId) {\n return false;\n }\n return true;\n };\n\n return XMLDocType;\n\n })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLDOMConfiguration, XMLDOMImplementation, XMLDocument, XMLNode, XMLStringWriter, XMLStringifier, isPlainObject,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n isPlainObject = require('./Utility').isPlainObject;\n\n XMLDOMImplementation = require('./XMLDOMImplementation');\n\n XMLDOMConfiguration = require('./XMLDOMConfiguration');\n\n XMLNode = require('./XMLNode');\n\n NodeType = require('./NodeType');\n\n XMLStringifier = require('./XMLStringifier');\n\n XMLStringWriter = require('./XMLStringWriter');\n\n module.exports = XMLDocument = (function(superClass) {\n extend(XMLDocument, superClass);\n\n function XMLDocument(options) {\n XMLDocument.__super__.constructor.call(this, null);\n this.name = \"#document\";\n this.type = NodeType.Document;\n this.documentURI = null;\n this.domConfig = new XMLDOMConfiguration();\n options || (options = {});\n if (!options.writer) {\n options.writer = new XMLStringWriter();\n }\n this.options = options;\n this.stringify = new XMLStringifier(options);\n }\n\n Object.defineProperty(XMLDocument.prototype, 'implementation', {\n value: new XMLDOMImplementation()\n });\n\n Object.defineProperty(XMLDocument.prototype, 'doctype', {\n get: function() {\n var child, i, len, ref;\n ref = this.children;\n for (i = 0, len = ref.length; i < len; i++) {\n child = ref[i];\n if (child.type === NodeType.DocType) {\n return child;\n }\n }\n return null;\n }\n });\n\n Object.defineProperty(XMLDocument.prototype, 'documentElement', {\n get: function() {\n return this.rootObject || null;\n }\n });\n\n Object.defineProperty(XMLDocument.prototype, 'inputEncoding', {\n get: function() {\n return null;\n }\n });\n\n Object.defineProperty(XMLDocument.prototype, 'strictErrorChecking', {\n get: function() {\n return false;\n }\n });\n\n Object.defineProperty(XMLDocument.prototype, 'xmlEncoding', {\n get: function() {\n if (this.children.length !== 0 && this.children[0].type === NodeType.Declaration) {\n return this.children[0].encoding;\n } else {\n return null;\n }\n }\n });\n\n Object.defineProperty(XMLDocument.prototype, 'xmlStandalone', {\n get: function() {\n if (this.children.length !== 0 && this.children[0].type === NodeType.Declaration) {\n return this.children[0].standalone === 'yes';\n } else {\n return false;\n }\n }\n });\n\n Object.defineProperty(XMLDocument.prototype, 'xmlVersion', {\n get: function() {\n if (this.children.length !== 0 && this.children[0].type === NodeType.Declaration) {\n return this.children[0].version;\n } else {\n return \"1.0\";\n }\n }\n });\n\n Object.defineProperty(XMLDocument.prototype, 'URL', {\n get: function() {\n return this.documentURI;\n }\n });\n\n Object.defineProperty(XMLDocument.prototype, 'origin', {\n get: function() {\n return null;\n }\n });\n\n Object.defineProperty(XMLDocument.prototype, 'compatMode', {\n get: function() {\n return null;\n }\n });\n\n Object.defineProperty(XMLDocument.prototype, 'characterSet', {\n get: function() {\n return null;\n }\n });\n\n Object.defineProperty(XMLDocument.prototype, 'contentType', {\n get: function() {\n return null;\n }\n });\n\n XMLDocument.prototype.end = function(writer) {\n var writerOptions;\n writerOptions = {};\n if (!writer) {\n writer = this.options.writer;\n } else if (isPlainObject(writer)) {\n writerOptions = writer;\n writer = this.options.writer;\n }\n return writer.document(this, writer.filterOptions(writerOptions));\n };\n\n XMLDocument.prototype.toString = function(options) {\n return this.options.writer.document(this, this.options.writer.filterOptions(options));\n };\n\n XMLDocument.prototype.createElement = function(tagName) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.createDocumentFragment = function() {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.createTextNode = function(data) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.createComment = function(data) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.createCDATASection = function(data) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.createProcessingInstruction = function(target, data) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.createAttribute = function(name) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.createEntityReference = function(name) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.getElementsByTagName = function(tagname) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.importNode = function(importedNode, deep) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.createElementNS = function(namespaceURI, qualifiedName) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.createAttributeNS = function(namespaceURI, qualifiedName) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.getElementsByTagNameNS = function(namespaceURI, localName) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.getElementById = function(elementId) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.adoptNode = function(source) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.normalizeDocument = function() {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.renameNode = function(node, namespaceURI, qualifiedName) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.getElementsByClassName = function(classNames) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.createEvent = function(eventInterface) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.createRange = function() {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.createNodeIterator = function(root, whatToShow, filter) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLDocument.prototype.createTreeWalker = function(root, whatToShow, filter) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n return XMLDocument;\n\n })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, WriterState, XMLAttribute, XMLCData, XMLComment, XMLDTDAttList, XMLDTDElement, XMLDTDEntity, XMLDTDNotation, XMLDeclaration, XMLDocType, XMLDocument, XMLDocumentCB, XMLElement, XMLProcessingInstruction, XMLRaw, XMLStringWriter, XMLStringifier, XMLText, getValue, isFunction, isObject, isPlainObject, ref,\n hasProp = {}.hasOwnProperty;\n\n ref = require('./Utility'), isObject = ref.isObject, isFunction = ref.isFunction, isPlainObject = ref.isPlainObject, getValue = ref.getValue;\n\n NodeType = require('./NodeType');\n\n XMLDocument = require('./XMLDocument');\n\n XMLElement = require('./XMLElement');\n\n XMLCData = require('./XMLCData');\n\n XMLComment = require('./XMLComment');\n\n XMLRaw = require('./XMLRaw');\n\n XMLText = require('./XMLText');\n\n XMLProcessingInstruction = require('./XMLProcessingInstruction');\n\n XMLDeclaration = require('./XMLDeclaration');\n\n XMLDocType = require('./XMLDocType');\n\n XMLDTDAttList = require('./XMLDTDAttList');\n\n XMLDTDEntity = require('./XMLDTDEntity');\n\n XMLDTDElement = require('./XMLDTDElement');\n\n XMLDTDNotation = require('./XMLDTDNotation');\n\n XMLAttribute = require('./XMLAttribute');\n\n XMLStringifier = require('./XMLStringifier');\n\n XMLStringWriter = require('./XMLStringWriter');\n\n WriterState = require('./WriterState');\n\n module.exports = XMLDocumentCB = (function() {\n function XMLDocumentCB(options, onData, onEnd) {\n var writerOptions;\n this.name = \"?xml\";\n this.type = NodeType.Document;\n options || (options = {});\n writerOptions = {};\n if (!options.writer) {\n options.writer = new XMLStringWriter();\n } else if (isPlainObject(options.writer)) {\n writerOptions = options.writer;\n options.writer = new XMLStringWriter();\n }\n this.options = options;\n this.writer = options.writer;\n this.writerOptions = this.writer.filterOptions(writerOptions);\n this.stringify = new XMLStringifier(options);\n this.onDataCallback = onData || function() {};\n this.onEndCallback = onEnd || function() {};\n this.currentNode = null;\n this.currentLevel = -1;\n this.openTags = {};\n this.documentStarted = false;\n this.documentCompleted = false;\n this.root = null;\n }\n\n XMLDocumentCB.prototype.createChildNode = function(node) {\n var att, attName, attributes, child, i, len, ref1, ref2;\n switch (node.type) {\n case NodeType.CData:\n this.cdata(node.value);\n break;\n case NodeType.Comment:\n this.comment(node.value);\n break;\n case NodeType.Element:\n attributes = {};\n ref1 = node.attribs;\n for (attName in ref1) {\n if (!hasProp.call(ref1, attName)) continue;\n att = ref1[attName];\n attributes[attName] = att.value;\n }\n this.node(node.name, attributes);\n break;\n case NodeType.Dummy:\n this.dummy();\n break;\n case NodeType.Raw:\n this.raw(node.value);\n break;\n case NodeType.Text:\n this.text(node.value);\n break;\n case NodeType.ProcessingInstruction:\n this.instruction(node.target, node.value);\n break;\n default:\n throw new Error(\"This XML node type is not supported in a JS object: \" + node.constructor.name);\n }\n ref2 = node.children;\n for (i = 0, len = ref2.length; i < len; i++) {\n child = ref2[i];\n this.createChildNode(child);\n if (child.type === NodeType.Element) {\n this.up();\n }\n }\n return this;\n };\n\n XMLDocumentCB.prototype.dummy = function() {\n return this;\n };\n\n XMLDocumentCB.prototype.node = function(name, attributes, text) {\n var ref1;\n if (name == null) {\n throw new Error(\"Missing node name.\");\n }\n if (this.root && this.currentLevel === -1) {\n throw new Error(\"Document can only have one root node. \" + this.debugInfo(name));\n }\n this.openCurrent();\n name = getValue(name);\n if (attributes == null) {\n attributes = {};\n }\n attributes = getValue(attributes);\n if (!isObject(attributes)) {\n ref1 = [attributes, text], text = ref1[0], attributes = ref1[1];\n }\n this.currentNode = new XMLElement(this, name, attributes);\n this.currentNode.children = false;\n this.currentLevel++;\n this.openTags[this.currentLevel] = this.currentNode;\n if (text != null) {\n this.text(text);\n }\n return this;\n };\n\n XMLDocumentCB.prototype.element = function(name, attributes, text) {\n var child, i, len, oldValidationFlag, ref1, root;\n if (this.currentNode && this.currentNode.type === NodeType.DocType) {\n this.dtdElement.apply(this, arguments);\n } else {\n if (Array.isArray(name) || isObject(name) || isFunction(name)) {\n oldValidationFlag = this.options.noValidation;\n this.options.noValidation = true;\n root = new XMLDocument(this.options).element('TEMP_ROOT');\n root.element(name);\n this.options.noValidation = oldValidationFlag;\n ref1 = root.children;\n for (i = 0, len = ref1.length; i < len; i++) {\n child = ref1[i];\n this.createChildNode(child);\n if (child.type === NodeType.Element) {\n this.up();\n }\n }\n } else {\n this.node(name, attributes, text);\n }\n }\n return this;\n };\n\n XMLDocumentCB.prototype.attribute = function(name, value) {\n var attName, attValue;\n if (!this.currentNode || this.currentNode.children) {\n throw new Error(\"att() can only be used immediately after an ele() call in callback mode. \" + this.debugInfo(name));\n }\n if (name != null) {\n name = getValue(name);\n }\n if (isObject(name)) {\n for (attName in name) {\n if (!hasProp.call(name, attName)) continue;\n attValue = name[attName];\n this.attribute(attName, attValue);\n }\n } else {\n if (isFunction(value)) {\n value = value.apply();\n }\n if (this.options.keepNullAttributes && (value == null)) {\n this.currentNode.attribs[name] = new XMLAttribute(this, name, \"\");\n } else if (value != null) {\n this.currentNode.attribs[name] = new XMLAttribute(this, name, value);\n }\n }\n return this;\n };\n\n XMLDocumentCB.prototype.text = function(value) {\n var node;\n this.openCurrent();\n node = new XMLText(this, value);\n this.onData(this.writer.text(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n return this;\n };\n\n XMLDocumentCB.prototype.cdata = function(value) {\n var node;\n this.openCurrent();\n node = new XMLCData(this, value);\n this.onData(this.writer.cdata(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n return this;\n };\n\n XMLDocumentCB.prototype.comment = function(value) {\n var node;\n this.openCurrent();\n node = new XMLComment(this, value);\n this.onData(this.writer.comment(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n return this;\n };\n\n XMLDocumentCB.prototype.raw = function(value) {\n var node;\n this.openCurrent();\n node = new XMLRaw(this, value);\n this.onData(this.writer.raw(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n return this;\n };\n\n XMLDocumentCB.prototype.instruction = function(target, value) {\n var i, insTarget, insValue, len, node;\n this.openCurrent();\n if (target != null) {\n target = getValue(target);\n }\n if (value != null) {\n value = getValue(value);\n }\n if (Array.isArray(target)) {\n for (i = 0, len = target.length; i < len; i++) {\n insTarget = target[i];\n this.instruction(insTarget);\n }\n } else if (isObject(target)) {\n for (insTarget in target) {\n if (!hasProp.call(target, insTarget)) continue;\n insValue = target[insTarget];\n this.instruction(insTarget, insValue);\n }\n } else {\n if (isFunction(value)) {\n value = value.apply();\n }\n node = new XMLProcessingInstruction(this, target, value);\n this.onData(this.writer.processingInstruction(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n }\n return this;\n };\n\n XMLDocumentCB.prototype.declaration = function(version, encoding, standalone) {\n var node;\n this.openCurrent();\n if (this.documentStarted) {\n throw new Error(\"declaration() must be the first node.\");\n }\n node = new XMLDeclaration(this, version, encoding, standalone);\n this.onData(this.writer.declaration(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n return this;\n };\n\n XMLDocumentCB.prototype.doctype = function(root, pubID, sysID) {\n this.openCurrent();\n if (root == null) {\n throw new Error(\"Missing root node name.\");\n }\n if (this.root) {\n throw new Error(\"dtd() must come before the root node.\");\n }\n this.currentNode = new XMLDocType(this, pubID, sysID);\n this.currentNode.rootNodeName = root;\n this.currentNode.children = false;\n this.currentLevel++;\n this.openTags[this.currentLevel] = this.currentNode;\n return this;\n };\n\n XMLDocumentCB.prototype.dtdElement = function(name, value) {\n var node;\n this.openCurrent();\n node = new XMLDTDElement(this, name, value);\n this.onData(this.writer.dtdElement(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n return this;\n };\n\n XMLDocumentCB.prototype.attList = function(elementName, attributeName, attributeType, defaultValueType, defaultValue) {\n var node;\n this.openCurrent();\n node = new XMLDTDAttList(this, elementName, attributeName, attributeType, defaultValueType, defaultValue);\n this.onData(this.writer.dtdAttList(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n return this;\n };\n\n XMLDocumentCB.prototype.entity = function(name, value) {\n var node;\n this.openCurrent();\n node = new XMLDTDEntity(this, false, name, value);\n this.onData(this.writer.dtdEntity(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n return this;\n };\n\n XMLDocumentCB.prototype.pEntity = function(name, value) {\n var node;\n this.openCurrent();\n node = new XMLDTDEntity(this, true, name, value);\n this.onData(this.writer.dtdEntity(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n return this;\n };\n\n XMLDocumentCB.prototype.notation = function(name, value) {\n var node;\n this.openCurrent();\n node = new XMLDTDNotation(this, name, value);\n this.onData(this.writer.dtdNotation(node, this.writerOptions, this.currentLevel + 1), this.currentLevel + 1);\n return this;\n };\n\n XMLDocumentCB.prototype.up = function() {\n if (this.currentLevel < 0) {\n throw new Error(\"The document node has no parent.\");\n }\n if (this.currentNode) {\n if (this.currentNode.children) {\n this.closeNode(this.currentNode);\n } else {\n this.openNode(this.currentNode);\n }\n this.currentNode = null;\n } else {\n this.closeNode(this.openTags[this.currentLevel]);\n }\n delete this.openTags[this.currentLevel];\n this.currentLevel--;\n return this;\n };\n\n XMLDocumentCB.prototype.end = function() {\n while (this.currentLevel >= 0) {\n this.up();\n }\n return this.onEnd();\n };\n\n XMLDocumentCB.prototype.openCurrent = function() {\n if (this.currentNode) {\n this.currentNode.children = true;\n return this.openNode(this.currentNode);\n }\n };\n\n XMLDocumentCB.prototype.openNode = function(node) {\n var att, chunk, name, ref1;\n if (!node.isOpen) {\n if (!this.root && this.currentLevel === 0 && node.type === NodeType.Element) {\n this.root = node;\n }\n chunk = '';\n if (node.type === NodeType.Element) {\n this.writerOptions.state = WriterState.OpenTag;\n chunk = this.writer.indent(node, this.writerOptions, this.currentLevel) + '<' + node.name;\n ref1 = node.attribs;\n for (name in ref1) {\n if (!hasProp.call(ref1, name)) continue;\n att = ref1[name];\n chunk += this.writer.attribute(att, this.writerOptions, this.currentLevel);\n }\n chunk += (node.children ? '>' : '/>') + this.writer.endline(node, this.writerOptions, this.currentLevel);\n this.writerOptions.state = WriterState.InsideTag;\n } else {\n this.writerOptions.state = WriterState.OpenTag;\n chunk = this.writer.indent(node, this.writerOptions, this.currentLevel) + '<!DOCTYPE ' + node.rootNodeName;\n if (node.pubID && node.sysID) {\n chunk += ' PUBLIC \"' + node.pubID + '\" \"' + node.sysID + '\"';\n } else if (node.sysID) {\n chunk += ' SYSTEM \"' + node.sysID + '\"';\n }\n if (node.children) {\n chunk += ' [';\n this.writerOptions.state = WriterState.InsideTag;\n } else {\n this.writerOptions.state = WriterState.CloseTag;\n chunk += '>';\n }\n chunk += this.writer.endline(node, this.writerOptions, this.currentLevel);\n }\n this.onData(chunk, this.currentLevel);\n return node.isOpen = true;\n }\n };\n\n XMLDocumentCB.prototype.closeNode = function(node) {\n var chunk;\n if (!node.isClosed) {\n chunk = '';\n this.writerOptions.state = WriterState.CloseTag;\n if (node.type === NodeType.Element) {\n chunk = this.writer.indent(node, this.writerOptions, this.currentLevel) + '</' + node.name + '>' + this.writer.endline(node, this.writerOptions, this.currentLevel);\n } else {\n chunk = this.writer.indent(node, this.writerOptions, this.currentLevel) + ']>' + this.writer.endline(node, this.writerOptions, this.currentLevel);\n }\n this.writerOptions.state = WriterState.None;\n this.onData(chunk, this.currentLevel);\n return node.isClosed = true;\n }\n };\n\n XMLDocumentCB.prototype.onData = function(chunk, level) {\n this.documentStarted = true;\n return this.onDataCallback(chunk, level + 1);\n };\n\n XMLDocumentCB.prototype.onEnd = function() {\n this.documentCompleted = true;\n return this.onEndCallback();\n };\n\n XMLDocumentCB.prototype.debugInfo = function(name) {\n if (name == null) {\n return \"\";\n } else {\n return \"node: <\" + name + \">\";\n }\n };\n\n XMLDocumentCB.prototype.ele = function() {\n return this.element.apply(this, arguments);\n };\n\n XMLDocumentCB.prototype.nod = function(name, attributes, text) {\n return this.node(name, attributes, text);\n };\n\n XMLDocumentCB.prototype.txt = function(value) {\n return this.text(value);\n };\n\n XMLDocumentCB.prototype.dat = function(value) {\n return this.cdata(value);\n };\n\n XMLDocumentCB.prototype.com = function(value) {\n return this.comment(value);\n };\n\n XMLDocumentCB.prototype.ins = function(target, value) {\n return this.instruction(target, value);\n };\n\n XMLDocumentCB.prototype.dec = function(version, encoding, standalone) {\n return this.declaration(version, encoding, standalone);\n };\n\n XMLDocumentCB.prototype.dtd = function(root, pubID, sysID) {\n return this.doctype(root, pubID, sysID);\n };\n\n XMLDocumentCB.prototype.e = function(name, attributes, text) {\n return this.element(name, attributes, text);\n };\n\n XMLDocumentCB.prototype.n = function(name, attributes, text) {\n return this.node(name, attributes, text);\n };\n\n XMLDocumentCB.prototype.t = function(value) {\n return this.text(value);\n };\n\n XMLDocumentCB.prototype.d = function(value) {\n return this.cdata(value);\n };\n\n XMLDocumentCB.prototype.c = function(value) {\n return this.comment(value);\n };\n\n XMLDocumentCB.prototype.r = function(value) {\n return this.raw(value);\n };\n\n XMLDocumentCB.prototype.i = function(target, value) {\n return this.instruction(target, value);\n };\n\n XMLDocumentCB.prototype.att = function() {\n if (this.currentNode && this.currentNode.type === NodeType.DocType) {\n return this.attList.apply(this, arguments);\n } else {\n return this.attribute.apply(this, arguments);\n }\n };\n\n XMLDocumentCB.prototype.a = function() {\n if (this.currentNode && this.currentNode.type === NodeType.DocType) {\n return this.attList.apply(this, arguments);\n } else {\n return this.attribute.apply(this, arguments);\n }\n };\n\n XMLDocumentCB.prototype.ent = function(name, value) {\n return this.entity(name, value);\n };\n\n XMLDocumentCB.prototype.pent = function(name, value) {\n return this.pEntity(name, value);\n };\n\n XMLDocumentCB.prototype.not = function(name, value) {\n return this.notation(name, value);\n };\n\n return XMLDocumentCB;\n\n })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLDummy, XMLNode,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n XMLNode = require('./XMLNode');\n\n NodeType = require('./NodeType');\n\n module.exports = XMLDummy = (function(superClass) {\n extend(XMLDummy, superClass);\n\n function XMLDummy(parent) {\n XMLDummy.__super__.constructor.call(this, parent);\n this.type = NodeType.Dummy;\n }\n\n XMLDummy.prototype.clone = function() {\n return Object.create(this);\n };\n\n XMLDummy.prototype.toString = function(options) {\n return '';\n };\n\n return XMLDummy;\n\n })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLAttribute, XMLElement, XMLNamedNodeMap, XMLNode, getValue, isFunction, isObject, ref,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n ref = require('./Utility'), isObject = ref.isObject, isFunction = ref.isFunction, getValue = ref.getValue;\n\n XMLNode = require('./XMLNode');\n\n NodeType = require('./NodeType');\n\n XMLAttribute = require('./XMLAttribute');\n\n XMLNamedNodeMap = require('./XMLNamedNodeMap');\n\n module.exports = XMLElement = (function(superClass) {\n extend(XMLElement, superClass);\n\n function XMLElement(parent, name, attributes) {\n var child, j, len, ref1;\n XMLElement.__super__.constructor.call(this, parent);\n if (name == null) {\n throw new Error(\"Missing element name. \" + this.debugInfo());\n }\n this.name = this.stringify.name(name);\n this.type = NodeType.Element;\n this.attribs = {};\n this.schemaTypeInfo = null;\n if (attributes != null) {\n this.attribute(attributes);\n }\n if (parent.type === NodeType.Document) {\n this.isRoot = true;\n this.documentObject = parent;\n parent.rootObject = this;\n if (parent.children) {\n ref1 = parent.children;\n for (j = 0, len = ref1.length; j < len; j++) {\n child = ref1[j];\n if (child.type === NodeType.DocType) {\n child.name = this.name;\n break;\n }\n }\n }\n }\n }\n\n Object.defineProperty(XMLElement.prototype, 'tagName', {\n get: function() {\n return this.name;\n }\n });\n\n Object.defineProperty(XMLElement.prototype, 'namespaceURI', {\n get: function() {\n return '';\n }\n });\n\n Object.defineProperty(XMLElement.prototype, 'prefix', {\n get: function() {\n return '';\n }\n });\n\n Object.defineProperty(XMLElement.prototype, 'localName', {\n get: function() {\n return this.name;\n }\n });\n\n Object.defineProperty(XMLElement.prototype, 'id', {\n get: function() {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n }\n });\n\n Object.defineProperty(XMLElement.prototype, 'className', {\n get: function() {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n }\n });\n\n Object.defineProperty(XMLElement.prototype, 'classList', {\n get: function() {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n }\n });\n\n Object.defineProperty(XMLElement.prototype, 'attributes', {\n get: function() {\n if (!this.attributeMap || !this.attributeMap.nodes) {\n this.attributeMap = new XMLNamedNodeMap(this.attribs);\n }\n return this.attributeMap;\n }\n });\n\n XMLElement.prototype.clone = function() {\n var att, attName, clonedSelf, ref1;\n clonedSelf = Object.create(this);\n if (clonedSelf.isRoot) {\n clonedSelf.documentObject = null;\n }\n clonedSelf.attribs = {};\n ref1 = this.attribs;\n for (attName in ref1) {\n if (!hasProp.call(ref1, attName)) continue;\n att = ref1[attName];\n clonedSelf.attribs[attName] = att.clone();\n }\n clonedSelf.children = [];\n this.children.forEach(function(child) {\n var clonedChild;\n clonedChild = child.clone();\n clonedChild.parent = clonedSelf;\n return clonedSelf.children.push(clonedChild);\n });\n return clonedSelf;\n };\n\n XMLElement.prototype.attribute = function(name, value) {\n var attName, attValue;\n if (name != null) {\n name = getValue(name);\n }\n if (isObject(name)) {\n for (attName in name) {\n if (!hasProp.call(name, attName)) continue;\n attValue = name[attName];\n this.attribute(attName, attValue);\n }\n } else {\n if (isFunction(value)) {\n value = value.apply();\n }\n if (this.options.keepNullAttributes && (value == null)) {\n this.attribs[name] = new XMLAttribute(this, name, \"\");\n } else if (value != null) {\n this.attribs[name] = new XMLAttribute(this, name, value);\n }\n }\n return this;\n };\n\n XMLElement.prototype.removeAttribute = function(name) {\n var attName, j, len;\n if (name == null) {\n throw new Error(\"Missing attribute name. \" + this.debugInfo());\n }\n name = getValue(name);\n if (Array.isArray(name)) {\n for (j = 0, len = name.length; j < len; j++) {\n attName = name[j];\n delete this.attribs[attName];\n }\n } else {\n delete this.attribs[name];\n }\n return this;\n };\n\n XMLElement.prototype.toString = function(options) {\n return this.options.writer.element(this, this.options.writer.filterOptions(options));\n };\n\n XMLElement.prototype.att = function(name, value) {\n return this.attribute(name, value);\n };\n\n XMLElement.prototype.a = function(name, value) {\n return this.attribute(name, value);\n };\n\n XMLElement.prototype.getAttribute = function(name) {\n if (this.attribs.hasOwnProperty(name)) {\n return this.attribs[name].value;\n } else {\n return null;\n }\n };\n\n XMLElement.prototype.setAttribute = function(name, value) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.getAttributeNode = function(name) {\n if (this.attribs.hasOwnProperty(name)) {\n return this.attribs[name];\n } else {\n return null;\n }\n };\n\n XMLElement.prototype.setAttributeNode = function(newAttr) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.removeAttributeNode = function(oldAttr) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.getElementsByTagName = function(name) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.getAttributeNS = function(namespaceURI, localName) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.setAttributeNS = function(namespaceURI, qualifiedName, value) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.removeAttributeNS = function(namespaceURI, localName) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.getAttributeNodeNS = function(namespaceURI, localName) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.setAttributeNodeNS = function(newAttr) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.getElementsByTagNameNS = function(namespaceURI, localName) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.hasAttribute = function(name) {\n return this.attribs.hasOwnProperty(name);\n };\n\n XMLElement.prototype.hasAttributeNS = function(namespaceURI, localName) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.setIdAttribute = function(name, isId) {\n if (this.attribs.hasOwnProperty(name)) {\n return this.attribs[name].isId;\n } else {\n return isId;\n }\n };\n\n XMLElement.prototype.setIdAttributeNS = function(namespaceURI, localName, isId) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.setIdAttributeNode = function(idAttr, isId) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.getElementsByTagName = function(tagname) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.getElementsByTagNameNS = function(namespaceURI, localName) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.getElementsByClassName = function(classNames) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLElement.prototype.isEqualNode = function(node) {\n var i, j, ref1;\n if (!XMLElement.__super__.isEqualNode.apply(this, arguments).isEqualNode(node)) {\n return false;\n }\n if (node.namespaceURI !== this.namespaceURI) {\n return false;\n }\n if (node.prefix !== this.prefix) {\n return false;\n }\n if (node.localName !== this.localName) {\n return false;\n }\n if (node.attribs.length !== this.attribs.length) {\n return false;\n }\n for (i = j = 0, ref1 = this.attribs.length - 1; 0 <= ref1 ? j <= ref1 : j >= ref1; i = 0 <= ref1 ? ++j : --j) {\n if (!this.attribs[i].isEqualNode(node.attribs[i])) {\n return false;\n }\n }\n return true;\n };\n\n return XMLElement;\n\n })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var XMLNamedNodeMap;\n\n module.exports = XMLNamedNodeMap = (function() {\n function XMLNamedNodeMap(nodes) {\n this.nodes = nodes;\n }\n\n Object.defineProperty(XMLNamedNodeMap.prototype, 'length', {\n get: function() {\n return Object.keys(this.nodes).length || 0;\n }\n });\n\n XMLNamedNodeMap.prototype.clone = function() {\n return this.nodes = null;\n };\n\n XMLNamedNodeMap.prototype.getNamedItem = function(name) {\n return this.nodes[name];\n };\n\n XMLNamedNodeMap.prototype.setNamedItem = function(node) {\n var oldNode;\n oldNode = this.nodes[node.nodeName];\n this.nodes[node.nodeName] = node;\n return oldNode || null;\n };\n\n XMLNamedNodeMap.prototype.removeNamedItem = function(name) {\n var oldNode;\n oldNode = this.nodes[name];\n delete this.nodes[name];\n return oldNode || null;\n };\n\n XMLNamedNodeMap.prototype.item = function(index) {\n return this.nodes[Object.keys(this.nodes)[index]] || null;\n };\n\n XMLNamedNodeMap.prototype.getNamedItemNS = function(namespaceURI, localName) {\n throw new Error(\"This DOM method is not implemented.\");\n };\n\n XMLNamedNodeMap.prototype.setNamedItemNS = function(node) {\n throw new Error(\"This DOM method is not implemented.\");\n };\n\n XMLNamedNodeMap.prototype.removeNamedItemNS = function(namespaceURI, localName) {\n throw new Error(\"This DOM method is not implemented.\");\n };\n\n return XMLNamedNodeMap;\n\n })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var DocumentPosition, NodeType, XMLCData, XMLComment, XMLDeclaration, XMLDocType, XMLDummy, XMLElement, XMLNamedNodeMap, XMLNode, XMLNodeList, XMLProcessingInstruction, XMLRaw, XMLText, getValue, isEmpty, isFunction, isObject, ref1,\n hasProp = {}.hasOwnProperty;\n\n ref1 = require('./Utility'), isObject = ref1.isObject, isFunction = ref1.isFunction, isEmpty = ref1.isEmpty, getValue = ref1.getValue;\n\n XMLElement = null;\n\n XMLCData = null;\n\n XMLComment = null;\n\n XMLDeclaration = null;\n\n XMLDocType = null;\n\n XMLRaw = null;\n\n XMLText = null;\n\n XMLProcessingInstruction = null;\n\n XMLDummy = null;\n\n NodeType = null;\n\n XMLNodeList = null;\n\n XMLNamedNodeMap = null;\n\n DocumentPosition = null;\n\n module.exports = XMLNode = (function() {\n function XMLNode(parent1) {\n this.parent = parent1;\n if (this.parent) {\n this.options = this.parent.options;\n this.stringify = this.parent.stringify;\n }\n this.value = null;\n this.children = [];\n this.baseURI = null;\n if (!XMLElement) {\n XMLElement = require('./XMLElement');\n XMLCData = require('./XMLCData');\n XMLComment = require('./XMLComment');\n XMLDeclaration = require('./XMLDeclaration');\n XMLDocType = require('./XMLDocType');\n XMLRaw = require('./XMLRaw');\n XMLText = require('./XMLText');\n XMLProcessingInstruction = require('./XMLProcessingInstruction');\n XMLDummy = require('./XMLDummy');\n NodeType = require('./NodeType');\n XMLNodeList = require('./XMLNodeList');\n XMLNamedNodeMap = require('./XMLNamedNodeMap');\n DocumentPosition = require('./DocumentPosition');\n }\n }\n\n Object.defineProperty(XMLNode.prototype, 'nodeName', {\n get: function() {\n return this.name;\n }\n });\n\n Object.defineProperty(XMLNode.prototype, 'nodeType', {\n get: function() {\n return this.type;\n }\n });\n\n Object.defineProperty(XMLNode.prototype, 'nodeValue', {\n get: function() {\n return this.value;\n }\n });\n\n Object.defineProperty(XMLNode.prototype, 'parentNode', {\n get: function() {\n return this.parent;\n }\n });\n\n Object.defineProperty(XMLNode.prototype, 'childNodes', {\n get: function() {\n if (!this.childNodeList || !this.childNodeList.nodes) {\n this.childNodeList = new XMLNodeList(this.children);\n }\n return this.childNodeList;\n }\n });\n\n Object.defineProperty(XMLNode.prototype, 'firstChild', {\n get: function() {\n return this.children[0] || null;\n }\n });\n\n Object.defineProperty(XMLNode.prototype, 'lastChild', {\n get: function() {\n return this.children[this.children.length - 1] || null;\n }\n });\n\n Object.defineProperty(XMLNode.prototype, 'previousSibling', {\n get: function() {\n var i;\n i = this.parent.children.indexOf(this);\n return this.parent.children[i - 1] || null;\n }\n });\n\n Object.defineProperty(XMLNode.prototype, 'nextSibling', {\n get: function() {\n var i;\n i = this.parent.children.indexOf(this);\n return this.parent.children[i + 1] || null;\n }\n });\n\n Object.defineProperty(XMLNode.prototype, 'ownerDocument', {\n get: function() {\n return this.document() || null;\n }\n });\n\n Object.defineProperty(XMLNode.prototype, 'textContent', {\n get: function() {\n var child, j, len, ref2, str;\n if (this.nodeType === NodeType.Element || this.nodeType === NodeType.DocumentFragment) {\n str = '';\n ref2 = this.children;\n for (j = 0, len = ref2.length; j < len; j++) {\n child = ref2[j];\n if (child.textContent) {\n str += child.textContent;\n }\n }\n return str;\n } else {\n return null;\n }\n },\n set: function(value) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n }\n });\n\n XMLNode.prototype.setParent = function(parent) {\n var child, j, len, ref2, results;\n this.parent = parent;\n if (parent) {\n this.options = parent.options;\n this.stringify = parent.stringify;\n }\n ref2 = this.children;\n results = [];\n for (j = 0, len = ref2.length; j < len; j++) {\n child = ref2[j];\n results.push(child.setParent(this));\n }\n return results;\n };\n\n XMLNode.prototype.element = function(name, attributes, text) {\n var childNode, item, j, k, key, lastChild, len, len1, ref2, ref3, val;\n lastChild = null;\n if (attributes === null && (text == null)) {\n ref2 = [{}, null], attributes = ref2[0], text = ref2[1];\n }\n if (attributes == null) {\n attributes = {};\n }\n attributes = getValue(attributes);\n if (!isObject(attributes)) {\n ref3 = [attributes, text], text = ref3[0], attributes = ref3[1];\n }\n if (name != null) {\n name = getValue(name);\n }\n if (Array.isArray(name)) {\n for (j = 0, len = name.length; j < len; j++) {\n item = name[j];\n lastChild = this.element(item);\n }\n } else if (isFunction(name)) {\n lastChild = this.element(name.apply());\n } else if (isObject(name)) {\n for (key in name) {\n if (!hasProp.call(name, key)) continue;\n val = name[key];\n if (isFunction(val)) {\n val = val.apply();\n }\n if (!this.options.ignoreDecorators && this.stringify.convertAttKey && key.indexOf(this.stringify.convertAttKey) === 0) {\n lastChild = this.attribute(key.substr(this.stringify.convertAttKey.length), val);\n } else if (!this.options.separateArrayItems && Array.isArray(val) && isEmpty(val)) {\n lastChild = this.dummy();\n } else if (isObject(val) && isEmpty(val)) {\n lastChild = this.element(key);\n } else if (!this.options.keepNullNodes && (val == null)) {\n lastChild = this.dummy();\n } else if (!this.options.separateArrayItems && Array.isArray(val)) {\n for (k = 0, len1 = val.length; k < len1; k++) {\n item = val[k];\n childNode = {};\n childNode[key] = item;\n lastChild = this.element(childNode);\n }\n } else if (isObject(val)) {\n if (!this.options.ignoreDecorators && this.stringify.convertTextKey && key.indexOf(this.stringify.convertTextKey) === 0) {\n lastChild = this.element(val);\n } else {\n lastChild = this.element(key);\n lastChild.element(val);\n }\n } else {\n lastChild = this.element(key, val);\n }\n }\n } else if (!this.options.keepNullNodes && text === null) {\n lastChild = this.dummy();\n } else {\n if (!this.options.ignoreDecorators && this.stringify.convertTextKey && name.indexOf(this.stringify.convertTextKey) === 0) {\n lastChild = this.text(text);\n } else if (!this.options.ignoreDecorators && this.stringify.convertCDataKey && name.indexOf(this.stringify.convertCDataKey) === 0) {\n lastChild = this.cdata(text);\n } else if (!this.options.ignoreDecorators && this.stringify.convertCommentKey && name.indexOf(this.stringify.convertCommentKey) === 0) {\n lastChild = this.comment(text);\n } else if (!this.options.ignoreDecorators && this.stringify.convertRawKey && name.indexOf(this.stringify.convertRawKey) === 0) {\n lastChild = this.raw(text);\n } else if (!this.options.ignoreDecorators && this.stringify.convertPIKey && name.indexOf(this.stringify.convertPIKey) === 0) {\n lastChild = this.instruction(name.substr(this.stringify.convertPIKey.length), text);\n } else {\n lastChild = this.node(name, attributes, text);\n }\n }\n if (lastChild == null) {\n throw new Error(\"Could not create any elements with: \" + name + \". \" + this.debugInfo());\n }\n return lastChild;\n };\n\n XMLNode.prototype.insertBefore = function(name, attributes, text) {\n var child, i, newChild, refChild, removed;\n if (name != null ? name.type : void 0) {\n newChild = name;\n refChild = attributes;\n newChild.setParent(this);\n if (refChild) {\n i = children.indexOf(refChild);\n removed = children.splice(i);\n children.push(newChild);\n Array.prototype.push.apply(children, removed);\n } else {\n children.push(newChild);\n }\n return newChild;\n } else {\n if (this.isRoot) {\n throw new Error(\"Cannot insert elements at root level. \" + this.debugInfo(name));\n }\n i = this.parent.children.indexOf(this);\n removed = this.parent.children.splice(i);\n child = this.parent.element(name, attributes, text);\n Array.prototype.push.apply(this.parent.children, removed);\n return child;\n }\n };\n\n XMLNode.prototype.insertAfter = function(name, attributes, text) {\n var child, i, removed;\n if (this.isRoot) {\n throw new Error(\"Cannot insert elements at root level. \" + this.debugInfo(name));\n }\n i = this.parent.children.indexOf(this);\n removed = this.parent.children.splice(i + 1);\n child = this.parent.element(name, attributes, text);\n Array.prototype.push.apply(this.parent.children, removed);\n return child;\n };\n\n XMLNode.prototype.remove = function() {\n var i, ref2;\n if (this.isRoot) {\n throw new Error(\"Cannot remove the root element. \" + this.debugInfo());\n }\n i = this.parent.children.indexOf(this);\n [].splice.apply(this.parent.children, [i, i - i + 1].concat(ref2 = [])), ref2;\n return this.parent;\n };\n\n XMLNode.prototype.node = function(name, attributes, text) {\n var child, ref2;\n if (name != null) {\n name = getValue(name);\n }\n attributes || (attributes = {});\n attributes = getValue(attributes);\n if (!isObject(attributes)) {\n ref2 = [attributes, text], text = ref2[0], attributes = ref2[1];\n }\n child = new XMLElement(this, name, attributes);\n if (text != null) {\n child.text(text);\n }\n this.children.push(child);\n return child;\n };\n\n XMLNode.prototype.text = function(value) {\n var child;\n if (isObject(value)) {\n this.element(value);\n }\n child = new XMLText(this, value);\n this.children.push(child);\n return this;\n };\n\n XMLNode.prototype.cdata = function(value) {\n var child;\n child = new XMLCData(this, value);\n this.children.push(child);\n return this;\n };\n\n XMLNode.prototype.comment = function(value) {\n var child;\n child = new XMLComment(this, value);\n this.children.push(child);\n return this;\n };\n\n XMLNode.prototype.commentBefore = function(value) {\n var child, i, removed;\n i = this.parent.children.indexOf(this);\n removed = this.parent.children.splice(i);\n child = this.parent.comment(value);\n Array.prototype.push.apply(this.parent.children, removed);\n return this;\n };\n\n XMLNode.prototype.commentAfter = function(value) {\n var child, i, removed;\n i = this.parent.children.indexOf(this);\n removed = this.parent.children.splice(i + 1);\n child = this.parent.comment(value);\n Array.prototype.push.apply(this.parent.children, removed);\n return this;\n };\n\n XMLNode.prototype.raw = function(value) {\n var child;\n child = new XMLRaw(this, value);\n this.children.push(child);\n return this;\n };\n\n XMLNode.prototype.dummy = function() {\n var child;\n child = new XMLDummy(this);\n return child;\n };\n\n XMLNode.prototype.instruction = function(target, value) {\n var insTarget, insValue, instruction, j, len;\n if (target != null) {\n target = getValue(target);\n }\n if (value != null) {\n value = getValue(value);\n }\n if (Array.isArray(target)) {\n for (j = 0, len = target.length; j < len; j++) {\n insTarget = target[j];\n this.instruction(insTarget);\n }\n } else if (isObject(target)) {\n for (insTarget in target) {\n if (!hasProp.call(target, insTarget)) continue;\n insValue = target[insTarget];\n this.instruction(insTarget, insValue);\n }\n } else {\n if (isFunction(value)) {\n value = value.apply();\n }\n instruction = new XMLProcessingInstruction(this, target, value);\n this.children.push(instruction);\n }\n return this;\n };\n\n XMLNode.prototype.instructionBefore = function(target, value) {\n var child, i, removed;\n i = this.parent.children.indexOf(this);\n removed = this.parent.children.splice(i);\n child = this.parent.instruction(target, value);\n Array.prototype.push.apply(this.parent.children, removed);\n return this;\n };\n\n XMLNode.prototype.instructionAfter = function(target, value) {\n var child, i, removed;\n i = this.parent.children.indexOf(this);\n removed = this.parent.children.splice(i + 1);\n child = this.parent.instruction(target, value);\n Array.prototype.push.apply(this.parent.children, removed);\n return this;\n };\n\n XMLNode.prototype.declaration = function(version, encoding, standalone) {\n var doc, xmldec;\n doc = this.document();\n xmldec = new XMLDeclaration(doc, version, encoding, standalone);\n if (doc.children.length === 0) {\n doc.children.unshift(xmldec);\n } else if (doc.children[0].type === NodeType.Declaration) {\n doc.children[0] = xmldec;\n } else {\n doc.children.unshift(xmldec);\n }\n return doc.root() || doc;\n };\n\n XMLNode.prototype.dtd = function(pubID, sysID) {\n var child, doc, doctype, i, j, k, len, len1, ref2, ref3;\n doc = this.document();\n doctype = new XMLDocType(doc, pubID, sysID);\n ref2 = doc.children;\n for (i = j = 0, len = ref2.length; j < len; i = ++j) {\n child = ref2[i];\n if (child.type === NodeType.DocType) {\n doc.children[i] = doctype;\n return doctype;\n }\n }\n ref3 = doc.children;\n for (i = k = 0, len1 = ref3.length; k < len1; i = ++k) {\n child = ref3[i];\n if (child.isRoot) {\n doc.children.splice(i, 0, doctype);\n return doctype;\n }\n }\n doc.children.push(doctype);\n return doctype;\n };\n\n XMLNode.prototype.up = function() {\n if (this.isRoot) {\n throw new Error(\"The root node has no parent. Use doc() if you need to get the document object.\");\n }\n return this.parent;\n };\n\n XMLNode.prototype.root = function() {\n var node;\n node = this;\n while (node) {\n if (node.type === NodeType.Document) {\n return node.rootObject;\n } else if (node.isRoot) {\n return node;\n } else {\n node = node.parent;\n }\n }\n };\n\n XMLNode.prototype.document = function() {\n var node;\n node = this;\n while (node) {\n if (node.type === NodeType.Document) {\n return node;\n } else {\n node = node.parent;\n }\n }\n };\n\n XMLNode.prototype.end = function(options) {\n return this.document().end(options);\n };\n\n XMLNode.prototype.prev = function() {\n var i;\n i = this.parent.children.indexOf(this);\n if (i < 1) {\n throw new Error(\"Already at the first node. \" + this.debugInfo());\n }\n return this.parent.children[i - 1];\n };\n\n XMLNode.prototype.next = function() {\n var i;\n i = this.parent.children.indexOf(this);\n if (i === -1 || i === this.parent.children.length - 1) {\n throw new Error(\"Already at the last node. \" + this.debugInfo());\n }\n return this.parent.children[i + 1];\n };\n\n XMLNode.prototype.importDocument = function(doc) {\n var clonedRoot;\n clonedRoot = doc.root().clone();\n clonedRoot.parent = this;\n clonedRoot.isRoot = false;\n this.children.push(clonedRoot);\n return this;\n };\n\n XMLNode.prototype.debugInfo = function(name) {\n var ref2, ref3;\n name = name || this.name;\n if ((name == null) && !((ref2 = this.parent) != null ? ref2.name : void 0)) {\n return \"\";\n } else if (name == null) {\n return \"parent: <\" + this.parent.name + \">\";\n } else if (!((ref3 = this.parent) != null ? ref3.name : void 0)) {\n return \"node: <\" + name + \">\";\n } else {\n return \"node: <\" + name + \">, parent: <\" + this.parent.name + \">\";\n }\n };\n\n XMLNode.prototype.ele = function(name, attributes, text) {\n return this.element(name, attributes, text);\n };\n\n XMLNode.prototype.nod = function(name, attributes, text) {\n return this.node(name, attributes, text);\n };\n\n XMLNode.prototype.txt = function(value) {\n return this.text(value);\n };\n\n XMLNode.prototype.dat = function(value) {\n return this.cdata(value);\n };\n\n XMLNode.prototype.com = function(value) {\n return this.comment(value);\n };\n\n XMLNode.prototype.ins = function(target, value) {\n return this.instruction(target, value);\n };\n\n XMLNode.prototype.doc = function() {\n return this.document();\n };\n\n XMLNode.prototype.dec = function(version, encoding, standalone) {\n return this.declaration(version, encoding, standalone);\n };\n\n XMLNode.prototype.e = function(name, attributes, text) {\n return this.element(name, attributes, text);\n };\n\n XMLNode.prototype.n = function(name, attributes, text) {\n return this.node(name, attributes, text);\n };\n\n XMLNode.prototype.t = function(value) {\n return this.text(value);\n };\n\n XMLNode.prototype.d = function(value) {\n return this.cdata(value);\n };\n\n XMLNode.prototype.c = function(value) {\n return this.comment(value);\n };\n\n XMLNode.prototype.r = function(value) {\n return this.raw(value);\n };\n\n XMLNode.prototype.i = function(target, value) {\n return this.instruction(target, value);\n };\n\n XMLNode.prototype.u = function() {\n return this.up();\n };\n\n XMLNode.prototype.importXMLBuilder = function(doc) {\n return this.importDocument(doc);\n };\n\n XMLNode.prototype.replaceChild = function(newChild, oldChild) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLNode.prototype.removeChild = function(oldChild) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLNode.prototype.appendChild = function(newChild) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLNode.prototype.hasChildNodes = function() {\n return this.children.length !== 0;\n };\n\n XMLNode.prototype.cloneNode = function(deep) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLNode.prototype.normalize = function() {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLNode.prototype.isSupported = function(feature, version) {\n return true;\n };\n\n XMLNode.prototype.hasAttributes = function() {\n return this.attribs.length !== 0;\n };\n\n XMLNode.prototype.compareDocumentPosition = function(other) {\n var ref, res;\n ref = this;\n if (ref === other) {\n return 0;\n } else if (this.document() !== other.document()) {\n res = DocumentPosition.Disconnected | DocumentPosition.ImplementationSpecific;\n if (Math.random() < 0.5) {\n res |= DocumentPosition.Preceding;\n } else {\n res |= DocumentPosition.Following;\n }\n return res;\n } else if (ref.isAncestor(other)) {\n return DocumentPosition.Contains | DocumentPosition.Preceding;\n } else if (ref.isDescendant(other)) {\n return DocumentPosition.Contains | DocumentPosition.Following;\n } else if (ref.isPreceding(other)) {\n return DocumentPosition.Preceding;\n } else {\n return DocumentPosition.Following;\n }\n };\n\n XMLNode.prototype.isSameNode = function(other) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLNode.prototype.lookupPrefix = function(namespaceURI) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLNode.prototype.isDefaultNamespace = function(namespaceURI) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLNode.prototype.lookupNamespaceURI = function(prefix) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLNode.prototype.isEqualNode = function(node) {\n var i, j, ref2;\n if (node.nodeType !== this.nodeType) {\n return false;\n }\n if (node.children.length !== this.children.length) {\n return false;\n }\n for (i = j = 0, ref2 = this.children.length - 1; 0 <= ref2 ? j <= ref2 : j >= ref2; i = 0 <= ref2 ? ++j : --j) {\n if (!this.children[i].isEqualNode(node.children[i])) {\n return false;\n }\n }\n return true;\n };\n\n XMLNode.prototype.getFeature = function(feature, version) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLNode.prototype.setUserData = function(key, data, handler) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLNode.prototype.getUserData = function(key) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLNode.prototype.contains = function(other) {\n if (!other) {\n return false;\n }\n return other === this || this.isDescendant(other);\n };\n\n XMLNode.prototype.isDescendant = function(node) {\n var child, isDescendantChild, j, len, ref2;\n ref2 = this.children;\n for (j = 0, len = ref2.length; j < len; j++) {\n child = ref2[j];\n if (node === child) {\n return true;\n }\n isDescendantChild = child.isDescendant(node);\n if (isDescendantChild) {\n return true;\n }\n }\n return false;\n };\n\n XMLNode.prototype.isAncestor = function(node) {\n return node.isDescendant(this);\n };\n\n XMLNode.prototype.isPreceding = function(node) {\n var nodePos, thisPos;\n nodePos = this.treePosition(node);\n thisPos = this.treePosition(this);\n if (nodePos === -1 || thisPos === -1) {\n return false;\n } else {\n return nodePos < thisPos;\n }\n };\n\n XMLNode.prototype.isFollowing = function(node) {\n var nodePos, thisPos;\n nodePos = this.treePosition(node);\n thisPos = this.treePosition(this);\n if (nodePos === -1 || thisPos === -1) {\n return false;\n } else {\n return nodePos > thisPos;\n }\n };\n\n XMLNode.prototype.treePosition = function(node) {\n var found, pos;\n pos = 0;\n found = false;\n this.foreachTreeNode(this.document(), function(childNode) {\n pos++;\n if (!found && childNode === node) {\n return found = true;\n }\n });\n if (found) {\n return pos;\n } else {\n return -1;\n }\n };\n\n XMLNode.prototype.foreachTreeNode = function(node, func) {\n var child, j, len, ref2, res;\n node || (node = this.document());\n ref2 = node.children;\n for (j = 0, len = ref2.length; j < len; j++) {\n child = ref2[j];\n if (res = func(child)) {\n return res;\n } else {\n res = this.foreachTreeNode(child, func);\n if (res) {\n return res;\n }\n }\n }\n };\n\n return XMLNode;\n\n })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var XMLNodeList;\n\n module.exports = XMLNodeList = (function() {\n function XMLNodeList(nodes) {\n this.nodes = nodes;\n }\n\n Object.defineProperty(XMLNodeList.prototype, 'length', {\n get: function() {\n return this.nodes.length || 0;\n }\n });\n\n XMLNodeList.prototype.clone = function() {\n return this.nodes = null;\n };\n\n XMLNodeList.prototype.item = function(index) {\n return this.nodes[index] || null;\n };\n\n return XMLNodeList;\n\n })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLCharacterData, XMLProcessingInstruction,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n NodeType = require('./NodeType');\n\n XMLCharacterData = require('./XMLCharacterData');\n\n module.exports = XMLProcessingInstruction = (function(superClass) {\n extend(XMLProcessingInstruction, superClass);\n\n function XMLProcessingInstruction(parent, target, value) {\n XMLProcessingInstruction.__super__.constructor.call(this, parent);\n if (target == null) {\n throw new Error(\"Missing instruction target. \" + this.debugInfo());\n }\n this.type = NodeType.ProcessingInstruction;\n this.target = this.stringify.insTarget(target);\n this.name = this.target;\n if (value) {\n this.value = this.stringify.insValue(value);\n }\n }\n\n XMLProcessingInstruction.prototype.clone = function() {\n return Object.create(this);\n };\n\n XMLProcessingInstruction.prototype.toString = function(options) {\n return this.options.writer.processingInstruction(this, this.options.writer.filterOptions(options));\n };\n\n XMLProcessingInstruction.prototype.isEqualNode = function(node) {\n if (!XMLProcessingInstruction.__super__.isEqualNode.apply(this, arguments).isEqualNode(node)) {\n return false;\n }\n if (node.target !== this.target) {\n return false;\n }\n return true;\n };\n\n return XMLProcessingInstruction;\n\n })(XMLCharacterData);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLNode, XMLRaw,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n NodeType = require('./NodeType');\n\n XMLNode = require('./XMLNode');\n\n module.exports = XMLRaw = (function(superClass) {\n extend(XMLRaw, superClass);\n\n function XMLRaw(parent, text) {\n XMLRaw.__super__.constructor.call(this, parent);\n if (text == null) {\n throw new Error(\"Missing raw text. \" + this.debugInfo());\n }\n this.type = NodeType.Raw;\n this.value = this.stringify.raw(text);\n }\n\n XMLRaw.prototype.clone = function() {\n return Object.create(this);\n };\n\n XMLRaw.prototype.toString = function(options) {\n return this.options.writer.raw(this, this.options.writer.filterOptions(options));\n };\n\n return XMLRaw;\n\n })(XMLNode);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, WriterState, XMLStreamWriter, XMLWriterBase,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n NodeType = require('./NodeType');\n\n XMLWriterBase = require('./XMLWriterBase');\n\n WriterState = require('./WriterState');\n\n module.exports = XMLStreamWriter = (function(superClass) {\n extend(XMLStreamWriter, superClass);\n\n function XMLStreamWriter(stream, options) {\n this.stream = stream;\n XMLStreamWriter.__super__.constructor.call(this, options);\n }\n\n XMLStreamWriter.prototype.endline = function(node, options, level) {\n if (node.isLastRootNode && options.state === WriterState.CloseTag) {\n return '';\n } else {\n return XMLStreamWriter.__super__.endline.call(this, node, options, level);\n }\n };\n\n XMLStreamWriter.prototype.document = function(doc, options) {\n var child, i, j, k, len, len1, ref, ref1, results;\n ref = doc.children;\n for (i = j = 0, len = ref.length; j < len; i = ++j) {\n child = ref[i];\n child.isLastRootNode = i === doc.children.length - 1;\n }\n options = this.filterOptions(options);\n ref1 = doc.children;\n results = [];\n for (k = 0, len1 = ref1.length; k < len1; k++) {\n child = ref1[k];\n results.push(this.writeChildNode(child, options, 0));\n }\n return results;\n };\n\n XMLStreamWriter.prototype.attribute = function(att, options, level) {\n return this.stream.write(XMLStreamWriter.__super__.attribute.call(this, att, options, level));\n };\n\n XMLStreamWriter.prototype.cdata = function(node, options, level) {\n return this.stream.write(XMLStreamWriter.__super__.cdata.call(this, node, options, level));\n };\n\n XMLStreamWriter.prototype.comment = function(node, options, level) {\n return this.stream.write(XMLStreamWriter.__super__.comment.call(this, node, options, level));\n };\n\n XMLStreamWriter.prototype.declaration = function(node, options, level) {\n return this.stream.write(XMLStreamWriter.__super__.declaration.call(this, node, options, level));\n };\n\n XMLStreamWriter.prototype.docType = function(node, options, level) {\n var child, j, len, ref;\n level || (level = 0);\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n this.stream.write(this.indent(node, options, level));\n this.stream.write('<!DOCTYPE ' + node.root().name);\n if (node.pubID && node.sysID) {\n this.stream.write(' PUBLIC \"' + node.pubID + '\" \"' + node.sysID + '\"');\n } else if (node.sysID) {\n this.stream.write(' SYSTEM \"' + node.sysID + '\"');\n }\n if (node.children.length > 0) {\n this.stream.write(' [');\n this.stream.write(this.endline(node, options, level));\n options.state = WriterState.InsideTag;\n ref = node.children;\n for (j = 0, len = ref.length; j < len; j++) {\n child = ref[j];\n this.writeChildNode(child, options, level + 1);\n }\n options.state = WriterState.CloseTag;\n this.stream.write(']');\n }\n options.state = WriterState.CloseTag;\n this.stream.write(options.spaceBeforeSlash + '>');\n this.stream.write(this.endline(node, options, level));\n options.state = WriterState.None;\n return this.closeNode(node, options, level);\n };\n\n XMLStreamWriter.prototype.element = function(node, options, level) {\n var att, child, childNodeCount, firstChildNode, j, len, name, prettySuppressed, ref, ref1;\n level || (level = 0);\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n this.stream.write(this.indent(node, options, level) + '<' + node.name);\n ref = node.attribs;\n for (name in ref) {\n if (!hasProp.call(ref, name)) continue;\n att = ref[name];\n this.attribute(att, options, level);\n }\n childNodeCount = node.children.length;\n firstChildNode = childNodeCount === 0 ? null : node.children[0];\n if (childNodeCount === 0 || node.children.every(function(e) {\n return (e.type === NodeType.Text || e.type === NodeType.Raw) && e.value === '';\n })) {\n if (options.allowEmpty) {\n this.stream.write('>');\n options.state = WriterState.CloseTag;\n this.stream.write('</' + node.name + '>');\n } else {\n options.state = WriterState.CloseTag;\n this.stream.write(options.spaceBeforeSlash + '/>');\n }\n } else if (options.pretty && childNodeCount === 1 && (firstChildNode.type === NodeType.Text || firstChildNode.type === NodeType.Raw) && (firstChildNode.value != null)) {\n this.stream.write('>');\n options.state = WriterState.InsideTag;\n options.suppressPrettyCount++;\n prettySuppressed = true;\n this.writeChildNode(firstChildNode, options, level + 1);\n options.suppressPrettyCount--;\n prettySuppressed = false;\n options.state = WriterState.CloseTag;\n this.stream.write('</' + node.name + '>');\n } else {\n this.stream.write('>' + this.endline(node, options, level));\n options.state = WriterState.InsideTag;\n ref1 = node.children;\n for (j = 0, len = ref1.length; j < len; j++) {\n child = ref1[j];\n this.writeChildNode(child, options, level + 1);\n }\n options.state = WriterState.CloseTag;\n this.stream.write(this.indent(node, options, level) + '</' + node.name + '>');\n }\n this.stream.write(this.endline(node, options, level));\n options.state = WriterState.None;\n return this.closeNode(node, options, level);\n };\n\n XMLStreamWriter.prototype.processingInstruction = function(node, options, level) {\n return this.stream.write(XMLStreamWriter.__super__.processingInstruction.call(this, node, options, level));\n };\n\n XMLStreamWriter.prototype.raw = function(node, options, level) {\n return this.stream.write(XMLStreamWriter.__super__.raw.call(this, node, options, level));\n };\n\n XMLStreamWriter.prototype.text = function(node, options, level) {\n return this.stream.write(XMLStreamWriter.__super__.text.call(this, node, options, level));\n };\n\n XMLStreamWriter.prototype.dtdAttList = function(node, options, level) {\n return this.stream.write(XMLStreamWriter.__super__.dtdAttList.call(this, node, options, level));\n };\n\n XMLStreamWriter.prototype.dtdElement = function(node, options, level) {\n return this.stream.write(XMLStreamWriter.__super__.dtdElement.call(this, node, options, level));\n };\n\n XMLStreamWriter.prototype.dtdEntity = function(node, options, level) {\n return this.stream.write(XMLStreamWriter.__super__.dtdEntity.call(this, node, options, level));\n };\n\n XMLStreamWriter.prototype.dtdNotation = function(node, options, level) {\n return this.stream.write(XMLStreamWriter.__super__.dtdNotation.call(this, node, options, level));\n };\n\n return XMLStreamWriter;\n\n })(XMLWriterBase);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var XMLStringWriter, XMLWriterBase,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n XMLWriterBase = require('./XMLWriterBase');\n\n module.exports = XMLStringWriter = (function(superClass) {\n extend(XMLStringWriter, superClass);\n\n function XMLStringWriter(options) {\n XMLStringWriter.__super__.constructor.call(this, options);\n }\n\n XMLStringWriter.prototype.document = function(doc, options) {\n var child, i, len, r, ref;\n options = this.filterOptions(options);\n r = '';\n ref = doc.children;\n for (i = 0, len = ref.length; i < len; i++) {\n child = ref[i];\n r += this.writeChildNode(child, options, 0);\n }\n if (options.pretty && r.slice(-options.newline.length) === options.newline) {\n r = r.slice(0, -options.newline.length);\n }\n return r;\n };\n\n return XMLStringWriter;\n\n })(XMLWriterBase);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var XMLStringifier,\n bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; },\n hasProp = {}.hasOwnProperty;\n\n module.exports = XMLStringifier = (function() {\n function XMLStringifier(options) {\n this.assertLegalName = bind(this.assertLegalName, this);\n this.assertLegalChar = bind(this.assertLegalChar, this);\n var key, ref, value;\n options || (options = {});\n this.options = options;\n if (!this.options.version) {\n this.options.version = '1.0';\n }\n ref = options.stringify || {};\n for (key in ref) {\n if (!hasProp.call(ref, key)) continue;\n value = ref[key];\n this[key] = value;\n }\n }\n\n XMLStringifier.prototype.name = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n return this.assertLegalName('' + val || '');\n };\n\n XMLStringifier.prototype.text = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n return this.assertLegalChar(this.textEscape('' + val || ''));\n };\n\n XMLStringifier.prototype.cdata = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n val = '' + val || '';\n val = val.replace(']]>', ']]]]><![CDATA[>');\n return this.assertLegalChar(val);\n };\n\n XMLStringifier.prototype.comment = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n val = '' + val || '';\n if (val.match(/--/)) {\n throw new Error(\"Comment text cannot contain double-hypen: \" + val);\n }\n return this.assertLegalChar(val);\n };\n\n XMLStringifier.prototype.raw = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n return '' + val || '';\n };\n\n XMLStringifier.prototype.attValue = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n return this.assertLegalChar(this.attEscape(val = '' + val || ''));\n };\n\n XMLStringifier.prototype.insTarget = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n return this.assertLegalChar('' + val || '');\n };\n\n XMLStringifier.prototype.insValue = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n val = '' + val || '';\n if (val.match(/\\?>/)) {\n throw new Error(\"Invalid processing instruction value: \" + val);\n }\n return this.assertLegalChar(val);\n };\n\n XMLStringifier.prototype.xmlVersion = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n val = '' + val || '';\n if (!val.match(/1\\.[0-9]+/)) {\n throw new Error(\"Invalid version number: \" + val);\n }\n return val;\n };\n\n XMLStringifier.prototype.xmlEncoding = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n val = '' + val || '';\n if (!val.match(/^[A-Za-z](?:[A-Za-z0-9._-])*$/)) {\n throw new Error(\"Invalid encoding: \" + val);\n }\n return this.assertLegalChar(val);\n };\n\n XMLStringifier.prototype.xmlStandalone = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n if (val) {\n return \"yes\";\n } else {\n return \"no\";\n }\n };\n\n XMLStringifier.prototype.dtdPubID = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n return this.assertLegalChar('' + val || '');\n };\n\n XMLStringifier.prototype.dtdSysID = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n return this.assertLegalChar('' + val || '');\n };\n\n XMLStringifier.prototype.dtdElementValue = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n return this.assertLegalChar('' + val || '');\n };\n\n XMLStringifier.prototype.dtdAttType = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n return this.assertLegalChar('' + val || '');\n };\n\n XMLStringifier.prototype.dtdAttDefault = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n return this.assertLegalChar('' + val || '');\n };\n\n XMLStringifier.prototype.dtdEntityValue = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n return this.assertLegalChar('' + val || '');\n };\n\n XMLStringifier.prototype.dtdNData = function(val) {\n if (this.options.noValidation) {\n return val;\n }\n return this.assertLegalChar('' + val || '');\n };\n\n XMLStringifier.prototype.convertAttKey = '@';\n\n XMLStringifier.prototype.convertPIKey = '?';\n\n XMLStringifier.prototype.convertTextKey = '#text';\n\n XMLStringifier.prototype.convertCDataKey = '#cdata';\n\n XMLStringifier.prototype.convertCommentKey = '#comment';\n\n XMLStringifier.prototype.convertRawKey = '#raw';\n\n XMLStringifier.prototype.assertLegalChar = function(str) {\n var regex, res;\n if (this.options.noValidation) {\n return str;\n }\n regex = '';\n if (this.options.version === '1.0') {\n regex = /[\\0-\\x08\\x0B\\f\\x0E-\\x1F\\uFFFE\\uFFFF]|[\\uD800-\\uDBFF](?![\\uDC00-\\uDFFF])|(?:[^\\uD800-\\uDBFF]|^)[\\uDC00-\\uDFFF]/;\n if (res = str.match(regex)) {\n throw new Error(\"Invalid character in string: \" + str + \" at index \" + res.index);\n }\n } else if (this.options.version === '1.1') {\n regex = /[\\0\\uFFFE\\uFFFF]|[\\uD800-\\uDBFF](?![\\uDC00-\\uDFFF])|(?:[^\\uD800-\\uDBFF]|^)[\\uDC00-\\uDFFF]/;\n if (res = str.match(regex)) {\n throw new Error(\"Invalid character in string: \" + str + \" at index \" + res.index);\n }\n }\n return str;\n };\n\n XMLStringifier.prototype.assertLegalName = function(str) {\n var regex;\n if (this.options.noValidation) {\n return str;\n }\n this.assertLegalChar(str);\n regex = /^([:A-Z_a-z\\xC0-\\xD6\\xD8-\\xF6\\xF8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD]|[\\uD800-\\uDB7F][\\uDC00-\\uDFFF])([\\x2D\\.0-:A-Z_a-z\\xB7\\xC0-\\xD6\\xD8-\\xF6\\xF8-\\u037D\\u037F-\\u1FFF\\u200C\\u200D\\u203F\\u2040\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD]|[\\uD800-\\uDB7F][\\uDC00-\\uDFFF])*$/;\n if (!str.match(regex)) {\n throw new Error(\"Invalid character in name\");\n }\n return str;\n };\n\n XMLStringifier.prototype.textEscape = function(str) {\n var ampregex;\n if (this.options.noValidation) {\n return str;\n }\n ampregex = this.options.noDoubleEncoding ? /(?!&\\S+;)&/g : /&/g;\n return str.replace(ampregex, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/\\r/g, '&#xD;');\n };\n\n XMLStringifier.prototype.attEscape = function(str) {\n var ampregex;\n if (this.options.noValidation) {\n return str;\n }\n ampregex = this.options.noDoubleEncoding ? /(?!&\\S+;)&/g : /&/g;\n return str.replace(ampregex, '&amp;').replace(/</g, '&lt;').replace(/\"/g, '&quot;').replace(/\\t/g, '&#x9;').replace(/\\n/g, '&#xA;').replace(/\\r/g, '&#xD;');\n };\n\n return XMLStringifier;\n\n })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, XMLCharacterData, XMLText,\n extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n hasProp = {}.hasOwnProperty;\n\n NodeType = require('./NodeType');\n\n XMLCharacterData = require('./XMLCharacterData');\n\n module.exports = XMLText = (function(superClass) {\n extend(XMLText, superClass);\n\n function XMLText(parent, text) {\n XMLText.__super__.constructor.call(this, parent);\n if (text == null) {\n throw new Error(\"Missing element text. \" + this.debugInfo());\n }\n this.name = \"#text\";\n this.type = NodeType.Text;\n this.value = this.stringify.text(text);\n }\n\n Object.defineProperty(XMLText.prototype, 'isElementContentWhitespace', {\n get: function() {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n }\n });\n\n Object.defineProperty(XMLText.prototype, 'wholeText', {\n get: function() {\n var next, prev, str;\n str = '';\n prev = this.previousSibling;\n while (prev) {\n str = prev.data + str;\n prev = prev.previousSibling;\n }\n str += this.data;\n next = this.nextSibling;\n while (next) {\n str = str + next.data;\n next = next.nextSibling;\n }\n return str;\n }\n });\n\n XMLText.prototype.clone = function() {\n return Object.create(this);\n };\n\n XMLText.prototype.toString = function(options) {\n return this.options.writer.text(this, this.options.writer.filterOptions(options));\n };\n\n XMLText.prototype.splitText = function(offset) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n XMLText.prototype.replaceWholeText = function(content) {\n throw new Error(\"This DOM method is not implemented.\" + this.debugInfo());\n };\n\n return XMLText;\n\n })(XMLCharacterData);\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, WriterState, XMLCData, XMLComment, XMLDTDAttList, XMLDTDElement, XMLDTDEntity, XMLDTDNotation, XMLDeclaration, XMLDocType, XMLDummy, XMLElement, XMLProcessingInstruction, XMLRaw, XMLText, XMLWriterBase, assign,\n hasProp = {}.hasOwnProperty;\n\n assign = require('./Utility').assign;\n\n NodeType = require('./NodeType');\n\n XMLDeclaration = require('./XMLDeclaration');\n\n XMLDocType = require('./XMLDocType');\n\n XMLCData = require('./XMLCData');\n\n XMLComment = require('./XMLComment');\n\n XMLElement = require('./XMLElement');\n\n XMLRaw = require('./XMLRaw');\n\n XMLText = require('./XMLText');\n\n XMLProcessingInstruction = require('./XMLProcessingInstruction');\n\n XMLDummy = require('./XMLDummy');\n\n XMLDTDAttList = require('./XMLDTDAttList');\n\n XMLDTDElement = require('./XMLDTDElement');\n\n XMLDTDEntity = require('./XMLDTDEntity');\n\n XMLDTDNotation = require('./XMLDTDNotation');\n\n WriterState = require('./WriterState');\n\n module.exports = XMLWriterBase = (function() {\n function XMLWriterBase(options) {\n var key, ref, value;\n options || (options = {});\n this.options = options;\n ref = options.writer || {};\n for (key in ref) {\n if (!hasProp.call(ref, key)) continue;\n value = ref[key];\n this[\"_\" + key] = this[key];\n this[key] = value;\n }\n }\n\n XMLWriterBase.prototype.filterOptions = function(options) {\n var filteredOptions, ref, ref1, ref2, ref3, ref4, ref5, ref6;\n options || (options = {});\n options = assign({}, this.options, options);\n filteredOptions = {\n writer: this\n };\n filteredOptions.pretty = options.pretty || false;\n filteredOptions.allowEmpty = options.allowEmpty || false;\n filteredOptions.indent = (ref = options.indent) != null ? ref : ' ';\n filteredOptions.newline = (ref1 = options.newline) != null ? ref1 : '\\n';\n filteredOptions.offset = (ref2 = options.offset) != null ? ref2 : 0;\n filteredOptions.dontPrettyTextNodes = (ref3 = (ref4 = options.dontPrettyTextNodes) != null ? ref4 : options.dontprettytextnodes) != null ? ref3 : 0;\n filteredOptions.spaceBeforeSlash = (ref5 = (ref6 = options.spaceBeforeSlash) != null ? ref6 : options.spacebeforeslash) != null ? ref5 : '';\n if (filteredOptions.spaceBeforeSlash === true) {\n filteredOptions.spaceBeforeSlash = ' ';\n }\n filteredOptions.suppressPrettyCount = 0;\n filteredOptions.user = {};\n filteredOptions.state = WriterState.None;\n return filteredOptions;\n };\n\n XMLWriterBase.prototype.indent = function(node, options, level) {\n var indentLevel;\n if (!options.pretty || options.suppressPrettyCount) {\n return '';\n } else if (options.pretty) {\n indentLevel = (level || 0) + options.offset + 1;\n if (indentLevel > 0) {\n return new Array(indentLevel).join(options.indent);\n }\n }\n return '';\n };\n\n XMLWriterBase.prototype.endline = function(node, options, level) {\n if (!options.pretty || options.suppressPrettyCount) {\n return '';\n } else {\n return options.newline;\n }\n };\n\n XMLWriterBase.prototype.attribute = function(att, options, level) {\n var r;\n this.openAttribute(att, options, level);\n r = ' ' + att.name + '=\"' + att.value + '\"';\n this.closeAttribute(att, options, level);\n return r;\n };\n\n XMLWriterBase.prototype.cdata = function(node, options, level) {\n var r;\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n r = this.indent(node, options, level) + '<![CDATA[';\n options.state = WriterState.InsideTag;\n r += node.value;\n options.state = WriterState.CloseTag;\n r += ']]>' + this.endline(node, options, level);\n options.state = WriterState.None;\n this.closeNode(node, options, level);\n return r;\n };\n\n XMLWriterBase.prototype.comment = function(node, options, level) {\n var r;\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n r = this.indent(node, options, level) + '<!-- ';\n options.state = WriterState.InsideTag;\n r += node.value;\n options.state = WriterState.CloseTag;\n r += ' -->' + this.endline(node, options, level);\n options.state = WriterState.None;\n this.closeNode(node, options, level);\n return r;\n };\n\n XMLWriterBase.prototype.declaration = function(node, options, level) {\n var r;\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n r = this.indent(node, options, level) + '<?xml';\n options.state = WriterState.InsideTag;\n r += ' version=\"' + node.version + '\"';\n if (node.encoding != null) {\n r += ' encoding=\"' + node.encoding + '\"';\n }\n if (node.standalone != null) {\n r += ' standalone=\"' + node.standalone + '\"';\n }\n options.state = WriterState.CloseTag;\n r += options.spaceBeforeSlash + '?>';\n r += this.endline(node, options, level);\n options.state = WriterState.None;\n this.closeNode(node, options, level);\n return r;\n };\n\n XMLWriterBase.prototype.docType = function(node, options, level) {\n var child, i, len, r, ref;\n level || (level = 0);\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n r = this.indent(node, options, level);\n r += '<!DOCTYPE ' + node.root().name;\n if (node.pubID && node.sysID) {\n r += ' PUBLIC \"' + node.pubID + '\" \"' + node.sysID + '\"';\n } else if (node.sysID) {\n r += ' SYSTEM \"' + node.sysID + '\"';\n }\n if (node.children.length > 0) {\n r += ' [';\n r += this.endline(node, options, level);\n options.state = WriterState.InsideTag;\n ref = node.children;\n for (i = 0, len = ref.length; i < len; i++) {\n child = ref[i];\n r += this.writeChildNode(child, options, level + 1);\n }\n options.state = WriterState.CloseTag;\n r += ']';\n }\n options.state = WriterState.CloseTag;\n r += options.spaceBeforeSlash + '>';\n r += this.endline(node, options, level);\n options.state = WriterState.None;\n this.closeNode(node, options, level);\n return r;\n };\n\n XMLWriterBase.prototype.element = function(node, options, level) {\n var att, child, childNodeCount, firstChildNode, i, j, len, len1, name, prettySuppressed, r, ref, ref1, ref2;\n level || (level = 0);\n prettySuppressed = false;\n r = '';\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n r += this.indent(node, options, level) + '<' + node.name;\n ref = node.attribs;\n for (name in ref) {\n if (!hasProp.call(ref, name)) continue;\n att = ref[name];\n r += this.attribute(att, options, level);\n }\n childNodeCount = node.children.length;\n firstChildNode = childNodeCount === 0 ? null : node.children[0];\n if (childNodeCount === 0 || node.children.every(function(e) {\n return (e.type === NodeType.Text || e.type === NodeType.Raw) && e.value === '';\n })) {\n if (options.allowEmpty) {\n r += '>';\n options.state = WriterState.CloseTag;\n r += '</' + node.name + '>' + this.endline(node, options, level);\n } else {\n options.state = WriterState.CloseTag;\n r += options.spaceBeforeSlash + '/>' + this.endline(node, options, level);\n }\n } else if (options.pretty && childNodeCount === 1 && (firstChildNode.type === NodeType.Text || firstChildNode.type === NodeType.Raw) && (firstChildNode.value != null)) {\n r += '>';\n options.state = WriterState.InsideTag;\n options.suppressPrettyCount++;\n prettySuppressed = true;\n r += this.writeChildNode(firstChildNode, options, level + 1);\n options.suppressPrettyCount--;\n prettySuppressed = false;\n options.state = WriterState.CloseTag;\n r += '</' + node.name + '>' + this.endline(node, options, level);\n } else {\n if (options.dontPrettyTextNodes) {\n ref1 = node.children;\n for (i = 0, len = ref1.length; i < len; i++) {\n child = ref1[i];\n if ((child.type === NodeType.Text || child.type === NodeType.Raw) && (child.value != null)) {\n options.suppressPrettyCount++;\n prettySuppressed = true;\n break;\n }\n }\n }\n r += '>' + this.endline(node, options, level);\n options.state = WriterState.InsideTag;\n ref2 = node.children;\n for (j = 0, len1 = ref2.length; j < len1; j++) {\n child = ref2[j];\n r += this.writeChildNode(child, options, level + 1);\n }\n options.state = WriterState.CloseTag;\n r += this.indent(node, options, level) + '</' + node.name + '>';\n if (prettySuppressed) {\n options.suppressPrettyCount--;\n }\n r += this.endline(node, options, level);\n options.state = WriterState.None;\n }\n this.closeNode(node, options, level);\n return r;\n };\n\n XMLWriterBase.prototype.writeChildNode = function(node, options, level) {\n switch (node.type) {\n case NodeType.CData:\n return this.cdata(node, options, level);\n case NodeType.Comment:\n return this.comment(node, options, level);\n case NodeType.Element:\n return this.element(node, options, level);\n case NodeType.Raw:\n return this.raw(node, options, level);\n case NodeType.Text:\n return this.text(node, options, level);\n case NodeType.ProcessingInstruction:\n return this.processingInstruction(node, options, level);\n case NodeType.Dummy:\n return '';\n case NodeType.Declaration:\n return this.declaration(node, options, level);\n case NodeType.DocType:\n return this.docType(node, options, level);\n case NodeType.AttributeDeclaration:\n return this.dtdAttList(node, options, level);\n case NodeType.ElementDeclaration:\n return this.dtdElement(node, options, level);\n case NodeType.EntityDeclaration:\n return this.dtdEntity(node, options, level);\n case NodeType.NotationDeclaration:\n return this.dtdNotation(node, options, level);\n default:\n throw new Error(\"Unknown XML node type: \" + node.constructor.name);\n }\n };\n\n XMLWriterBase.prototype.processingInstruction = function(node, options, level) {\n var r;\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n r = this.indent(node, options, level) + '<?';\n options.state = WriterState.InsideTag;\n r += node.target;\n if (node.value) {\n r += ' ' + node.value;\n }\n options.state = WriterState.CloseTag;\n r += options.spaceBeforeSlash + '?>';\n r += this.endline(node, options, level);\n options.state = WriterState.None;\n this.closeNode(node, options, level);\n return r;\n };\n\n XMLWriterBase.prototype.raw = function(node, options, level) {\n var r;\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n r = this.indent(node, options, level);\n options.state = WriterState.InsideTag;\n r += node.value;\n options.state = WriterState.CloseTag;\n r += this.endline(node, options, level);\n options.state = WriterState.None;\n this.closeNode(node, options, level);\n return r;\n };\n\n XMLWriterBase.prototype.text = function(node, options, level) {\n var r;\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n r = this.indent(node, options, level);\n options.state = WriterState.InsideTag;\n r += node.value;\n options.state = WriterState.CloseTag;\n r += this.endline(node, options, level);\n options.state = WriterState.None;\n this.closeNode(node, options, level);\n return r;\n };\n\n XMLWriterBase.prototype.dtdAttList = function(node, options, level) {\n var r;\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n r = this.indent(node, options, level) + '<!ATTLIST';\n options.state = WriterState.InsideTag;\n r += ' ' + node.elementName + ' ' + node.attributeName + ' ' + node.attributeType;\n if (node.defaultValueType !== '#DEFAULT') {\n r += ' ' + node.defaultValueType;\n }\n if (node.defaultValue) {\n r += ' \"' + node.defaultValue + '\"';\n }\n options.state = WriterState.CloseTag;\n r += options.spaceBeforeSlash + '>' + this.endline(node, options, level);\n options.state = WriterState.None;\n this.closeNode(node, options, level);\n return r;\n };\n\n XMLWriterBase.prototype.dtdElement = function(node, options, level) {\n var r;\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n r = this.indent(node, options, level) + '<!ELEMENT';\n options.state = WriterState.InsideTag;\n r += ' ' + node.name + ' ' + node.value;\n options.state = WriterState.CloseTag;\n r += options.spaceBeforeSlash + '>' + this.endline(node, options, level);\n options.state = WriterState.None;\n this.closeNode(node, options, level);\n return r;\n };\n\n XMLWriterBase.prototype.dtdEntity = function(node, options, level) {\n var r;\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n r = this.indent(node, options, level) + '<!ENTITY';\n options.state = WriterState.InsideTag;\n if (node.pe) {\n r += ' %';\n }\n r += ' ' + node.name;\n if (node.value) {\n r += ' \"' + node.value + '\"';\n } else {\n if (node.pubID && node.sysID) {\n r += ' PUBLIC \"' + node.pubID + '\" \"' + node.sysID + '\"';\n } else if (node.sysID) {\n r += ' SYSTEM \"' + node.sysID + '\"';\n }\n if (node.nData) {\n r += ' NDATA ' + node.nData;\n }\n }\n options.state = WriterState.CloseTag;\n r += options.spaceBeforeSlash + '>' + this.endline(node, options, level);\n options.state = WriterState.None;\n this.closeNode(node, options, level);\n return r;\n };\n\n XMLWriterBase.prototype.dtdNotation = function(node, options, level) {\n var r;\n this.openNode(node, options, level);\n options.state = WriterState.OpenTag;\n r = this.indent(node, options, level) + '<!NOTATION';\n options.state = WriterState.InsideTag;\n r += ' ' + node.name;\n if (node.pubID && node.sysID) {\n r += ' PUBLIC \"' + node.pubID + '\" \"' + node.sysID + '\"';\n } else if (node.pubID) {\n r += ' PUBLIC \"' + node.pubID + '\"';\n } else if (node.sysID) {\n r += ' SYSTEM \"' + node.sysID + '\"';\n }\n options.state = WriterState.CloseTag;\n r += options.spaceBeforeSlash + '>' + this.endline(node, options, level);\n options.state = WriterState.None;\n this.closeNode(node, options, level);\n return r;\n };\n\n XMLWriterBase.prototype.openNode = function(node, options, level) {};\n\n XMLWriterBase.prototype.closeNode = function(node, options, level) {};\n\n XMLWriterBase.prototype.openAttribute = function(att, options, level) {};\n\n XMLWriterBase.prototype.closeAttribute = function(att, options, level) {};\n\n return XMLWriterBase;\n\n })();\n\n}).call(this);\n","// Generated by CoffeeScript 1.12.7\n(function() {\n var NodeType, WriterState, XMLDOMImplementation, XMLDocument, XMLDocumentCB, XMLStreamWriter, XMLStringWriter, assign, isFunction, ref;\n\n ref = require('./Utility'), assign = ref.assign, isFunction = ref.isFunction;\n\n XMLDOMImplementation = require('./XMLDOMImplementation');\n\n XMLDocument = require('./XMLDocument');\n\n XMLDocumentCB = require('./XMLDocumentCB');\n\n XMLStringWriter = require('./XMLStringWriter');\n\n XMLStreamWriter = require('./XMLStreamWriter');\n\n NodeType = require('./NodeType');\n\n WriterState = require('./WriterState');\n\n module.exports.create = function(name, xmldec, doctype, options) {\n var doc, root;\n if (name == null) {\n throw new Error(\"Root element needs a name.\");\n }\n options = assign({}, xmldec, doctype, options);\n doc = new XMLDocument(options);\n root = doc.element(name);\n if (!options.headless) {\n doc.declaration(options);\n if ((options.pubID != null) || (options.sysID != null)) {\n doc.dtd(options);\n }\n }\n return root;\n };\n\n module.exports.begin = function(options, onData, onEnd) {\n var ref1;\n if (isFunction(options)) {\n ref1 = [options, onData], onData = ref1[0], onEnd = ref1[1];\n options = {};\n }\n if (onData) {\n return new XMLDocumentCB(options, onData, onEnd);\n } else {\n return new XMLDocument(options);\n }\n };\n\n module.exports.stringWriter = function(options) {\n return new XMLStringWriter(options);\n };\n\n module.exports.streamWriter = function(stream, options) {\n return new XMLStreamWriter(stream, options);\n };\n\n module.exports.implementation = new XMLDOMImplementation();\n\n module.exports.nodeType = NodeType;\n\n module.exports.writerState = WriterState;\n\n}).call(this);\n","import { getCurrentUser as A, onRequestTokenUpdate as ue, getRequestToken as de } from \"@nextcloud/auth\";\nimport { getLoggerBuilder as B } from \"@nextcloud/logger\";\nimport { getCanonicalLocale as ae } from \"@nextcloud/l10n\";\nimport { join as le, basename as fe, extname as ce, dirname as I } from \"path\";\nimport { encodePath as he } from \"@nextcloud/paths\";\nimport { generateRemoteUrl as pe } from \"@nextcloud/router\";\nimport { createClient as ge, getPatcher as we } from \"webdav\";\n/**\n * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @author Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst me = (e) => e === null ? B().setApp(\"files\").build() : B().setApp(\"files\").setUid(e.uid).build(), m = me(A());\n/**\n * @copyright Copyright (c) 2021 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nclass Ne {\n _entries = [];\n registerEntry(t) {\n this.validateEntry(t), this._entries.push(t);\n }\n unregisterEntry(t) {\n const r = typeof t == \"string\" ? this.getEntryIndex(t) : this.getEntryIndex(t.id);\n if (r === -1) {\n m.warn(\"Entry not found, nothing removed\", { entry: t, entries: this.getEntries() });\n return;\n }\n this._entries.splice(r, 1);\n }\n /**\n * Get the list of registered entries\n *\n * @param {Folder} context the creation context. Usually the current folder\n */\n getEntries(t) {\n return t ? this._entries.filter((r) => typeof r.enabled == \"function\" ? r.enabled(t) : !0) : this._entries;\n }\n getEntryIndex(t) {\n return this._entries.findIndex((r) => r.id === t);\n }\n validateEntry(t) {\n if (!t.id || !t.displayName || !(t.iconSvgInline || t.iconClass) || !t.handler)\n throw new Error(\"Invalid entry\");\n if (typeof t.id != \"string\" || typeof t.displayName != \"string\")\n throw new Error(\"Invalid id or displayName property\");\n if (t.iconClass && typeof t.iconClass != \"string\" || t.iconSvgInline && typeof t.iconSvgInline != \"string\")\n throw new Error(\"Invalid icon provided\");\n if (t.enabled !== void 0 && typeof t.enabled != \"function\")\n throw new Error(\"Invalid enabled property\");\n if (typeof t.handler != \"function\")\n throw new Error(\"Invalid handler property\");\n if (\"order\" in t && typeof t.order != \"number\")\n throw new Error(\"Invalid order property\");\n if (this.getEntryIndex(t.id) !== -1)\n throw new Error(\"Duplicate entry\");\n }\n}\nconst F = function() {\n return typeof window._nc_newfilemenu > \"u\" && (window._nc_newfilemenu = new Ne(), m.debug(\"NewFileMenu initialized\")), window._nc_newfilemenu;\n};\n/**\n * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @author Christoph Wurst <christoph@winzerhof-wurst.at>\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst C = [\"B\", \"KB\", \"MB\", \"GB\", \"TB\", \"PB\"], P = [\"B\", \"KiB\", \"MiB\", \"GiB\", \"TiB\", \"PiB\"];\nfunction Yt(e, t = !1, r = !1, s = !1) {\n r = r && !s, typeof e == \"string\" && (e = Number(e));\n let n = e > 0 ? Math.floor(Math.log(e) / Math.log(s ? 1e3 : 1024)) : 0;\n n = Math.min((r ? P.length : C.length) - 1, n);\n const i = r ? P[n] : C[n];\n let d = (e / Math.pow(s ? 1e3 : 1024, n)).toFixed(1);\n return t === !0 && n === 0 ? (d !== \"0.0\" ? \"< 1 \" : \"0 \") + (r ? P[1] : C[1]) : (n < 2 ? d = parseFloat(d).toFixed(0) : d = parseFloat(d).toLocaleString(ae()), d + \" \" + i);\n}\nfunction Jt(e, t = !1) {\n try {\n e = `${e}`.toLocaleLowerCase().replaceAll(/\\s+/g, \"\").replaceAll(\",\", \".\");\n } catch {\n return null;\n }\n const r = e.match(/^([0-9]*(\\.[0-9]*)?)([kmgtp]?)(i?)b?$/);\n if (r === null || r[1] === \".\" || r[1] === \"\")\n return null;\n const s = {\n \"\": 0,\n k: 1,\n m: 2,\n g: 3,\n t: 4,\n p: 5,\n e: 6\n }, n = `${r[1]}`, i = r[4] === \"i\" || t ? 1024 : 1e3;\n return Math.round(Number.parseFloat(n) * i ** s[r[3]]);\n}\n/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nvar W = /* @__PURE__ */ ((e) => (e.DEFAULT = \"default\", e.HIDDEN = \"hidden\", e))(W || {});\nclass Qt {\n _action;\n constructor(t) {\n this.validateAction(t), this._action = t;\n }\n get id() {\n return this._action.id;\n }\n get displayName() {\n return this._action.displayName;\n }\n get title() {\n return this._action.title;\n }\n get iconSvgInline() {\n return this._action.iconSvgInline;\n }\n get enabled() {\n return this._action.enabled;\n }\n get exec() {\n return this._action.exec;\n }\n get execBatch() {\n return this._action.execBatch;\n }\n get order() {\n return this._action.order;\n }\n get parent() {\n return this._action.parent;\n }\n get default() {\n return this._action.default;\n }\n get inline() {\n return this._action.inline;\n }\n get renderInline() {\n return this._action.renderInline;\n }\n validateAction(t) {\n if (!t.id || typeof t.id != \"string\")\n throw new Error(\"Invalid id\");\n if (!t.displayName || typeof t.displayName != \"function\")\n throw new Error(\"Invalid displayName function\");\n if (\"title\" in t && typeof t.title != \"function\")\n throw new Error(\"Invalid title function\");\n if (!t.iconSvgInline || typeof t.iconSvgInline != \"function\")\n throw new Error(\"Invalid iconSvgInline function\");\n if (!t.exec || typeof t.exec != \"function\")\n throw new Error(\"Invalid exec function\");\n if (\"enabled\" in t && typeof t.enabled != \"function\")\n throw new Error(\"Invalid enabled function\");\n if (\"execBatch\" in t && typeof t.execBatch != \"function\")\n throw new Error(\"Invalid execBatch function\");\n if (\"order\" in t && typeof t.order != \"number\")\n throw new Error(\"Invalid order\");\n if (\"parent\" in t && typeof t.parent != \"string\")\n throw new Error(\"Invalid parent\");\n if (t.default && !Object.values(W).includes(t.default))\n throw new Error(\"Invalid default\");\n if (\"inline\" in t && typeof t.inline != \"function\")\n throw new Error(\"Invalid inline function\");\n if (\"renderInline\" in t && typeof t.renderInline != \"function\")\n throw new Error(\"Invalid renderInline function\");\n }\n}\nconst Dt = function(e) {\n if (typeof window._nc_fileactions > \"u\" && (window._nc_fileactions = [], m.debug(\"FileActions initialized\")), window._nc_fileactions.find((t) => t.id === e.id)) {\n m.error(`FileAction ${e.id} already registered`, { action: e });\n return;\n }\n window._nc_fileactions.push(e);\n}, er = function() {\n return typeof window._nc_fileactions > \"u\" && (window._nc_fileactions = [], m.debug(\"FileActions initialized\")), window._nc_fileactions;\n};\n/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nclass tr {\n _header;\n constructor(t) {\n this.validateHeader(t), this._header = t;\n }\n get id() {\n return this._header.id;\n }\n get order() {\n return this._header.order;\n }\n get enabled() {\n return this._header.enabled;\n }\n get render() {\n return this._header.render;\n }\n get updated() {\n return this._header.updated;\n }\n validateHeader(t) {\n if (!t.id || !t.render || !t.updated)\n throw new Error(\"Invalid header: id, render and updated are required\");\n if (typeof t.id != \"string\")\n throw new Error(\"Invalid id property\");\n if (t.enabled !== void 0 && typeof t.enabled != \"function\")\n throw new Error(\"Invalid enabled property\");\n if (t.render && typeof t.render != \"function\")\n throw new Error(\"Invalid render property\");\n if (t.updated && typeof t.updated != \"function\")\n throw new Error(\"Invalid updated property\");\n }\n}\nconst rr = function(e) {\n if (typeof window._nc_filelistheader > \"u\" && (window._nc_filelistheader = [], m.debug(\"FileListHeaders initialized\")), window._nc_filelistheader.find((t) => t.id === e.id)) {\n m.error(`Header ${e.id} already registered`, { header: e });\n return;\n }\n window._nc_filelistheader.push(e);\n}, nr = function() {\n return typeof window._nc_filelistheader > \"u\" && (window._nc_filelistheader = [], m.debug(\"FileListHeaders initialized\")), window._nc_filelistheader;\n};\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nvar N = /* @__PURE__ */ ((e) => (e[e.NONE = 0] = \"NONE\", e[e.CREATE = 4] = \"CREATE\", e[e.READ = 1] = \"READ\", e[e.UPDATE = 2] = \"UPDATE\", e[e.DELETE = 8] = \"DELETE\", e[e.SHARE = 16] = \"SHARE\", e[e.ALL = 31] = \"ALL\", e))(N || {});\n/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n * @author Ferdinand Thiessen <opensource@fthiessen.de>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst Z = [\n \"d:getcontentlength\",\n \"d:getcontenttype\",\n \"d:getetag\",\n \"d:getlastmodified\",\n \"d:quota-available-bytes\",\n \"d:resourcetype\",\n \"nc:has-preview\",\n \"nc:is-encrypted\",\n \"nc:mount-type\",\n \"oc:comments-unread\",\n \"oc:favorite\",\n \"oc:fileid\",\n \"oc:owner-display-name\",\n \"oc:owner-id\",\n \"oc:permissions\",\n \"oc:size\"\n], j = {\n d: \"DAV:\",\n nc: \"http://nextcloud.org/ns\",\n oc: \"http://owncloud.org/ns\",\n ocs: \"http://open-collaboration-services.org/ns\"\n}, ir = function(e, t = { nc: \"http://nextcloud.org/ns\" }) {\n typeof window._nc_dav_properties > \"u\" && (window._nc_dav_properties = [...Z], window._nc_dav_namespaces = { ...j });\n const r = { ...window._nc_dav_namespaces, ...t };\n if (window._nc_dav_properties.find((n) => n === e))\n return m.warn(`${e} already registered`, { prop: e }), !1;\n if (e.startsWith(\"<\") || e.split(\":\").length !== 2)\n return m.error(`${e} is not valid. See example: 'oc:fileid'`, { prop: e }), !1;\n const s = e.split(\":\")[0];\n return r[s] ? (window._nc_dav_properties.push(e), window._nc_dav_namespaces = r, !0) : (m.error(`${e} namespace unknown`, { prop: e, namespaces: r }), !1);\n}, V = function() {\n return typeof window._nc_dav_properties > \"u\" && (window._nc_dav_properties = [...Z]), window._nc_dav_properties.map((e) => `<${e} />`).join(\" \");\n}, L = function() {\n return typeof window._nc_dav_namespaces > \"u\" && (window._nc_dav_namespaces = { ...j }), Object.keys(window._nc_dav_namespaces).map((e) => `xmlns:${e}=\"${window._nc_dav_namespaces?.[e]}\"`).join(\" \");\n}, sr = function() {\n return `<?xml version=\"1.0\"?>\n\t\t<d:propfind ${L()}>\n\t\t\t<d:prop>\n\t\t\t\t${V()}\n\t\t\t</d:prop>\n\t\t</d:propfind>`;\n}, Ee = function() {\n return `<?xml version=\"1.0\"?>\n\t\t<oc:filter-files ${L()}>\n\t\t\t<d:prop>\n\t\t\t\t${V()}\n\t\t\t</d:prop>\n\t\t\t<oc:filter-rules>\n\t\t\t\t<oc:favorite>1</oc:favorite>\n\t\t\t</oc:filter-rules>\n\t\t</oc:filter-files>`;\n}, or = function(e) {\n return `<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<d:searchrequest ${L()}\n\txmlns:ns=\"https://github.com/icewind1991/SearchDAV/ns\">\n\t<d:basicsearch>\n\t\t<d:select>\n\t\t\t<d:prop>\n\t\t\t\t${V()}\n\t\t\t</d:prop>\n\t\t</d:select>\n\t\t<d:from>\n\t\t\t<d:scope>\n\t\t\t\t<d:href>/files/${A()?.uid}/</d:href>\n\t\t\t\t<d:depth>infinity</d:depth>\n\t\t\t</d:scope>\n\t\t</d:from>\n\t\t<d:where>\n\t\t\t<d:and>\n\t\t\t\t<d:or>\n\t\t\t\t\t<d:not>\n\t\t\t\t\t\t<d:eq>\n\t\t\t\t\t\t\t<d:prop>\n\t\t\t\t\t\t\t\t<d:getcontenttype/>\n\t\t\t\t\t\t\t</d:prop>\n\t\t\t\t\t\t\t<d:literal>httpd/unix-directory</d:literal>\n\t\t\t\t\t\t</d:eq>\n\t\t\t\t\t</d:not>\n\t\t\t\t\t<d:eq>\n\t\t\t\t\t\t<d:prop>\n\t\t\t\t\t\t\t<oc:size/>\n\t\t\t\t\t\t</d:prop>\n\t\t\t\t\t\t<d:literal>0</d:literal>\n\t\t\t\t\t</d:eq>\n\t\t\t\t</d:or>\n\t\t\t\t<d:gt>\n\t\t\t\t\t<d:prop>\n\t\t\t\t\t\t<d:getlastmodified/>\n\t\t\t\t\t</d:prop>\n\t\t\t\t\t<d:literal>${e}</d:literal>\n\t\t\t\t</d:gt>\n\t\t\t</d:and>\n\t\t</d:where>\n\t\t<d:orderby>\n\t\t\t<d:order>\n\t\t\t\t<d:prop>\n\t\t\t\t\t<d:getlastmodified/>\n\t\t\t\t</d:prop>\n\t\t\t\t<d:descending/>\n\t\t\t</d:order>\n\t\t</d:orderby>\n\t\t<d:limit>\n\t\t\t<d:nresults>100</d:nresults>\n\t\t\t<ns:firstresult>0</ns:firstresult>\n\t\t</d:limit>\n\t</d:basicsearch>\n</d:searchrequest>`;\n};\n/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n * @author Ferdinand Thiessen <opensource@fthiessen.de>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst be = function(e = \"\") {\n let t = N.NONE;\n return e && ((e.includes(\"C\") || e.includes(\"K\")) && (t |= N.CREATE), e.includes(\"G\") && (t |= N.READ), (e.includes(\"W\") || e.includes(\"N\") || e.includes(\"V\")) && (t |= N.UPDATE), e.includes(\"D\") && (t |= N.DELETE), e.includes(\"R\") && (t |= N.SHARE)), t;\n};\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nvar S = /* @__PURE__ */ ((e) => (e.Folder = \"folder\", e.File = \"file\", e))(S || {});\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst Y = function(e, t) {\n return e.match(t) !== null;\n}, q = (e, t) => {\n if (e.id && typeof e.id != \"number\")\n throw new Error(\"Invalid id type of value\");\n if (!e.source)\n throw new Error(\"Missing mandatory source\");\n try {\n new URL(e.source);\n } catch {\n throw new Error(\"Invalid source format, source must be a valid URL\");\n }\n if (!e.source.startsWith(\"http\"))\n throw new Error(\"Invalid source format, only http(s) is supported\");\n if (e.mtime && !(e.mtime instanceof Date))\n throw new Error(\"Invalid mtime type\");\n if (e.crtime && !(e.crtime instanceof Date))\n throw new Error(\"Invalid crtime type\");\n if (!e.mime || typeof e.mime != \"string\" || !e.mime.match(/^[-\\w.]+\\/[-+\\w.]+$/gi))\n throw new Error(\"Missing or invalid mandatory mime\");\n if (\"size\" in e && typeof e.size != \"number\" && e.size !== void 0)\n throw new Error(\"Invalid size type\");\n if (\"permissions\" in e && e.permissions !== void 0 && !(typeof e.permissions == \"number\" && e.permissions >= N.NONE && e.permissions <= N.ALL))\n throw new Error(\"Invalid permissions\");\n if (e.owner && e.owner !== null && typeof e.owner != \"string\")\n throw new Error(\"Invalid owner type\");\n if (e.attributes && typeof e.attributes != \"object\")\n throw new Error(\"Invalid attributes type\");\n if (e.root && typeof e.root != \"string\")\n throw new Error(\"Invalid root type\");\n if (e.root && !e.root.startsWith(\"/\"))\n throw new Error(\"Root must start with a leading slash\");\n if (e.root && !e.source.includes(e.root))\n throw new Error(\"Root must be part of the source\");\n if (e.root && Y(e.source, t)) {\n const r = e.source.match(t)[0];\n if (!e.source.includes(le(r, e.root)))\n throw new Error(\"The root must be relative to the service. e.g /files/emma\");\n }\n if (e.status && !Object.values(J).includes(e.status))\n throw new Error(\"Status must be a valid NodeStatus\");\n};\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nvar J = /* @__PURE__ */ ((e) => (e.NEW = \"new\", e.FAILED = \"failed\", e.LOADING = \"loading\", e.LOCKED = \"locked\", e))(J || {});\nclass Q {\n _data;\n _attributes;\n _knownDavService = /(remote|public)\\.php\\/(web)?dav/i;\n constructor(t, r) {\n q(t, r || this._knownDavService), this._data = t;\n const s = {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n set: (n, i, d) => (this.updateMtime(), Reflect.set(n, i, d)),\n deleteProperty: (n, i) => (this.updateMtime(), Reflect.deleteProperty(n, i))\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n };\n this._attributes = new Proxy(t.attributes || {}, s), delete this._data.attributes, r && (this._knownDavService = r);\n }\n /**\n * Get the source url to this object\n */\n get source() {\n return this._data.source.replace(/\\/$/i, \"\");\n }\n /**\n * Get the encoded source url to this object for requests purposes\n */\n get encodedSource() {\n const { origin: t } = new URL(this.source);\n return t + he(this.source.slice(t.length));\n }\n /**\n * Get this object name\n */\n get basename() {\n return fe(this.source);\n }\n /**\n * Get this object's extension\n */\n get extension() {\n return ce(this.source);\n }\n /**\n * Get the directory path leading to this object\n * Will use the relative path to root if available\n */\n get dirname() {\n if (this.root) {\n let r = this.source;\n this.isDavRessource && (r = r.split(this._knownDavService).pop());\n const s = r.indexOf(this.root), n = this.root.replace(/\\/$/, \"\");\n return I(r.slice(s + n.length) || \"/\");\n }\n const t = new URL(this.source);\n return I(t.pathname);\n }\n /**\n * Get the file mime\n */\n get mime() {\n return this._data.mime;\n }\n /**\n * Get the file modification time\n */\n get mtime() {\n return this._data.mtime;\n }\n /**\n * Get the file creation time\n */\n get crtime() {\n return this._data.crtime;\n }\n /**\n * Get the file size\n */\n get size() {\n return this._data.size;\n }\n /**\n * Get the file attribute\n */\n get attributes() {\n return this._attributes;\n }\n /**\n * Get the file permissions\n */\n get permissions() {\n return this.owner === null && !this.isDavRessource ? N.READ : this._data.permissions !== void 0 ? this._data.permissions : N.NONE;\n }\n /**\n * Get the file owner\n */\n get owner() {\n return this.isDavRessource ? this._data.owner : null;\n }\n /**\n * Is this a dav-related ressource ?\n */\n get isDavRessource() {\n return Y(this.source, this._knownDavService);\n }\n /**\n * Get the dav root of this object\n */\n get root() {\n return this._data.root ? this._data.root.replace(/^(.+)\\/$/, \"$1\") : this.isDavRessource && I(this.source).split(this._knownDavService).pop() || null;\n }\n /**\n * Get the absolute path of this object relative to the root\n */\n get path() {\n if (this.root) {\n let t = this.source;\n this.isDavRessource && (t = t.split(this._knownDavService).pop());\n const r = t.indexOf(this.root), s = this.root.replace(/\\/$/, \"\");\n return t.slice(r + s.length) || \"/\";\n }\n return (this.dirname + \"/\" + this.basename).replace(/\\/\\//g, \"/\");\n }\n /**\n * Get the node id if defined.\n * Will look for the fileid in attributes if undefined.\n */\n get fileid() {\n return this._data?.id || this.attributes?.fileid;\n }\n /**\n * Get the node status.\n */\n get status() {\n return this._data?.status;\n }\n /**\n * Set the node status.\n */\n set status(t) {\n this._data.status = t;\n }\n /**\n * Move the node to a new destination\n *\n * @param {string} destination the new source.\n * e.g. https://cloud.domain.com/remote.php/dav/files/emma/Photos/picture.jpg\n */\n move(t) {\n q({ ...this._data, source: t }, this._knownDavService), this._data.source = t, this.updateMtime();\n }\n /**\n * Rename the node\n * This aliases the move method for easier usage\n *\n * @param basename The new name of the node\n */\n rename(t) {\n if (t.includes(\"/\"))\n throw new Error(\"Invalid basename\");\n this.move(I(this.source) + \"/\" + t);\n }\n /**\n * Update the mtime if exists.\n */\n updateMtime() {\n this._data.mtime && (this._data.mtime = /* @__PURE__ */ new Date());\n }\n}\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nclass ye extends Q {\n get type() {\n return S.File;\n }\n}\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nclass _e extends Q {\n constructor(t) {\n super({\n ...t,\n mime: \"httpd/unix-directory\"\n });\n }\n get type() {\n return S.Folder;\n }\n get extension() {\n return null;\n }\n get mime() {\n return \"httpd/unix-directory\";\n }\n}\n/**\n * @copyright Copyright (c) 2023 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n * @author Ferdinand Thiessen <opensource@fthiessen.de>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst D = `/files/${A()?.uid}`, ee = pe(\"dav\"), ur = function(e = ee, t = {}) {\n const r = ge(e, { headers: t });\n function s(i) {\n r.setHeaders({\n ...t,\n // Add this so the server knows it is an request from the browser\n \"X-Requested-With\": \"XMLHttpRequest\",\n // Inject user auth\n requesttoken: i ?? \"\"\n });\n }\n return ue(s), s(de()), we().patch(\"fetch\", (i, d) => {\n const u = d.headers;\n return u?.method && (d.method = u.method, delete u.method), fetch(i, d);\n }), r;\n}, dr = async (e, t = \"/\", r = D) => (await e.getDirectoryContents(`${r}${t}`, {\n details: !0,\n data: Ee(),\n headers: {\n // see davGetClient for patched webdav client\n method: \"REPORT\"\n },\n includeSelf: !0\n})).data.filter((n) => n.filename !== t).map((n) => ve(n, r)), ve = function(e, t = D, r = ee) {\n const s = A()?.uid;\n if (!s)\n throw new Error(\"No user id found\");\n const n = e.props, i = be(n?.permissions), d = (n?.[\"owner-id\"] || s).toString(), u = {\n id: n?.fileid || 0,\n source: `${r}${e.filename}`,\n mtime: new Date(Date.parse(e.lastmod)),\n mime: e.mime || \"application/octet-stream\",\n size: n?.size || Number.parseInt(n.getcontentlength || \"0\"),\n permissions: i,\n owner: d,\n root: t,\n attributes: {\n ...e,\n ...n,\n hasPreview: n?.[\"has-preview\"]\n }\n };\n return delete u.attributes?.props, e.type === \"file\" ? new ye(u) : new _e(u);\n};\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nclass Te {\n _views = [];\n _currentView = null;\n register(t) {\n if (this._views.find((r) => r.id === t.id))\n throw new Error(`View id ${t.id} is already registered`);\n this._views.push(t);\n }\n remove(t) {\n const r = this._views.findIndex((s) => s.id === t);\n r !== -1 && this._views.splice(r, 1);\n }\n get views() {\n return this._views;\n }\n setActive(t) {\n this._currentView = t;\n }\n get active() {\n return this._currentView;\n }\n}\nconst ar = function() {\n return typeof window._nc_navigation > \"u\" && (window._nc_navigation = new Te(), m.debug(\"Navigation service initialized\")), window._nc_navigation;\n};\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nclass Ie {\n _column;\n constructor(t) {\n Ae(t), this._column = t;\n }\n get id() {\n return this._column.id;\n }\n get title() {\n return this._column.title;\n }\n get render() {\n return this._column.render;\n }\n get sort() {\n return this._column.sort;\n }\n get summary() {\n return this._column.summary;\n }\n}\nconst Ae = function(e) {\n if (!e.id || typeof e.id != \"string\")\n throw new Error(\"A column id is required\");\n if (!e.title || typeof e.title != \"string\")\n throw new Error(\"A column title is required\");\n if (!e.render || typeof e.render != \"function\")\n throw new Error(\"A render function is required\");\n if (e.sort && typeof e.sort != \"function\")\n throw new Error(\"Column sortFunction must be a function\");\n if (e.summary && typeof e.summary != \"function\")\n throw new Error(\"Column summary must be a function\");\n return !0;\n};\nvar R = {}, O = {};\n(function(e) {\n const t = \":A-Za-z_\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD\", r = t + \"\\\\-.\\\\d\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040\", s = \"[\" + t + \"][\" + r + \"]*\", n = new RegExp(\"^\" + s + \"$\"), i = function(u, o) {\n const a = [];\n let l = o.exec(u);\n for (; l; ) {\n const f = [];\n f.startIndex = o.lastIndex - l[0].length;\n const c = l.length;\n for (let g = 0; g < c; g++)\n f.push(l[g]);\n a.push(f), l = o.exec(u);\n }\n return a;\n }, d = function(u) {\n const o = n.exec(u);\n return !(o === null || typeof o > \"u\");\n };\n e.isExist = function(u) {\n return typeof u < \"u\";\n }, e.isEmptyObject = function(u) {\n return Object.keys(u).length === 0;\n }, e.merge = function(u, o, a) {\n if (o) {\n const l = Object.keys(o), f = l.length;\n for (let c = 0; c < f; c++)\n a === \"strict\" ? u[l[c]] = [o[l[c]]] : u[l[c]] = o[l[c]];\n }\n }, e.getValue = function(u) {\n return e.isExist(u) ? u : \"\";\n }, e.isName = d, e.getAllMatches = i, e.nameRegexp = s;\n})(O);\nconst M = O, Oe = {\n allowBooleanAttributes: !1,\n //A tag can have attributes without any value\n unpairedTags: []\n};\nR.validate = function(e, t) {\n t = Object.assign({}, Oe, t);\n const r = [];\n let s = !1, n = !1;\n e[0] === \"\\uFEFF\" && (e = e.substr(1));\n for (let i = 0; i < e.length; i++)\n if (e[i] === \"<\" && e[i + 1] === \"?\") {\n if (i += 2, i = U(e, i), i.err)\n return i;\n } else if (e[i] === \"<\") {\n let d = i;\n if (i++, e[i] === \"!\") {\n i = G(e, i);\n continue;\n } else {\n let u = !1;\n e[i] === \"/\" && (u = !0, i++);\n let o = \"\";\n for (; i < e.length && e[i] !== \">\" && e[i] !== \" \" && e[i] !== \"\t\" && e[i] !== `\n` && e[i] !== \"\\r\"; i++)\n o += e[i];\n if (o = o.trim(), o[o.length - 1] === \"/\" && (o = o.substring(0, o.length - 1), i--), !Se(o)) {\n let f;\n return o.trim().length === 0 ? f = \"Invalid space after '<'.\" : f = \"Tag '\" + o + \"' is an invalid name.\", p(\"InvalidTag\", f, w(e, i));\n }\n const a = xe(e, i);\n if (a === !1)\n return p(\"InvalidAttr\", \"Attributes for '\" + o + \"' have open quote.\", w(e, i));\n let l = a.value;\n if (i = a.index, l[l.length - 1] === \"/\") {\n const f = i - l.length;\n l = l.substring(0, l.length - 1);\n const c = z(l, t);\n if (c === !0)\n s = !0;\n else\n return p(c.err.code, c.err.msg, w(e, f + c.err.line));\n } else if (u)\n if (a.tagClosed) {\n if (l.trim().length > 0)\n return p(\"InvalidTag\", \"Closing tag '\" + o + \"' can't have attributes or invalid starting.\", w(e, d));\n {\n const f = r.pop();\n if (o !== f.tagName) {\n let c = w(e, f.tagStartPos);\n return p(\n \"InvalidTag\",\n \"Expected closing tag '\" + f.tagName + \"' (opened in line \" + c.line + \", col \" + c.col + \") instead of closing tag '\" + o + \"'.\",\n w(e, d)\n );\n }\n r.length == 0 && (n = !0);\n }\n } else\n return p(\"InvalidTag\", \"Closing tag '\" + o + \"' doesn't have proper closing.\", w(e, i));\n else {\n const f = z(l, t);\n if (f !== !0)\n return p(f.err.code, f.err.msg, w(e, i - l.length + f.err.line));\n if (n === !0)\n return p(\"InvalidXml\", \"Multiple possible root nodes found.\", w(e, i));\n t.unpairedTags.indexOf(o) !== -1 || r.push({ tagName: o, tagStartPos: d }), s = !0;\n }\n for (i++; i < e.length; i++)\n if (e[i] === \"<\")\n if (e[i + 1] === \"!\") {\n i++, i = G(e, i);\n continue;\n } else if (e[i + 1] === \"?\") {\n if (i = U(e, ++i), i.err)\n return i;\n } else\n break;\n else if (e[i] === \"&\") {\n const f = Ve(e, i);\n if (f == -1)\n return p(\"InvalidChar\", \"char '&' is not expected.\", w(e, i));\n i = f;\n } else if (n === !0 && !X(e[i]))\n return p(\"InvalidXml\", \"Extra text at the end\", w(e, i));\n e[i] === \"<\" && i--;\n }\n } else {\n if (X(e[i]))\n continue;\n return p(\"InvalidChar\", \"char '\" + e[i] + \"' is not expected.\", w(e, i));\n }\n if (s) {\n if (r.length == 1)\n return p(\"InvalidTag\", \"Unclosed tag '\" + r[0].tagName + \"'.\", w(e, r[0].tagStartPos));\n if (r.length > 0)\n return p(\"InvalidXml\", \"Invalid '\" + JSON.stringify(r.map((i) => i.tagName), null, 4).replace(/\\r?\\n/g, \"\") + \"' found.\", { line: 1, col: 1 });\n } else\n return p(\"InvalidXml\", \"Start tag expected.\", 1);\n return !0;\n};\nfunction X(e) {\n return e === \" \" || e === \"\t\" || e === `\n` || e === \"\\r\";\n}\nfunction U(e, t) {\n const r = t;\n for (; t < e.length; t++)\n if (e[t] == \"?\" || e[t] == \" \") {\n const s = e.substr(r, t - r);\n if (t > 5 && s === \"xml\")\n return p(\"InvalidXml\", \"XML declaration allowed only at the start of the document.\", w(e, t));\n if (e[t] == \"?\" && e[t + 1] == \">\") {\n t++;\n break;\n } else\n continue;\n }\n return t;\n}\nfunction G(e, t) {\n if (e.length > t + 5 && e[t + 1] === \"-\" && e[t + 2] === \"-\") {\n for (t += 3; t < e.length; t++)\n if (e[t] === \"-\" && e[t + 1] === \"-\" && e[t + 2] === \">\") {\n t += 2;\n break;\n }\n } else if (e.length > t + 8 && e[t + 1] === \"D\" && e[t + 2] === \"O\" && e[t + 3] === \"C\" && e[t + 4] === \"T\" && e[t + 5] === \"Y\" && e[t + 6] === \"P\" && e[t + 7] === \"E\") {\n let r = 1;\n for (t += 8; t < e.length; t++)\n if (e[t] === \"<\")\n r++;\n else if (e[t] === \">\" && (r--, r === 0))\n break;\n } else if (e.length > t + 9 && e[t + 1] === \"[\" && e[t + 2] === \"C\" && e[t + 3] === \"D\" && e[t + 4] === \"A\" && e[t + 5] === \"T\" && e[t + 6] === \"A\" && e[t + 7] === \"[\") {\n for (t += 8; t < e.length; t++)\n if (e[t] === \"]\" && e[t + 1] === \"]\" && e[t + 2] === \">\") {\n t += 2;\n break;\n }\n }\n return t;\n}\nconst Ce = '\"', Pe = \"'\";\nfunction xe(e, t) {\n let r = \"\", s = \"\", n = !1;\n for (; t < e.length; t++) {\n if (e[t] === Ce || e[t] === Pe)\n s === \"\" ? s = e[t] : s !== e[t] || (s = \"\");\n else if (e[t] === \">\" && s === \"\") {\n n = !0;\n break;\n }\n r += e[t];\n }\n return s !== \"\" ? !1 : {\n value: r,\n index: t,\n tagClosed: n\n };\n}\nconst $e = new RegExp(`(\\\\s*)([^\\\\s=]+)(\\\\s*=)?(\\\\s*(['\"])(([\\\\s\\\\S])*?)\\\\5)?`, \"g\");\nfunction z(e, t) {\n const r = M.getAllMatches(e, $e), s = {};\n for (let n = 0; n < r.length; n++) {\n if (r[n][1].length === 0)\n return p(\"InvalidAttr\", \"Attribute '\" + r[n][2] + \"' has no space in starting.\", v(r[n]));\n if (r[n][3] !== void 0 && r[n][4] === void 0)\n return p(\"InvalidAttr\", \"Attribute '\" + r[n][2] + \"' is without value.\", v(r[n]));\n if (r[n][3] === void 0 && !t.allowBooleanAttributes)\n return p(\"InvalidAttr\", \"boolean attribute '\" + r[n][2] + \"' is not allowed.\", v(r[n]));\n const i = r[n][2];\n if (!Le(i))\n return p(\"InvalidAttr\", \"Attribute '\" + i + \"' is an invalid name.\", v(r[n]));\n if (!s.hasOwnProperty(i))\n s[i] = 1;\n else\n return p(\"InvalidAttr\", \"Attribute '\" + i + \"' is repeated.\", v(r[n]));\n }\n return !0;\n}\nfunction Fe(e, t) {\n let r = /\\d/;\n for (e[t] === \"x\" && (t++, r = /[\\da-fA-F]/); t < e.length; t++) {\n if (e[t] === \";\")\n return t;\n if (!e[t].match(r))\n break;\n }\n return -1;\n}\nfunction Ve(e, t) {\n if (t++, e[t] === \";\")\n return -1;\n if (e[t] === \"#\")\n return t++, Fe(e, t);\n let r = 0;\n for (; t < e.length; t++, r++)\n if (!(e[t].match(/\\w/) && r < 20)) {\n if (e[t] === \";\")\n break;\n return -1;\n }\n return t;\n}\nfunction p(e, t, r) {\n return {\n err: {\n code: e,\n msg: t,\n line: r.line || r,\n col: r.col\n }\n };\n}\nfunction Le(e) {\n return M.isName(e);\n}\nfunction Se(e) {\n return M.isName(e);\n}\nfunction w(e, t) {\n const r = e.substring(0, t).split(/\\r?\\n/);\n return {\n line: r.length,\n // column number is last line's length + 1, because column numbering starts at 1:\n col: r[r.length - 1].length + 1\n };\n}\nfunction v(e) {\n return e.startIndex + e[1].length;\n}\nvar k = {};\nconst te = {\n preserveOrder: !1,\n attributeNamePrefix: \"@_\",\n attributesGroupName: !1,\n textNodeName: \"#text\",\n ignoreAttributes: !0,\n removeNSPrefix: !1,\n // remove NS from tag name or attribute name if true\n allowBooleanAttributes: !1,\n //a tag can have attributes without any value\n //ignoreRootElement : false,\n parseTagValue: !0,\n parseAttributeValue: !1,\n trimValues: !0,\n //Trim string values of tag and attributes\n cdataPropName: !1,\n numberParseOptions: {\n hex: !0,\n leadingZeros: !0,\n eNotation: !0\n },\n tagValueProcessor: function(e, t) {\n return t;\n },\n attributeValueProcessor: function(e, t) {\n return t;\n },\n stopNodes: [],\n //nested tags will not be parsed even for errors\n alwaysCreateTextNode: !1,\n isArray: () => !1,\n commentPropName: !1,\n unpairedTags: [],\n processEntities: !0,\n htmlEntities: !1,\n ignoreDeclaration: !1,\n ignorePiTags: !1,\n transformTagName: !1,\n transformAttributeName: !1,\n updateTag: function(e, t, r) {\n return e;\n }\n // skipEmptyListItem: false\n}, Re = function(e) {\n return Object.assign({}, te, e);\n};\nk.buildOptions = Re;\nk.defaultOptions = te;\nclass Me {\n constructor(t) {\n this.tagname = t, this.child = [], this[\":@\"] = {};\n }\n add(t, r) {\n t === \"__proto__\" && (t = \"#__proto__\"), this.child.push({ [t]: r });\n }\n addChild(t) {\n t.tagname === \"__proto__\" && (t.tagname = \"#__proto__\"), t[\":@\"] && Object.keys(t[\":@\"]).length > 0 ? this.child.push({ [t.tagname]: t.child, \":@\": t[\":@\"] }) : this.child.push({ [t.tagname]: t.child });\n }\n}\nvar ke = Me;\nconst Be = O;\nfunction qe(e, t) {\n const r = {};\n if (e[t + 3] === \"O\" && e[t + 4] === \"C\" && e[t + 5] === \"T\" && e[t + 6] === \"Y\" && e[t + 7] === \"P\" && e[t + 8] === \"E\") {\n t = t + 9;\n let s = 1, n = !1, i = !1, d = \"\";\n for (; t < e.length; t++)\n if (e[t] === \"<\" && !i) {\n if (n && Ge(e, t))\n t += 7, [entityName, val, t] = Xe(e, t + 1), val.indexOf(\"&\") === -1 && (r[We(entityName)] = {\n regx: RegExp(`&${entityName};`, \"g\"),\n val\n });\n else if (n && ze(e, t))\n t += 8;\n else if (n && He(e, t))\n t += 8;\n else if (n && Ke(e, t))\n t += 9;\n else if (Ue)\n i = !0;\n else\n throw new Error(\"Invalid DOCTYPE\");\n s++, d = \"\";\n } else if (e[t] === \">\") {\n if (i ? e[t - 1] === \"-\" && e[t - 2] === \"-\" && (i = !1, s--) : s--, s === 0)\n break;\n } else\n e[t] === \"[\" ? n = !0 : d += e[t];\n if (s !== 0)\n throw new Error(\"Unclosed DOCTYPE\");\n } else\n throw new Error(\"Invalid Tag instead of DOCTYPE\");\n return { entities: r, i: t };\n}\nfunction Xe(e, t) {\n let r = \"\";\n for (; t < e.length && e[t] !== \"'\" && e[t] !== '\"'; t++)\n r += e[t];\n if (r = r.trim(), r.indexOf(\" \") !== -1)\n throw new Error(\"External entites are not supported\");\n const s = e[t++];\n let n = \"\";\n for (; t < e.length && e[t] !== s; t++)\n n += e[t];\n return [r, n, t];\n}\nfunction Ue(e, t) {\n return e[t + 1] === \"!\" && e[t + 2] === \"-\" && e[t + 3] === \"-\";\n}\nfunction Ge(e, t) {\n return e[t + 1] === \"!\" && e[t + 2] === \"E\" && e[t + 3] === \"N\" && e[t + 4] === \"T\" && e[t + 5] === \"I\" && e[t + 6] === \"T\" && e[t + 7] === \"Y\";\n}\nfunction ze(e, t) {\n return e[t + 1] === \"!\" && e[t + 2] === \"E\" && e[t + 3] === \"L\" && e[t + 4] === \"E\" && e[t + 5] === \"M\" && e[t + 6] === \"E\" && e[t + 7] === \"N\" && e[t + 8] === \"T\";\n}\nfunction He(e, t) {\n return e[t + 1] === \"!\" && e[t + 2] === \"A\" && e[t + 3] === \"T\" && e[t + 4] === \"T\" && e[t + 5] === \"L\" && e[t + 6] === \"I\" && e[t + 7] === \"S\" && e[t + 8] === \"T\";\n}\nfunction Ke(e, t) {\n return e[t + 1] === \"!\" && e[t + 2] === \"N\" && e[t + 3] === \"O\" && e[t + 4] === \"T\" && e[t + 5] === \"A\" && e[t + 6] === \"T\" && e[t + 7] === \"I\" && e[t + 8] === \"O\" && e[t + 9] === \"N\";\n}\nfunction We(e) {\n if (Be.isName(e))\n return e;\n throw new Error(`Invalid entity name ${e}`);\n}\nvar Ze = qe;\nconst je = /^[-+]?0x[a-fA-F0-9]+$/, Ye = /^([\\-\\+])?(0*)(\\.[0-9]+([eE]\\-?[0-9]+)?|[0-9]+(\\.[0-9]+([eE]\\-?[0-9]+)?)?)$/;\n!Number.parseInt && window.parseInt && (Number.parseInt = window.parseInt);\n!Number.parseFloat && window.parseFloat && (Number.parseFloat = window.parseFloat);\nconst Je = {\n hex: !0,\n leadingZeros: !0,\n decimalPoint: \".\",\n eNotation: !0\n //skipLike: /regex/\n};\nfunction Qe(e, t = {}) {\n if (t = Object.assign({}, Je, t), !e || typeof e != \"string\")\n return e;\n let r = e.trim();\n if (t.skipLike !== void 0 && t.skipLike.test(r))\n return e;\n if (t.hex && je.test(r))\n return Number.parseInt(r, 16);\n {\n const s = Ye.exec(r);\n if (s) {\n const n = s[1], i = s[2];\n let d = De(s[3]);\n const u = s[4] || s[6];\n if (!t.leadingZeros && i.length > 0 && n && r[2] !== \".\")\n return e;\n if (!t.leadingZeros && i.length > 0 && !n && r[1] !== \".\")\n return e;\n {\n const o = Number(r), a = \"\" + o;\n return a.search(/[eE]/) !== -1 || u ? t.eNotation ? o : e : r.indexOf(\".\") !== -1 ? a === \"0\" && d === \"\" || a === d || n && a === \"-\" + d ? o : e : i ? d === a || n + d === a ? o : e : r === a || r === n + a ? o : e;\n }\n } else\n return e;\n }\n}\nfunction De(e) {\n return e && e.indexOf(\".\") !== -1 && (e = e.replace(/0+$/, \"\"), e === \".\" ? e = \"0\" : e[0] === \".\" ? e = \"0\" + e : e[e.length - 1] === \".\" && (e = e.substr(0, e.length - 1))), e;\n}\nvar et = Qe;\nconst re = O, T = ke, tt = Ze, rt = et;\nlet nt = class {\n constructor(t) {\n this.options = t, this.currentNode = null, this.tagsNodeStack = [], this.docTypeEntities = {}, this.lastEntities = {\n apos: { regex: /&(apos|#39|#x27);/g, val: \"'\" },\n gt: { regex: /&(gt|#62|#x3E);/g, val: \">\" },\n lt: { regex: /&(lt|#60|#x3C);/g, val: \"<\" },\n quot: { regex: /&(quot|#34|#x22);/g, val: '\"' }\n }, this.ampEntity = { regex: /&(amp|#38|#x26);/g, val: \"&\" }, this.htmlEntities = {\n space: { regex: /&(nbsp|#160);/g, val: \" \" },\n // \"lt\" : { regex: /&(lt|#60);/g, val: \"<\" },\n // \"gt\" : { regex: /&(gt|#62);/g, val: \">\" },\n // \"amp\" : { regex: /&(amp|#38);/g, val: \"&\" },\n // \"quot\" : { regex: /&(quot|#34);/g, val: \"\\\"\" },\n // \"apos\" : { regex: /&(apos|#39);/g, val: \"'\" },\n cent: { regex: /&(cent|#162);/g, val: \"¢\" },\n pound: { regex: /&(pound|#163);/g, val: \"£\" },\n yen: { regex: /&(yen|#165);/g, val: \"¥\" },\n euro: { regex: /&(euro|#8364);/g, val: \"€\" },\n copyright: { regex: /&(copy|#169);/g, val: \"©\" },\n reg: { regex: /&(reg|#174);/g, val: \"®\" },\n inr: { regex: /&(inr|#8377);/g, val: \"₹\" }\n }, this.addExternalEntities = it, this.parseXml = at, this.parseTextData = st, this.resolveNameSpace = ot, this.buildAttributesMap = dt, this.isItStopNode = ht, this.replaceEntitiesValue = ft, this.readStopNodeData = gt, this.saveTextToParentTag = ct, this.addChild = lt;\n }\n};\nfunction it(e) {\n const t = Object.keys(e);\n for (let r = 0; r < t.length; r++) {\n const s = t[r];\n this.lastEntities[s] = {\n regex: new RegExp(\"&\" + s + \";\", \"g\"),\n val: e[s]\n };\n }\n}\nfunction st(e, t, r, s, n, i, d) {\n if (e !== void 0 && (this.options.trimValues && !s && (e = e.trim()), e.length > 0)) {\n d || (e = this.replaceEntitiesValue(e));\n const u = this.options.tagValueProcessor(t, e, r, n, i);\n return u == null ? e : typeof u != typeof e || u !== e ? u : this.options.trimValues ? $(e, this.options.parseTagValue, this.options.numberParseOptions) : e.trim() === e ? $(e, this.options.parseTagValue, this.options.numberParseOptions) : e;\n }\n}\nfunction ot(e) {\n if (this.options.removeNSPrefix) {\n const t = e.split(\":\"), r = e.charAt(0) === \"/\" ? \"/\" : \"\";\n if (t[0] === \"xmlns\")\n return \"\";\n t.length === 2 && (e = r + t[1]);\n }\n return e;\n}\nconst ut = new RegExp(`([^\\\\s=]+)\\\\s*(=\\\\s*(['\"])([\\\\s\\\\S]*?)\\\\3)?`, \"gm\");\nfunction dt(e, t, r) {\n if (!this.options.ignoreAttributes && typeof e == \"string\") {\n const s = re.getAllMatches(e, ut), n = s.length, i = {};\n for (let d = 0; d < n; d++) {\n const u = this.resolveNameSpace(s[d][1]);\n let o = s[d][4], a = this.options.attributeNamePrefix + u;\n if (u.length)\n if (this.options.transformAttributeName && (a = this.options.transformAttributeName(a)), a === \"__proto__\" && (a = \"#__proto__\"), o !== void 0) {\n this.options.trimValues && (o = o.trim()), o = this.replaceEntitiesValue(o);\n const l = this.options.attributeValueProcessor(u, o, t);\n l == null ? i[a] = o : typeof l != typeof o || l !== o ? i[a] = l : i[a] = $(\n o,\n this.options.parseAttributeValue,\n this.options.numberParseOptions\n );\n } else\n this.options.allowBooleanAttributes && (i[a] = !0);\n }\n if (!Object.keys(i).length)\n return;\n if (this.options.attributesGroupName) {\n const d = {};\n return d[this.options.attributesGroupName] = i, d;\n }\n return i;\n }\n}\nconst at = function(e) {\n e = e.replace(/\\r\\n?/g, `\n`);\n const t = new T(\"!xml\");\n let r = t, s = \"\", n = \"\";\n for (let i = 0; i < e.length; i++)\n if (e[i] === \"<\")\n if (e[i + 1] === \"/\") {\n const u = y(e, \">\", i, \"Closing Tag is not closed.\");\n let o = e.substring(i + 2, u).trim();\n if (this.options.removeNSPrefix) {\n const f = o.indexOf(\":\");\n f !== -1 && (o = o.substr(f + 1));\n }\n this.options.transformTagName && (o = this.options.transformTagName(o)), r && (s = this.saveTextToParentTag(s, r, n));\n const a = n.substring(n.lastIndexOf(\".\") + 1);\n if (o && this.options.unpairedTags.indexOf(o) !== -1)\n throw new Error(`Unpaired tag can not be used as closing tag: </${o}>`);\n let l = 0;\n a && this.options.unpairedTags.indexOf(a) !== -1 ? (l = n.lastIndexOf(\".\", n.lastIndexOf(\".\") - 1), this.tagsNodeStack.pop()) : l = n.lastIndexOf(\".\"), n = n.substring(0, l), r = this.tagsNodeStack.pop(), s = \"\", i = u;\n } else if (e[i + 1] === \"?\") {\n let u = x(e, i, !1, \"?>\");\n if (!u)\n throw new Error(\"Pi Tag is not closed.\");\n if (s = this.saveTextToParentTag(s, r, n), !(this.options.ignoreDeclaration && u.tagName === \"?xml\" || this.options.ignorePiTags)) {\n const o = new T(u.tagName);\n o.add(this.options.textNodeName, \"\"), u.tagName !== u.tagExp && u.attrExpPresent && (o[\":@\"] = this.buildAttributesMap(u.tagExp, n, u.tagName)), this.addChild(r, o, n);\n }\n i = u.closeIndex + 1;\n } else if (e.substr(i + 1, 3) === \"!--\") {\n const u = y(e, \"-->\", i + 4, \"Comment is not closed.\");\n if (this.options.commentPropName) {\n const o = e.substring(i + 4, u - 2);\n s = this.saveTextToParentTag(s, r, n), r.add(this.options.commentPropName, [{ [this.options.textNodeName]: o }]);\n }\n i = u;\n } else if (e.substr(i + 1, 2) === \"!D\") {\n const u = tt(e, i);\n this.docTypeEntities = u.entities, i = u.i;\n } else if (e.substr(i + 1, 2) === \"![\") {\n const u = y(e, \"]]>\", i, \"CDATA is not closed.\") - 2, o = e.substring(i + 9, u);\n s = this.saveTextToParentTag(s, r, n);\n let a = this.parseTextData(o, r.tagname, n, !0, !1, !0, !0);\n a == null && (a = \"\"), this.options.cdataPropName ? r.add(this.options.cdataPropName, [{ [this.options.textNodeName]: o }]) : r.add(this.options.textNodeName, a), i = u + 2;\n } else {\n let u = x(e, i, this.options.removeNSPrefix), o = u.tagName;\n const a = u.rawTagName;\n let l = u.tagExp, f = u.attrExpPresent, c = u.closeIndex;\n this.options.transformTagName && (o = this.options.transformTagName(o)), r && s && r.tagname !== \"!xml\" && (s = this.saveTextToParentTag(s, r, n, !1));\n const g = r;\n if (g && this.options.unpairedTags.indexOf(g.tagname) !== -1 && (r = this.tagsNodeStack.pop(), n = n.substring(0, n.lastIndexOf(\".\"))), o !== t.tagname && (n += n ? \".\" + o : o), this.isItStopNode(this.options.stopNodes, n, o)) {\n let h = \"\";\n if (l.length > 0 && l.lastIndexOf(\"/\") === l.length - 1)\n i = u.closeIndex;\n else if (this.options.unpairedTags.indexOf(o) !== -1)\n i = u.closeIndex;\n else {\n const E = this.readStopNodeData(e, a, c + 1);\n if (!E)\n throw new Error(`Unexpected end of ${a}`);\n i = E.i, h = E.tagContent;\n }\n const _ = new T(o);\n o !== l && f && (_[\":@\"] = this.buildAttributesMap(l, n, o)), h && (h = this.parseTextData(h, o, n, !0, f, !0, !0)), n = n.substr(0, n.lastIndexOf(\".\")), _.add(this.options.textNodeName, h), this.addChild(r, _, n);\n } else {\n if (l.length > 0 && l.lastIndexOf(\"/\") === l.length - 1) {\n o[o.length - 1] === \"/\" ? (o = o.substr(0, o.length - 1), n = n.substr(0, n.length - 1), l = o) : l = l.substr(0, l.length - 1), this.options.transformTagName && (o = this.options.transformTagName(o));\n const h = new T(o);\n o !== l && f && (h[\":@\"] = this.buildAttributesMap(l, n, o)), this.addChild(r, h, n), n = n.substr(0, n.lastIndexOf(\".\"));\n } else {\n const h = new T(o);\n this.tagsNodeStack.push(r), o !== l && f && (h[\":@\"] = this.buildAttributesMap(l, n, o)), this.addChild(r, h, n), r = h;\n }\n s = \"\", i = c;\n }\n }\n else\n s += e[i];\n return t.child;\n};\nfunction lt(e, t, r) {\n const s = this.options.updateTag(t.tagname, r, t[\":@\"]);\n s === !1 || (typeof s == \"string\" && (t.tagname = s), e.addChild(t));\n}\nconst ft = function(e) {\n if (this.options.processEntities) {\n for (let t in this.docTypeEntities) {\n const r = this.docTypeEntities[t];\n e = e.replace(r.regx, r.val);\n }\n for (let t in this.lastEntities) {\n const r = this.lastEntities[t];\n e = e.replace(r.regex, r.val);\n }\n if (this.options.htmlEntities)\n for (let t in this.htmlEntities) {\n const r = this.htmlEntities[t];\n e = e.replace(r.regex, r.val);\n }\n e = e.replace(this.ampEntity.regex, this.ampEntity.val);\n }\n return e;\n};\nfunction ct(e, t, r, s) {\n return e && (s === void 0 && (s = Object.keys(t.child).length === 0), e = this.parseTextData(\n e,\n t.tagname,\n r,\n !1,\n t[\":@\"] ? Object.keys(t[\":@\"]).length !== 0 : !1,\n s\n ), e !== void 0 && e !== \"\" && t.add(this.options.textNodeName, e), e = \"\"), e;\n}\nfunction ht(e, t, r) {\n const s = \"*.\" + r;\n for (const n in e) {\n const i = e[n];\n if (s === i || t === i)\n return !0;\n }\n return !1;\n}\nfunction pt(e, t, r = \">\") {\n let s, n = \"\";\n for (let i = t; i < e.length; i++) {\n let d = e[i];\n if (s)\n d === s && (s = \"\");\n else if (d === '\"' || d === \"'\")\n s = d;\n else if (d === r[0])\n if (r[1]) {\n if (e[i + 1] === r[1])\n return {\n data: n,\n index: i\n };\n } else\n return {\n data: n,\n index: i\n };\n else\n d === \"\t\" && (d = \" \");\n n += d;\n }\n}\nfunction y(e, t, r, s) {\n const n = e.indexOf(t, r);\n if (n === -1)\n throw new Error(s);\n return n + t.length - 1;\n}\nfunction x(e, t, r, s = \">\") {\n const n = pt(e, t + 1, s);\n if (!n)\n return;\n let i = n.data;\n const d = n.index, u = i.search(/\\s/);\n let o = i, a = !0;\n u !== -1 && (o = i.substring(0, u), i = i.substring(u + 1).trimStart());\n const l = o;\n if (r) {\n const f = o.indexOf(\":\");\n f !== -1 && (o = o.substr(f + 1), a = o !== n.data.substr(f + 1));\n }\n return {\n tagName: o,\n tagExp: i,\n closeIndex: d,\n attrExpPresent: a,\n rawTagName: l\n };\n}\nfunction gt(e, t, r) {\n const s = r;\n let n = 1;\n for (; r < e.length; r++)\n if (e[r] === \"<\")\n if (e[r + 1] === \"/\") {\n const i = y(e, \">\", r, `${t} is not closed`);\n if (e.substring(r + 2, i).trim() === t && (n--, n === 0))\n return {\n tagContent: e.substring(s, r),\n i\n };\n r = i;\n } else if (e[r + 1] === \"?\")\n r = y(e, \"?>\", r + 1, \"StopNode is not closed.\");\n else if (e.substr(r + 1, 3) === \"!--\")\n r = y(e, \"-->\", r + 3, \"StopNode is not closed.\");\n else if (e.substr(r + 1, 2) === \"![\")\n r = y(e, \"]]>\", r, \"StopNode is not closed.\") - 2;\n else {\n const i = x(e, r, \">\");\n i && ((i && i.tagName) === t && i.tagExp[i.tagExp.length - 1] !== \"/\" && n++, r = i.closeIndex);\n }\n}\nfunction $(e, t, r) {\n if (t && typeof e == \"string\") {\n const s = e.trim();\n return s === \"true\" ? !0 : s === \"false\" ? !1 : rt(e, r);\n } else\n return re.isExist(e) ? e : \"\";\n}\nvar wt = nt, ne = {};\nfunction mt(e, t) {\n return ie(e, t);\n}\nfunction ie(e, t, r) {\n let s;\n const n = {};\n for (let i = 0; i < e.length; i++) {\n const d = e[i], u = Nt(d);\n let o = \"\";\n if (r === void 0 ? o = u : o = r + \".\" + u, u === t.textNodeName)\n s === void 0 ? s = d[u] : s += \"\" + d[u];\n else {\n if (u === void 0)\n continue;\n if (d[u]) {\n let a = ie(d[u], t, o);\n const l = bt(a, t);\n d[\":@\"] ? Et(a, d[\":@\"], o, t) : Object.keys(a).length === 1 && a[t.textNodeName] !== void 0 && !t.alwaysCreateTextNode ? a = a[t.textNodeName] : Object.keys(a).length === 0 && (t.alwaysCreateTextNode ? a[t.textNodeName] = \"\" : a = \"\"), n[u] !== void 0 && n.hasOwnProperty(u) ? (Array.isArray(n[u]) || (n[u] = [n[u]]), n[u].push(a)) : t.isArray(u, o, l) ? n[u] = [a] : n[u] = a;\n }\n }\n }\n return typeof s == \"string\" ? s.length > 0 && (n[t.textNodeName] = s) : s !== void 0 && (n[t.textNodeName] = s), n;\n}\nfunction Nt(e) {\n const t = Object.keys(e);\n for (let r = 0; r < t.length; r++) {\n const s = t[r];\n if (s !== \":@\")\n return s;\n }\n}\nfunction Et(e, t, r, s) {\n if (t) {\n const n = Object.keys(t), i = n.length;\n for (let d = 0; d < i; d++) {\n const u = n[d];\n s.isArray(u, r + \".\" + u, !0, !0) ? e[u] = [t[u]] : e[u] = t[u];\n }\n }\n}\nfunction bt(e, t) {\n const { textNodeName: r } = t, s = Object.keys(e).length;\n return !!(s === 0 || s === 1 && (e[r] || typeof e[r] == \"boolean\" || e[r] === 0));\n}\nne.prettify = mt;\nconst { buildOptions: yt } = k, _t = wt, { prettify: vt } = ne, Tt = R;\nlet It = class {\n constructor(t) {\n this.externalEntities = {}, this.options = yt(t);\n }\n /**\n * Parse XML dats to JS object \n * @param {string|Buffer} xmlData \n * @param {boolean|Object} validationOption \n */\n parse(t, r) {\n if (typeof t != \"string\")\n if (t.toString)\n t = t.toString();\n else\n throw new Error(\"XML data is accepted in String or Bytes[] form.\");\n if (r) {\n r === !0 && (r = {});\n const i = Tt.validate(t, r);\n if (i !== !0)\n throw Error(`${i.err.msg}:${i.err.line}:${i.err.col}`);\n }\n const s = new _t(this.options);\n s.addExternalEntities(this.externalEntities);\n const n = s.parseXml(t);\n return this.options.preserveOrder || n === void 0 ? n : vt(n, this.options);\n }\n /**\n * Add Entity which is not by default supported by this library\n * @param {string} key \n * @param {string} value \n */\n addEntity(t, r) {\n if (r.indexOf(\"&\") !== -1)\n throw new Error(\"Entity value can't have '&'\");\n if (t.indexOf(\"&\") !== -1 || t.indexOf(\";\") !== -1)\n throw new Error(\"An entity must be set without '&' and ';'. Eg. use '#xD' for '&#xD;'\");\n if (r === \"&\")\n throw new Error(\"An entity with value '&' is not permitted\");\n this.externalEntities[t] = r;\n }\n};\nvar At = It;\nconst Ot = `\n`;\nfunction Ct(e, t) {\n let r = \"\";\n return t.format && t.indentBy.length > 0 && (r = Ot), se(e, t, \"\", r);\n}\nfunction se(e, t, r, s) {\n let n = \"\", i = !1;\n for (let d = 0; d < e.length; d++) {\n const u = e[d], o = Pt(u);\n if (o === void 0)\n continue;\n let a = \"\";\n if (r.length === 0 ? a = o : a = `${r}.${o}`, o === t.textNodeName) {\n let h = u[o];\n xt(a, t) || (h = t.tagValueProcessor(o, h), h = oe(h, t)), i && (n += s), n += h, i = !1;\n continue;\n } else if (o === t.cdataPropName) {\n i && (n += s), n += `<![CDATA[${u[o][0][t.textNodeName]}]]>`, i = !1;\n continue;\n } else if (o === t.commentPropName) {\n n += s + `<!--${u[o][0][t.textNodeName]}-->`, i = !0;\n continue;\n } else if (o[0] === \"?\") {\n const h = H(u[\":@\"], t), _ = o === \"?xml\" ? \"\" : s;\n let E = u[o][0][t.textNodeName];\n E = E.length !== 0 ? \" \" + E : \"\", n += _ + `<${o}${E}${h}?>`, i = !0;\n continue;\n }\n let l = s;\n l !== \"\" && (l += t.indentBy);\n const f = H(u[\":@\"], t), c = s + `<${o}${f}`, g = se(u[o], t, a, l);\n t.unpairedTags.indexOf(o) !== -1 ? t.suppressUnpairedNode ? n += c + \">\" : n += c + \"/>\" : (!g || g.length === 0) && t.suppressEmptyNode ? n += c + \"/>\" : g && g.endsWith(\">\") ? n += c + `>${g}${s}</${o}>` : (n += c + \">\", g && s !== \"\" && (g.includes(\"/>\") || g.includes(\"</\")) ? n += s + t.indentBy + g + s : n += g, n += `</${o}>`), i = !0;\n }\n return n;\n}\nfunction Pt(e) {\n const t = Object.keys(e);\n for (let r = 0; r < t.length; r++) {\n const s = t[r];\n if (e.hasOwnProperty(s) && s !== \":@\")\n return s;\n }\n}\nfunction H(e, t) {\n let r = \"\";\n if (e && !t.ignoreAttributes)\n for (let s in e) {\n if (!e.hasOwnProperty(s))\n continue;\n let n = t.attributeValueProcessor(s, e[s]);\n n = oe(n, t), n === !0 && t.suppressBooleanAttributes ? r += ` ${s.substr(t.attributeNamePrefix.length)}` : r += ` ${s.substr(t.attributeNamePrefix.length)}=\"${n}\"`;\n }\n return r;\n}\nfunction xt(e, t) {\n e = e.substr(0, e.length - t.textNodeName.length - 1);\n let r = e.substr(e.lastIndexOf(\".\") + 1);\n for (let s in t.stopNodes)\n if (t.stopNodes[s] === e || t.stopNodes[s] === \"*.\" + r)\n return !0;\n return !1;\n}\nfunction oe(e, t) {\n if (e && e.length > 0 && t.processEntities)\n for (let r = 0; r < t.entities.length; r++) {\n const s = t.entities[r];\n e = e.replace(s.regex, s.val);\n }\n return e;\n}\nvar $t = Ct;\nconst Ft = $t, Vt = {\n attributeNamePrefix: \"@_\",\n attributesGroupName: !1,\n textNodeName: \"#text\",\n ignoreAttributes: !0,\n cdataPropName: !1,\n format: !1,\n indentBy: \" \",\n suppressEmptyNode: !1,\n suppressUnpairedNode: !0,\n suppressBooleanAttributes: !0,\n tagValueProcessor: function(e, t) {\n return t;\n },\n attributeValueProcessor: function(e, t) {\n return t;\n },\n preserveOrder: !1,\n commentPropName: !1,\n unpairedTags: [],\n entities: [\n { regex: new RegExp(\"&\", \"g\"), val: \"&amp;\" },\n //it must be on top\n { regex: new RegExp(\">\", \"g\"), val: \"&gt;\" },\n { regex: new RegExp(\"<\", \"g\"), val: \"&lt;\" },\n { regex: new RegExp(\"'\", \"g\"), val: \"&apos;\" },\n { regex: new RegExp('\"', \"g\"), val: \"&quot;\" }\n ],\n processEntities: !0,\n stopNodes: [],\n // transformTagName: false,\n // transformAttributeName: false,\n oneListGroup: !1\n};\nfunction b(e) {\n this.options = Object.assign({}, Vt, e), this.options.ignoreAttributes || this.options.attributesGroupName ? this.isAttribute = function() {\n return !1;\n } : (this.attrPrefixLen = this.options.attributeNamePrefix.length, this.isAttribute = Rt), this.processTextOrObjNode = Lt, this.options.format ? (this.indentate = St, this.tagEndChar = `>\n`, this.newLine = `\n`) : (this.indentate = function() {\n return \"\";\n }, this.tagEndChar = \">\", this.newLine = \"\");\n}\nb.prototype.build = function(e) {\n return this.options.preserveOrder ? Ft(e, this.options) : (Array.isArray(e) && this.options.arrayNodeName && this.options.arrayNodeName.length > 1 && (e = {\n [this.options.arrayNodeName]: e\n }), this.j2x(e, 0).val);\n};\nb.prototype.j2x = function(e, t) {\n let r = \"\", s = \"\";\n for (let n in e)\n if (Object.prototype.hasOwnProperty.call(e, n))\n if (typeof e[n] > \"u\")\n this.isAttribute(n) && (s += \"\");\n else if (e[n] === null)\n this.isAttribute(n) ? s += \"\" : n[0] === \"?\" ? s += this.indentate(t) + \"<\" + n + \"?\" + this.tagEndChar : s += this.indentate(t) + \"<\" + n + \"/\" + this.tagEndChar;\n else if (e[n] instanceof Date)\n s += this.buildTextValNode(e[n], n, \"\", t);\n else if (typeof e[n] != \"object\") {\n const i = this.isAttribute(n);\n if (i)\n r += this.buildAttrPairStr(i, \"\" + e[n]);\n else if (n === this.options.textNodeName) {\n let d = this.options.tagValueProcessor(n, \"\" + e[n]);\n s += this.replaceEntitiesValue(d);\n } else\n s += this.buildTextValNode(e[n], n, \"\", t);\n } else if (Array.isArray(e[n])) {\n const i = e[n].length;\n let d = \"\";\n for (let u = 0; u < i; u++) {\n const o = e[n][u];\n typeof o > \"u\" || (o === null ? n[0] === \"?\" ? s += this.indentate(t) + \"<\" + n + \"?\" + this.tagEndChar : s += this.indentate(t) + \"<\" + n + \"/\" + this.tagEndChar : typeof o == \"object\" ? this.options.oneListGroup ? d += this.j2x(o, t + 1).val : d += this.processTextOrObjNode(o, n, t) : d += this.buildTextValNode(o, n, \"\", t));\n }\n this.options.oneListGroup && (d = this.buildObjectNode(d, n, \"\", t)), s += d;\n } else if (this.options.attributesGroupName && n === this.options.attributesGroupName) {\n const i = Object.keys(e[n]), d = i.length;\n for (let u = 0; u < d; u++)\n r += this.buildAttrPairStr(i[u], \"\" + e[n][i[u]]);\n } else\n s += this.processTextOrObjNode(e[n], n, t);\n return { attrStr: r, val: s };\n};\nb.prototype.buildAttrPairStr = function(e, t) {\n return t = this.options.attributeValueProcessor(e, \"\" + t), t = this.replaceEntitiesValue(t), this.options.suppressBooleanAttributes && t === \"true\" ? \" \" + e : \" \" + e + '=\"' + t + '\"';\n};\nfunction Lt(e, t, r) {\n const s = this.j2x(e, r + 1);\n return e[this.options.textNodeName] !== void 0 && Object.keys(e).length === 1 ? this.buildTextValNode(e[this.options.textNodeName], t, s.attrStr, r) : this.buildObjectNode(s.val, t, s.attrStr, r);\n}\nb.prototype.buildObjectNode = function(e, t, r, s) {\n if (e === \"\")\n return t[0] === \"?\" ? this.indentate(s) + \"<\" + t + r + \"?\" + this.tagEndChar : this.indentate(s) + \"<\" + t + r + this.closeTag(t) + this.tagEndChar;\n {\n let n = \"</\" + t + this.tagEndChar, i = \"\";\n return t[0] === \"?\" && (i = \"?\", n = \"\"), (r || r === \"\") && e.indexOf(\"<\") === -1 ? this.indentate(s) + \"<\" + t + r + i + \">\" + e + n : this.options.commentPropName !== !1 && t === this.options.commentPropName && i.length === 0 ? this.indentate(s) + `<!--${e}-->` + this.newLine : this.indentate(s) + \"<\" + t + r + i + this.tagEndChar + e + this.indentate(s) + n;\n }\n};\nb.prototype.closeTag = function(e) {\n let t = \"\";\n return this.options.unpairedTags.indexOf(e) !== -1 ? this.options.suppressUnpairedNode || (t = \"/\") : this.options.suppressEmptyNode ? t = \"/\" : t = `></${e}`, t;\n};\nb.prototype.buildTextValNode = function(e, t, r, s) {\n if (this.options.cdataPropName !== !1 && t === this.options.cdataPropName)\n return this.indentate(s) + `<![CDATA[${e}]]>` + this.newLine;\n if (this.options.commentPropName !== !1 && t === this.options.commentPropName)\n return this.indentate(s) + `<!--${e}-->` + this.newLine;\n if (t[0] === \"?\")\n return this.indentate(s) + \"<\" + t + r + \"?\" + this.tagEndChar;\n {\n let n = this.options.tagValueProcessor(t, e);\n return n = this.replaceEntitiesValue(n), n === \"\" ? this.indentate(s) + \"<\" + t + r + this.closeTag(t) + this.tagEndChar : this.indentate(s) + \"<\" + t + r + \">\" + n + \"</\" + t + this.tagEndChar;\n }\n};\nb.prototype.replaceEntitiesValue = function(e) {\n if (e && e.length > 0 && this.options.processEntities)\n for (let t = 0; t < this.options.entities.length; t++) {\n const r = this.options.entities[t];\n e = e.replace(r.regex, r.val);\n }\n return e;\n};\nfunction St(e) {\n return this.options.indentBy.repeat(e);\n}\nfunction Rt(e) {\n return e.startsWith(this.options.attributeNamePrefix) && e !== this.options.textNodeName ? e.substr(this.attrPrefixLen) : !1;\n}\nvar Mt = b;\nconst kt = R, Bt = At, qt = Mt;\nvar K = {\n XMLParser: Bt,\n XMLValidator: kt,\n XMLBuilder: qt\n};\nfunction Xt(e) {\n if (typeof e != \"string\")\n throw new TypeError(`Expected a \\`string\\`, got \\`${typeof e}\\``);\n if (e = e.trim(), e.length === 0 || K.XMLValidator.validate(e) !== !0)\n return !1;\n let t;\n const r = new K.XMLParser();\n try {\n t = r.parse(e);\n } catch {\n return !1;\n }\n return !(!t || !(\"svg\" in t));\n}\n/**\n * @copyright Copyright (c) 2022 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nclass cr {\n _view;\n constructor(t) {\n Ut(t), this._view = t;\n }\n get id() {\n return this._view.id;\n }\n get name() {\n return this._view.name;\n }\n get caption() {\n return this._view.caption;\n }\n get emptyTitle() {\n return this._view.emptyTitle;\n }\n get emptyCaption() {\n return this._view.emptyCaption;\n }\n get getContents() {\n return this._view.getContents;\n }\n get icon() {\n return this._view.icon;\n }\n set icon(t) {\n this._view.icon = t;\n }\n get order() {\n return this._view.order;\n }\n set order(t) {\n this._view.order = t;\n }\n get params() {\n return this._view.params;\n }\n set params(t) {\n this._view.params = t;\n }\n get columns() {\n return this._view.columns;\n }\n get emptyView() {\n return this._view.emptyView;\n }\n get parent() {\n return this._view.parent;\n }\n get sticky() {\n return this._view.sticky;\n }\n get expanded() {\n return this._view.expanded;\n }\n set expanded(t) {\n this._view.expanded = t;\n }\n get defaultSortKey() {\n return this._view.defaultSortKey;\n }\n}\nconst Ut = function(e) {\n if (!e.id || typeof e.id != \"string\")\n throw new Error(\"View id is required and must be a string\");\n if (!e.name || typeof e.name != \"string\")\n throw new Error(\"View name is required and must be a string\");\n if (e.columns && e.columns.length > 0 && (!e.caption || typeof e.caption != \"string\"))\n throw new Error(\"View caption is required for top-level views and must be a string\");\n if (!e.getContents || typeof e.getContents != \"function\")\n throw new Error(\"View getContents is required and must be a function\");\n if (!e.icon || typeof e.icon != \"string\" || !Xt(e.icon))\n throw new Error(\"View icon is required and must be a valid svg string\");\n if (!(\"order\" in e) || typeof e.order != \"number\")\n throw new Error(\"View order is required and must be a number\");\n if (e.columns && e.columns.forEach((t) => {\n if (!(t instanceof Ie))\n throw new Error(\"View columns must be an array of Column. Invalid column found\");\n }), e.emptyView && typeof e.emptyView != \"function\")\n throw new Error(\"View emptyView must be a function\");\n if (e.parent && typeof e.parent != \"string\")\n throw new Error(\"View parent must be a string\");\n if (\"sticky\" in e && typeof e.sticky != \"boolean\")\n throw new Error(\"View sticky must be a boolean\");\n if (\"expanded\" in e && typeof e.expanded != \"boolean\")\n throw new Error(\"View expanded must be a boolean\");\n if (e.defaultSortKey && typeof e.defaultSortKey != \"string\")\n throw new Error(\"View defaultSortKey must be a string\");\n return !0;\n};\n/**\n * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @author Christoph Wurst <christoph@winzerhof-wurst.at>\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst hr = function(e) {\n return F().registerEntry(e);\n}, pr = function(e) {\n return F().unregisterEntry(e);\n}, gr = function(e) {\n return F().getEntries(e).sort((r, s) => r.order !== void 0 && s.order !== void 0 && r.order !== s.order ? r.order - s.order : r.displayName.localeCompare(s.displayName, void 0, { numeric: !0, sensitivity: \"base\" }));\n};\nexport {\n Ie as Column,\n W as DefaultType,\n ye as File,\n Qt as FileAction,\n S as FileType,\n _e as Folder,\n tr as Header,\n Te as Navigation,\n Q as Node,\n J as NodeStatus,\n N as Permission,\n cr as View,\n hr as addNewFileMenuEntry,\n ur as davGetClient,\n sr as davGetDefaultPropfind,\n Ee as davGetFavoritesReport,\n or as davGetRecentSearch,\n be as davParsePermissions,\n ee as davRemoteURL,\n ve as davResultToNode,\n D as davRootPath,\n j as defaultDavNamespaces,\n Z as defaultDavProperties,\n Yt as formatFileSize,\n L as getDavNameSpaces,\n V as getDavProperties,\n dr as getFavoriteNodes,\n er as getFileActions,\n nr as getFileListHeaders,\n ar as getNavigation,\n gr as getNewFileMenuEntries,\n Jt as parseFileSize,\n ir as registerDavProperty,\n Dt as registerFileAction,\n rr as registerFileListHeaders,\n pr as removeNewFileMenuEntry\n};\n","\n import API from \"!../../../../style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"!../../../../style-loader/dist/runtime/insertBySelector.js\";\n import setAttributes from \"!../../../../style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../css-loader/dist/cjs.js!./index-FLLHP6Jd.css\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\n\n options.insert = insertFn.bind(null, \"head\");\n \noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../css-loader/dist/cjs.js!./index-FLLHP6Jd.css\";\n export default content && content.locals ? content.locals : undefined;\n","export class CancelError extends Error {\n\tconstructor(reason) {\n\t\tsuper(reason || 'Promise was canceled');\n\t\tthis.name = 'CancelError';\n\t}\n\n\tget isCanceled() {\n\t\treturn true;\n\t}\n}\n\nconst promiseState = Object.freeze({\n\tpending: Symbol('pending'),\n\tcanceled: Symbol('canceled'),\n\tresolved: Symbol('resolved'),\n\trejected: Symbol('rejected'),\n});\n\nexport default class PCancelable {\n\tstatic fn(userFunction) {\n\t\treturn (...arguments_) => new PCancelable((resolve, reject, onCancel) => {\n\t\t\targuments_.push(onCancel);\n\t\t\tuserFunction(...arguments_).then(resolve, reject);\n\t\t});\n\t}\n\n\t#cancelHandlers = [];\n\t#rejectOnCancel = true;\n\t#state = promiseState.pending;\n\t#promise;\n\t#reject;\n\n\tconstructor(executor) {\n\t\tthis.#promise = new Promise((resolve, reject) => {\n\t\t\tthis.#reject = reject;\n\n\t\t\tconst onResolve = value => {\n\t\t\t\tif (this.#state !== promiseState.canceled || !onCancel.shouldReject) {\n\t\t\t\t\tresolve(value);\n\t\t\t\t\tthis.#setState(promiseState.resolved);\n\t\t\t\t}\n\t\t\t};\n\n\t\t\tconst onReject = error => {\n\t\t\t\tif (this.#state !== promiseState.canceled || !onCancel.shouldReject) {\n\t\t\t\t\treject(error);\n\t\t\t\t\tthis.#setState(promiseState.rejected);\n\t\t\t\t}\n\t\t\t};\n\n\t\t\tconst onCancel = handler => {\n\t\t\t\tif (this.#state !== promiseState.pending) {\n\t\t\t\t\tthrow new Error(`The \\`onCancel\\` handler was attached after the promise ${this.#state.description}.`);\n\t\t\t\t}\n\n\t\t\t\tthis.#cancelHandlers.push(handler);\n\t\t\t};\n\n\t\t\tObject.defineProperties(onCancel, {\n\t\t\t\tshouldReject: {\n\t\t\t\t\tget: () => this.#rejectOnCancel,\n\t\t\t\t\tset: boolean => {\n\t\t\t\t\t\tthis.#rejectOnCancel = boolean;\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t});\n\n\t\t\texecutor(onResolve, onReject, onCancel);\n\t\t});\n\t}\n\n\t// eslint-disable-next-line unicorn/no-thenable\n\tthen(onFulfilled, onRejected) {\n\t\treturn this.#promise.then(onFulfilled, onRejected);\n\t}\n\n\tcatch(onRejected) {\n\t\treturn this.#promise.catch(onRejected);\n\t}\n\n\tfinally(onFinally) {\n\t\treturn this.#promise.finally(onFinally);\n\t}\n\n\tcancel(reason) {\n\t\tif (this.#state !== promiseState.pending) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.#setState(promiseState.canceled);\n\n\t\tif (this.#cancelHandlers.length > 0) {\n\t\t\ttry {\n\t\t\t\tfor (const handler of this.#cancelHandlers) {\n\t\t\t\t\thandler();\n\t\t\t\t}\n\t\t\t} catch (error) {\n\t\t\t\tthis.#reject(error);\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\n\t\tif (this.#rejectOnCancel) {\n\t\t\tthis.#reject(new CancelError(reason));\n\t\t}\n\t}\n\n\tget isCanceled() {\n\t\treturn this.#state === promiseState.canceled;\n\t}\n\n\t#setState(state) {\n\t\tif (this.#state === promiseState.pending) {\n\t\t\tthis.#state = state;\n\t\t}\n\t}\n}\n\nObject.setPrototypeOf(PCancelable.prototype, Promise.prototype);\n","export class TimeoutError extends Error {\n\tconstructor(message) {\n\t\tsuper(message);\n\t\tthis.name = 'TimeoutError';\n\t}\n}\n\n/**\nAn error to be thrown when the request is aborted by AbortController.\nDOMException is thrown instead of this Error when DOMException is available.\n*/\nexport class AbortError extends Error {\n\tconstructor(message) {\n\t\tsuper();\n\t\tthis.name = 'AbortError';\n\t\tthis.message = message;\n\t}\n}\n\n/**\nTODO: Remove AbortError and just throw DOMException when targeting Node 18.\n*/\nconst getDOMException = errorMessage => globalThis.DOMException === undefined\n\t? new AbortError(errorMessage)\n\t: new DOMException(errorMessage);\n\n/**\nTODO: Remove below function and just 'reject(signal.reason)' when targeting Node 18.\n*/\nconst getAbortedReason = signal => {\n\tconst reason = signal.reason === undefined\n\t\t? getDOMException('This operation was aborted.')\n\t\t: signal.reason;\n\n\treturn reason instanceof Error ? reason : getDOMException(reason);\n};\n\nexport default function pTimeout(promise, options) {\n\tconst {\n\t\tmilliseconds,\n\t\tfallback,\n\t\tmessage,\n\t\tcustomTimers = {setTimeout, clearTimeout},\n\t} = options;\n\n\tlet timer;\n\n\tconst wrappedPromise = new Promise((resolve, reject) => {\n\t\tif (typeof milliseconds !== 'number' || Math.sign(milliseconds) !== 1) {\n\t\t\tthrow new TypeError(`Expected \\`milliseconds\\` to be a positive number, got \\`${milliseconds}\\``);\n\t\t}\n\n\t\tif (options.signal) {\n\t\t\tconst {signal} = options;\n\t\t\tif (signal.aborted) {\n\t\t\t\treject(getAbortedReason(signal));\n\t\t\t}\n\n\t\t\tsignal.addEventListener('abort', () => {\n\t\t\t\treject(getAbortedReason(signal));\n\t\t\t});\n\t\t}\n\n\t\tif (milliseconds === Number.POSITIVE_INFINITY) {\n\t\t\tpromise.then(resolve, reject);\n\t\t\treturn;\n\t\t}\n\n\t\t// We create the error outside of `setTimeout` to preserve the stack trace.\n\t\tconst timeoutError = new TimeoutError();\n\n\t\ttimer = customTimers.setTimeout.call(undefined, () => {\n\t\t\tif (fallback) {\n\t\t\t\ttry {\n\t\t\t\t\tresolve(fallback());\n\t\t\t\t} catch (error) {\n\t\t\t\t\treject(error);\n\t\t\t\t}\n\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif (typeof promise.cancel === 'function') {\n\t\t\t\tpromise.cancel();\n\t\t\t}\n\n\t\t\tif (message === false) {\n\t\t\t\tresolve();\n\t\t\t} else if (message instanceof Error) {\n\t\t\t\treject(message);\n\t\t\t} else {\n\t\t\t\ttimeoutError.message = message ?? `Promise timed out after ${milliseconds} milliseconds`;\n\t\t\t\treject(timeoutError);\n\t\t\t}\n\t\t}, milliseconds);\n\n\t\t(async () => {\n\t\t\ttry {\n\t\t\t\tresolve(await promise);\n\t\t\t} catch (error) {\n\t\t\t\treject(error);\n\t\t\t}\n\t\t})();\n\t});\n\n\tconst cancelablePromise = wrappedPromise.finally(() => {\n\t\tcancelablePromise.clear();\n\t});\n\n\tcancelablePromise.clear = () => {\n\t\tcustomTimers.clearTimeout.call(undefined, timer);\n\t\ttimer = undefined;\n\t};\n\n\treturn cancelablePromise;\n}\n","import lowerBound from './lower-bound.js';\nexport default class PriorityQueue {\n #queue = [];\n enqueue(run, options) {\n options = {\n priority: 0,\n ...options,\n };\n const element = {\n priority: options.priority,\n run,\n };\n if (this.size && this.#queue[this.size - 1].priority >= options.priority) {\n this.#queue.push(element);\n return;\n }\n const index = lowerBound(this.#queue, element, (a, b) => b.priority - a.priority);\n this.#queue.splice(index, 0, element);\n }\n dequeue() {\n const item = this.#queue.shift();\n return item?.run;\n }\n filter(options) {\n return this.#queue.filter((element) => element.priority === options.priority).map((element) => element.run);\n }\n get size() {\n return this.#queue.length;\n }\n}\n","// Port of lower_bound from https://en.cppreference.com/w/cpp/algorithm/lower_bound\n// Used to compute insertion index to keep queue sorted after insertion\nexport default function lowerBound(array, value, comparator) {\n let first = 0;\n let count = array.length;\n while (count > 0) {\n const step = Math.trunc(count / 2);\n let it = first + step;\n if (comparator(array[it], value) <= 0) {\n first = ++it;\n count -= step + 1;\n }\n else {\n count = step;\n }\n }\n return first;\n}\n","import { EventEmitter } from 'eventemitter3';\nimport pTimeout, { TimeoutError } from 'p-timeout';\nimport PriorityQueue from './priority-queue.js';\n/**\nPromise queue with concurrency control.\n*/\nexport default class PQueue extends EventEmitter {\n #carryoverConcurrencyCount;\n #isIntervalIgnored;\n #intervalCount = 0;\n #intervalCap;\n #interval;\n #intervalEnd = 0;\n #intervalId;\n #timeoutId;\n #queue;\n #queueClass;\n #pending = 0;\n // The `!` is needed because of https://github.com/microsoft/TypeScript/issues/32194\n #concurrency;\n #isPaused;\n #throwOnTimeout;\n /**\n Per-operation timeout in milliseconds. Operations fulfill once `timeout` elapses if they haven't already.\n\n Applies to each future operation.\n */\n timeout;\n // TODO: The `throwOnTimeout` option should affect the return types of `add()` and `addAll()`\n constructor(options) {\n super();\n // eslint-disable-next-line @typescript-eslint/consistent-type-assertions\n options = {\n carryoverConcurrencyCount: false,\n intervalCap: Number.POSITIVE_INFINITY,\n interval: 0,\n concurrency: Number.POSITIVE_INFINITY,\n autoStart: true,\n queueClass: PriorityQueue,\n ...options,\n };\n if (!(typeof options.intervalCap === 'number' && options.intervalCap >= 1)) {\n throw new TypeError(`Expected \\`intervalCap\\` to be a number from 1 and up, got \\`${options.intervalCap?.toString() ?? ''}\\` (${typeof options.intervalCap})`);\n }\n if (options.interval === undefined || !(Number.isFinite(options.interval) && options.interval >= 0)) {\n throw new TypeError(`Expected \\`interval\\` to be a finite number >= 0, got \\`${options.interval?.toString() ?? ''}\\` (${typeof options.interval})`);\n }\n this.#carryoverConcurrencyCount = options.carryoverConcurrencyCount;\n this.#isIntervalIgnored = options.intervalCap === Number.POSITIVE_INFINITY || options.interval === 0;\n this.#intervalCap = options.intervalCap;\n this.#interval = options.interval;\n this.#queue = new options.queueClass();\n this.#queueClass = options.queueClass;\n this.concurrency = options.concurrency;\n this.timeout = options.timeout;\n this.#throwOnTimeout = options.throwOnTimeout === true;\n this.#isPaused = options.autoStart === false;\n }\n get #doesIntervalAllowAnother() {\n return this.#isIntervalIgnored || this.#intervalCount < this.#intervalCap;\n }\n get #doesConcurrentAllowAnother() {\n return this.#pending < this.#concurrency;\n }\n #next() {\n this.#pending--;\n this.#tryToStartAnother();\n this.emit('next');\n }\n #onResumeInterval() {\n this.#onInterval();\n this.#initializeIntervalIfNeeded();\n this.#timeoutId = undefined;\n }\n get #isIntervalPaused() {\n const now = Date.now();\n if (this.#intervalId === undefined) {\n const delay = this.#intervalEnd - now;\n if (delay < 0) {\n // Act as the interval was done\n // We don't need to resume it here because it will be resumed on line 160\n this.#intervalCount = (this.#carryoverConcurrencyCount) ? this.#pending : 0;\n }\n else {\n // Act as the interval is pending\n if (this.#timeoutId === undefined) {\n this.#timeoutId = setTimeout(() => {\n this.#onResumeInterval();\n }, delay);\n }\n return true;\n }\n }\n return false;\n }\n #tryToStartAnother() {\n if (this.#queue.size === 0) {\n // We can clear the interval (\"pause\")\n // Because we can redo it later (\"resume\")\n if (this.#intervalId) {\n clearInterval(this.#intervalId);\n }\n this.#intervalId = undefined;\n this.emit('empty');\n if (this.#pending === 0) {\n this.emit('idle');\n }\n return false;\n }\n if (!this.#isPaused) {\n const canInitializeInterval = !this.#isIntervalPaused;\n if (this.#doesIntervalAllowAnother && this.#doesConcurrentAllowAnother) {\n const job = this.#queue.dequeue();\n if (!job) {\n return false;\n }\n this.emit('active');\n job();\n if (canInitializeInterval) {\n this.#initializeIntervalIfNeeded();\n }\n return true;\n }\n }\n return false;\n }\n #initializeIntervalIfNeeded() {\n if (this.#isIntervalIgnored || this.#intervalId !== undefined) {\n return;\n }\n this.#intervalId = setInterval(() => {\n this.#onInterval();\n }, this.#interval);\n this.#intervalEnd = Date.now() + this.#interval;\n }\n #onInterval() {\n if (this.#intervalCount === 0 && this.#pending === 0 && this.#intervalId) {\n clearInterval(this.#intervalId);\n this.#intervalId = undefined;\n }\n this.#intervalCount = this.#carryoverConcurrencyCount ? this.#pending : 0;\n this.#processQueue();\n }\n /**\n Executes all queued functions until it reaches the limit.\n */\n #processQueue() {\n // eslint-disable-next-line no-empty\n while (this.#tryToStartAnother()) { }\n }\n get concurrency() {\n return this.#concurrency;\n }\n set concurrency(newConcurrency) {\n if (!(typeof newConcurrency === 'number' && newConcurrency >= 1)) {\n throw new TypeError(`Expected \\`concurrency\\` to be a number from 1 and up, got \\`${newConcurrency}\\` (${typeof newConcurrency})`);\n }\n this.#concurrency = newConcurrency;\n this.#processQueue();\n }\n async #throwOnAbort(signal) {\n return new Promise((_resolve, reject) => {\n signal.addEventListener('abort', () => {\n reject(signal.reason);\n }, { once: true });\n });\n }\n async add(function_, options = {}) {\n options = {\n timeout: this.timeout,\n throwOnTimeout: this.#throwOnTimeout,\n ...options,\n };\n return new Promise((resolve, reject) => {\n this.#queue.enqueue(async () => {\n this.#pending++;\n this.#intervalCount++;\n try {\n options.signal?.throwIfAborted();\n let operation = function_({ signal: options.signal });\n if (options.timeout) {\n operation = pTimeout(Promise.resolve(operation), { milliseconds: options.timeout });\n }\n if (options.signal) {\n operation = Promise.race([operation, this.#throwOnAbort(options.signal)]);\n }\n const result = await operation;\n resolve(result);\n this.emit('completed', result);\n }\n catch (error) {\n if (error instanceof TimeoutError && !options.throwOnTimeout) {\n resolve();\n return;\n }\n reject(error);\n this.emit('error', error);\n }\n finally {\n this.#next();\n }\n }, options);\n this.emit('add');\n this.#tryToStartAnother();\n });\n }\n async addAll(functions, options) {\n return Promise.all(functions.map(async (function_) => this.add(function_, options)));\n }\n /**\n Start (or resume) executing enqueued tasks within concurrency limit. No need to call this if queue is not paused (via `options.autoStart = false` or by `.pause()` method.)\n */\n start() {\n if (!this.#isPaused) {\n return this;\n }\n this.#isPaused = false;\n this.#processQueue();\n return this;\n }\n /**\n Put queue execution on hold.\n */\n pause() {\n this.#isPaused = true;\n }\n /**\n Clear the queue.\n */\n clear() {\n this.#queue = new this.#queueClass();\n }\n /**\n Can be called multiple times. Useful if you for example add additional items at a later time.\n\n @returns A promise that settles when the queue becomes empty.\n */\n async onEmpty() {\n // Instantly resolve if the queue is empty\n if (this.#queue.size === 0) {\n return;\n }\n await this.#onEvent('empty');\n }\n /**\n @returns A promise that settles when the queue size is less than the given limit: `queue.size < limit`.\n\n If you want to avoid having the queue grow beyond a certain size you can `await queue.onSizeLessThan()` before adding a new item.\n\n Note that this only limits the number of items waiting to start. There could still be up to `concurrency` jobs already running that this call does not include in its calculation.\n */\n async onSizeLessThan(limit) {\n // Instantly resolve if the queue is empty.\n if (this.#queue.size < limit) {\n return;\n }\n await this.#onEvent('next', () => this.#queue.size < limit);\n }\n /**\n The difference with `.onEmpty` is that `.onIdle` guarantees that all work from the queue has finished. `.onEmpty` merely signals that the queue is empty, but it could mean that some promises haven't completed yet.\n\n @returns A promise that settles when the queue becomes empty, and all promises have completed; `queue.size === 0 && queue.pending === 0`.\n */\n async onIdle() {\n // Instantly resolve if none pending and if nothing else is queued\n if (this.#pending === 0 && this.#queue.size === 0) {\n return;\n }\n await this.#onEvent('idle');\n }\n async #onEvent(event, filter) {\n return new Promise(resolve => {\n const listener = () => {\n if (filter && !filter()) {\n return;\n }\n this.off(event, listener);\n resolve();\n };\n this.on(event, listener);\n });\n }\n /**\n Size of the queue, the number of queued items waiting to run.\n */\n get size() {\n return this.#queue.size;\n }\n /**\n Size of the queue, filtered by the given options.\n\n For example, this can be used to find the number of items remaining in the queue with a specific priority level.\n */\n sizeBy(options) {\n // eslint-disable-next-line unicorn/no-array-callback-reference\n return this.#queue.filter(options).length;\n }\n /**\n Number of running items (no longer in the queue).\n */\n get pending() {\n return this.#pending;\n }\n /**\n Whether the queue is currently paused.\n */\n get isPaused() {\n return this.#isPaused;\n }\n}\n","export const AsyncResource = {\n\tbind(fn, _type, thisArg) {\n\t\treturn fn.bind(thisArg);\n\t},\n};\n\nexport class AsyncLocalStorage {\n\tgetStore() {\n\t\treturn undefined;\n\t}\n\n\trun(_store, callback) {\n\t\treturn callback();\n\t}\n}\n","import '../assets/index-FLLHP6Jd.css';\nimport { CanceledError as F } from \"axios\";\nimport { encodePath as H } from \"@nextcloud/paths\";\nimport { Folder as j, Permission as G, getNewFileMenuEntries as Y } from \"@nextcloud/files\";\nimport { generateRemoteUrl as E } from \"@nextcloud/router\";\nimport { getCurrentUser as S } from \"@nextcloud/auth\";\nimport v from \"@nextcloud/axios\";\nimport V from \"p-cancelable\";\nimport K from \"p-queue\";\nimport $ from \"p-limit\";\nimport { getLoggerBuilder as P } from \"@nextcloud/logger\";\nimport { showError as A } from \"@nextcloud/dialogs\";\nimport J from \"simple-eta\";\nimport I, { defineAsyncComponent as Q } from \"vue\";\nimport Z from \"@nextcloud/vue/dist/Components/NcActionButton.js\";\nimport X from \"@nextcloud/vue/dist/Components/NcActions.js\";\nimport ss from \"@nextcloud/vue/dist/Components/NcButton.js\";\nimport es from \"@nextcloud/vue/dist/Components/NcIconSvgWrapper.js\";\nimport ts from \"@nextcloud/vue/dist/Components/NcProgressBar.js\";\nimport { getGettextBuilder as ns } from \"@nextcloud/l10n/gettext\";\nconst as = $(1), k = new FileReader(), B = async function(e, s, t, n = () => {\n}, i = void 0, o = {}) {\n let l;\n return s instanceof Blob ? l = s : l = await s(), i && (o.Destination = i), o[\"Content-Type\"] || (o[\"Content-Type\"] = \"application/octet-stream\"), await v.request({\n method: \"PUT\",\n url: e,\n data: l,\n signal: t,\n onUploadProgress: n,\n headers: o\n });\n}, N = function(e, s, t) {\n return s === 0 && e.size <= t ? Promise.resolve(new Blob([e], { type: e.type || \"application/octet-stream\" })) : as(() => new Promise((n, i) => {\n k.onload = () => {\n k.result !== null && n(new Blob([k.result], {\n type: \"application/octet-stream\"\n })), i(new Error(\"Error while reading the file\"));\n }, k.readAsArrayBuffer(e.slice(s, s + t));\n }));\n}, is = async function(e = void 0) {\n const s = E(`dav/uploads/${S()?.uid}`), n = `web-file-upload-${[...Array(16)].map(() => Math.floor(Math.random() * 16).toString(16)).join(\"\")}`, i = `${s}/${n}`, o = e ? { Destination: e } : void 0;\n return await v.request({\n method: \"MKCOL\",\n url: i,\n headers: o\n }), i;\n}, x = function(e = void 0) {\n const s = window.OC?.appConfig?.files?.max_chunk_size;\n if (s <= 0)\n return 0;\n if (!Number(s))\n return 10 * 1024 * 1024;\n const t = Math.max(Number(s), 5 * 1024 * 1024);\n return e === void 0 ? t : Math.max(t, Math.ceil(e / 1e4));\n};\nvar c = /* @__PURE__ */ ((e) => (e[e.INITIALIZED = 0] = \"INITIALIZED\", e[e.UPLOADING = 1] = \"UPLOADING\", e[e.ASSEMBLING = 2] = \"ASSEMBLING\", e[e.FINISHED = 3] = \"FINISHED\", e[e.CANCELLED = 4] = \"CANCELLED\", e[e.FAILED = 5] = \"FAILED\", e))(c || {});\nlet ls = class {\n _source;\n _file;\n _isChunked;\n _chunks;\n _size;\n _uploaded = 0;\n _startTime = 0;\n _status = 0;\n _controller;\n _response = null;\n constructor(s, t = !1, n, i) {\n const o = Math.min(x() > 0 ? Math.ceil(n / x()) : 1, 1e4);\n this._source = s, this._isChunked = t && x() > 0 && o > 1, this._chunks = this._isChunked ? o : 1, this._size = n, this._file = i, this._controller = new AbortController();\n }\n get source() {\n return this._source;\n }\n get file() {\n return this._file;\n }\n get isChunked() {\n return this._isChunked;\n }\n get chunks() {\n return this._chunks;\n }\n get size() {\n return this._size;\n }\n get startTime() {\n return this._startTime;\n }\n set response(s) {\n this._response = s;\n }\n get response() {\n return this._response;\n }\n get uploaded() {\n return this._uploaded;\n }\n /**\n * Update the uploaded bytes of this upload\n */\n set uploaded(s) {\n if (s >= this._size) {\n this._status = this._isChunked ? 2 : 3, this._uploaded = this._size;\n return;\n }\n this._status = 1, this._uploaded = s, this._startTime === 0 && (this._startTime = (/* @__PURE__ */ new Date()).getTime());\n }\n get status() {\n return this._status;\n }\n /**\n * Update this upload status\n */\n set status(s) {\n this._status = s;\n }\n /**\n * Returns the axios cancel token source\n */\n get signal() {\n return this._controller.signal;\n }\n /**\n * Cancel any ongoing requests linked to this upload\n */\n cancel() {\n this._controller.abort(), this._status = 4;\n }\n};\n/**\n * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @author Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst rs = (e) => e === null ? P().setApp(\"uploader\").build() : P().setApp(\"uploader\").setUid(e.uid).build(), g = rs(S());\nvar R = /* @__PURE__ */ ((e) => (e[e.IDLE = 0] = \"IDLE\", e[e.UPLOADING = 1] = \"UPLOADING\", e[e.PAUSED = 2] = \"PAUSED\", e))(R || {});\nclass z {\n // Initialized via setter in the constructor\n _destinationFolder;\n _isPublic;\n // Global upload queue\n _uploadQueue = [];\n _jobQueue = new K({ concurrency: 3 });\n _queueSize = 0;\n _queueProgress = 0;\n _queueStatus = 0;\n _notifiers = [];\n /**\n * Initialize uploader\n *\n * @param {boolean} isPublic are we in public mode ?\n * @param {Folder} destinationFolder the context folder to operate, relative to the root folder\n */\n constructor(s = !1, t) {\n if (this._isPublic = s, !t) {\n const n = S()?.uid, i = E(`dav/files/${n}`);\n if (!n)\n throw new Error(\"User is not logged in\");\n t = new j({\n id: 0,\n owner: n,\n permissions: G.ALL,\n root: `/files/${n}`,\n source: i\n });\n }\n this.destination = t, g.debug(\"Upload workspace initialized\", {\n destination: this.destination,\n root: this.root,\n isPublic: s,\n maxChunksSize: x()\n });\n }\n /**\n * Get the upload destination path relative to the root folder\n */\n get destination() {\n return this._destinationFolder;\n }\n /**\n * Set the upload destination path relative to the root folder\n */\n set destination(s) {\n if (!s)\n throw new Error(\"Invalid destination folder\");\n g.debug(\"Destination set\", { folder: s }), this._destinationFolder = s;\n }\n /**\n * Get the root folder\n */\n get root() {\n return this._destinationFolder.source;\n }\n /**\n * Get the upload queue\n */\n get queue() {\n return this._uploadQueue;\n }\n reset() {\n this._uploadQueue.splice(0, this._uploadQueue.length), this._jobQueue.clear(), this._queueSize = 0, this._queueProgress = 0, this._queueStatus = 0;\n }\n /**\n * Pause any ongoing upload(s)\n */\n pause() {\n this._jobQueue.pause(), this._queueStatus = 2;\n }\n /**\n * Resume any pending upload(s)\n */\n start() {\n this._jobQueue.start(), this._queueStatus = 1, this.updateStats();\n }\n /**\n * Get the upload queue stats\n */\n get info() {\n return {\n size: this._queueSize,\n progress: this._queueProgress,\n status: this._queueStatus\n };\n }\n updateStats() {\n const s = this._uploadQueue.map((n) => n.size).reduce((n, i) => n + i, 0), t = this._uploadQueue.map((n) => n.uploaded).reduce((n, i) => n + i, 0);\n this._queueSize = s, this._queueProgress = t, this._queueStatus !== 2 && (this._queueStatus = this._jobQueue.size > 0 ? 1 : 0);\n }\n addNotifier(s) {\n this._notifiers.push(s);\n }\n /**\n * Upload a file to the given path\n * @param {string} destinationPath the destination path relative to the root folder. e.g. /foo/bar.txt\n * @param {File} file the file to upload\n * @param {string} root the root folder to upload to\n */\n upload(s, t, n) {\n const i = `${n || this.root}/${s.replace(/^\\//, \"\")}`, { origin: o } = new URL(i), l = o + H(i.slice(o.length));\n g.debug(`Uploading ${t.name} to ${l}`);\n const f = x(t.size), r = f === 0 || t.size < f || this._isPublic, a = new ls(i, !r, t.size, t);\n return this._uploadQueue.push(a), this.updateStats(), new V(async (T, d, b) => {\n if (b(a.cancel), r) {\n g.debug(\"Initializing regular upload\", { file: t, upload: a });\n const p = await N(t, 0, a.size), L = async () => {\n try {\n a.response = await B(\n l,\n p,\n a.signal,\n (m) => {\n a.uploaded = a.uploaded + m.bytes, this.updateStats();\n },\n void 0,\n {\n \"X-OC-Mtime\": t.lastModified / 1e3,\n \"Content-Type\": t.type\n }\n ), a.uploaded = a.size, this.updateStats(), g.debug(`Successfully uploaded ${t.name}`, { file: t, upload: a }), T(a);\n } catch (m) {\n if (m instanceof F) {\n a.status = c.FAILED, d(\"Upload has been cancelled\");\n return;\n }\n m?.response && (a.response = m.response), a.status = c.FAILED, g.error(`Failed uploading ${t.name}`, { error: m, file: t, upload: a }), d(\"Failed uploading the file\");\n }\n this._notifiers.forEach((m) => {\n try {\n m(a);\n } catch {\n }\n });\n };\n this._jobQueue.add(L), this.updateStats();\n } else {\n g.debug(\"Initializing chunked upload\", { file: t, upload: a });\n const p = await is(l), L = [];\n for (let m = 0; m < a.chunks; m++) {\n const w = m * f, W = Math.min(w + f, a.size), O = () => N(t, w, f), q = () => B(\n `${p}/${m + 1}`,\n O,\n a.signal,\n () => this.updateStats(),\n l,\n {\n \"X-OC-Mtime\": t.lastModified / 1e3,\n \"OC-Total-Length\": t.size,\n \"Content-Type\": \"application/octet-stream\"\n }\n ).then(() => {\n a.uploaded = a.uploaded + f;\n }).catch((h) => {\n throw h?.response?.status === 507 ? (g.error(\"Upload failed, not enough space on the server or quota exceeded. Cancelling the remaining chunks\", { error: h, upload: a }), a.cancel(), a.status = c.FAILED, h) : (h instanceof F || (g.error(`Chunk ${m + 1} ${w} - ${W} uploading failed`, { error: h, upload: a }), a.cancel(), a.status = c.FAILED), h);\n });\n L.push(this._jobQueue.add(q));\n }\n try {\n await Promise.all(L), this.updateStats(), a.response = await v.request({\n method: \"MOVE\",\n url: `${p}/.file`,\n headers: {\n \"X-OC-Mtime\": t.lastModified / 1e3,\n \"OC-Total-Length\": t.size,\n Destination: l\n }\n }), this.updateStats(), a.status = c.FINISHED, g.debug(`Successfully uploaded ${t.name}`, { file: t, upload: a }), T(a);\n } catch (m) {\n m instanceof F ? (a.status = c.FAILED, d(\"Upload has been cancelled\")) : (a.status = c.FAILED, d(\"Failed assembling the chunks together\")), v.request({\n method: \"DELETE\",\n url: `${p}`\n });\n }\n this._notifiers.forEach((m) => {\n try {\n m(a);\n } catch {\n }\n });\n }\n return this._jobQueue.onIdle().then(() => this.reset()), a;\n });\n }\n}\nfunction U(e, s, t, n, i, o, l, f) {\n var r = typeof e == \"function\" ? e.options : e;\n s && (r.render = s, r.staticRenderFns = t, r._compiled = !0), n && (r.functional = !0), o && (r._scopeId = \"data-v-\" + o);\n var a;\n if (l ? (a = function(d) {\n d = d || // cached call\n this.$vnode && this.$vnode.ssrContext || // stateful\n this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext, !d && typeof __VUE_SSR_CONTEXT__ < \"u\" && (d = __VUE_SSR_CONTEXT__), i && i.call(this, d), d && d._registeredComponents && d._registeredComponents.add(l);\n }, r._ssrRegister = a) : i && (a = f ? function() {\n i.call(\n this,\n (r.functional ? this.parent : this).$root.$options.shadowRoot\n );\n } : i), a)\n if (r.functional) {\n r._injectStyles = a;\n var _ = r.render;\n r.render = function(b, p) {\n return a.call(p), _(b, p);\n };\n } else {\n var T = r.beforeCreate;\n r.beforeCreate = T ? [].concat(T, a) : [a];\n }\n return {\n exports: e,\n options: r\n };\n}\nconst os = {\n name: \"CancelIcon\",\n emits: [\"click\"],\n props: {\n title: {\n type: String\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n};\nvar ms = function() {\n var s = this, t = s._self._c;\n return t(\"span\", s._b({ staticClass: \"material-design-icon cancel-icon\", attrs: { \"aria-hidden\": s.title ? null : !0, \"aria-label\": s.title, role: \"img\" }, on: { click: function(n) {\n return s.$emit(\"click\", n);\n } } }, \"span\", s.$attrs, !1), [t(\"svg\", { staticClass: \"material-design-icon__svg\", attrs: { fill: s.fillColor, width: s.size, height: s.size, viewBox: \"0 0 24 24\" } }, [t(\"path\", { attrs: { d: \"M12 2C17.5 2 22 6.5 22 12S17.5 22 12 22 2 17.5 2 12 6.5 2 12 2M12 4C10.1 4 8.4 4.6 7.1 5.7L18.3 16.9C19.3 15.5 20 13.8 20 12C20 7.6 16.4 4 12 4M16.9 18.3L5.7 7.1C4.6 8.4 4 10.1 4 12C4 16.4 7.6 20 12 20C13.9 20 15.6 19.4 16.9 18.3Z\" } }, [s.title ? t(\"title\", [s._v(s._s(s.title))]) : s._e()])])]);\n}, ds = [], gs = /* @__PURE__ */ U(\n os,\n ms,\n ds,\n !1,\n null,\n null,\n null,\n null\n);\nconst us = gs.exports, cs = {\n name: \"PlusIcon\",\n emits: [\"click\"],\n props: {\n title: {\n type: String\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n};\nvar fs = function() {\n var s = this, t = s._self._c;\n return t(\"span\", s._b({ staticClass: \"material-design-icon plus-icon\", attrs: { \"aria-hidden\": s.title ? null : !0, \"aria-label\": s.title, role: \"img\" }, on: { click: function(n) {\n return s.$emit(\"click\", n);\n } } }, \"span\", s.$attrs, !1), [t(\"svg\", { staticClass: \"material-design-icon__svg\", attrs: { fill: s.fillColor, width: s.size, height: s.size, viewBox: \"0 0 24 24\" } }, [t(\"path\", { attrs: { d: \"M19,13H13V19H11V13H5V11H11V5H13V11H19V13Z\" } }, [s.title ? t(\"title\", [s._v(s._s(s.title))]) : s._e()])])]);\n}, ps = [], hs = /* @__PURE__ */ U(\n cs,\n fs,\n ps,\n !1,\n null,\n null,\n null,\n null\n);\nconst Ts = hs.exports, ws = {\n name: \"UploadIcon\",\n emits: [\"click\"],\n props: {\n title: {\n type: String\n },\n fillColor: {\n type: String,\n default: \"currentColor\"\n },\n size: {\n type: Number,\n default: 24\n }\n }\n};\nvar xs = function() {\n var s = this, t = s._self._c;\n return t(\"span\", s._b({ staticClass: \"material-design-icon upload-icon\", attrs: { \"aria-hidden\": s.title ? null : !0, \"aria-label\": s.title, role: \"img\" }, on: { click: function(n) {\n return s.$emit(\"click\", n);\n } } }, \"span\", s.$attrs, !1), [t(\"svg\", { staticClass: \"material-design-icon__svg\", attrs: { fill: s.fillColor, width: s.size, height: s.size, viewBox: \"0 0 24 24\" } }, [t(\"path\", { attrs: { d: \"M9,16V10H5L12,3L19,10H15V16H9M5,20V18H19V20H5Z\" } }, [s.title ? t(\"title\", [s._v(s._s(s.title))]) : s._e()])])]);\n}, Ls = [], ks = /* @__PURE__ */ U(\n ws,\n xs,\n Ls,\n !1,\n null,\n null,\n null,\n null\n);\nconst Cs = ks.exports;\n/**\n * @copyright Copyright (c) 2023 Ferdinand Thiessen <opensource@fthiessen.de>\n *\n * @author Ferdinand Thiessen <opensource@fthiessen.de>\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license AGPL-3.0-or-later\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nconst M = ns().detectLocale();\n[{ locale: \"af\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Afrikaans (https://www.transifex.com/nextcloud/teams/64236/af/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"af\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Afrikaans (https://www.transifex.com/nextcloud/teams/64236/af/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: af\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ar\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Ali <alimahwer@yahoo.com>, 2024\", \"Language-Team\": \"Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ar\", \"Plural-Forms\": \"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nAli <alimahwer@yahoo.com>, 2024\n` }, msgstr: [`Last-Translator: Ali <alimahwer@yahoo.com>, 2024\nLanguage-Team: Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ar\nPlural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} ملف متعارض\", \"{count} ملف متعارض\", \"{count} ملفان متعارضان\", \"{count} ملف متعارض\", \"{count} ملفات متعارضة\", \"{count} ملفات متعارضة\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} ملف متعارض في n {dirname}\", \"{count} ملف متعارض في n {dirname}\", \"{count} ملفان متعارضان في n {dirname}\", \"{count} ملف متعارض في n {dirname}\", \"{count} ملفات متعارضة في n {dirname}\", \"{count} ملفات متعارضة في n {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} ثانية متبقية\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} متبقية\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"باقٍ بضعُ ثوانٍ\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"إلغاء\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"إلغِ العملية بالكامل\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"إلغاء عمليات رفع الملفات\"] }, Continue: { msgid: \"Continue\", msgstr: [\"إستمر\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"تقدير الوقت المتبقي\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"الإصدار الحالي\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"إذا اخترت الإبقاء على النسختين معاً، فإن الملف المنسوخ سيتم إلحاق رقم تسلسلي في نهاية اسمه.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"تاريخ آخر تعديل غير معلوم\"] }, New: { msgid: \"New\", msgstr: [\"جديد\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"نسخة جديدة\"] }, paused: { msgid: \"paused\", msgstr: [\"مُجمَّد\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"معاينة الصورة\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"حدِّد كل صناديق الخيارات\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"حدِّد كل الملفات الموجودة\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"حدِّد كل الملفات الجديدة\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"تخطَّ {count} ملف\", \"تخطَّ {count} ملف\", \"تخطَّ {count} ملف\", \"تخطَّ {count} ملف\", \"تخطَّ {count} ملف\", \"تخطَّ {count} ملف\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"حجم غير معلوم\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"تمَّ إلغاء الرفع\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"رفع ملفات\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"تقدُّم الرفع \"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"عند تحديد مجلد وارد، أي ملفات متعارضة بداخله ستتم الكتابة فوقها.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"أيُّ الملفات ترغب في الإبقاء عليها؟\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"يجب أن تختار نسخة واحدة على الأقل من كل ملف للاستمرار.\"] } } } } }, { locale: \"ar_SA\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Arabic (Saudi Arabia) (https://www.transifex.com/nextcloud/teams/64236/ar_SA/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ar_SA\", \"Plural-Forms\": \"nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Arabic (Saudi Arabia) (https://www.transifex.com/nextcloud/teams/64236/ar_SA/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ar_SA\nPlural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ast\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"enolp <enolp@softastur.org>, 2023\", \"Language-Team\": \"Asturian (https://app.transifex.com/nextcloud/teams/64236/ast/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ast\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nenolp <enolp@softastur.org>, 2023\n` }, msgstr: [`Last-Translator: enolp <enolp@softastur.org>, 2023\nLanguage-Team: Asturian (https://app.transifex.com/nextcloud/teams/64236/ast/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ast\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} ficheru en coflictu\", \"{count} ficheros en coflictu\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} ficheru en coflictu en {dirname}\", \"{count} ficheros en coflictu en {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Queden {seconds} segundos\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"Tiempu que queda: {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"queden unos segundos\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Encaboxar les xubes\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Siguir\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando'l tiempu que falta\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Versión esistente\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Si seleiciones dambes versiones, el ficheru copiáu va tener un númberu amestáu al so nome.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"La data de la última modificación ye desconocida\"] }, New: { msgid: \"New\", msgstr: [\"Nuevu\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Versión nueva\"] }, paused: { msgid: \"paused\", msgstr: [\"en posa\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Previsualizar la imaxe\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Marcar toles caxelles\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Seleicionar tolos ficheros esistentes\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Seleicionar tolos ficheros nuevos\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Saltar esti ficheru\", \"Saltar {count} ficheros\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Tamañu desconocíu\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Encaboxóse la xuba\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Xubir ficheros\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Xuba en cursu\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"¿Qué ficheros quies caltener?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Tienes de seleicionar polo menos una versión de cada ficheru pa siguir.\"] } } } } }, { locale: \"az\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Rashad Aliyev <microphprashad@gmail.com>, 2023\", \"Language-Team\": \"Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"az\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nRashad Aliyev <microphprashad@gmail.com>, 2023\n` }, msgstr: [`Last-Translator: Rashad Aliyev <microphprashad@gmail.com>, 2023\nLanguage-Team: Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: az\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} saniyə qalıb\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} qalıb\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"bir neçə saniyə qalıb\"] }, Add: { msgid: \"Add\", msgstr: [\"Əlavə et\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Yükləməni imtina et\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Təxmini qalan vaxt\"] }, paused: { msgid: \"paused\", msgstr: [\"pauzadadır\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Faylları yüklə\"] } } } } }, { locale: \"be\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Belarusian (https://www.transifex.com/nextcloud/teams/64236/be/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"be\", \"Plural-Forms\": \"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Belarusian (https://www.transifex.com/nextcloud/teams/64236/be/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: be\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"bg_BG\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Bulgarian (Bulgaria) (https://www.transifex.com/nextcloud/teams/64236/bg_BG/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"bg_BG\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bulgarian (Bulgaria) (https://www.transifex.com/nextcloud/teams/64236/bg_BG/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bg_BG\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"bn_BD\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Bengali (Bangladesh) (https://www.transifex.com/nextcloud/teams/64236/bn_BD/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"bn_BD\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bengali (Bangladesh) (https://www.transifex.com/nextcloud/teams/64236/bn_BD/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bn_BD\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"br\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Breton (https://www.transifex.com/nextcloud/teams/64236/br/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"br\", \"Plural-Forms\": \"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Breton (https://www.transifex.com/nextcloud/teams/64236/br/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: br\nPlural-Forms: nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"bs\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Bosnian (https://www.transifex.com/nextcloud/teams/64236/bs/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"bs\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Bosnian (https://www.transifex.com/nextcloud/teams/64236/bs/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bs\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ca\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Toni Hermoso Pulido <toniher@softcatala.cat>, 2022\", \"Language-Team\": \"Catalan (https://www.transifex.com/nextcloud/teams/64236/ca/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ca\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMarc Riera <marcriera@softcatala.org>, 2022\nToni Hermoso Pulido <toniher@softcatala.cat>, 2022\n` }, msgstr: [`Last-Translator: Toni Hermoso Pulido <toniher@softcatala.cat>, 2022\nLanguage-Team: Catalan (https://www.transifex.com/nextcloud/teams/64236/ca/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ca\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Queden {seconds} segons\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"Queden {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"Queden uns segons\"] }, Add: { msgid: \"Add\", msgstr: [\"Afegeix\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancel·la les pujades\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"S'està estimant el temps restant\"] }, paused: { msgid: \"paused\", msgstr: [\"En pausa\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Puja els fitxers\"] } } } } }, { locale: \"cs\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Pavel Borecki <pavel.borecki@gmail.com>, 2022\", \"Language-Team\": \"Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"cs\", \"Plural-Forms\": \"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nPavel Borecki <pavel.borecki@gmail.com>, 2022\n` }, msgstr: [`Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2022\nLanguage-Team: Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cs\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"zbývá {seconds}\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"zbývá {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"zbývá několik sekund\"] }, Add: { msgid: \"Add\", msgstr: [\"Přidat\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Zrušit nahrávání\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"odhadovaný zbývající čas\"] }, paused: { msgid: \"paused\", msgstr: [\"pozastaveno\"] } } } } }, { locale: \"cs_CZ\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Michal Šmahel <ceskyDJ@seznam.cz>, 2024\", \"Language-Team\": \"Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"cs_CZ\", \"Plural-Forms\": \"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nMichal Šmahel <ceskyDJ@seznam.cz>, 2024\n` }, msgstr: [`Last-Translator: Michal Šmahel <ceskyDJ@seznam.cz>, 2024\nLanguage-Team: Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cs_CZ\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} kolize souborů\", \"{count} kolize souborů\", \"{count} kolizí souborů\", \"{count} kolize souborů\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} kolize souboru v {dirname}\", \"{count} kolize souboru v {dirname}\", \"{count} kolizí souborů v {dirname}\", \"{count} kolize souboru v {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"zbývá {seconds}\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"zbývá {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"zbývá několik sekund\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Zrušit\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Zrušit celou operaci\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Zrušit nahrávání\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Pokračovat\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"odhaduje se zbývající čas\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Existující verze\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Pokud vyberete obě verze, zkopírovaný soubor bude mít k názvu přidáno číslo.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Neznámé datum poslední úpravy\"] }, New: { msgid: \"New\", msgstr: [\"Nové\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nová verze\"] }, paused: { msgid: \"paused\", msgstr: [\"pozastaveno\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Náhled obrázku\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Označit všechny zaškrtávací kolonky\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Vybrat veškeré stávající soubory\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Vybrat veškeré nové soubory\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Přeskočit tento soubor\", \"Přeskočit {count} soubory\", \"Přeskočit {count} souborů\", \"Přeskočit {count} soubory\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Neznámá velikost\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Nahrávání zrušeno\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Nahrát soubory\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Postup v nahrávání\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Po výběru příchozí složky budou rovněž přepsány všechny v ní obsažené konfliktní soubory\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Které soubory si přejete ponechat?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Aby bylo možné pokračovat, je třeba vybrat alespoň jednu verzi od každého souboru.\"] } } } } }, { locale: \"cy_GB\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Welsh (United Kingdom) (https://www.transifex.com/nextcloud/teams/64236/cy_GB/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"cy_GB\", \"Plural-Forms\": \"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Welsh (United Kingdom) (https://www.transifex.com/nextcloud/teams/64236/cy_GB/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cy_GB\nPlural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"da\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Martin Bonde <Martin@maboni.dk>, 2024\", \"Language-Team\": \"Danish (https://app.transifex.com/nextcloud/teams/64236/da/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"da\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nMartin Bonde <Martin@maboni.dk>, 2024\n` }, msgstr: [`Last-Translator: Martin Bonde <Martin@maboni.dk>, 2024\nLanguage-Team: Danish (https://app.transifex.com/nextcloud/teams/64236/da/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: da\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} fil konflikt\", \"{count} filer i konflikt\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} fil konflikt i {dirname}\", \"{count} filer i konflikt i {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{sekunder} sekunder tilbage\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{tid} tilbage\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"et par sekunder tilbage\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Annuller\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Annuller hele handlingen\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Annuller uploads\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Fortsæt\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimering af resterende tid\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Eksisterende version\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Hvis du vælger begge versioner vil den kopierede fil få et nummer tilføjet til sit navn.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Sidste modifikationsdato ukendt\"] }, New: { msgid: \"New\", msgstr: [\"Ny\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Ny version\"] }, paused: { msgid: \"paused\", msgstr: [\"pauset\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Forhåndsvisning af billede\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Vælg alle felter\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Vælg alle eksisterende filer\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Vælg alle nye filer\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Spring denne fil over\", \"Spring {count} filer over\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Ukendt størrelse\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Upload annulleret\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Upload filer\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Upload fremskridt\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Når en indgående mappe er valgt, vil alle modstridende filer i den også blive overskrevet.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Hvilke filer ønsker du at beholde?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Du skal vælge mindst én version af hver fil for at fortsætte.\"] } } } } }, { locale: \"de\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Mario Siegmann <mario_siegmann@web.de>, 2024\", \"Language-Team\": \"German (https://app.transifex.com/nextcloud/teams/64236/de/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"de\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nMario Siegmann <mario_siegmann@web.de>, 2024\n` }, msgstr: [`Last-Translator: Mario Siegmann <mario_siegmann@web.de>, 2024\nLanguage-Team: German (https://app.transifex.com/nextcloud/teams/64236/de/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: de\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} Datei-Konflikt\", \"{count} Datei-Konflikte\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} Datei-Konflikt in {dirname}\", \"{count} Datei-Konflikte in {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} Sekunden verbleibend\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} verbleibend\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"noch ein paar Sekunden\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Abbrechen\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Den gesamten Vorgang abbrechen\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Hochladen abbrechen\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Fortsetzen\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Geschätzte verbleibende Zeit\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Vorhandene Version\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Wenn du beide Versionen auswählst, wird der kopierten Datei eine Nummer zum Namen hinzugefügt.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Datum der letzten Änderung unbekannt\"] }, New: { msgid: \"New\", msgstr: [\"Neu\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Neue Version\"] }, paused: { msgid: \"paused\", msgstr: [\"Pausiert\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Vorschaubild\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Alle Kontrollkästchen aktivieren\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Alle vorhandenen Dateien auswählen\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Alle neuen Dateien auswählen\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Diese Datei überspringen\", \"{count} Dateien überspringen\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Unbekannte Größe\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Hochladen abgebrochen\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Dateien hochladen\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Fortschritt beim Hochladen\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Wenn ein eingehender Ordner ausgewählt wird, werden alle darin enthaltenen Konfliktdateien ebenfalls überschrieben.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Welche Dateien möchtest du behalten?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Du musst mindestens eine Version jeder Datei auswählen, um fortzufahren.\"] } } } } }, { locale: \"de_DE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Mario Siegmann <mario_siegmann@web.de>, 2024\", \"Language-Team\": \"German (Germany) (https://app.transifex.com/nextcloud/teams/64236/de_DE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"de_DE\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nMario Siegmann <mario_siegmann@web.de>, 2024\n` }, msgstr: [`Last-Translator: Mario Siegmann <mario_siegmann@web.de>, 2024\nLanguage-Team: German (Germany) (https://app.transifex.com/nextcloud/teams/64236/de_DE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: de_DE\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} Datei-Konflikt\", \"{count} Datei-Konflikte\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} Datei-Konflikt in {dirname}\", \"{count} Datei-Konflikte in {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} Sekunden verbleiben\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} verbleibend\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"ein paar Sekunden verbleiben\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Abbrechen\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Den gesamten Vorgang abbrechen\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Hochladen abbrechen\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Fortsetzen\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Geschätzte verbleibende Zeit\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Vorhandene Version\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Wenn Sie beide Versionen auswählen, wird der kopierten Datei eine Nummer zum Namen hinzugefügt.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Datum der letzten Änderung unbekannt\"] }, New: { msgid: \"New\", msgstr: [\"Neu\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Neue Version\"] }, paused: { msgid: \"paused\", msgstr: [\"Pausiert\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Vorschaubild\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Alle Kontrollkästchen aktivieren\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Alle vorhandenen Dateien auswählen\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Alle neuen Dateien auswählen\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"{count} Datei überspringen\", \"{count} Dateien überspringen\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Unbekannte Größe\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Hochladen abgebrochen\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Dateien hochladen\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Fortschritt beim Hochladen\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Wenn ein eingehender Ordner ausgewählt wird, werden alle darin enthaltenen Konfliktdateien ebenfalls überschrieben.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Welche Dateien möchten Sie behalten?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Sie müssen mindestens eine Version jeder Datei auswählen, um fortzufahren.\"] } } } } }, { locale: \"el\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Nik Pap, 2022\", \"Language-Team\": \"Greek (https://www.transifex.com/nextcloud/teams/64236/el/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"el\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nNik Pap, 2022\n` }, msgstr: [`Last-Translator: Nik Pap, 2022\nLanguage-Team: Greek (https://www.transifex.com/nextcloud/teams/64236/el/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: el\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"απομένουν {seconds} δευτερόλεπτα\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"απομένουν {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"απομένουν λίγα δευτερόλεπτα\"] }, Add: { msgid: \"Add\", msgstr: [\"Προσθήκη\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Ακύρωση μεταφορτώσεων\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"εκτίμηση του χρόνου που απομένει\"] }, paused: { msgid: \"paused\", msgstr: [\"σε παύση\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Μεταφόρτωση αρχείων\"] } } } } }, { locale: \"el_GR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Greek (Greece) (https://www.transifex.com/nextcloud/teams/64236/el_GR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"el_GR\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Greek (Greece) (https://www.transifex.com/nextcloud/teams/64236/el_GR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: el_GR\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"en_GB\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Andi Chandler <andi@gowling.com>, 2023\", \"Language-Team\": \"English (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/en_GB/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"en_GB\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nAndi Chandler <andi@gowling.com>, 2023\n` }, msgstr: [`Last-Translator: Andi Chandler <andi@gowling.com>, 2023\nLanguage-Team: English (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/en_GB/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: en_GB\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} file conflict\", \"{count} files conflict\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} file conflict in {dirname}\", \"{count} file conflicts in {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} seconds left\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} left\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"a few seconds left\"] }, Add: { msgid: \"Add\", msgstr: [\"Add\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancel uploads\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Continue\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimating time left\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Existing version\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"If you select both versions, the copied file will have a number added to its name.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Last modified date unknown\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"New version\"] }, paused: { msgid: \"paused\", msgstr: [\"paused\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Preview image\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Select all checkboxes\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Select all existing files\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Select all new files\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Skip this file\", \"Skip {count} files\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Unknown size\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Upload cancelled\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Upload files\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Which files do you want to keep?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"You need to select at least one version of each file to continue.\"] } } } } }, { locale: \"eo\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Esperanto (https://www.transifex.com/nextcloud/teams/64236/eo/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"eo\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Esperanto (https://www.transifex.com/nextcloud/teams/64236/eo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: eo\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Julio C. Ortega, 2024\", \"Language-Team\": \"Spanish (https://app.transifex.com/nextcloud/teams/64236/es/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nFranciscoFJ <dev-ooo@satel-sa.com>, 2023\nNext Cloud <nextcloud.translator.es@cgj.es>, 2023\nJulio C. Ortega, 2024\n` }, msgstr: [`Last-Translator: Julio C. Ortega, 2024\nLanguage-Team: Spanish (https://app.transifex.com/nextcloud/teams/64236/es/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} archivo en conflicto\", \"{count} archivos en conflicto\", \"{count} archivos en conflicto\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} archivo en conflicto en {dirname}\", \"{count} archivos en conflicto en {dirname}\", \"{count} archivos en conflicto en {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quedan unos segundos\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar subidas\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Continuar\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tiempo restante\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Versión existente\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Si selecciona ambas versiones, al archivo copiado se le añadirá un número en el nombre.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Última fecha de modificación desconocida\"] }, New: { msgid: \"New\", msgstr: [\"Nuevo\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nueva versión\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Previsualizar imagen\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Seleccionar todas las casillas de verificación\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Seleccionar todos los archivos existentes\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Seleccionar todos los archivos nuevos\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Saltar este archivo\", \"Saltar {count} archivos\", \"Saltar {count} archivos\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Tamaño desconocido\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Subida cancelada\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Subir archivos\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Progreso de la subida\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"¿Qué archivos desea conservar?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Debe seleccionar al menos una versión de cada archivo para continuar.\"] } } } } }, { locale: \"es_419\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"ALEJANDRO CASTRO, 2022\", \"Language-Team\": \"Spanish (Latin America) (https://www.transifex.com/nextcloud/teams/64236/es_419/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_419\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nALEJANDRO CASTRO, 2022\n` }, msgstr: [`Last-Translator: ALEJANDRO CASTRO, 2022\nLanguage-Team: Spanish (Latin America) (https://www.transifex.com/nextcloud/teams/64236/es_419/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_419\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{tiempo} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quedan pocos segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"agregar\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar subidas\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tiempo restante\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Subir archivos\"] } } } } }, { locale: \"es_AR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Matias Iglesias, 2022\", \"Language-Team\": \"Spanish (Argentina) (https://www.transifex.com/nextcloud/teams/64236/es_AR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_AR\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMatias Iglesias, 2022\n` }, msgstr: [`Last-Translator: Matias Iglesias, 2022\nLanguage-Team: Spanish (Argentina) (https://www.transifex.com/nextcloud/teams/64236/es_AR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_AR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quedan unos segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"Añadir\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar subidas\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tiempo restante\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Subir archivos\"] } } } } }, { locale: \"es_CL\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Chile) (https://www.transifex.com/nextcloud/teams/64236/es_CL/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_CL\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Chile) (https://www.transifex.com/nextcloud/teams/64236/es_CL/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CL\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_CO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Colombia) (https://www.transifex.com/nextcloud/teams/64236/es_CO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_CO\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Colombia) (https://www.transifex.com/nextcloud/teams/64236/es_CO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CO\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_CR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Costa Rica) (https://www.transifex.com/nextcloud/teams/64236/es_CR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_CR\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Costa Rica) (https://www.transifex.com/nextcloud/teams/64236/es_CR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_DO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Dominican Republic) (https://www.transifex.com/nextcloud/teams/64236/es_DO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_DO\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Dominican Republic) (https://www.transifex.com/nextcloud/teams/64236/es_DO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_DO\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_EC\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Ecuador) (https://www.transifex.com/nextcloud/teams/64236/es_EC/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_EC\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Ecuador) (https://www.transifex.com/nextcloud/teams/64236/es_EC/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_EC\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_GT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Guatemala) (https://www.transifex.com/nextcloud/teams/64236/es_GT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_GT\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Guatemala) (https://www.transifex.com/nextcloud/teams/64236/es_GT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_GT\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_HN\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Honduras) (https://www.transifex.com/nextcloud/teams/64236/es_HN/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_HN\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Honduras) (https://www.transifex.com/nextcloud/teams/64236/es_HN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_HN\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_MX\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"ALEJANDRO CASTRO, 2022\", \"Language-Team\": \"Spanish (Mexico) (https://www.transifex.com/nextcloud/teams/64236/es_MX/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_MX\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nLuis Francisco Castro, 2022\nALEJANDRO CASTRO, 2022\n` }, msgstr: [`Last-Translator: ALEJANDRO CASTRO, 2022\nLanguage-Team: Spanish (Mexico) (https://www.transifex.com/nextcloud/teams/64236/es_MX/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_MX\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{tiempo} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quedan pocos segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"agregar\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"cancelar las cargas\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tiempo restante\"] }, paused: { msgid: \"paused\", msgstr: [\"en pausa\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"cargar archivos\"] } } } } }, { locale: \"es_NI\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Nicaragua) (https://www.transifex.com/nextcloud/teams/64236/es_NI/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_NI\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Nicaragua) (https://www.transifex.com/nextcloud/teams/64236/es_NI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_NI\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_PA\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Panama) (https://www.transifex.com/nextcloud/teams/64236/es_PA/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PA\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Panama) (https://www.transifex.com/nextcloud/teams/64236/es_PA/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PA\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_PE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Peru) (https://www.transifex.com/nextcloud/teams/64236/es_PE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PE\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Peru) (https://www.transifex.com/nextcloud/teams/64236/es_PE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PE\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_PR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Puerto Rico) (https://www.transifex.com/nextcloud/teams/64236/es_PR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PR\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Puerto Rico) (https://www.transifex.com/nextcloud/teams/64236/es_PR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_PY\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Paraguay) (https://www.transifex.com/nextcloud/teams/64236/es_PY/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_PY\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Paraguay) (https://www.transifex.com/nextcloud/teams/64236/es_PY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PY\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_SV\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (El Salvador) (https://www.transifex.com/nextcloud/teams/64236/es_SV/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_SV\", \"Plural-Forms\": \"nplurals=2; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (El Salvador) (https://www.transifex.com/nextcloud/teams/64236/es_SV/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_SV\nPlural-Forms: nplurals=2; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"es_UY\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Spanish (Uruguay) (https://www.transifex.com/nextcloud/teams/64236/es_UY/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"es_UY\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Spanish (Uruguay) (https://www.transifex.com/nextcloud/teams/64236/es_UY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_UY\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"et_EE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Taavo Roos, 2023\", \"Language-Team\": \"Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"et_EE\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMait R, 2022\nTaavo Roos, 2023\n` }, msgstr: [`Last-Translator: Taavo Roos, 2023\nLanguage-Team: Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: et_EE\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} jäänud sekundid\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} aega jäänud\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"jäänud mõni sekund\"] }, Add: { msgid: \"Add\", msgstr: [\"Lisa\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Tühista üleslaadimine\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"hinnanguline järelejäänud aeg\"] }, paused: { msgid: \"paused\", msgstr: [\"pausil\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Lae failid üles\"] } } } } }, { locale: \"eu\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Unai Tolosa Pontesta <utolosa002@gmail.com>, 2022\", \"Language-Team\": \"Basque (https://www.transifex.com/nextcloud/teams/64236/eu/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"eu\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nUnai Tolosa Pontesta <utolosa002@gmail.com>, 2022\n` }, msgstr: [`Last-Translator: Unai Tolosa Pontesta <utolosa002@gmail.com>, 2022\nLanguage-Team: Basque (https://www.transifex.com/nextcloud/teams/64236/eu/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: eu\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundo geratzen dira\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} geratzen da\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"segundo batzuk geratzen dira\"] }, Add: { msgid: \"Add\", msgstr: [\"Gehitu\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Ezeztatu igoerak\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"kalkulatutako geratzen den denbora\"] }, paused: { msgid: \"paused\", msgstr: [\"geldituta\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Igo fitxategiak\"] } } } } }, { locale: \"fa\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Fatemeh Komeily, 2023\", \"Language-Team\": \"Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fa\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nFatemeh Komeily, 2023\n` }, msgstr: [`Last-Translator: Fatemeh Komeily, 2023\nLanguage-Team: Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fa\nPlural-Forms: nplurals=2; plural=(n > 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"ثانیه های باقی مانده\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"باقی مانده\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"چند ثانیه مانده\"] }, Add: { msgid: \"Add\", msgstr: [\"اضافه کردن\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"کنسل کردن فایل های اپلود شده\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"تخمین زمان باقی مانده\"] }, paused: { msgid: \"paused\", msgstr: [\"مکث کردن\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"بارگذاری فایل ها\"] } } } } }, { locale: \"fi_FI\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Jiri Grönroos <jiri.gronroos@iki.fi>, 2022\", \"Language-Team\": \"Finnish (Finland) (https://www.transifex.com/nextcloud/teams/64236/fi_FI/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fi_FI\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJiri Grönroos <jiri.gronroos@iki.fi>, 2022\n` }, msgstr: [`Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>, 2022\nLanguage-Team: Finnish (Finland) (https://www.transifex.com/nextcloud/teams/64236/fi_FI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fi_FI\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} sekuntia jäljellä\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} jäljellä\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"muutama sekunti jäljellä\"] }, Add: { msgid: \"Add\", msgstr: [\"Lisää\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Peruuta lähetykset\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"arvioidaan jäljellä olevaa aikaa\"] }, paused: { msgid: \"paused\", msgstr: [\"keskeytetty\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Lähetä tiedostoja\"] } } } } }, { locale: \"fo\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Faroese (https://www.transifex.com/nextcloud/teams/64236/fo/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fo\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Faroese (https://www.transifex.com/nextcloud/teams/64236/fo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fo\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"fr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"jed boulahya, 2024\", \"Language-Team\": \"French (https://app.transifex.com/nextcloud/teams/64236/fr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"fr\", \"Plural-Forms\": \"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nBenoit Pruneau, 2024\njed boulahya, 2024\n` }, msgstr: [`Last-Translator: jed boulahya, 2024\nLanguage-Team: French (https://app.transifex.com/nextcloud/teams/64236/fr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fr\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} fichier en conflit\", \"{count} fichiers en conflit\", \"{count} fichiers en conflit\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} fichier en conflit dans {dirname}\", \"{count} fichiers en conflit dans {dirname}\", \"{count} fichiers en conflit dans {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} secondes restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} restant\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"quelques secondes restantes\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Annuler\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Annuler l'opération entière\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Annuler les envois\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Continuer\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimation du temps restant\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Version existante\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Si vous sélectionnez les deux versions, le fichier copié aura un numéro ajouté àname.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Date de la dernière modification est inconnue\"] }, New: { msgid: \"New\", msgstr: [\"Nouveau\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nouvelle version\"] }, paused: { msgid: \"paused\", msgstr: [\"en pause\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Aperçu de l'image\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Sélectionner toutes les cases à cocher\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Sélectionner tous les fichiers existants\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Sélectionner tous les nouveaux fichiers\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Ignorer ce fichier\", \"Ignorer {count} fichiers\", \"Ignorer {count} fichiers\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Taille inconnue\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\" annulé\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Téléchargement des fichiers\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Progression du téléchargement\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Lorsqu'un dossier entrant est sélectionné, tous les fichiers en conflit qu'il contient seront également écrasés.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Quels fichiers souhaitez-vous conserver ?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Vous devez sélectionner au moins une version de chaque fichier pour continuer.\"] } } } } }, { locale: \"gd\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Gaelic, Scottish (https://www.transifex.com/nextcloud/teams/64236/gd/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"gd\", \"Plural-Forms\": \"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Gaelic, Scottish (https://www.transifex.com/nextcloud/teams/64236/gd/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: gd\nPlural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"gl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Miguel Anxo Bouzada <mbouzada@gmail.com>, 2023\", \"Language-Team\": \"Galician (https://app.transifex.com/nextcloud/teams/64236/gl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"gl\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nNacho <nacho.vfranco@gmail.com>, 2023\nMiguel Anxo Bouzada <mbouzada@gmail.com>, 2023\n` }, msgstr: [`Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>, 2023\nLanguage-Team: Galician (https://app.transifex.com/nextcloud/teams/64236/gl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: gl\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} conflito de ficheiros\", \"{count} conflitos de ficheiros\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} conflito de ficheiros en {dirname}\", \"{count} conflitos de ficheiros en {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"faltan {seconds} segundos\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"falta {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"faltan uns segundos\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar envíos\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Continuar\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"calculando canto tempo falta\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Versión existente\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Se selecciona ambas as versións, o ficheiro copiado terá un número engadido ao seu nome.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Data da última modificación descoñecida\"] }, New: { msgid: \"New\", msgstr: [\"Nova\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nova versión\"] }, paused: { msgid: \"paused\", msgstr: [\"detido\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Vista previa da imaxe\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Marcar todas as caixas de selección\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Seleccionar todos os ficheiros existentes\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Seleccionar todos os ficheiros novos\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Omita este ficheiro\", \"Omitir {count} ficheiros\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Tamaño descoñecido\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Envío cancelado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Enviar ficheiros\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Progreso do envío\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Que ficheiros quere conservar?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Debe seleccionar polo menos unha versión de cada ficheiro para continuar.\"] } } } } }, { locale: \"he\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Hebrew (https://www.transifex.com/nextcloud/teams/64236/he/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"he\", \"Plural-Forms\": \"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hebrew (https://www.transifex.com/nextcloud/teams/64236/he/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: he\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hi_IN\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Hindi (India) (https://www.transifex.com/nextcloud/teams/64236/hi_IN/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hi_IN\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hindi (India) (https://www.transifex.com/nextcloud/teams/64236/hi_IN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hi_IN\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Croatian (https://www.transifex.com/nextcloud/teams/64236/hr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hr\", \"Plural-Forms\": \"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Croatian (https://www.transifex.com/nextcloud/teams/64236/hr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hr\nPlural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hsb\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Upper Sorbian (https://www.transifex.com/nextcloud/teams/64236/hsb/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hsb\", \"Plural-Forms\": \"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Upper Sorbian (https://www.transifex.com/nextcloud/teams/64236/hsb/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hsb\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hu\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Hungarian (https://www.transifex.com/nextcloud/teams/64236/hu/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hu\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Hungarian (https://www.transifex.com/nextcloud/teams/64236/hu/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hu\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"hu_HU\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Balázs Úr, 2022\", \"Language-Team\": \"Hungarian (Hungary) (https://www.transifex.com/nextcloud/teams/64236/hu_HU/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hu_HU\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nBalázs Meskó <meskobalazs@mailbox.org>, 2022\nBalázs Úr, 2022\n` }, msgstr: [`Last-Translator: Balázs Úr, 2022\nLanguage-Team: Hungarian (Hungary) (https://www.transifex.com/nextcloud/teams/64236/hu_HU/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hu_HU\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{} másodperc van hátra\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} van hátra\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"pár másodperc van hátra\"] }, Add: { msgid: \"Add\", msgstr: [\"Hozzáadás\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Feltöltések megszakítása\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"hátralévő idő becslése\"] }, paused: { msgid: \"paused\", msgstr: [\"szüneteltetve\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Fájlok feltöltése\"] } } } } }, { locale: \"hy\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Armenian (https://www.transifex.com/nextcloud/teams/64236/hy/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"hy\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Armenian (https://www.transifex.com/nextcloud/teams/64236/hy/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hy\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ia\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Interlingua (https://www.transifex.com/nextcloud/teams/64236/ia/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ia\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Interlingua (https://www.transifex.com/nextcloud/teams/64236/ia/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ia\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"id\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Linerly <linerly@proton.me>, 2023\", \"Language-Team\": \"Indonesian (https://app.transifex.com/nextcloud/teams/64236/id/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"id\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nEmpty Slot Filler, 2023\nLinerly <linerly@proton.me>, 2023\n` }, msgstr: [`Last-Translator: Linerly <linerly@proton.me>, 2023\nLanguage-Team: Indonesian (https://app.transifex.com/nextcloud/teams/64236/id/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: id\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} berkas berkonflik\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} berkas berkonflik dalam {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} detik tersisa\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} tersisa\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"tinggal sebentar lagi\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Batalkan unggahan\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Lanjutkan\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"memperkirakan waktu yang tersisa\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Versi yang ada\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Jika Anda memilih kedua versi, nama berkas yang disalin akan ditambahi angka.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Tanggal perubahan terakhir tidak diketahui\"] }, New: { msgid: \"New\", msgstr: [\"Baru\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Versi baru\"] }, paused: { msgid: \"paused\", msgstr: [\"dijeda\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Gambar pratinjau\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Pilih semua kotak centang\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Pilih semua berkas yang ada\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Pilih semua berkas baru\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Lewati {count} berkas\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Ukuran tidak diketahui\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Unggahan dibatalkan\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Unggah berkas\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Berkas mana yang Anda ingin tetap simpan?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Anda harus memilih setidaknya satu versi dari masing-masing berkas untuk melanjutkan.\"] } } } } }, { locale: \"ig\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Igbo (https://www.transifex.com/nextcloud/teams/64236/ig/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ig\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Igbo (https://www.transifex.com/nextcloud/teams/64236/ig/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ig\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"is\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Sveinn í Felli <sv1@fellsnet.is>, 2023\", \"Language-Team\": \"Icelandic (https://app.transifex.com/nextcloud/teams/64236/is/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"is\", \"Plural-Forms\": \"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nSveinn í Felli <sv1@fellsnet.is>, 2023\n` }, msgstr: [`Last-Translator: Sveinn í Felli <sv1@fellsnet.is>, 2023\nLanguage-Team: Icelandic (https://app.transifex.com/nextcloud/teams/64236/is/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: is\nPlural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} árekstur skráa\", \"{count} árekstrar skráa\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} árekstur skráa í {dirname}\", \"{count} árekstrar skráa í {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} sekúndur eftir\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} eftir\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"nokkrar sekúndur eftir\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Hætta við innsendingar\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Halda áfram\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"áætla tíma sem eftir er\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Fyrirliggjandi útgáfa\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Ef þú velur báðar útgáfur, þá mun verða bætt tölustaf aftan við heiti afrituðu skrárinnar.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Síðasta breytingadagsetning er óþekkt\"] }, New: { msgid: \"New\", msgstr: [\"Nýtt\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Ný útgáfa\"] }, paused: { msgid: \"paused\", msgstr: [\"í bið\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Forskoðun myndar\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Velja gátreiti\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Velja allar fyrirliggjandi skrár\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Velja allar nýjar skrár\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Sleppa þessari skrá\", \"Sleppa {count} skrám\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Óþekkt stærð\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Hætt við innsendingu\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Senda inn skrár\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Hvaða skrám vilt þú vilt halda eftir?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Þú verður að velja að minnsta kosti eina útgáfu af hverri skrá til að halda áfram.\"] } } } } }, { locale: \"it\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Random_R, 2023\", \"Language-Team\": \"Italian (https://app.transifex.com/nextcloud/teams/64236/it/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"it\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nLep Lep, 2023\nRandom_R, 2023\n` }, msgstr: [`Last-Translator: Random_R, 2023\nLanguage-Team: Italian (https://app.transifex.com/nextcloud/teams/64236/it/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: it\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} file in conflitto\", \"{count} file in conflitto\", \"{count} file in conflitto\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} file in conflitto in {dirname}\", \"{count} file in conflitto in {dirname}\", \"{count} file in conflitto in {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} secondi rimanenti \"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} rimanente\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"alcuni secondi rimanenti\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Annulla i caricamenti\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Continua\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"calcolo il tempo rimanente\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Versione esistente\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Se selezioni entrambe le versioni, nel nome del file copiato verrà aggiunto un numero \"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Ultima modifica sconosciuta\"] }, New: { msgid: \"New\", msgstr: [\"Nuovo\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nuova versione\"] }, paused: { msgid: \"paused\", msgstr: [\"pausa\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Anteprima immagine\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Seleziona tutte le caselle\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Seleziona tutti i file esistenti\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Seleziona tutti i nuovi file\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Salta questo file\", \"Salta {count} file\", \"Salta {count} file\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Dimensione sconosciuta\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Caricamento cancellato\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Carica i file\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Quali file vuoi mantenere?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Devi selezionare almeno una versione di ogni file per continuare\"] } } } } }, { locale: \"it_IT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Italian (Italy) (https://www.transifex.com/nextcloud/teams/64236/it_IT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"it_IT\", \"Plural-Forms\": \"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Italian (Italy) (https://www.transifex.com/nextcloud/teams/64236/it_IT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: it_IT\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ja_JP\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"かたかめ, 2022\", \"Language-Team\": \"Japanese (Japan) (https://www.transifex.com/nextcloud/teams/64236/ja_JP/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ja_JP\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nT.S, 2022\nかたかめ, 2022\n` }, msgstr: [`Last-Translator: かたかめ, 2022\nLanguage-Team: Japanese (Japan) (https://www.transifex.com/nextcloud/teams/64236/ja_JP/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ja_JP\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"残り {seconds} 秒\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"残り {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"残り数秒\"] }, Add: { msgid: \"Add\", msgstr: [\"追加\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"アップロードをキャンセル\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"概算残り時間\"] }, paused: { msgid: \"paused\", msgstr: [\"一時停止中\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"ファイルをアップデート\"] } } } } }, { locale: \"ka\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Georgian (https://www.transifex.com/nextcloud/teams/64236/ka/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ka\", \"Plural-Forms\": \"nplurals=2; plural=(n!=1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Georgian (https://www.transifex.com/nextcloud/teams/64236/ka/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ka\nPlural-Forms: nplurals=2; plural=(n!=1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ka_GE\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Georgian (Georgia) (https://www.transifex.com/nextcloud/teams/64236/ka_GE/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ka_GE\", \"Plural-Forms\": \"nplurals=2; plural=(n!=1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Georgian (Georgia) (https://www.transifex.com/nextcloud/teams/64236/ka_GE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ka_GE\nPlural-Forms: nplurals=2; plural=(n!=1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"kab\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"ZiriSut, 2023\", \"Language-Team\": \"Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"kab\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nZiriSut, 2023\n` }, msgstr: [`Last-Translator: ZiriSut, 2023\nLanguage-Team: Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kab\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} tesdatin i d-yeqqimen\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} i d-yeqqimen\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"qqiment-d kra n tesdatin kan\"] }, Add: { msgid: \"Add\", msgstr: [\"Rnu\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Sefsex asali\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"asizel n wakud i d-yeqqimen\"] }, paused: { msgid: \"paused\", msgstr: [\"yeḥbes\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Sali-d ifuyla\"] } } } } }, { locale: \"kk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Kazakh (https://www.transifex.com/nextcloud/teams/64236/kk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"kk\", \"Plural-Forms\": \"nplurals=2; plural=(n!=1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Kazakh (https://www.transifex.com/nextcloud/teams/64236/kk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kk\nPlural-Forms: nplurals=2; plural=(n!=1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"km\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Khmer (https://www.transifex.com/nextcloud/teams/64236/km/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"km\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Khmer (https://www.transifex.com/nextcloud/teams/64236/km/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: km\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"kn\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Kannada (https://www.transifex.com/nextcloud/teams/64236/kn/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"kn\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Kannada (https://www.transifex.com/nextcloud/teams/64236/kn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kn\nPlural-Forms: nplurals=2; plural=(n > 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ko\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Brandon Han, 2024\", \"Language-Team\": \"Korean (https://app.transifex.com/nextcloud/teams/64236/ko/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ko\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nhosun Lee, 2023\nBrandon Han, 2024\n` }, msgstr: [`Last-Translator: Brandon Han, 2024\nLanguage-Team: Korean (https://app.transifex.com/nextcloud/teams/64236/ko/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ko\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count}개의 파일이 충돌함\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{dirname}에서 {count}개의 파일이 충돌함\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} 남음\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} 남음\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"곧 완료\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"업로드 취소\"] }, Continue: { msgid: \"Continue\", msgstr: [\"확인\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"남은 시간 계산\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"현재 버전\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"두 버전을 모두 선택할 경우, 복제된 파일 이름에 숫자가 추가됩니다.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"최근 수정일 알 수 없음\"] }, New: { msgid: \"New\", msgstr: [\"새로 만들기\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"새 버전\"] }, paused: { msgid: \"paused\", msgstr: [\"일시정지됨\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"미리보기 이미지\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"모든 체크박스 선택\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"모든 파일 선택\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"모든 새 파일 선택\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"{count}개의 파일 넘기기\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"크기를 알 수 없음\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"업로드 취소됨\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"파일 업로드\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"업로드 진행도\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"어떤 파일을 보존하시겠습니까?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"계속하기 위해서는 한 파일에 최소 하나의 버전을 선택해야 합니다.\"] } } } } }, { locale: \"la\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Latin (https://www.transifex.com/nextcloud/teams/64236/la/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"la\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Latin (https://www.transifex.com/nextcloud/teams/64236/la/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: la\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"lb\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Luxembourgish (https://www.transifex.com/nextcloud/teams/64236/lb/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lb\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Luxembourgish (https://www.transifex.com/nextcloud/teams/64236/lb/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lb\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"lo\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Lao (https://www.transifex.com/nextcloud/teams/64236/lo/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lo\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Lao (https://www.transifex.com/nextcloud/teams/64236/lo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lo\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"lt_LT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Lithuanian (Lithuania) (https://www.transifex.com/nextcloud/teams/64236/lt_LT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lt_LT\", \"Plural-Forms\": \"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Lithuanian (Lithuania) (https://www.transifex.com/nextcloud/teams/64236/lt_LT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lt_LT\nPlural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"lv\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Latvian (https://www.transifex.com/nextcloud/teams/64236/lv/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"lv\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Latvian (https://www.transifex.com/nextcloud/teams/64236/lv/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lv\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"mk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Сашко Тодоров <sasetodorov@gmail.com>, 2022\", \"Language-Team\": \"Macedonian (https://www.transifex.com/nextcloud/teams/64236/mk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"mk\", \"Plural-Forms\": \"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nСашко Тодоров <sasetodorov@gmail.com>, 2022\n` }, msgstr: [`Last-Translator: Сашко Тодоров <sasetodorov@gmail.com>, 2022\nLanguage-Team: Macedonian (https://www.transifex.com/nextcloud/teams/64236/mk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mk\nPlural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"преостануваат {seconds} секунди\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"преостанува {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"уште неколку секунди\"] }, Add: { msgid: \"Add\", msgstr: [\"Додади\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Прекини прикачување\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"приближно преостанато време\"] }, paused: { msgid: \"paused\", msgstr: [\"паузирано\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Прикачување датотеки\"] } } } } }, { locale: \"mn\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"BATKHUYAG Ganbold, 2023\", \"Language-Team\": \"Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"mn\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nBATKHUYAG Ganbold, 2023\n` }, msgstr: [`Last-Translator: BATKHUYAG Ganbold, 2023\nLanguage-Team: Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mn\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} секунд үлдсэн\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} үлдсэн\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"хэдхэн секунд үлдсэн\"] }, Add: { msgid: \"Add\", msgstr: [\"Нэмэх\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Илгээлтийг цуцлах\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Үлдсэн хугацааг тооцоолж байна\"] }, paused: { msgid: \"paused\", msgstr: [\"түр зогсоосон\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Файл илгээх\"] } } } } }, { locale: \"mr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Marathi (https://www.transifex.com/nextcloud/teams/64236/mr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"mr\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Marathi (https://www.transifex.com/nextcloud/teams/64236/mr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mr\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ms_MY\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Malay (Malaysia) (https://www.transifex.com/nextcloud/teams/64236/ms_MY/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ms_MY\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Malay (Malaysia) (https://www.transifex.com/nextcloud/teams/64236/ms_MY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ms_MY\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"my\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Burmese (https://www.transifex.com/nextcloud/teams/64236/my/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"my\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Burmese (https://www.transifex.com/nextcloud/teams/64236/my/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: my\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"nb_NO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Syvert Fossdal, 2024\", \"Language-Team\": \"Norwegian Bokmål (Norway) (https://app.transifex.com/nextcloud/teams/64236/nb_NO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nb_NO\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nSyvert Fossdal, 2024\n` }, msgstr: [`Last-Translator: Syvert Fossdal, 2024\nLanguage-Team: Norwegian Bokmål (Norway) (https://app.transifex.com/nextcloud/teams/64236/nb_NO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nb_NO\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} file conflict\", \"{count} filkonflikter\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} file conflict in {dirname}\", \"{count} filkonflikter i {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} sekunder igjen\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} igjen\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"noen få sekunder igjen\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Avbryt opplastninger\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Fortsett\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Estimerer tid igjen\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Gjeldende versjon\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Hvis du velger begge versjoner, vil den kopierte filen få et tall lagt til navnet.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Siste gang redigert ukjent\"] }, New: { msgid: \"New\", msgstr: [\"Ny\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Ny versjon\"] }, paused: { msgid: \"paused\", msgstr: [\"pauset\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Forhåndsvis bilde\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Velg alle\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Velg alle eksisterende filer\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Velg alle nye filer\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Skip this file\", \"Hopp over {count} filer\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Ukjent størrelse\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Opplasting avbrutt\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Last opp filer\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Fremdrift, opplasting\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Hvilke filer vil du beholde?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Du må velge minst en versjon av hver fil for å fortsette.\"] } } } } }, { locale: \"ne\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Nepali (https://www.transifex.com/nextcloud/teams/64236/ne/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ne\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Nepali (https://www.transifex.com/nextcloud/teams/64236/ne/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ne\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"nl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Rico <rico-schwab@hotmail.com>, 2023\", \"Language-Team\": \"Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nl\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nRico <rico-schwab@hotmail.com>, 2023\n` }, msgstr: [`Last-Translator: Rico <rico-schwab@hotmail.com>, 2023\nLanguage-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nl\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Nog {seconds} seconden\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{seconds} over\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"Nog een paar seconden\"] }, Add: { msgid: \"Add\", msgstr: [\"Voeg toe\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Uploads annuleren\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Schatting van de resterende tijd\"] }, paused: { msgid: \"paused\", msgstr: [\"Gepauzeerd\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Upload bestanden\"] } } } } }, { locale: \"nn\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Norwegian Nynorsk (https://www.transifex.com/nextcloud/teams/64236/nn/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nn\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Norwegian Nynorsk (https://www.transifex.com/nextcloud/teams/64236/nn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nn\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"nn_NO\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Norwegian Nynorsk (Norway) (https://www.transifex.com/nextcloud/teams/64236/nn_NO/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"nn_NO\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Norwegian Nynorsk (Norway) (https://www.transifex.com/nextcloud/teams/64236/nn_NO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nn_NO\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"oc\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Occitan (post 1500) (https://www.transifex.com/nextcloud/teams/64236/oc/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"oc\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Occitan (post 1500) (https://www.transifex.com/nextcloud/teams/64236/oc/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: oc\nPlural-Forms: nplurals=2; plural=(n > 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"pl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Valdnet, 2024\", \"Language-Team\": \"Polish (https://app.transifex.com/nextcloud/teams/64236/pl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"pl\", \"Plural-Forms\": \"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nM H <haincu@o2.pl>, 2023\nValdnet, 2024\n` }, msgstr: [`Last-Translator: Valdnet, 2024\nLanguage-Team: Polish (https://app.transifex.com/nextcloud/teams/64236/pl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pl\nPlural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"konflikt 1 pliku\", \"{count} konfliktów plików\", \"{count} konfliktów plików\", \"{count} konfliktów plików\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} konfliktowy plik w {dirname}\", \"{count} konfliktowych plików w {dirname}\", \"{count} konfliktowych plików w {dirname}\", \"{count} konfliktowych plików w {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Pozostało {seconds} sekund\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"Pozostało {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"Pozostało kilka sekund\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Anuluj wysyłanie\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Kontynuuj\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Szacowanie pozostałego czasu\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Istniejąca wersja\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Jeżeli wybierzesz obie wersje to do nazw skopiowanych plików zostanie dodany numer\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Nieznana data ostatniej modyfikacji\"] }, New: { msgid: \"New\", msgstr: [\"Nowy\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nowa wersja\"] }, paused: { msgid: \"paused\", msgstr: [\"Wstrzymane\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Podgląd obrazu\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Zaznacz wszystkie boxy\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Zaznacz wszystkie istniejące pliki\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Zaznacz wszystkie nowe pliki\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Pomiń 1 plik\", \"Pomiń {count} plików\", \"Pomiń {count} plików\", \"Pomiń {count} plików\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Nieznany rozmiar\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Anulowano wysyłanie\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Wyślij pliki\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Postęp wysyłania\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Które pliki chcesz zachować\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Aby kontynuować, musisz wybrać co najmniej jedną wersję każdego pliku.\"] } } } } }, { locale: \"ps\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Pashto (https://www.transifex.com/nextcloud/teams/64236/ps/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ps\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Pashto (https://www.transifex.com/nextcloud/teams/64236/ps/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ps\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"pt_BR\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Leonardo Colman Lopes <leonardo.dev@colman.com.br>, 2024\", \"Language-Team\": \"Portuguese (Brazil) (https://app.transifex.com/nextcloud/teams/64236/pt_BR/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"pt_BR\", \"Plural-Forms\": \"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nLeonardo Colman Lopes <leonardo.dev@colman.com.br>, 2024\n` }, msgstr: [`Last-Translator: Leonardo Colman Lopes <leonardo.dev@colman.com.br>, 2024\nLanguage-Team: Portuguese (Brazil) (https://app.transifex.com/nextcloud/teams/64236/pt_BR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pt_BR\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} arquivos em conflito\", \"{count} arquivos em conflito\", \"{count} arquivos em conflito\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} conflitos de arquivo em {dirname}\", \"{count} conflitos de arquivo em {dirname}\", \"{count} conflitos de arquivo em {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} segundos restantes\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} restante\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"alguns segundos restantes\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Cancelar\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Cancelar a operação inteira\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar uploads\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Continuar\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimando tempo restante\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Versão existente\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Se você selecionar ambas as versões, o arquivo copiado terá um número adicionado ao seu nome.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Data da última modificação desconhecida\"] }, New: { msgid: \"New\", msgstr: [\"Novo\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Nova versão\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Visualizar imagem\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Marque todas as caixas de seleção\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Selecione todos os arquivos existentes\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Selecione todos os novos arquivos\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Ignorar {count} arquivos\", \"Ignorar {count} arquivos\", \"Ignorar {count} arquivos\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Tamanho desconhecido\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Envio cancelado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Enviar arquivos\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Envio em progresso\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Quando uma pasta é selecionada, quaisquer arquivos dentro dela também serão sobrescritos.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Quais arquivos você deseja manter?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Você precisa selecionar pelo menos uma versão de cada arquivo para continuar.\"] } } } } }, { locale: \"pt_PT\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Manuela Silva <mmsrs@sky.com>, 2022\", \"Language-Team\": \"Portuguese (Portugal) (https://www.transifex.com/nextcloud/teams/64236/pt_PT/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"pt_PT\", \"Plural-Forms\": \"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nManuela Silva <mmsrs@sky.com>, 2022\n` }, msgstr: [`Last-Translator: Manuela Silva <mmsrs@sky.com>, 2022\nLanguage-Team: Portuguese (Portugal) (https://www.transifex.com/nextcloud/teams/64236/pt_PT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pt_PT\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"faltam {seconds} segundo(s)\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"faltam {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"faltam uns segundos\"] }, Add: { msgid: \"Add\", msgstr: [\"Adicionar\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Cancelar envios\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"tempo em falta estimado\"] }, paused: { msgid: \"paused\", msgstr: [\"pausado\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Enviar ficheiros\"] } } } } }, { locale: \"ro\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Mădălin Vasiliu <contact@madalinvasiliu.com>, 2022\", \"Language-Team\": \"Romanian (https://www.transifex.com/nextcloud/teams/64236/ro/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ro\", \"Plural-Forms\": \"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMădălin Vasiliu <contact@madalinvasiliu.com>, 2022\n` }, msgstr: [`Last-Translator: Mădălin Vasiliu <contact@madalinvasiliu.com>, 2022\nLanguage-Team: Romanian (https://www.transifex.com/nextcloud/teams/64236/ro/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ro\nPlural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} secunde rămase\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"{time} rămas\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"câteva secunde rămase\"] }, Add: { msgid: \"Add\", msgstr: [\"Adaugă\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Anulați încărcările\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"estimarea timpului rămas\"] }, paused: { msgid: \"paused\", msgstr: [\"pus pe pauză\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Încarcă fișiere\"] } } } } }, { locale: \"ru\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Александр, 2023\", \"Language-Team\": \"Russian (https://app.transifex.com/nextcloud/teams/64236/ru/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ru\", \"Plural-Forms\": \"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nMax Smith <sevinfolds@gmail.com>, 2023\nАлександр, 2023\n` }, msgstr: [`Last-Translator: Александр, 2023\nLanguage-Team: Russian (https://app.transifex.com/nextcloud/teams/64236/ru/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ru\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"конфликт {count} файла\", \"конфликт {count} файлов\", \"конфликт {count} файлов\", \"конфликт {count} файлов\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"конфликт {count} файла в {dirname}\", \"конфликт {count} файлов в {dirname}\", \"конфликт {count} файлов в {dirname}\", \"конфликт {count} файлов в {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"осталось {seconds} секунд\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"осталось {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"осталось несколько секунд\"] }, Add: { msgid: \"Add\", msgstr: [\"Добавить\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Отменить загрузки\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Продолжить\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"оценка оставшегося времени\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Текущая версия\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Если вы выберете обе версии, к имени скопированного файла будет добавлен номер.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Дата последнего изменения неизвестна\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Новая версия\"] }, paused: { msgid: \"paused\", msgstr: [\"приостановлено\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Предварительный просмотр\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Установить все флажки\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Выбрать все существующие файлы\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Выбрать все новые файлы\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Пропустить файл\", \"Пропустить {count} файла\", \"Пропустить {count} файлов\", \"Пропустить {count} файлов\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Неизвестный размер\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Загрузка отменена\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Загрузка файлов\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Какие файлы вы хотите сохранить?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Для продолжения вам нужно выбрать по крайней мере одну версию каждого файла.\"] } } } } }, { locale: \"ru_RU\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Russian (Russia) (https://www.transifex.com/nextcloud/teams/64236/ru_RU/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ru_RU\", \"Plural-Forms\": \"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Russian (Russia) (https://www.transifex.com/nextcloud/teams/64236/ru_RU/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ru_RU\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sc\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Sardinian (https://www.transifex.com/nextcloud/teams/64236/sc/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sc\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sardinian (https://www.transifex.com/nextcloud/teams/64236/sc/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sc\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"si\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Sinhala (https://www.transifex.com/nextcloud/teams/64236/si/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"si\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sinhala (https://www.transifex.com/nextcloud/teams/64236/si/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: si\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"si_LK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Sinhala (Sri Lanka) (https://www.transifex.com/nextcloud/teams/64236/si_LK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"si_LK\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Sinhala (Sri Lanka) (https://www.transifex.com/nextcloud/teams/64236/si_LK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: si_LK\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sk_SK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Slovak (Slovakia) (https://www.transifex.com/nextcloud/teams/64236/sk_SK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sk_SK\", \"Plural-Forms\": \"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Slovak (Slovakia) (https://www.transifex.com/nextcloud/teams/64236/sk_SK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sk_SK\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sl\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Matej Urbančič <>, 2022\", \"Language-Team\": \"Slovenian (https://www.transifex.com/nextcloud/teams/64236/sl/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sl\", \"Plural-Forms\": \"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nMatej Urbančič <>, 2022\n` }, msgstr: [`Last-Translator: Matej Urbančič <>, 2022\nLanguage-Team: Slovenian (https://www.transifex.com/nextcloud/teams/64236/sl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sl\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"še {seconds} sekund\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"še {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"še nekaj sekund\"] }, Add: { msgid: \"Add\", msgstr: [\"Dodaj\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Prekliči pošiljanje\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"ocenjen čas do konca\"] }, paused: { msgid: \"paused\", msgstr: [\"v premoru\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Pošlji datoteke\"] } } } } }, { locale: \"sl_SI\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Slovenian (Slovenia) (https://www.transifex.com/nextcloud/teams/64236/sl_SI/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sl_SI\", \"Plural-Forms\": \"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Slovenian (Slovenia) (https://www.transifex.com/nextcloud/teams/64236/sl_SI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sl_SI\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sq\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Albanian (https://www.transifex.com/nextcloud/teams/64236/sq/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sq\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Albanian (https://www.transifex.com/nextcloud/teams/64236/sq/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sq\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Иван Пешић, 2023\", \"Language-Team\": \"Serbian (https://app.transifex.com/nextcloud/teams/64236/sr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sr\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nИван Пешић, 2023\n` }, msgstr: [`Last-Translator: Иван Пешић, 2023\nLanguage-Team: Serbian (https://app.transifex.com/nextcloud/teams/64236/sr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sr\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} фајл конфликт\", \"{count} фајл конфликта\", \"{count} фајл конфликта\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} фајл конфликт у {dirname}\", \"{count} фајл конфликта у {dirname}\", \"{count} фајл конфликта у {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"преостало је {seconds} секунди\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} преостало\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"преостало је неколико секунди\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Обустави отпремања\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Настави\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"процена преосталог времена\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Постојећа верзија\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Ако изаберете обе верзије, на име копираног фајла ће се додати број.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Није познат датум последње измене\"] }, New: { msgid: \"New\", msgstr: [\"Ново\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Нова верзија\"] }, paused: { msgid: \"paused\", msgstr: [\"паузирано\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Слика прегледа\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Штиклирај сва поља за штиклирање\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Изабери све постојеће фајлове\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Изабери све нове фајлове\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Прескочи овај фајл\", \"Прескочи {count} фајла\", \"Прескочи {count} фајлова\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Непозната величина\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Отпремање је отказано\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Отпреми фајлове\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Напредак отпремања\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Које фајлове желите да задржите?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Морате да изаберете барем једну верзију сваког фајла да наставите.\"] } } } } }, { locale: \"sr@latin\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Serbian (Latin) (https://www.transifex.com/nextcloud/teams/64236/sr@latin/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sr@latin\", \"Plural-Forms\": \"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Serbian (Latin) (https://www.transifex.com/nextcloud/teams/64236/sr@latin/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sr@latin\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"sv\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Magnus Höglund, 2024\", \"Language-Team\": \"Swedish (https://app.transifex.com/nextcloud/teams/64236/sv/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sv\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nMagnus Höglund, 2024\n` }, msgstr: [`Last-Translator: Magnus Höglund, 2024\nLanguage-Team: Swedish (https://app.transifex.com/nextcloud/teams/64236/sv/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sv\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} filkonflikt\", \"{count} filkonflikter\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} filkonflikt i {dirname}\", \"{count} filkonflikter i {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} sekunder kvarstår\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} kvarstår\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"några sekunder kvar\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Avbryt\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Avbryt hela operationen\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Avbryt uppladdningar\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Fortsätt\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"uppskattar kvarstående tid\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Nuvarande version\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Om du väljer båda versionerna kommer den kopierade filen att få ett nummer tillagt i namnet.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Senaste ändringsdatum okänt\"] }, New: { msgid: \"New\", msgstr: [\"Ny\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Ny version\"] }, paused: { msgid: \"paused\", msgstr: [\"pausad\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Förhandsgranska bild\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Markera alla kryssrutor\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Välj alla befintliga filer\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Välj alla nya filer\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Hoppa över denna fil\", \"Hoppa över {count} filer\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Okänd storlek\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Uppladdningen avbröts\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Ladda upp filer\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Uppladdningsförlopp\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"När en inkommande mapp väljs skrivs även alla konfliktande filer i den över.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Vilka filer vill du behålla?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Du måste välja minst en version av varje fil för att fortsätta.\"] } } } } }, { locale: \"sw\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Swahili (https://www.transifex.com/nextcloud/teams/64236/sw/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"sw\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Swahili (https://www.transifex.com/nextcloud/teams/64236/sw/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sw\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ta\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Tamil (https://www.transifex.com/nextcloud/teams/64236/ta/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ta\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Tamil (https://www.transifex.com/nextcloud/teams/64236/ta/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ta\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"ta_LK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Tamil (Sri-Lanka) (https://www.transifex.com/nextcloud/teams/64236/ta_LK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ta_LK\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Tamil (Sri-Lanka) (https://www.transifex.com/nextcloud/teams/64236/ta_LK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ta_LK\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"th\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Thai (https://www.transifex.com/nextcloud/teams/64236/th/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"th\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Thai (https://www.transifex.com/nextcloud/teams/64236/th/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: th\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"th_TH\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Phongpanot Phairat <ppnplus@protonmail.com>, 2022\", \"Language-Team\": \"Thai (Thailand) (https://www.transifex.com/nextcloud/teams/64236/th_TH/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"th_TH\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nPhongpanot Phairat <ppnplus@protonmail.com>, 2022\n` }, msgstr: [`Last-Translator: Phongpanot Phairat <ppnplus@protonmail.com>, 2022\nLanguage-Team: Thai (Thailand) (https://www.transifex.com/nextcloud/teams/64236/th_TH/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: th_TH\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"เหลืออีก {seconds} วินาที\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"time has the format 00:00:00\" }, msgstr: [\"เหลืออีก {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"เหลืออีกไม่กี่วินาที\"] }, Add: { msgid: \"Add\", msgstr: [\"เพิ่ม\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"ยกเลิกการอัปโหลด\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"กำลังคำนวณเวลาที่เหลือ\"] }, paused: { msgid: \"paused\", msgstr: [\"หยุดชั่วคราว\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"อัปโหลดไฟล์\"] } } } } }, { locale: \"tk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Turkmen (https://www.transifex.com/nextcloud/teams/64236/tk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"tk\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Turkmen (https://www.transifex.com/nextcloud/teams/64236/tk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: tk\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"tr\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Kaya Zeren <kayazeren@gmail.com>, 2024\", \"Language-Team\": \"Turkish (https://app.transifex.com/nextcloud/teams/64236/tr/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"tr\", \"Plural-Forms\": \"nplurals=2; plural=(n > 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nKaya Zeren <kayazeren@gmail.com>, 2024\n` }, msgstr: [`Last-Translator: Kaya Zeren <kayazeren@gmail.com>, 2024\nLanguage-Team: Turkish (https://app.transifex.com/nextcloud/teams/64236/tr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: tr\nPlural-Forms: nplurals=2; plural=(n > 1);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} dosya çakışması var\", \"{count} dosya çakışması var\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{dirname} klasöründe {count} dosya çakışması var\", \"{dirname} klasöründe {count} dosya çakışması var\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"{seconds} saniye kaldı\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"{time} kaldı\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"bir kaç saniye kaldı\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"İptal\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Tüm işlemi iptal et\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Yüklemeleri iptal et\"] }, Continue: { msgid: \"Continue\", msgstr: [\"İlerle\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"öngörülen kalan süre\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Var olan sürüm\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"İki sürümü de seçerseniz, kopyalanan dosyanın adına bir sayı eklenir.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Son değiştirilme tarihi bilinmiyor\"] }, New: { msgid: \"New\", msgstr: [\"Yeni\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Yeni sürüm\"] }, paused: { msgid: \"paused\", msgstr: [\"duraklatıldı\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Görsel ön izlemesi\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Tüm kutuları işaretle\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Tüm var olan dosyaları seç\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Tüm yeni dosyaları seç\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Bu dosyayı atla\", \"{count} dosyayı atla\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Boyut bilinmiyor\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Yükleme iptal edildi\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Dosyaları yükle\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Yükleme ilerlemesi\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"Bir gelen klasör seçildiğinde, içindeki çakışan dosyaların da üzerine yazılır.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Hangi dosyaları tutmak istiyorsunuz?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"İlerlemek için her dosyanın en az bir sürümünü seçmelisiniz.\"] } } } } }, { locale: \"ug\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Uyghur (https://www.transifex.com/nextcloud/teams/64236/ug/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ug\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Uyghur (https://www.transifex.com/nextcloud/teams/64236/ug/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ug\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"uk\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"O St <oleksiy.stasevych@gmail.com>, 2024\", \"Language-Team\": \"Ukrainian (https://app.transifex.com/nextcloud/teams/64236/uk/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"uk\", \"Plural-Forms\": \"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\nO St <oleksiy.stasevych@gmail.com>, 2024\n` }, msgstr: [`Last-Translator: O St <oleksiy.stasevych@gmail.com>, 2024\nLanguage-Team: Ukrainian (https://app.transifex.com/nextcloud/teams/64236/uk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: uk\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} конфліктний файл\", \"{count} конфліктних файли\", \"{count} конфліктних файлів\", \"{count} конфліктних файлів\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} конфліктний файл у каталозі {dirname}\", \"{count} конфліктних файли у каталозі {dirname}\", \"{count} конфліктних файлів у каталозі {dirname}\", \"{count} конфліктних файлів у каталозі {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Залишилося {seconds} секунд\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"Залишилося {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"залишилося кілька секунд\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"Скасувати\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"Скасувати операцію повністю\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Скасувати завантаження\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Продовжити\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"оцінка часу, що залишився\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Присутня версія\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Якщо ви виберете обидві версії, буде створено копію файлу до назви якої буде додано цифру.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Дата останньої зміни невідома\"] }, New: { msgid: \"New\", msgstr: [\"Нове\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Нова версія\"] }, paused: { msgid: \"paused\", msgstr: [\"призупинено\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Попередній перегляд\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Вибрати все\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Вибрати всі присутні файли\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Виберіть усі нові файли\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Пропустити файл\", \"Пропустити {count} файли\", \"Пропустити {count} файлів\", \"Пропустити {count} файлів\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Невідомий розмір\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Завантаження скасовано\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Завантажити файли\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Поступ завантаження\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"У разі вибору каталогу призначення, будь-які конфліктні файли в такому каталозі буде перезаписано поверх.\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Які файли залишити?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Для продовження потрібно вибрати принаймні одну версію для кожного файлу.\"] } } } } }, { locale: \"ur_PK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Urdu (Pakistan) (https://www.transifex.com/nextcloud/teams/64236/ur_PK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"ur_PK\", \"Plural-Forms\": \"nplurals=2; plural=(n != 1);\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Urdu (Pakistan) (https://www.transifex.com/nextcloud/teams/64236/ur_PK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ur_PK\nPlural-Forms: nplurals=2; plural=(n != 1);\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"uz\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Transifex Bot <>, 2022\", \"Language-Team\": \"Uzbek (https://www.transifex.com/nextcloud/teams/64236/uz/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"uz\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nTransifex Bot <>, 2022\n` }, msgstr: [`Last-Translator: Transifex Bot <>, 2022\nLanguage-Team: Uzbek (https://www.transifex.com/nextcloud/teams/64236/uz/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: uz\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{estimate} seconds left\": { msgid: \"{estimate} seconds left\", msgstr: [\"\"] }, \"{hours} hours and {minutes} minutes left\": { msgid: \"{hours} hours and {minutes} minutes left\", msgstr: [\"\"] }, \"{minutes} minutes left\": { msgid: \"{minutes} minutes left\", msgstr: [\"\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"\"] }, Add: { msgid: \"Add\", msgstr: [\"\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"\"] }, paused: { msgid: \"paused\", msgstr: [\"\"] } } } } }, { locale: \"vi\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Tung DangQuang, 2023\", \"Language-Team\": \"Vietnamese (https://app.transifex.com/nextcloud/teams/64236/vi/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"vi\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nTung DangQuang, 2023\n` }, msgstr: [`Last-Translator: Tung DangQuang, 2023\nLanguage-Team: Vietnamese (https://app.transifex.com/nextcloud/teams/64236/vi/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: vi\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} Tập tin xung đột\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{count} tập tin lỗi trong {dirname}\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"Còn {second} giây\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"Còn lại {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"Còn lại một vài giây\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"Huỷ tải lên\"] }, Continue: { msgid: \"Continue\", msgstr: [\"Tiếp Tục\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"Thời gian còn lại dự kiến\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"Phiên Bản Hiện Tại\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"Nếu bạn chọn cả hai phiên bản, tệp được sao chép sẽ có thêm một số vào tên của nó.\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"Ngày sửa dổi lần cuối không xác định\"] }, New: { msgid: \"New\", msgstr: [\"Tạo Mới\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"Phiên Bản Mới\"] }, paused: { msgid: \"paused\", msgstr: [\"đã tạm dừng\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"Xem Trước Ảnh\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"Chọn tất cả hộp checkbox\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"Chọn tất cả các tập tin có sẵn\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"Chọn tất cả các tập tin mới\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"Bỏ Qua {count} tập tin\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"Không rõ dung lượng\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"Dừng Tải Lên\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"Tập tin tải lên\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"Đang Tải Lên\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"Bạn muốn giữ tập tin nào?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"Bạn cần chọn ít nhất một phiên bản tập tin mới có thể tiếp tục\"] } } } } }, { locale: \"zh_CN\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Hongbo Chen, 2023\", \"Language-Team\": \"Chinese (China) (https://app.transifex.com/nextcloud/teams/64236/zh_CN/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"zh_CN\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nHongbo Chen, 2023\n` }, msgstr: [`Last-Translator: Hongbo Chen, 2023\nLanguage-Team: Chinese (China) (https://app.transifex.com/nextcloud/teams/64236/zh_CN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_CN\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count}文件冲突\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"在{dirname}目录下有{count}个文件冲突\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"剩余 {seconds} 秒\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"剩余 {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"还剩几秒\"] }, Add: { msgid: \"Add\", msgstr: [\"添加\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"取消上传\"] }, Continue: { msgid: \"Continue\", msgstr: [\"继续\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"估计剩余时间\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"版本已存在\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"如果选择所有的版本,新增版本的文件名为原文件名加数字\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"文件最后修改日期未知\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"新版本\"] }, paused: { msgid: \"paused\", msgstr: [\"已暂停\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"图片预览\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"选择所有的选择框\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"选择所有存在的文件\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"选择所有的新文件\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"跳过{count}个文件\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"文件大小未知\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"取消上传\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"上传文件\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"你要保留哪些文件?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"每个文件至少选择一个版本\"] } } } } }, { locale: \"zh_HK\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"Café Tango, 2023\", \"Language-Team\": \"Chinese (Hong Kong) (https://app.transifex.com/nextcloud/teams/64236/zh_HK/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"zh_HK\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nCafé Tango, 2023\n` }, msgstr: [`Last-Translator: Café Tango, 2023\nLanguage-Team: Chinese (Hong Kong) (https://app.transifex.com/nextcloud/teams/64236/zh_HK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_HK\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} 個檔案衝突\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{dirname} 中有 {count} 個檔案衝突\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"剩餘 {seconds} 秒\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"剩餘 {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"還剩幾秒\"] }, Add: { msgid: \"Add\", msgstr: [\"添加\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"取消上傳\"] }, Continue: { msgid: \"Continue\", msgstr: [\"繼續\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"估計剩餘時間\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"既有版本\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"若您選取兩個版本,複製的檔案的名稱將會新增編號。\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"最後修改日期不詳\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"新版本 \"] }, paused: { msgid: \"paused\", msgstr: [\"已暫停\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"預覽圖片\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"選取所有核取方塊\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"選取所有既有檔案\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"選取所有新檔案\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"略過 {count} 個檔案\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"大小不詳\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"已取消上傳\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"上傳檔案\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"您想保留哪些檔案?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"您必須為每個檔案都至少選取一個版本以繼續。\"] } } } } }, { locale: \"zh_TW\", json: { charset: \"utf-8\", headers: { \"Last-Translator\": \"黃柏諺 <s8321414@gmail.com>, 2024\", \"Language-Team\": \"Chinese (Taiwan) (https://app.transifex.com/nextcloud/teams/64236/zh_TW/)\", \"Content-Type\": \"text/plain; charset=UTF-8\", Language: \"zh_TW\", \"Plural-Forms\": \"nplurals=1; plural=0;\" }, translations: { \"\": { \"\": { msgid: \"\", comments: { translator: `\nTranslators:\nJoas Schilling, 2024\n黃柏諺 <s8321414@gmail.com>, 2024\n` }, msgstr: [`Last-Translator: 黃柏諺 <s8321414@gmail.com>, 2024\nLanguage-Team: Chinese (Taiwan) (https://app.transifex.com/nextcloud/teams/64236/zh_TW/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_TW\nPlural-Forms: nplurals=1; plural=0;\n`] }, \"{count} file conflict\": { msgid: \"{count} file conflict\", msgid_plural: \"{count} files conflict\", msgstr: [\"{count} 個檔案衝突\"] }, \"{count} file conflict in {dirname}\": { msgid: \"{count} file conflict in {dirname}\", msgid_plural: \"{count} file conflicts in {dirname}\", msgstr: [\"{dirname} 中有 {count} 個檔案衝突\"] }, \"{seconds} seconds left\": { msgid: \"{seconds} seconds left\", msgstr: [\"剩餘 {seconds} 秒\"] }, \"{time} left\": { msgid: \"{time} left\", comments: { extracted: \"TRANSLATORS time has the format 00:00:00\" }, msgstr: [\"剩餘 {time}\"] }, \"a few seconds left\": { msgid: \"a few seconds left\", msgstr: [\"還剩幾秒\"] }, Cancel: { msgid: \"Cancel\", msgstr: [\"取消\"] }, \"Cancel the entire operation\": { msgid: \"Cancel the entire operation\", msgstr: [\"取消整個操作\"] }, \"Cancel uploads\": { msgid: \"Cancel uploads\", msgstr: [\"取消上傳\"] }, Continue: { msgid: \"Continue\", msgstr: [\"繼續\"] }, \"estimating time left\": { msgid: \"estimating time left\", msgstr: [\"估計剩餘時間\"] }, \"Existing version\": { msgid: \"Existing version\", msgstr: [\"既有版本\"] }, \"If you select both versions, the copied file will have a number added to its name.\": { msgid: \"If you select both versions, the copied file will have a number added to its name.\", msgstr: [\"若您選取兩個版本,複製的檔案的名稱將會新增編號。\"] }, \"Last modified date unknown\": { msgid: \"Last modified date unknown\", msgstr: [\"最後修改日期未知\"] }, New: { msgid: \"New\", msgstr: [\"新增\"] }, \"New version\": { msgid: \"New version\", msgstr: [\"新版本\"] }, paused: { msgid: \"paused\", msgstr: [\"已暫停\"] }, \"Preview image\": { msgid: \"Preview image\", msgstr: [\"預覽圖片\"] }, \"Select all checkboxes\": { msgid: \"Select all checkboxes\", msgstr: [\"選取所有核取方塊\"] }, \"Select all existing files\": { msgid: \"Select all existing files\", msgstr: [\"選取所有既有檔案\"] }, \"Select all new files\": { msgid: \"Select all new files\", msgstr: [\"選取所有新檔案\"] }, \"Skip this file\": { msgid: \"Skip this file\", msgid_plural: \"Skip {count} files\", msgstr: [\"略過 {count} 檔案\"] }, \"Unknown size\": { msgid: \"Unknown size\", msgstr: [\"未知大小\"] }, \"Upload cancelled\": { msgid: \"Upload cancelled\", msgstr: [\"已取消上傳\"] }, \"Upload files\": { msgid: \"Upload files\", msgstr: [\"上傳檔案\"] }, \"Upload progress\": { msgid: \"Upload progress\", msgstr: [\"上傳進度\"] }, \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\": { msgid: \"When an incoming folder is selected, any conflicting files within it will also be overwritten.\", msgstr: [\"選取傳入資料夾後,其中任何的衝突檔案都會被覆寫。\"] }, \"Which files do you want to keep?\": { msgid: \"Which files do you want to keep?\", msgstr: [\"您想保留哪些檔案?\"] }, \"You need to select at least one version of each file to continue.\": { msgid: \"You need to select at least one version of each file to continue.\", msgstr: [\"您必須為每個檔案都至少選取一個版本以繼續。\"] } } } } }].map((e) => M.addTranslation(e.locale, e.json));\nconst y = M.build(), $s = y.ngettext.bind(y), u = y.gettext.bind(y), vs = I.extend({\n name: \"UploadPicker\",\n components: {\n Cancel: us,\n NcActionButton: Z,\n NcActions: X,\n NcButton: ss,\n NcIconSvgWrapper: es,\n NcProgressBar: ts,\n Plus: Ts,\n Upload: Cs\n },\n props: {\n accept: {\n type: Array,\n default: null\n },\n disabled: {\n type: Boolean,\n default: !1\n },\n multiple: {\n type: Boolean,\n default: !1\n },\n destination: {\n type: j,\n default: void 0\n },\n /**\n * List of file present in the destination folder\n */\n content: {\n type: Array,\n default: () => []\n },\n forbiddenCharacters: {\n type: Array,\n default: () => []\n }\n },\n data() {\n return {\n addLabel: u(\"New\"),\n cancelLabel: u(\"Cancel uploads\"),\n uploadLabel: u(\"Upload files\"),\n progressLabel: u(\"Upload progress\"),\n progressTimeId: `nc-uploader-progress-${Math.random().toString(36).slice(7)}`,\n eta: null,\n timeLeft: \"\",\n newFileMenuEntries: [],\n uploadManager: D()\n };\n },\n computed: {\n totalQueueSize() {\n return this.uploadManager.info?.size || 0;\n },\n uploadedQueueSize() {\n return this.uploadManager.info?.progress || 0;\n },\n progress() {\n return Math.round(this.uploadedQueueSize / this.totalQueueSize * 100) || 0;\n },\n queue() {\n return this.uploadManager.queue;\n },\n hasFailure() {\n return this.queue?.filter((e) => e.status === c.FAILED).length !== 0;\n },\n isUploading() {\n return this.queue?.length > 0;\n },\n isAssembling() {\n return this.queue?.filter((e) => e.status === c.ASSEMBLING).length !== 0;\n },\n isPaused() {\n return this.uploadManager.info?.status === R.PAUSED;\n },\n // Hide the button text if we're uploading\n buttonName() {\n if (!this.isUploading)\n return this.addLabel;\n }\n },\n watch: {\n destination(e) {\n this.setDestination(e);\n },\n totalQueueSize(e) {\n this.eta = J({ min: 0, max: e }), this.updateStatus();\n },\n uploadedQueueSize(e) {\n this.eta?.report?.(e), this.updateStatus();\n },\n isPaused(e) {\n e ? this.$emit(\"paused\", this.queue) : this.$emit(\"resumed\", this.queue);\n }\n },\n beforeMount() {\n this.destination && this.setDestination(this.destination), this.uploadManager.addNotifier(this.onUploadCompletion), g.debug(\"UploadPicker initialised\");\n },\n methods: {\n /**\n * Trigger file picker\n */\n onClick() {\n this.$refs.input.click();\n },\n /**\n * Start uploading\n */\n async onPick() {\n let e = [...this.$refs.input.files];\n if (Ss(e, this.content)) {\n const s = e.filter((n) => this.content.find((i) => i.basename === n.name)).filter(Boolean), t = e.filter((n) => !s.includes(n));\n try {\n const { selected: n, renamed: i } = await Fs(this.destination.basename, s, this.content);\n e = [...t, ...n, ...i];\n } catch {\n A(u(\"Upload cancelled\"));\n return;\n }\n }\n e.forEach((s) => {\n const n = (this.forbiddenCharacters || []).find((i) => s.name.includes(i));\n n ? A(u(`\"${n}\" is not allowed inside a file name.`)) : this.uploadManager.upload(s.name, s).catch(() => {\n });\n }), this.$refs.form.reset();\n },\n /**\n * Cancel ongoing queue\n */\n onCancel() {\n this.uploadManager.queue.forEach((e) => {\n e.cancel();\n }), this.$refs.form.reset();\n },\n updateStatus() {\n if (this.isPaused) {\n this.timeLeft = u(\"paused\");\n return;\n }\n const e = Math.round(this.eta.estimate());\n if (e === 1 / 0) {\n this.timeLeft = u(\"estimating time left\");\n return;\n }\n if (e < 10) {\n this.timeLeft = u(\"a few seconds left\");\n return;\n }\n if (e > 60) {\n const s = /* @__PURE__ */ new Date(0);\n s.setSeconds(e);\n const t = s.toISOString().slice(11, 11 + 8);\n this.timeLeft = u(\"{time} left\", { time: t });\n return;\n }\n this.timeLeft = u(\"{seconds} seconds left\", { seconds: e });\n },\n setDestination(e) {\n if (!this.destination) {\n g.debug(\"Invalid destination\");\n return;\n }\n this.uploadManager.destination = e, this.newFileMenuEntries = Y(e);\n },\n onUploadCompletion(e) {\n e.status === c.FAILED ? this.$emit(\"failed\", e) : this.$emit(\"uploaded\", e);\n }\n }\n});\nvar ys = function() {\n var s = this, t = s._self._c;\n return s._self._setupProxy, s.destination ? t(\"form\", { ref: \"form\", staticClass: \"upload-picker\", class: { \"upload-picker--uploading\": s.isUploading, \"upload-picker--paused\": s.isPaused }, attrs: { \"data-cy-upload-picker\": \"\" } }, [s.newFileMenuEntries && s.newFileMenuEntries.length === 0 ? t(\"NcButton\", { attrs: { disabled: s.disabled, \"data-cy-upload-picker-add\": \"\", type: \"secondary\" }, on: { click: s.onClick }, scopedSlots: s._u([{ key: \"icon\", fn: function() {\n return [t(\"Plus\", { attrs: { title: \"\", size: 20, decorative: \"\" } })];\n }, proxy: !0 }], null, !1, 2954875042) }, [s._v(\" \" + s._s(s.buttonName) + \" \")]) : t(\"NcActions\", { attrs: { \"menu-name\": s.buttonName, \"menu-title\": s.addLabel, type: \"secondary\" }, scopedSlots: s._u([{ key: \"icon\", fn: function() {\n return [t(\"Plus\", { attrs: { title: \"\", size: 20, decorative: \"\" } })];\n }, proxy: !0 }], null, !1, 2954875042) }, [t(\"NcActionButton\", { attrs: { \"data-cy-upload-picker-add\": \"\", \"close-after-click\": !0 }, on: { click: s.onClick }, scopedSlots: s._u([{ key: \"icon\", fn: function() {\n return [t(\"Upload\", { attrs: { title: \"\", size: 20, decorative: \"\" } })];\n }, proxy: !0 }], null, !1, 3606034491) }, [s._v(\" \" + s._s(s.uploadLabel) + \" \")]), s._l(s.newFileMenuEntries, function(n) {\n return t(\"NcActionButton\", { key: n.id, staticClass: \"upload-picker__menu-entry\", attrs: { icon: n.iconClass, \"close-after-click\": !0 }, on: { click: function(i) {\n return n.handler(s.destination, s.content);\n } }, scopedSlots: s._u([n.iconSvgInline ? { key: \"icon\", fn: function() {\n return [t(\"NcIconSvgWrapper\", { attrs: { svg: n.iconSvgInline } })];\n }, proxy: !0 } : null], null, !0) }, [s._v(\" \" + s._s(n.displayName) + \" \")]);\n })], 2), t(\"div\", { directives: [{ name: \"show\", rawName: \"v-show\", value: s.isUploading, expression: \"isUploading\" }], staticClass: \"upload-picker__progress\" }, [t(\"NcProgressBar\", { attrs: { \"aria-label\": s.progressLabel, \"aria-describedby\": s.progressTimeId, error: s.hasFailure, value: s.progress, size: \"medium\" } }), t(\"p\", { attrs: { id: s.progressTimeId } }, [s._v(\" \" + s._s(s.timeLeft) + \" \")])], 1), s.isUploading ? t(\"NcButton\", { staticClass: \"upload-picker__cancel\", attrs: { type: \"tertiary\", \"aria-label\": s.cancelLabel, \"data-cy-upload-picker-cancel\": \"\" }, on: { click: s.onCancel }, scopedSlots: s._u([{ key: \"icon\", fn: function() {\n return [t(\"Cancel\", { attrs: { title: \"\", size: 20 } })];\n }, proxy: !0 }], null, !1, 4076886712) }) : s._e(), t(\"input\", { directives: [{ name: \"show\", rawName: \"v-show\", value: !1, expression: \"false\" }], ref: \"input\", attrs: { type: \"file\", accept: s.accept?.join?.(\", \"), multiple: s.multiple, \"data-cy-upload-picker-input\": \"\" }, on: { change: s.onPick } })], 1) : s._e();\n}, Us = [], bs = /* @__PURE__ */ U(\n vs,\n ys,\n Us,\n !1,\n null,\n \"eca9500a\",\n null,\n null\n);\nconst Js = bs.exports;\nlet C = null;\nfunction D() {\n const e = document.querySelector('input[name=\"isPublic\"][value=\"1\"]') !== null;\n return C instanceof z || (C = new z(e)), C;\n}\nfunction Qs(e, s) {\n const t = D();\n return t.upload(e, s), t;\n}\nasync function Fs(e, s, t) {\n const n = Q(() => import(\"./ConflictPicker-qrLWQ_8R.mjs\"));\n return new Promise((i, o) => {\n const l = new I({\n name: \"ConflictPickerRoot\",\n render: (f) => f(n, {\n props: {\n dirname: e,\n conflicts: s,\n content: t\n },\n on: {\n submit(r) {\n i(r), l.$destroy(), l.$el?.parentNode?.removeChild(l.$el);\n },\n cancel(r) {\n o(r ?? new Error(\"Canceled\")), l.$destroy(), l.$el?.parentNode?.removeChild(l.$el);\n }\n }\n })\n });\n l.$mount(), document.body.appendChild(l.$el);\n });\n}\nfunction Ss(e, s) {\n const t = s.map((i) => i.basename);\n return e.filter((i) => {\n const o = i instanceof File ? i.name : i.basename;\n return t.indexOf(o) !== -1;\n }).length > 0;\n}\nexport {\n R as S,\n Js as U,\n $s as a,\n ls as b,\n c,\n D as g,\n Ss as h,\n g as l,\n U as n,\n Fs as o,\n u as t,\n Qs as u\n};\n","import Queue from 'yocto-queue';\nimport {AsyncResource} from '#async_hooks';\n\nexport default function pLimit(concurrency) {\n\tif (!((Number.isInteger(concurrency) || concurrency === Number.POSITIVE_INFINITY) && concurrency > 0)) {\n\t\tthrow new TypeError('Expected `concurrency` to be a number from 1 and up');\n\t}\n\n\tconst queue = new Queue();\n\tlet activeCount = 0;\n\n\tconst next = () => {\n\t\tactiveCount--;\n\n\t\tif (queue.size > 0) {\n\t\t\tqueue.dequeue()();\n\t\t}\n\t};\n\n\tconst run = async (function_, resolve, arguments_) => {\n\t\tactiveCount++;\n\n\t\tconst result = (async () => function_(...arguments_))();\n\n\t\tresolve(result);\n\n\t\ttry {\n\t\t\tawait result;\n\t\t} catch {}\n\n\t\tnext();\n\t};\n\n\tconst enqueue = (function_, resolve, arguments_) => {\n\t\tqueue.enqueue(\n\t\t\tAsyncResource.bind(run.bind(undefined, function_, resolve, arguments_)),\n\t\t);\n\n\t\t(async () => {\n\t\t\t// This function needs to wait until the next microtask before comparing\n\t\t\t// `activeCount` to `concurrency`, because `activeCount` is updated asynchronously\n\t\t\t// when the run function is dequeued and called. The comparison in the if-statement\n\t\t\t// needs to happen asynchronously as well to get an up-to-date value for `activeCount`.\n\t\t\tawait Promise.resolve();\n\n\t\t\tif (activeCount < concurrency && queue.size > 0) {\n\t\t\t\tqueue.dequeue()();\n\t\t\t}\n\t\t})();\n\t};\n\n\tconst generator = (function_, ...arguments_) => new Promise(resolve => {\n\t\tenqueue(function_, resolve, arguments_);\n\t});\n\n\tObject.defineProperties(generator, {\n\t\tactiveCount: {\n\t\t\tget: () => activeCount,\n\t\t},\n\t\tpendingCount: {\n\t\t\tget: () => queue.size,\n\t\t},\n\t\tclearQueue: {\n\t\t\tvalue() {\n\t\t\t\tqueue.clear();\n\t\t\t},\n\t\t},\n\t});\n\n\treturn generator;\n}\n","const R = (n, e) => u(n, \"\", e), g = (n) => \"/remote.php/\" + n, U = (n, e) => {\n var o;\n return ((o = e == null ? void 0 : e.baseURL) != null ? o : w()) + g(n);\n}, v = (n, e, o) => {\n var c;\n const i = Object.assign({\n ocsVersion: 2\n }, o || {}).ocsVersion === 1 ? 1 : 2;\n return ((c = o == null ? void 0 : o.baseURL) != null ? c : w()) + \"/ocs/v\" + i + \".php\" + d(n, e, o);\n}, d = (n, e, o) => {\n const c = Object.assign({\n escape: !0\n }, o || {}), s = function(i, r) {\n return r = r || {}, i.replace(\n /{([^{}]*)}/g,\n function(l, t) {\n const a = r[t];\n return c.escape ? encodeURIComponent(typeof a == \"string\" || typeof a == \"number\" ? a.toString() : l) : typeof a == \"string\" || typeof a == \"number\" ? a.toString() : l;\n }\n );\n };\n return n.charAt(0) !== \"/\" && (n = \"/\" + n), s(n, e || {});\n}, _ = (n, e, o) => {\n var c, s, i;\n const r = Object.assign({\n noRewrite: !1\n }, o || {}), l = (c = o == null ? void 0 : o.baseURL) != null ? c : f();\n return ((i = (s = window == null ? void 0 : window.OC) == null ? void 0 : s.config) == null ? void 0 : i.modRewriteWorking) === !0 && !r.noRewrite ? l + d(n, e, o) : l + \"/index.php\" + d(n, e, o);\n}, h = (n, e) => e.indexOf(\".\") === -1 ? u(n, \"img\", e + \".svg\") : u(n, \"img\", e), u = (n, e, o) => {\n var c, s, i;\n const r = (i = (s = (c = window == null ? void 0 : window.OC) == null ? void 0 : c.coreApps) == null ? void 0 : s.includes(n)) != null ? i : !1, l = o.slice(-3) === \"php\";\n let t = f();\n return l && !r ? (t += \"/index.php/apps/\".concat(n), e && (t += \"/\".concat(encodeURI(e))), o !== \"index.php\" && (t += \"/\".concat(o))) : !l && !r ? (t = b(n), e && (t += \"/\".concat(e, \"/\")), t.at(-1) !== \"/\" && (t += \"/\"), t += o) : ((n === \"settings\" || n === \"core\" || n === \"search\") && e === \"ajax\" && (t += \"/index.php\"), n && (t += \"/\".concat(n)), e && (t += \"/\".concat(e)), t += \"/\".concat(o)), t;\n}, w = () => window.location.protocol + \"//\" + window.location.host + f();\nfunction f() {\n let n = window._oc_webroot;\n if (typeof n > \"u\") {\n n = location.pathname;\n const e = n.indexOf(\"/index.php/\");\n if (e !== -1)\n n = n.slice(0, e);\n else {\n const o = n.indexOf(\"/\", 1);\n n = n.slice(0, o > 0 ? o : void 0);\n }\n }\n return n;\n}\nfunction b(n) {\n var e, o;\n return (o = ((e = window._oc_appswebroots) != null ? e : {})[n]) != null ? o : \"\";\n}\nexport {\n u as generateFilePath,\n v as generateOcsUrl,\n U as generateRemoteUrl,\n _ as generateUrl,\n b as getAppRootUrl,\n w as getBaseUrl,\n f as getRootUrl,\n h as imagePath,\n R as linkTo\n};\n","import axios from './lib/axios.js';\n\n// This module is intended to unwrap Axios default export as named.\n// Keep top-level export same with static properties\n// so that it can keep same with es module or cjs\nconst {\n Axios,\n AxiosError,\n CanceledError,\n isCancel,\n CancelToken,\n VERSION,\n all,\n Cancel,\n isAxiosError,\n spread,\n toFormData,\n AxiosHeaders,\n HttpStatusCode,\n formToJSON,\n getAdapter,\n mergeConfig\n} = axios;\n\nexport {\n axios as default,\n Axios,\n AxiosError,\n CanceledError,\n isCancel,\n CancelToken,\n VERSION,\n all,\n Cancel,\n isAxiosError,\n spread,\n toFormData,\n AxiosHeaders,\n HttpStatusCode,\n formToJSON,\n getAdapter,\n mergeConfig\n}\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\tid: moduleId,\n\t\tloaded: false,\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Flag the module as loaded\n\tmodule.loaded = true;\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.f = {};\n// This file contains only the entry chunk.\n// The chunk loading function for additional chunks\n__webpack_require__.e = (chunkId) => {\n\treturn Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => {\n\t\t__webpack_require__.f[key](chunkId, promises);\n\t\treturn promises;\n\t}, []));\n};","// This function allow to reference async chunks\n__webpack_require__.u = (chunkId) => {\n\t// return url for filenames based on template\n\treturn \"\" + chunkId + \"-\" + chunkId + \".js?v=\" + {\"1359\":\"08b2abcca7c808677f1a\",\"3841\":\"f24f37909b9ea1a5c604\",\"8618\":\"1e8f15db3b14455fef8f\"}[chunkId] + \"\";\n};","__webpack_require__.g = (function() {\n\tif (typeof globalThis === 'object') return globalThis;\n\ttry {\n\t\treturn this || new Function('return this')();\n\t} catch (e) {\n\t\tif (typeof window === 'object') return window;\n\t}\n})();","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","__webpack_require__.nmd = (module) => {\n\tmodule.paths = [];\n\tif (!module.children) module.children = [];\n\treturn module;\n};","__webpack_require__.j = 2882;","var scriptUrl;\nif (__webpack_require__.g.importScripts) scriptUrl = __webpack_require__.g.location + \"\";\nvar document = __webpack_require__.g.document;\nif (!scriptUrl && document) {\n\tif (document.currentScript)\n\t\tscriptUrl = document.currentScript.src;\n\tif (!scriptUrl) {\n\t\tvar scripts = document.getElementsByTagName(\"script\");\n\t\tif(scripts.length) {\n\t\t\tvar i = scripts.length - 1;\n\t\t\twhile (i > -1 && (!scriptUrl || !/^http(s?):/.test(scriptUrl))) scriptUrl = scripts[i--].src;\n\t\t}\n\t}\n}\n// When supporting browsers where an automatic publicPath is not supported you must specify an output.publicPath manually via configuration\n// or pass an empty string (\"\") and set the __webpack_public_path__ variable from your code to use your own logic.\nif (!scriptUrl) throw new Error(\"Automatic publicPath is not supported in this browser\");\nscriptUrl = scriptUrl.replace(/#.*$/, \"\").replace(/\\?.*$/, \"\").replace(/\\/[^\\/]+$/, \"/\");\n__webpack_require__.p = scriptUrl;","__webpack_require__.b = document.baseURI || self.location.href;\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t2882: 0\n};\n\n__webpack_require__.f.j = (chunkId, promises) => {\n\t\t// JSONP chunk loading for javascript\n\t\tvar installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;\n\t\tif(installedChunkData !== 0) { // 0 means \"already installed\".\n\n\t\t\t// a Promise means \"currently loading\".\n\t\t\tif(installedChunkData) {\n\t\t\t\tpromises.push(installedChunkData[2]);\n\t\t\t} else {\n\t\t\t\tif(true) { // all chunks have JS\n\t\t\t\t\t// setup Promise in chunk cache\n\t\t\t\t\tvar promise = new Promise((resolve, reject) => (installedChunkData = installedChunks[chunkId] = [resolve, reject]));\n\t\t\t\t\tpromises.push(installedChunkData[2] = promise);\n\n\t\t\t\t\t// start chunk loading\n\t\t\t\t\tvar url = __webpack_require__.p + __webpack_require__.u(chunkId);\n\t\t\t\t\t// create error before stack unwound to get useful stacktrace later\n\t\t\t\t\tvar error = new Error();\n\t\t\t\t\tvar loadingEnded = (event) => {\n\t\t\t\t\t\tif(__webpack_require__.o(installedChunks, chunkId)) {\n\t\t\t\t\t\t\tinstalledChunkData = installedChunks[chunkId];\n\t\t\t\t\t\t\tif(installedChunkData !== 0) installedChunks[chunkId] = undefined;\n\t\t\t\t\t\t\tif(installedChunkData) {\n\t\t\t\t\t\t\t\tvar errorType = event && (event.type === 'load' ? 'missing' : event.type);\n\t\t\t\t\t\t\t\tvar realSrc = event && event.target && event.target.src;\n\t\t\t\t\t\t\t\terror.message = 'Loading chunk ' + chunkId + ' failed.\\n(' + errorType + ': ' + realSrc + ')';\n\t\t\t\t\t\t\t\terror.name = 'ChunkLoadError';\n\t\t\t\t\t\t\t\terror.type = errorType;\n\t\t\t\t\t\t\t\terror.request = realSrc;\n\t\t\t\t\t\t\t\tinstalledChunkData[1](error);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\t__webpack_require__.l(url, loadingEnded, \"chunk-\" + chunkId, chunkId);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n};\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n__webpack_require__.O.j = (chunkId) => (installedChunks[chunkId] === 0);\n\n// install a JSONP callback for chunk loading\nvar webpackJsonpCallback = (parentChunkLoadingFunction, data) => {\n\tvar chunkIds = data[0];\n\tvar moreModules = data[1];\n\tvar runtime = data[2];\n\t// add \"moreModules\" to the modules object,\n\t// then flag all \"chunkIds\" as loaded and fire callback\n\tvar moduleId, chunkId, i = 0;\n\tif(chunkIds.some((id) => (installedChunks[id] !== 0))) {\n\t\tfor(moduleId in moreModules) {\n\t\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t\t}\n\t\t}\n\t\tif(runtime) var result = runtime(__webpack_require__);\n\t}\n\tif(parentChunkLoadingFunction) parentChunkLoadingFunction(data);\n\tfor(;i < chunkIds.length; i++) {\n\t\tchunkId = chunkIds[i];\n\t\tif(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {\n\t\t\tinstalledChunks[chunkId][0]();\n\t\t}\n\t\tinstalledChunks[chunkId] = 0;\n\t}\n\treturn __webpack_require__.O(result);\n}\n\nvar chunkLoadingGlobal = self[\"webpackChunknextcloud\"] = self[\"webpackChunknextcloud\"] || [];\nchunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));\nchunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));","__webpack_require__.nc = undefined;","// startup\n// Load entry module and return exports\n// This entry module depends on other loaded chunks and execution need to be delayed\nvar __webpack_exports__ = __webpack_require__.O(undefined, [4208], () => (__webpack_require__(80809)))\n__webpack_exports__ = __webpack_require__.O(__webpack_exports__);\n"],"names":["deferred","inProgress","dataWebpackPrefix","has","Object","prototype","hasOwnProperty","prefix","Events","EE","fn","context","once","this","addListener","emitter","event","TypeError","listener","evt","_events","push","_eventsCount","clearEvent","EventEmitter","create","__proto__","eventNames","events","name","names","call","slice","getOwnPropertySymbols","concat","listeners","handlers","i","l","length","ee","Array","listenerCount","emit","a1","a2","a3","a4","a5","args","len","arguments","removeListener","undefined","apply","j","on","removeAllListeners","off","prefixed","module","exports","getTarget","navigator","window","globalThis","util","warn","isProxyAvailable","Proxy","HOOK_SETUP","supported","perf","ApiProxy","constructor","plugin","hook","target","targetQueue","onQueue","defaultSettings","settings","id","item","defaultValue","localSettingsSaveId","currentSettings","assign","raw","localStorage","getItem","data","JSON","parse","e","fallbacks","getSettings","setSettings","value","setItem","stringify","now","performance","_a","perf_hooks","Date","pluginId","proxiedOn","get","_target","prop","method","proxiedTarget","keys","includes","resolve","Promise","setRealTarget","setupDevtoolsPlugin","pluginDescriptor","setupFn","descriptor","__VUE_DEVTOOLS_GLOBAL_HOOK__","enableProxy","enableEarlyProxy","__VUE_DEVTOOLS_PLUGIN_API_AVAILABLE__","proxy","__VUE_DEVTOOLS_PLUGINS__","activePinia","setActivePinia","pinia","piniaSymbol","Symbol","isPlainObject","o","toString","toJSON","MutationType","IS_CLIENT","USE_DEVTOOLS","__VUE_PROD_DEVTOOLS__","_global","self","global","HTMLElement","download","url","opts","xhr","XMLHttpRequest","open","responseType","onload","saveAs","response","onerror","console","error","send","corsEnabled","status","click","node","dispatchEvent","MouseEvent","document","createEvent","initMouseEvent","_navigator","userAgent","isMacOSWebView","test","HTMLAnchorElement","blob","a","createElement","rel","href","origin","location","URL","createObjectURL","setTimeout","revokeObjectURL","msSaveOrOpenBlob","autoBom","type","Blob","String","fromCharCode","bom","popup","title","body","innerText","force","isSafari","isChromeIOS","FileReader","reader","onloadend","result","Error","replace","readAsDataURL","toastMessage","message","piniaMessage","__VUE_DEVTOOLS_TOAST__","log","isPinia","checkClipboardAccess","checkNotFocusedError","toLowerCase","fileInput","loadStoresState","state","key","storeState","formatDisplay","display","_custom","PINIA_ROOT_LABEL","PINIA_ROOT_ID","formatStoreForInspectorTree","store","label","$id","formatEventData","isArray","reduce","operations","oldValue","newValue","operation","formatMutationType","direct","patchFunction","patchObject","isTimelineActive","componentStateTypes","MUTATIONS_LAYER_ID","INSPECTOR_ID","assign$1","getStoreType","registerPiniaDevtools","app","logo","packageName","homepage","api","addTimelineLayer","color","addInspector","icon","treeFilterPlaceholder","actions","action","async","clipboard","writeText","actionGlobalCopyState","tooltip","readText","actionGlobalPasteState","sendInspectorTree","sendInspectorState","actionGlobalSaveState","accept","reject","onchange","files","file","text","oncancel","actionGlobalOpenStateFile","nodeActions","nodeId","_s","$reset","inspectComponent","payload","ctx","componentInstance","_pStores","piniaStores","values","forEach","instanceData","editable","_isOptionsAPI","$state","_getters","getters","getInspectorTree","inspectorId","stores","from","rootNodes","filter","map","getInspectorState","inspectedStore","storeNames","storeMap","storeId","getterName","_customProperties","size","customProperties","formatStoreForInspectorState","editInspectorState","path","unshift","set","editComponentState","startsWith","activeAction","runningActionId","patchActionForGrouping","actionNames","wrapWithProxy","storeActions","actionName","_actionId","trackedStore","Reflect","retValue","devtoolsPlugin","options","originalHotUpdate","_hotUpdate","newStore","_hmrPayload","logStoreChanges","bind","$onAction","after","onError","groupId","addTimelineEvent","layerId","time","subtitle","logType","notifyComponentUpdate","deep","$subscribe","eventData","detached","flush","hotUpdate","info","$dispose","addStoreToDevtools","noop","addSubscription","subscriptions","callback","onCleanup","removeSubscription","idx","indexOf","splice","triggerSubscriptions","fallbackRunWithContext","mergeReactiveObjects","patchToApply","Map","Set","add","subPatch","targetValue","skipHydrateSymbol","skipHydrateMap","WeakMap","createSetupStore","setup","hot","isOptionsStore","scope","optionsForPlugin","$subscribeOptions","isListening","isSyncListening","debuggerEvents","actionSubscriptions","initialState","hotState","activeListener","$patch","partialStateOrMutator","subscriptionMutation","myListenerId","then","newState","wrapAction","afterCallbackList","onErrorCallbackList","ret","catch","partialStore","_p","stopWatcher","run","stop","delete","_r","setupStore","runWithContext","_e","effect","obj","actionValue","defineProperty","nonEnumerable","writable","configurable","enumerable","p","extender","extensions","hydrate","defineStore","idOrOptions","setupOptions","isSetupStore","useStore","hasContext","localState","computedGetters","createOptionsStore","token","singleMatcher","RegExp","multiMatcher","decodeComponents","components","split","decodeURIComponent","join","left","right","decode","input","tokens","match","splitOnFirst","string","separator","separatorIndex","includeKeys","object","predicate","getOwnPropertyDescriptor","ownKeys","isNullOrUndefined","strictUriEncode","encodeURIComponent","x","charCodeAt","toUpperCase","encodeFragmentIdentifier","validateArrayFormatSeparator","encode","strict","encodedURI","replaceMap","exec","entries","customDecodeURIComponent","keysSorter","sort","b","Number","removeHash","hashStart","parseValue","parseNumbers","isNaN","trim","parseBooleans","extract","queryStart","query","arrayFormat","arrayFormatSeparator","formatter","accumulator","isEncodedArray","arrayValue","flat","parserForArrayFormat","returnValue","parameter","parameter_","key2","value2","Boolean","shouldFilter","skipNull","skipEmptyString","index","keyValueSep","encoderForArrayFormat","objectCopy","parseUrl","url_","hash","parseFragmentIdentifier","fragmentIdentifier","stringifyUrl","queryString","getHash","urlObjectForFragmentEncode","pick","exclude","extend","encodeReserveRE","encodeReserveReplacer","c","commaRE","str","err","castQueryParamValue","parseQuery","res","param","parts","shift","val","stringifyQuery","val2","trailingSlashRE","createRoute","record","redirectedFrom","router","clone","route","meta","params","fullPath","getFullPath","matched","formatMatch","freeze","START","parent","ref","_stringifyQuery","isSameRoute","onlyPath","isObjectEqual","aKeys","bKeys","every","aVal","bVal","handleRouteEntered","instances","instance","cbs","enteredCbs","i$1","_isBeingDestroyed","View","functional","props","default","render","_","children","routerView","h","$createElement","$route","cache","_routerViewCache","depth","inactive","_routerRoot","vnodeData","$vnode","keepAlive","_directInactive","_inactive","$parent","routerViewDepth","cachedData","cachedComponent","component","configProps","fillPropsinData","registerRouteInstance","vm","current","prepatch","vnode","init","propsToPass","config","resolveProps","attrs","resolvePath","relative","base","append","firstChar","charAt","stack","pop","segments","segment","cleanPath","isarray","arr","pathToRegexp_1","pathToRegexp","groups","source","delimiter","optional","repeat","partial","asterisk","pattern","attachKeys","regexpToRegexp","flags","arrayToRegexp","tokensToRegExp","stringToRegexp","parse_1","tokensToFunction_1","tokensToFunction","tokensToRegExp_1","PATH_REGEXP","defaultDelimiter","m","escaped","offset","next","capture","group","modifier","escapeGroup","escapeString","substr","encodeURIComponentPretty","encodeURI","matches","pretty","re","sensitive","end","endsWithDelimiter","compile","regexpCompileCache","fillParams","routeMsg","filler","pathMatch","normalizeLocation","_normalized","params$1","rawPath","parsedPath","hashIndex","queryIndex","parsePath","basePath","extraQuery","_parseQuery","parsedQuery","resolveQuery","_Vue","Link","to","required","tag","custom","exact","exactPath","activeClass","exactActiveClass","ariaCurrentValue","this$1$1","$router","classes","globalActiveClass","linkActiveClass","globalExactActiveClass","linkExactActiveClass","activeClassFallback","exactActiveClassFallback","compareTarget","queryIncludes","isIncludedRoute","handler","guardEvent","class","scopedSlot","$scopedSlots","$hasNormal","navigate","isActive","isExactActive","findAnchor","$slots","isStatic","aData","handler$1","event$1","aAttrs","metaKey","altKey","ctrlKey","shiftKey","defaultPrevented","button","currentTarget","getAttribute","preventDefault","child","inBrowser","createRouteMap","routes","oldPathList","oldPathMap","oldNameMap","parentRoute","pathList","pathMap","nameMap","addRouteRecord","matchAs","pathToRegexpOptions","normalizedPath","normalizePath","caseSensitive","regex","compileRouteRegex","alias","redirect","beforeEnter","childMatchAs","aliases","aliasRoute","createMatcher","currentRoute","_createRoute","paramNames","record$1","matchRoute","originalRedirect","resolveRecordPath","aliasedMatch","aliasedRecord","addRoute","parentOrRoute","getRoutes","addRoutes","Time","genStateKey","toFixed","_key","getStateKey","setStateKey","positionStore","setupScroll","history","scrollRestoration","protocolAndPath","protocol","host","absolutePath","stateCopy","replaceState","addEventListener","handlePopState","removeEventListener","handleScroll","isPop","behavior","scrollBehavior","$nextTick","position","getScrollPosition","shouldScroll","scrollToPosition","saveScrollPosition","pageXOffset","y","pageYOffset","isValidPosition","isNumber","normalizePosition","v","hashStartsWithNumberRE","isObject","selector","el","getElementById","querySelector","docRect","documentElement","getBoundingClientRect","elRect","top","getElementPosition","style","scrollTo","ua","supportsPushState","pushState","NavigationFailureType","redirected","aborted","cancelled","duplicated","createNavigationCancelledError","createRouterError","_isRouter","propertiesToLog","isError","isNavigationFailure","errorType","runQueue","queue","cb","step","flatMapComponents","flatten","hasSymbol","toStringTag","called","History","baseEl","normalizeBase","pending","ready","readyCbs","readyErrorCbs","errorCbs","extractGuards","records","reverse","guards","def","guard","extractGuard","bindGuard","listen","onReady","errorCb","transitionTo","onComplete","onAbort","prev","confirmTransition","updateRoute","ensureURL","afterHooks","abort","lastRouteIndex","lastCurrentIndex","max","Math","updated","activated","deactivated","resolveQueue","extractLeaveGuards","beforeHooks","extractUpdateHooks","hasAsync","cid","resolvedDef","__esModule","resolved","reason","msg","comp","iterator","createNavigationAbortedError","createNavigationRedirectedError","enterGuards","bindEnterGuard","extractEnterGuards","resolveHooks","setupListeners","teardown","cleanupListener","HTML5History","_startLocation","getLocation","expectScroll","supportsScroll","handleRoutingEvent","go","n","fromRoute","getCurrentLocation","pathname","pathLowerCase","baseLowerCase","search","HashHistory","fallback","checkFallback","ensureSlash","replaceHash","eventType","pushHash","getUrl","AbstractHistory","targetIndex","VueRouter","apps","matcher","mode","prototypeAccessors","$once","routeOrError","handleInitialScroll","_route","beforeEach","registerHook","beforeResolve","afterEach","back","forward","getMatchedComponents","createHref","normalizedTo","defineProperties","VueRouter$1","list","install","Vue","installed","isDef","registerInstance","callVal","$options","_parentVnode","mixin","beforeCreate","_router","defineReactive","destroyed","strats","optionMergeStrategies","beforeRouteEnter","beforeRouteLeave","beforeRouteUpdate","created","version","START_LOCATION","use","Router","originalPush","generateUrl","view","emits","fillColor","_vm","_c","_self","_b","staticClass","$event","$emit","$attrs","_v","viewConfig","loadState","useViewConfigStore","getConfig","onUpdate","update","axios","put","setSortingBy","toggleSortingDirection","newDirection","sorting_direction","viewConfigStore","_initialized","subscribe","_ref","getLoggerBuilder","setApp","detectUser","build","throttle","delay","timeoutID","_ref$noTrailing","noTrailing","_ref$noLeading","noLeading","_ref$debounceMode","debounceMode","lastExec","clearExistingTimeout","clearTimeout","wrapper","_len","arguments_","elapsed","clear","cancel","_ref2$upcomingOnly","upcomingOnly","ChartPie","NcAppNavigationItem","NcProgressBar","loadingStorageStats","storageStats","computed","storageStatsTitle","_this$storageStats","_this$storageStats2","_this$storageStats3","usedQuotaByte","formatFileSize","used","quotaByte","quota","t","storageStatsTooltip","beforeMount","setInterval","throttleUpdateStorageStats","mounted","_this$storageStats4","_this$storageStats5","free","showStorageFullWarning","methods","debounceUpdateStorageStats","_ref$atBegin","atBegin","updateStorageStats","_response$data","_this$storageStats6","_response$data$data","_response$data$data2","logger","showError","translate","styleTagTransform","setAttributes","insert","domAPI","insertStyleElement","locals","stopPropagation","slot","min","Function","$el","appendChild","userConfig","show_hidden","crop_image_previews","sort_favorites_first","sort_folders_first","grid_view","useUserConfigStore","userConfigStore","Clipboard","NcAppSettingsDialog","NcAppSettingsSection","NcCheckboxRadioSwitch","NcInputField","Setting","_window$OCA","_getCurrentUser","_loadState$enable_non","OCA","Files","Settings","webdavUrl","generateRemoteUrl","getCurrentUser","uid","webdavDocs","appPasswordUrl","webdavUrlCopied","enableGridView","setting","beforeDestroy","close","onClose","setConfig","copyCloudId","select","showSuccess","_l","scopedSlots","_u","Cog","NavigationQuota","NcAppNavigation","NcIconSvgWrapper","SettingsModal","settingsOpened","currentViewId","_this$$route","currentView","views","find","$navigation","parentViews","order","childViews","watch","oldView","setActive","debug","showView","useExactRouteMatching","_this$childViews$view","_window","_window$close","Sidebar","onToggleExpand","isExpanded","expanded","_this$viewConfigStore","generateToNavigation","dir","openSettings","onSettingsClose","iconClass","sticky","compareNumbers","numberA","numberB","compareUnicode","stringA","stringB","localeCompare","abs","RE_NUMBERS","RE_LEADING_OR_TRAILING_WHITESPACES","RE_WHITESPACES","RE_INT_OR_FLOAT","RE_DATE","RE_LEADING_ZERO","RE_UNICODE_CHARACTERS","stringCompare","normalizeAlphaChunk","chunk","parseNumber","parsedNumber","normalizeNumericChunk","chunks","createChunkMap","normalizedString","createChunkMaps","chunksMaps","createChunks","isFunction","valueOf","isNull","isSymbol","isUndefined","getMappedValueRecord","stringValue","getTime","parsedDate","_unused","parseDate","numberify","createIdentifierFn","identifier","isInteger","orderBy","collection","identifiers","orders","validatedIdentifiers","identifierList","some","getIdentifiers","validatedOrders","orderList","getOrders","identifierFns","mappedCollection","element","recordA","recordB","indexA","valuesA","indexB","valuesB","ordersLength","_result","valueA","valueB","chunksA","chunksB","lengthA","lengthB","chunkA","chunkB","compareChunks","compareOtherTypes","compareMultiple","getElementByIndex","baseOrderBy","FileAction","displayName","iconSvgInline","InformationSvg","enabled","nodes","_nodes$0$root","root","permissions","Permission","NONE","OCP","goToRoute","fileid","useFilesStore","fileStore","roots","getNode","getNodes","ids","getRoot","service","updateNodes","acc","deleteNodes","setRoot","onDeletedNode","onCreatedNode","onUpdatedNode","usePathsStore","pathsStore","paths","getPath","addPath","_getNavigation","getNavigation","active","FileType","Folder","dirname","_children","parentId","parentFolder","useSelectionStore","selected","lastSelection","lastSelectedIndex","selection","setLastIndex","reset","uploader","useUploaderStore","getUploader","Directory","File","contents","super","_contents","_computeDirectorySize","lastModified","_computeDirectoryMtime","directory","entry","traverseTree","isFile","readDirectory","all","dirReader","createReader","getEntries","readEntries","results","createDirectoryIfNotExists","davClient","davGetClient","exists","createDirectory","recursive","stat","details","davGetDefaultPropfind","davResultToNode","resolveConflict","destination","conflicts","basename","uploads","renamed","openConflictPicker","showInfo","getQueue","PQueue","concurrency","MoveCopyAction","canMove","ALL","UPDATE","canCopy","_node$attributes$shar","_node$attributes","attributes","attribute","canDownload","rootPath","defaultRootUrl","hashCode","client","rootUrl","createClient","headers","requesttoken","getRequestToken","getPatcher","patch","_options$headers","request","getClient","resultToNode","userId","davParsePermissions","owner","filename","nodeData","mtime","lastmod","mime","hasPreview","failed","getContents","controller","AbortController","propfindPayload","CancelablePromise","onCancel","contentsResponse","getDirectoryContents","includeSelf","signal","folder","getSummaryFor","fileCount","folderCount","getActionForNodes","MOVE_OR_COPY","MOVE","COPY","handleCopyMoveNodeTo","overwrite","NodeStatus","LOADING","copySuffix","currentPath","davRootPath","destinationPath","otherNodes","otherNames","suffix","newName","ext","extname","getUniqueName","copyFile","hasConflict","deleteFile","moveFile","AxiosError","_error$response","_error$response2","_error$response3","openFilePickerForAction","fileIDs","filePicker","getFilePickerBuilder","allowDirectories","setFilter","CREATE","setMimeTypeFilter","setMultiSelect","startAt","setButtonFactory","_selection","buttons","dirnames","CopyIconSvg","FolderMoveSvg","FilePickerClosed","_node$root","execBatch","promises","dataTransferToFileTree","items","kind","_item$getAsEntry","_item$getAsEntry2","_item$webkitGetAsEntr","getAsEntry","webkitGetAsEntry","warned","fileTree","DataTransferItem","getAsFile","showWarning","onDropExternalFiles","uploadDirectoryContents","relativePath","joinPaths","upload","pause","start","errors","allSettled","onDropInternalFiles","isCopy","useDragAndDropStore","dragging","filesListWidth","_fileListEl$clientWid","fileListEl","clientWidth","$resizeObserver","ResizeObserver","contentRect","width","observe","disconnect","defineComponent","NcBreadcrumbs","NcBreadcrumb","mixins","filesListWidthMixin","draggingStore","filesStore","selectionStore","uploaderStore","dirs","sections","getFileIdFromPath","getDirDisplayName","disableDrop","isUploadInProgress","shouldShowBreadcrumbs","viewIcon","_this$currentView$ico","_this$currentView","selectedFiles","draggingFiles","getNodeFromId","_this$currentView2","_this$$navigation","fileId","onClick","_to$query","onDragOver","dataTransfer","dropEffect","onDrop","_event$dataTransfer","_event$dataTransfer2","_this$currentView3","canDrop","titleForSection","section","_section$to","ariaForSection","_section$to2","_setupProxy","_t","directives","rawName","expression","nativeOn","useActionsMenuStore","opened","useRenamingStore","renamingStore","renamingNode","FileMultipleIcon","FolderIcon","isSingleNode","isSingleFolder","summary","totalSize","total","parseInt","$refs","previewImg","replaceChildren","preview","parentNode","cloneNode","Preview","DragAndDropPreview","directive","vOnClickOutside","NcFile","Node","loading","dragover","gridMode","currentDir","currentFileId","_this$$route$params","_this$$route$query","_this$source","uniqueId","isLoading","extension","_this$source$attribut","isSelected","isRenaming","isRenamingSmallScreen","_this$fileid","_this$fileid$toString","_this$currentFileId","_this$currentFileId$t","canDrag","openedMenu","actionsMenuStore","_this$$el","closest","removeProperty","resetState","onRightClick","_this$$el2","setProperty","clientX","clientY","isMoreThanOneSelected","execDefaultAction","openDetailsIfAvailable","_sidebarAction$enable","sidebarAction","onDragLeave","contains","relatedTarget","onDragStart","_event$dataTransfer$c","clearData","image","$mount","$on","$off","getDragAndDropPreview","setDragImage","onDragEnd","_event$dataTransfer3","_event$dataTransfer4","updateRootElement","getFileActions","ArrowLeftIcon","ChevronRightIcon","CustomElementRender","NcActionButton","NcActions","NcActionSeparator","NcLoadingIcon","openedSubmenu","enabledActions","enabledInlineActions","_action$inline","inline","enabledRenderActions","renderInline","enabledDefaultActions","enabledMenuActions","DefaultType","HIDDEN","findIndex","topActionsIds","enabledSubmenuActions","getBoundariesElement","mountType","_attributes","actionDisplayName","onActionClick","isSubmenu","success","isMenu","_this$enabledSubmenuA","onBackToMenuClick","menuAction","_menuAction$$el$query","focus","_vm$openedSubmenu","_vm$openedSubmenu2","_action$title","refInFor","_action$title2","keyboardStore","onEvent","useKeyboardStore","ariaLabel","onSelectionChange","_this$keyboardStore","newSelectedIndex","isAlreadySelected","filesToSelect","resetSelection","_k","keyCode","forbiddenCharacters","NcTextField","renameLabel","linkTo","_this$$parent","is","role","tabindex","READ","immediate","renaming","startRenaming","checkInputValidity","_this$newName$trim","_this$newName","isFileNameValid","setCustomValidity","reportValidity","trimmedName","OC","blacklist_files_regex","checkIfNodeExists","char","_this$$refs$renameInp","extLength","renameInput","inputField","setSelectionRange","Event","stopRenaming","onRename","_this$newName$trim2","_this$newName2","oldName","oldEncodedSource","encodedSource","rename","Destination","Overwrite","domProps","StarSvg","_el$setAttribute","setAttribute","AccountGroupIcon","AccountPlusIcon","CollectivesIcon","FavoriteIcon","FileIcon","FolderOpenIcon","KeyIcon","LinkIcon","NetworkIcon","TagIcon","backgroundFailed","_this$source$toString","isFavorite","favorite","cropPreviews","previewUrl","searchParams","fileOverlay","PlayCircleIcon","folderOverlay","_this$source2","_this$source3","_this$source4","_this$source5","shareTypes","ShareType","SHARE_TYPE_LINK","SHARE_TYPE_EMAIL","src","_m","FileEntryActions","FileEntryCheckbox","FileEntryName","FileEntryPreview","NcDateTime","FileEntryMixin","isMtimeAvailable","isSizeAvailable","compact","rowListeners","dragstart","contextmenu","dragleave","dragend","drop","columns","sizeOpacity","ratio","round","pow","mtimeOpacity","_this$source$mtime","_this$source$mtime$ge","maxOpacityTime","mtimeTitle","moment","format","_g","column","_vm$currentView","inheritAttrs","header","currentFolder","mount","_this$currentFolder","classForColumn","_column$summary","keysOrMapper","reduced","$pinia","storeKey","sortingMode","_this$getConfig","sorting_mode","defaultSortKey","isAscSorting","_this$getConfig2","toggleSortBy","MenuDown","MenuUp","NcButton","filesSortingMixin","FilesListTableHeaderButton","selectAllBind","checked","isAllSelected","indeterminate","isSomeSelected","selectedNodes","isNoneSelected","ariaSortForMode","onToggleAll","dataComponent","dataKey","dataSources","extraProps","scrollToIndex","caption","beforeHeight","headerHeight","tableHeight","resizeObserver","isReady","bufferItems","columnCount","itemHeight","itemWidth","rowCount","ceil","floor","startIndex","shownItems","renderedItems","oldItemsKeys","$_recycledPool","unusedKeys","random","tbodyStyle","isOverScrolled","lastIndex","hiddenAfterItems","paddingTop","paddingBottom","oldColumnCount","_this$$refs","_this$$refs2","before","thead","debounce","_before$clientHeight","_thead$clientHeight","_root$clientHeight","clientHeight","onScroll","passive","targetRow","scrollTop","_this$_onScrollHandle","_onScrollHandle","requestAnimationFrame","topScroll","areSomeNodesLoading","inlineActions","selectionIds","failedIds","FilesListHeader","FilesListTableFooter","FilesListTableHeader","VirtualList","FilesListTableHeaderActions","FileEntry","FileEntryGrid","getFileListHeaders","openFileId","openFile","openfile","sortedHeaders","defaultCaption","viewCaption","sortableCaption","virtualListNote","scrollToFile","handleOpenFile","openSidebarForFile","getFileId","types","tableTop","table","tableBottom","height","TrayArrowDownIcon","canUpload","isQuotaExceeded","cantUploadLabel","mainContent","onContentDrop","_event$relatedTarget","_this$$el$querySelect","lastUpload","findLast","_upload$response","UploadStatus","FAILED","webkitRelativePath","_this$$route$params$v","isSharingEnabled","_getCapabilities","getCapabilities","files_sharing","BreadCrumbs","DragAndDropNotice","FilesListVirtual","ListViewIcon","NcAppContent","NcEmptyContent","PlusIcon","UploadPicker","ViewGridIcon","filterText","promise","Type","pageHeading","_this$currentView$nam","sortingParameters","_v$attributes","_v$attributes2","dirContentsSorted","filteredDirContent","dirContents","customColumn","_this$userConfigStore","showHidden","_file$attributes","hidden","isEmptyDir","isRefreshing","toPreviousDir","shareAttributes","_this$currentFolder2","_this$currentFolder3","shareButtonLabel","shareButtonType","SHARE_TYPE_USER","gridViewButtonLabel","_this$currentFolder4","canShare","SHARE","newView","fetchContent","newDir","oldDir","filesListVirtual","onSearch","unmounted","unsubscribe","_this$promise","$set","onUpload","_this$currentFolder5","onUploadFail","_upload$response2","parser","Parser","explicitRoot","parseStringPromise","_this$currentFolder6","searchEvent","openSharingSidebar","setActiveTab","toggleGridView","translatePlural","_vm$currentView2","emptyTitle","emptyCaption","NcContent","FilesList","Navigation","__webpack_nonce__","btoa","_window$OCA$Files","_window$OCP$Files","goTo","_provided","provideCache","toBeInstalled","provide","globalProperties","createPinia","observable","_settings","register","_defineProperty","_name","_el","_open","_close","FilesApp","_typeof","_exports","_setPrototypeOf","setPrototypeOf","_createSuper","Derived","hasNativeReflectConstruct","construct","sham","_isNativeReflectConstruct","Super","_getPrototypeOf","NewTarget","ReferenceError","_assertThisInitialized","_possibleConstructorReturn","getPrototypeOf","_createForOfIteratorHelper","allowArrayLike","it","minLen","_arrayLikeToArray","_unsupportedIterableToArray","F","s","done","f","normalCompletion","didErr","_e2","return","arr2","_classCallCheck","Constructor","_defineProperties","_createClass","protoProps","staticProps","_classPrivateFieldInitSpec","privateMap","privateCollection","_checkPrivateRedeclaration","_classPrivateFieldGet","receiver","_classApplyDescriptorGet","_classExtractFieldDescriptor","_classPrivateFieldSet","_classApplyDescriptorSet","cancelable","isCancelablePromise","_internals","_promise","CancelablePromiseInternal","_ref$executor","executor","_ref$internals","internals","isCanceled","onCancelList","_ref$promise","onfulfilled","onrejected","makeCancelable","createCallback","onfinally","runWhenCanceled","_this","finally","callbacks","_step","_iterator","_CancelablePromiseInt","subClass","superClass","_inherits","_super","iterable","makeAllCancelable","any","race","_default","onResult","arg","_step2","_iterator2","resolvable","___CSS_LOADER_URL_IMPORT_0___","___CSS_LOADER_URL_IMPORT_1___","___CSS_LOADER_EXPORT___","___CSS_LOADER_URL_REPLACEMENT_0___","___CSS_LOADER_URL_REPLACEMENT_1___","sax","opt","SAXParser","SAXStream","createStream","MAX_BUFFER_LENGTH","Stream","buffers","clearBuffers","q","bufferCheckPosition","lowercase","lowercasetags","looseCase","tags","closed","closedRoot","sawRoot","noscript","S","BEGIN","strictEntities","ENTITIES","XML_ENTITIES","attribList","xmlns","ns","rootNS","trackPosition","line","EVENTS","write","BEGIN_WHITESPACE","beginWhiteSpace","TEXT","starti","textNode","substring","isWhitespace","strictFail","TEXT_ENTITY","OPEN_WAKA","startTagPosition","SCRIPT","SCRIPT_ENDING","script","CLOSE_TAG","SGML_DECL","sgmlDecl","isMatch","nameStart","OPEN_TAG","tagName","PROC_INST","procInstName","procInstBody","pad","CDATA","emitNode","cdata","COMMENT","comment","DOCTYPE","doctype","isQuote","SGML_DECL_QUOTED","DOCTYPE_DTD","DOCTYPE_QUOTED","DOCTYPE_DTD_QUOTED","COMMENT_ENDING","COMMENT_ENDED","textopts","CDATA_ENDING","CDATA_ENDING_2","PROC_INST_ENDING","PROC_INST_BODY","nameBody","newTag","openTag","OPEN_TAG_SLASH","ATTRIB","closeTag","attribName","attribValue","ATTRIB_NAME","ATTRIB_VALUE","attrib","ATTRIB_NAME_SAW_WHITE","ATTRIB_VALUE_QUOTED","ATTRIB_VALUE_UNQUOTED","ATTRIB_VALUE_ENTITY_Q","ATTRIB_VALUE_CLOSED","isAttribEnd","ATTRIB_VALUE_ENTITY_U","CLOSE_TAG_SAW_WHITE","notMatch","returnState","buffer","unparsedEntities","parsedEntity","parseEntity","entity","entityBody","entityStart","maxAllowed","maxActual","closeText","checkBufferLength","resume","ex","streamWraps","ev","_parser","readable","me","onend","er","_decoder","Buffer","isBuffer","SD","XML_NAMESPACE","XMLNS_NAMESPACE","xml","stringFromCharCode","fromCodePoint","STATE","COMMENT_STARTING","nodeType","normalize","qname","qualName","local","qn","selfClosing","uri","nv","isSelfClosing","closeTo","num","entityLC","numStr","highSurrogate","lowSurrogate","codeUnits","codePoint","isFinite","RangeError","setImmediate","registerImmediate","html","channel","messagePrefix","onGlobalMessage","nextHandle","tasksByHandle","currentlyRunningATask","doc","attachTo","process","handle","nextTick","runIfPresent","postMessage","importScripts","postMessageIsAsynchronous","oldOnMessage","onmessage","canUsePostMessage","attachEvent","MessageChannel","port1","port2","onreadystatechange","removeChild","task","clearImmediate","g","d","RC","autostart","ignoreSameProgress","rate","lastTimestamp","lastProgress","historyTimeConstant","previousOutput","dt","report","progress","timestamp","deltaTimestamp","currentRate","estimate","Infinity","estimatedTime","Timeout","clearFn","_id","_clearFn","clearInterval","timeout","unref","enroll","msecs","_idleTimeoutId","_idleTimeout","unenroll","_unrefActive","_onTimeout","stripBOM","builder","defaults","escapeCDATA","requiresCDATA","wrapCDATA","hasProp","Builder","buildObject","rootObj","attrkey","charkey","rootElement","rootName","attr","txt","ele","up","att","xmldec","headless","allowSurrogateChars","renderOpts","explicitCharkey","normalizeTags","explicitArray","ignoreAttrs","mergeAttrs","validator","explicitChildren","childkey","charsAsChildren","includeWhiteChars","attrNameProcessors","attrValueProcessors","tagNameProcessors","valueProcessors","emptyTag","preserveChildrenOrder","chunkSize","isEmpty","processItem","processors","thing","parseString","assignOrPush","processAsync","xmlnskey","ctor","__super__","remaining","saxParser","error1","errThrown","ontext","ended","resultObject","EXPLICIT_CHARKEY","onopentag","processedKey","onclosetag","emptyStr","nodeName","objClone","old","xpath","getOwnPropertyNames","charChild","oncdata","prefixMatch","firstCharLowerCase","stripPrefix","parseFloat","ValidationError","Disconnected","Preceding","Following","Contains","ContainedBy","ImplementationSpecific","Element","Attribute","Text","CData","EntityReference","EntityDeclaration","ProcessingInstruction","Comment","Document","DocType","DocumentFragment","NotationDeclaration","Declaration","Raw","AttributeDeclaration","ElementDeclaration","Dummy","getValue","sources","proto","None","OpenTag","InsideTag","CloseTag","NodeType","XMLAttribute","debugInfo","attValue","isId","schemaTypeInfo","writer","filterOptions","isEqualNode","namespaceURI","localName","XMLCharacterData","XMLCData","XMLNode","substringData","count","appendData","insertData","deleteData","replaceData","XMLComment","XMLDOMErrorHandler","XMLDOMStringList","XMLDOMConfiguration","defaultParams","getParameter","canSetParameter","setParameter","handleError","XMLDOMImplementation","hasFeature","feature","createDocumentType","qualifiedName","publicId","systemId","createDocument","createHTMLDocument","getFeature","XMLDTDAttList","elementName","attributeName","attributeType","defaultValueType","dtdAttType","dtdAttDefault","dtdAttList","XMLDTDElement","dtdElementValue","dtdElement","XMLDTDEntity","pe","pubID","sysID","internal","dtdPubID","dtdSysID","nData","dtdNData","dtdEntityValue","dtdEntity","XMLDTDNotation","dtdNotation","XMLDeclaration","encoding","standalone","xmlVersion","xmlEncoding","xmlStandalone","declaration","XMLNamedNodeMap","XMLDocType","ref1","ref2","documentObject","attList","pEntity","notation","docType","ent","pent","not","XMLStringWriter","XMLStringifier","XMLDocument","documentURI","domConfig","rootObject","writerOptions","createDocumentFragment","createTextNode","createComment","createCDATASection","createProcessingInstruction","createAttribute","createEntityReference","getElementsByTagName","tagname","importNode","importedNode","createElementNS","createAttributeNS","getElementsByTagNameNS","elementId","adoptNode","normalizeDocument","renameNode","getElementsByClassName","classNames","eventInterface","createRange","createNodeIterator","whatToShow","createTreeWalker","WriterState","XMLElement","XMLProcessingInstruction","XMLRaw","XMLText","XMLDocumentCB","onData","onEnd","onDataCallback","onEndCallback","currentNode","currentLevel","openTags","documentStarted","documentCompleted","createChildNode","attName","attribs","dummy","instruction","openCurrent","oldValidationFlag","noValidation","keepNullAttributes","insTarget","insValue","processingInstruction","rootNodeName","closeNode","openNode","isOpen","indent","endline","isClosed","level","nod","dat","com","ins","dec","dtd","r","XMLDummy","isRoot","attributeMap","clonedSelf","clonedChild","removeAttribute","getAttributeNode","setAttributeNode","newAttr","removeAttributeNode","oldAttr","getAttributeNS","setAttributeNS","removeAttributeNS","getAttributeNodeNS","setAttributeNodeNS","hasAttribute","hasAttributeNS","setIdAttribute","setIdAttributeNS","setIdAttributeNode","idAttr","getNamedItem","setNamedItem","oldNode","removeNamedItem","getNamedItemNS","setNamedItemNS","removeNamedItemNS","DocumentPosition","XMLNodeList","parent1","baseURI","childNodeList","textContent","setParent","childNode","k","lastChild","len1","ref3","ignoreDecorators","convertAttKey","separateArrayItems","keepNullNodes","convertTextKey","convertCDataKey","convertCommentKey","convertRawKey","convertPIKey","insertBefore","newChild","refChild","removed","insertAfter","remove","commentBefore","commentAfter","instructionBefore","instructionAfter","importDocument","clonedRoot","u","importXMLBuilder","replaceChild","oldChild","hasChildNodes","isSupported","hasAttributes","compareDocumentPosition","other","isAncestor","isDescendant","isPreceding","isSameNode","lookupPrefix","isDefaultNamespace","lookupNamespaceURI","setUserData","getUserData","nodePos","thisPos","treePosition","isFollowing","found","pos","foreachTreeNode","func","XMLWriterBase","XMLStreamWriter","stream","isLastRootNode","writeChildNode","spaceBeforeSlash","childNodeCount","firstChildNode","allowEmpty","suppressPrettyCount","newline","assertLegalName","assertLegalChar","textEscape","attEscape","ampregex","noDoubleEncoding","previousSibling","nextSibling","splitText","replaceWholeText","content","filteredOptions","ref4","ref5","ref6","dontPrettyTextNodes","dontprettytextnodes","spacebeforeslash","user","indentLevel","openAttribute","closeAttribute","prettySuppressed","begin","stringWriter","streamWriter","implementation","writerState","setUid","Ne","_entries","registerEntry","validateEntry","unregisterEntry","getEntryIndex","C","P","Yt","toLocaleString","W","DEFAULT","Qt","_action","validateAction","_nc_fileactions","nr","_nc_filelistheader","N","DELETE","Z","nc","oc","ocs","V","_nc_dav_properties","L","_nc_dav_namespaces","sr","or","be","Y","crtime","J","NEW","LOCKED","Q","_data","_knownDavService","updateMtime","deleteProperty","isDavRessource","move","ye","D","ur","setHeaders","fetch","dr","ve","getcontentlength","Te","_views","_currentView","ar","_nc_navigation","Ie","_column","Ae","R","O","isExist","isEmptyObject","merge","isName","getAllMatches","nameRegexp","M","Oe","allowBooleanAttributes","unpairedTags","X","U","w","G","validate","Se","xe","z","code","tagClosed","tagStartPos","col","Ve","Ce","Pe","$e","Le","Fe","te","preserveOrder","attributeNamePrefix","attributesGroupName","textNodeName","ignoreAttributes","removeNSPrefix","parseTagValue","parseAttributeValue","trimValues","cdataPropName","numberParseOptions","hex","leadingZeros","eNotation","tagValueProcessor","attributeValueProcessor","stopNodes","alwaysCreateTextNode","commentPropName","processEntities","htmlEntities","ignoreDeclaration","ignorePiTags","transformTagName","transformAttributeName","updateTag","buildOptions","defaultOptions","Be","Xe","Ue","Ge","ze","He","Ke","We","je","Ye","Je","decimalPoint","T","addChild","tt","entityName","regx","entities","rt","skipLike","De","lastEntities","st","replaceEntitiesValue","$","ot","ut","resolveNameSpace","at","saveTextToParentTag","lastIndexOf","tagsNodeStack","tagExp","attrExpPresent","buildAttributesMap","closeIndex","docTypeEntities","parseTextData","rawTagName","isItStopNode","E","readStopNodeData","tagContent","lt","ft","ampEntity","ct","ht","pt","trimStart","gt","ne","ie","Nt","bt","Et","prettify","yt","apos","quot","space","cent","pound","yen","euro","copyright","reg","inr","addExternalEntities","parseXml","vt","Tt","se","Pt","xt","oe","H","indentBy","suppressUnpairedNode","suppressEmptyNode","endsWith","suppressBooleanAttributes","Ft","Vt","oneListGroup","isAttribute","attrPrefixLen","Rt","processTextOrObjNode","Lt","indentate","St","tagEndChar","newLine","j2x","buildTextValNode","attrStr","buildObjectNode","arrayNodeName","buildAttrPairStr","K","XMLParser","externalEntities","addEntity","XMLValidator","XMLBuilder","cr","_view","Ut","emptyView","Xt","gr","_nc_newfilemenu","numeric","sensitivity","CancelError","promiseState","canceled","rejected","PCancelable","userFunction","description","shouldReject","boolean","onFulfilled","onRejected","onFinally","TimeoutError","AbortError","getDOMException","errorMessage","DOMException","getAbortedReason","PriorityQueue","enqueue","priority","array","comparator","first","trunc","lowerBound","dequeue","carryoverConcurrencyCount","intervalCap","POSITIVE_INFINITY","interval","autoStart","queueClass","throwOnTimeout","canInitializeInterval","job","newConcurrency","_resolve","function_","throwIfAborted","milliseconds","customTimers","timer","cancelablePromise","sign","timeoutError","pTimeout","addAll","functions","onEmpty","onSizeLessThan","limit","onIdle","sizeBy","isPaused","AsyncResource","_type","thisArg","as","activeCount","generator","pendingCount","clearQueue","B","onUploadProgress","readAsArrayBuffer","appConfig","max_chunk_size","INITIALIZED","UPLOADING","ASSEMBLING","FINISHED","CANCELLED","ls","_source","_file","_isChunked","_chunks","_size","_uploaded","_startTime","_status","_controller","_response","isChunked","startTime","uploaded","IDLE","PAUSED","_destinationFolder","_isPublic","_uploadQueue","_jobQueue","_queueSize","_queueProgress","_queueStatus","_notifiers","isPublic","maxChunksSize","updateStats","addNotifier","bytes","staticRenderFns","_compiled","_scopeId","ssrContext","__VUE_SSR_CONTEXT__","_registeredComponents","_ssrRegister","$root","shadowRoot","_injectStyles","us","fill","viewBox","Ts","Cs","detectLocale","locale","json","charset","Language","translations","msgid","comments","translator","msgstr","Add","paused","msgid_plural","extracted","Cancel","Continue","New","addTranslation","$s","ngettext","gettext","vs","Plus","Upload","disabled","multiple","addLabel","cancelLabel","uploadLabel","progressLabel","progressTimeId","eta","timeLeft","newFileMenuEntries","uploadManager","totalQueueSize","uploadedQueueSize","hasFailure","isUploading","isAssembling","buttonName","setDestination","updateStatus","onUploadCompletion","onPick","Ss","Fs","form","setSeconds","toISOString","seconds","Js","decorative","svg","change","submit","$destroy","baseURL","escape","noRewrite","modRewriteWorking","_oc_webroot","Axios","CanceledError","isCancel","CancelToken","VERSION","isAxiosError","spread","toFormData","AxiosHeaders","HttpStatusCode","formToJSON","getAdapter","mergeConfig","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","loaded","__webpack_modules__","chunkIds","notFulfilled","fulfilled","getter","definition","chunkId","needAttach","scripts","onScriptComplete","doneFns","head","nmd","scriptUrl","currentScript","installedChunks","installedChunkData","realSrc","webpackJsonpCallback","parentChunkLoadingFunction","moreModules","runtime","chunkLoadingGlobal","__webpack_exports__"],"sourceRoot":""} \ No newline at end of file