Files
therinaldos.com/wedding-pics/apps/files_pdfviewer/js/files_pdfviewer-main.js
T
david ef1ff240d4
Build & Deploy to DigitalOcean Space / build (push) Failing after 2m38s
migrate therinaldos.com data
2024-05-05 15:50:45 -04:00

3 lines
650 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*! For license information please see files_pdfviewer-main.js.LICENSE.txt */
(()=>{var e,s,r={2200:(e,s,t)=>{"use strict";var r=t(7888),n=void 0,o=[];r.subscribe("csrf-token-update",(function(e){n=e.token,o.forEach((function(s){try{s(e.token)}catch(e){console.error("error updating CSRF token observer",e)}}))}));var i=function(e,s){return e?e.getAttribute(s):null},a=void 0;s.getCurrentUser=function(){if(void 0!==a)return a;var e=null===document||void 0===document?void 0:document.getElementsByTagName("head")[0];if(!e)return null;var s=i(e,"data-user");return a=null===s?null:{uid:s,displayName:i(e,"data-user-displayname"),isAdmin:!!window._oc_isadmin}},s.getRequestToken=function(){if(void 0===n){var e=null===document||void 0===document?void 0:document.getElementsByTagName("head")[0];n=e?e.getAttribute("data-requesttoken"):null}return n},s.onRequestTokenUpdate=function(e){o.push(e)}},7737:(e,s,t)=>{const r=t(5503),{MAX_LENGTH:n,MAX_SAFE_INTEGER:o}=t(5519),{safeRe:i,t:a}=t(8238),l=t(4433),{compareIdentifiers:m}=t(3242);class d{constructor(e,s){if(s=l(s),e instanceof d){if(e.loose===!!s.loose&&e.includePrerelease===!!s.includePrerelease)return e;e=e.version}else if("string"!=typeof e)throw new TypeError(`Invalid version. Must be a string. Got type "${typeof e}".`);if(e.length>n)throw new TypeError(`version is longer than ${n} characters`);r("SemVer",e,s),this.options=s,this.loose=!!s.loose,this.includePrerelease=!!s.includePrerelease;const t=e.trim().match(s.loose?i[a.LOOSE]:i[a.FULL]);if(!t)throw new TypeError(`Invalid Version: ${e}`);if(this.raw=e,this.major=+t[1],this.minor=+t[2],this.patch=+t[3],this.major>o||this.major<0)throw new TypeError("Invalid major version");if(this.minor>o||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>o||this.patch<0)throw new TypeError("Invalid patch version");t[4]?this.prerelease=t[4].split(".").map((e=>{if(/^[0-9]+$/.test(e)){const s=+e;if(s>=0&&s<o)return s}return e})):this.prerelease=[],this.build=t[5]?t[5].split("."):[],this.format()}format(){return this.version=`${this.major}.${this.minor}.${this.patch}`,this.prerelease.length&&(this.version+=`-${this.prerelease.join(".")}`),this.version}toString(){return this.version}compare(e){if(r("SemVer.compare",this.version,this.options,e),!(e instanceof d)){if("string"==typeof e&&e===this.version)return 0;e=new d(e,this.options)}return e.version===this.version?0:this.compareMain(e)||this.comparePre(e)}compareMain(e){return e instanceof d||(e=new d(e,this.options)),m(this.major,e.major)||m(this.minor,e.minor)||m(this.patch,e.patch)}comparePre(e){if(e instanceof d||(e=new d(e,this.options)),this.prerelease.length&&!e.prerelease.length)return-1;if(!this.prerelease.length&&e.prerelease.length)return 1;if(!this.prerelease.length&&!e.prerelease.length)return 0;let s=0;do{const t=this.prerelease[s],n=e.prerelease[s];if(r("prerelease compare",s,t,n),void 0===t&&void 0===n)return 0;if(void 0===n)return 1;if(void 0===t)return-1;if(t!==n)return m(t,n)}while(++s)}compareBuild(e){e instanceof d||(e=new d(e,this.options));let s=0;do{const t=this.build[s],n=e.build[s];if(r("prerelease compare",s,t,n),void 0===t&&void 0===n)return 0;if(void 0===n)return 1;if(void 0===t)return-1;if(t!==n)return m(t,n)}while(++s)}inc(e,s,t){switch(e){case"premajor":this.prerelease.length=0,this.patch=0,this.minor=0,this.major++,this.inc("pre",s,t);break;case"preminor":this.prerelease.length=0,this.patch=0,this.minor++,this.inc("pre",s,t);break;case"prepatch":this.prerelease.length=0,this.inc("patch",s,t),this.inc("pre",s,t);break;case"prerelease":0===this.prerelease.length&&this.inc("patch",s,t),this.inc("pre",s,t);break;case"major":0===this.minor&&0===this.patch&&0!==this.prerelease.length||this.major++,this.minor=0,this.patch=0,this.prerelease=[];break;case"minor":0===this.patch&&0!==this.prerelease.length||this.minor++,this.patch=0,this.prerelease=[];break;case"patch":0===this.prerelease.length&&this.patch++,this.prerelease=[];break;case"pre":{const e=Number(t)?1:0;if(!s&&!1===t)throw new Error("invalid increment argument: identifier is empty");if(0===this.prerelease.length)this.prerelease=[e];else{let r=this.prerelease.length;for(;--r>=0;)"number"==typeof this.prerelease[r]&&(this.prerelease[r]++,r=-2);if(-1===r){if(s===this.prerelease.join(".")&&!1===t)throw new Error("invalid increment argument: identifier already exists");this.prerelease.push(e)}}if(s){let r=[s,e];!1===t&&(r=[s]),0===m(this.prerelease[0],s)?isNaN(this.prerelease[1])&&(this.prerelease=r):this.prerelease=r}break}default:throw new Error(`invalid increment argument: ${e}`)}return this.raw=this.format(),this.build.length&&(this.raw+=`+${this.build.join(".")}`),this}}e.exports=d},2426:(e,s,t)=>{const r=t(7737);e.exports=(e,s)=>new r(e,s).major},7488:(e,s,t)=>{const r=t(7737);e.exports=(e,s,t=!1)=>{if(e instanceof r)return e;try{return new r(e,s)}catch(e){if(!t)return null;throw e}}},7907:(e,s,t)=>{const r=t(7488);e.exports=(e,s)=>{const t=r(e,s);return t?t.version:null}},5519:e=>{const s=Number.MAX_SAFE_INTEGER||9007199254740991;e.exports={MAX_LENGTH:256,MAX_SAFE_COMPONENT_LENGTH:16,MAX_SAFE_BUILD_LENGTH:250,MAX_SAFE_INTEGER:s,RELEASE_TYPES:["major","premajor","minor","preminor","patch","prepatch","prerelease"],SEMVER_SPEC_VERSION:"2.0.0",FLAG_INCLUDE_PRERELEASE:1,FLAG_LOOSE:2}},5503:(e,s,t)=>{var r=t(4155);const n="object"==typeof r&&r.env&&r.env.NODE_DEBUG&&/\bsemver\b/i.test(r.env.NODE_DEBUG)?(...e)=>console.error("SEMVER",...e):()=>{};e.exports=n},3242:e=>{const s=/^[0-9]+$/,t=(e,t)=>{const r=s.test(e),n=s.test(t);return r&&n&&(e=+e,t=+t),e===t?0:r&&!n?-1:n&&!r?1:e<t?-1:1};e.exports={compareIdentifiers:t,rcompareIdentifiers:(e,s)=>t(s,e)}},4433:e=>{const s=Object.freeze({loose:!0}),t=Object.freeze({});e.exports=e=>e?"object"!=typeof e?s:e:t},8238:(e,s,t)=>{const{MAX_SAFE_COMPONENT_LENGTH:r,MAX_SAFE_BUILD_LENGTH:n,MAX_LENGTH:o}=t(5519),i=t(5503),a=(s=e.exports={}).re=[],l=s.safeRe=[],m=s.src=[],d=s.t={};let g=0;const c="[a-zA-Z0-9-]",u=[["\\s",1],["\\d",o],[c,n]],f=(e,s,t)=>{const r=(e=>{for(const[s,t]of u)e=e.split(`${s}*`).join(`${s}{0,${t}}`).split(`${s}+`).join(`${s}{1,${t}}`);return e})(s),n=g++;i(e,n,s),d[e]=n,m[n]=s,a[n]=new RegExp(s,t?"g":void 0),l[n]=new RegExp(r,t?"g":void 0)};f("NUMERICIDENTIFIER","0|[1-9]\\d*"),f("NUMERICIDENTIFIERLOOSE","\\d+"),f("NONNUMERICIDENTIFIER",`\\d*[a-zA-Z-]${c}*`),f("MAINVERSION",`(${m[d.NUMERICIDENTIFIER]})\\.(${m[d.NUMERICIDENTIFIER]})\\.(${m[d.NUMERICIDENTIFIER]})`),f("MAINVERSIONLOOSE",`(${m[d.NUMERICIDENTIFIERLOOSE]})\\.(${m[d.NUMERICIDENTIFIERLOOSE]})\\.(${m[d.NUMERICIDENTIFIERLOOSE]})`),f("PRERELEASEIDENTIFIER",`(?:${m[d.NUMERICIDENTIFIER]}|${m[d.NONNUMERICIDENTIFIER]})`),f("PRERELEASEIDENTIFIERLOOSE",`(?:${m[d.NUMERICIDENTIFIERLOOSE]}|${m[d.NONNUMERICIDENTIFIER]})`),f("PRERELEASE",`(?:-(${m[d.PRERELEASEIDENTIFIER]}(?:\\.${m[d.PRERELEASEIDENTIFIER]})*))`),f("PRERELEASELOOSE",`(?:-?(${m[d.PRERELEASEIDENTIFIERLOOSE]}(?:\\.${m[d.PRERELEASEIDENTIFIERLOOSE]})*))`),f("BUILDIDENTIFIER",`${c}+`),f("BUILD",`(?:\\+(${m[d.BUILDIDENTIFIER]}(?:\\.${m[d.BUILDIDENTIFIER]})*))`),f("FULLPLAIN",`v?${m[d.MAINVERSION]}${m[d.PRERELEASE]}?${m[d.BUILD]}?`),f("FULL",`^${m[d.FULLPLAIN]}$`),f("LOOSEPLAIN",`[v=\\s]*${m[d.MAINVERSIONLOOSE]}${m[d.PRERELEASELOOSE]}?${m[d.BUILD]}?`),f("LOOSE",`^${m[d.LOOSEPLAIN]}$`),f("GTLT","((?:<|>)?=?)"),f("XRANGEIDENTIFIERLOOSE",`${m[d.NUMERICIDENTIFIERLOOSE]}|x|X|\\*`),f("XRANGEIDENTIFIER",`${m[d.NUMERICIDENTIFIER]}|x|X|\\*`),f("XRANGEPLAIN",`[v=\\s]*(${m[d.XRANGEIDENTIFIER]})(?:\\.(${m[d.XRANGEIDENTIFIER]})(?:\\.(${m[d.XRANGEIDENTIFIER]})(?:${m[d.PRERELEASE]})?${m[d.BUILD]}?)?)?`),f("XRANGEPLAINLOOSE",`[v=\\s]*(${m[d.XRANGEIDENTIFIERLOOSE]})(?:\\.(${m[d.XRANGEIDENTIFIERLOOSE]})(?:\\.(${m[d.XRANGEIDENTIFIERLOOSE]})(?:${m[d.PRERELEASELOOSE]})?${m[d.BUILD]}?)?)?`),f("XRANGE",`^${m[d.GTLT]}\\s*${m[d.XRANGEPLAIN]}$`),f("XRANGELOOSE",`^${m[d.GTLT]}\\s*${m[d.XRANGEPLAINLOOSE]}$`),f("COERCE",`(^|[^\\d])(\\d{1,${r}})(?:\\.(\\d{1,${r}}))?(?:\\.(\\d{1,${r}}))?(?:$|[^\\d])`),f("COERCERTL",m[d.COERCE],!0),f("LONETILDE","(?:~>?)"),f("TILDETRIM",`(\\s*)${m[d.LONETILDE]}\\s+`,!0),s.tildeTrimReplace="$1~",f("TILDE",`^${m[d.LONETILDE]}${m[d.XRANGEPLAIN]}$`),f("TILDELOOSE",`^${m[d.LONETILDE]}${m[d.XRANGEPLAINLOOSE]}$`),f("LONECARET","(?:\\^)"),f("CARETTRIM",`(\\s*)${m[d.LONECARET]}\\s+`,!0),s.caretTrimReplace="$1^",f("CARET",`^${m[d.LONECARET]}${m[d.XRANGEPLAIN]}$`),f("CARETLOOSE",`^${m[d.LONECARET]}${m[d.XRANGEPLAINLOOSE]}$`),f("COMPARATORLOOSE",`^${m[d.GTLT]}\\s*(${m[d.LOOSEPLAIN]})$|^$`),f("COMPARATOR",`^${m[d.GTLT]}\\s*(${m[d.FULLPLAIN]})$|^$`),f("COMPARATORTRIM",`(\\s*)${m[d.GTLT]}\\s*(${m[d.LOOSEPLAIN]}|${m[d.XRANGEPLAIN]})`,!0),s.comparatorTrimReplace="$1$2$3",f("HYPHENRANGE",`^\\s*(${m[d.XRANGEPLAIN]})\\s+-\\s+(${m[d.XRANGEPLAIN]})\\s*$`),f("HYPHENRANGELOOSE",`^\\s*(${m[d.XRANGEPLAINLOOSE]})\\s+-\\s+(${m[d.XRANGEPLAINLOOSE]})\\s*$`),f("STAR","(<|>)?=?\\s*\\*"),f("GTE0","^\\s*>=\\s*0\\.0\\.0\\s*$"),f("GTE0PRE","^\\s*>=\\s*0\\.0\\.0-0\\s*$")},1356:(e,s,t)=>{"use strict";t(9070),t(2165),t(6992),t(8783),t(3948),Object.defineProperty(s,"__esModule",{value:!0}),s.ConsoleLogger=void 0,s.buildConsoleLogger=function(e){return new a(e)},t(9601),t(6649),t(6078),t(2526),t(1817),t(1539),t(9653);var r=t(6);function n(e){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(e)}function o(e,s){for(var t=0;t<s.length;t++){var r=s[t];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,i(r.key),r)}}function i(e){var s=function(e,s){if("object"!==n(e)||null===e)return e;var t=e[Symbol.toPrimitive];if(void 0!==t){var r=t.call(e,s||"default");if("object"!==n(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===s?String:Number)(e)}(e,"string");return"symbol"===n(s)?s:String(s)}var a=function(){function e(s){var t,r,n;!function(e,s){if(!(e instanceof s))throw new TypeError("Cannot call a class as a function")}(this,e),t=this,n=void 0,(r=i(r="context"))in t?Object.defineProperty(t,r,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[r]=n,this.context=s||{}}var s,t,a;return s=e,(t=[{key:"formatMessage",value:function(e,s,t){var n="["+r.LogLevel[s].toUpperCase()+"] ";return t&&t.app&&(n+=t.app+": "),"string"==typeof e?n+e:(n+="Unexpected ".concat(e.name),e.message&&(n+=' "'.concat(e.message,'"')),s===r.LogLevel.Debug&&e.stack&&(n+="\n\nStack trace:\n".concat(e.stack)),n)}},{key:"log",value:function(e,s,t){var o,i;if(!("number"==typeof(null===(o=this.context)||void 0===o?void 0:o.level)&&e<(null===(i=this.context)||void 0===i?void 0:i.level)))switch("object"===n(s)&&void 0===(null==t?void 0:t.error)&&(t.error=s),e){case r.LogLevel.Debug:console.debug(this.formatMessage(s,r.LogLevel.Debug,t),t);break;case r.LogLevel.Info:console.info(this.formatMessage(s,r.LogLevel.Info,t),t);break;case r.LogLevel.Warn:console.warn(this.formatMessage(s,r.LogLevel.Warn,t),t);break;case r.LogLevel.Error:console.error(this.formatMessage(s,r.LogLevel.Error,t),t);break;case r.LogLevel.Fatal:default:console.error(this.formatMessage(s,r.LogLevel.Fatal,t),t)}}},{key:"debug",value:function(e,s){this.log(r.LogLevel.Debug,e,Object.assign({},this.context,s))}},{key:"info",value:function(e,s){this.log(r.LogLevel.Info,e,Object.assign({},this.context,s))}},{key:"warn",value:function(e,s){this.log(r.LogLevel.Warn,e,Object.assign({},this.context,s))}},{key:"error",value:function(e,s){this.log(r.LogLevel.Error,e,Object.assign({},this.context,s))}},{key:"fatal",value:function(e,s){this.log(r.LogLevel.Fatal,e,Object.assign({},this.context,s))}}])&&o(s.prototype,t),a&&o(s,a),Object.defineProperty(s,"prototype",{writable:!1}),e}();s.ConsoleLogger=a},5058:(e,s,t)=>{"use strict";t(9070),t(2165),t(6992),t(8783),t(3948),Object.defineProperty(s,"__esModule",{value:!0}),s.LoggerBuilder=void 0,t(6649),t(6078),t(2526),t(1817),t(1539),t(9653);var r=t(2200),n=t(6);function o(e){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o(e)}function i(e,s){for(var t=0;t<s.length;t++){var r=s[t];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,l(r.key),r)}}function a(e,s,t){return(s=l(s))in e?Object.defineProperty(e,s,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[s]=t,e}function l(e){var s=function(e,s){if("object"!==o(e)||null===e)return e;var t=e[Symbol.toPrimitive];if(void 0!==t){var r=t.call(e,s||"default");if("object"!==o(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===s?String:Number)(e)}(e,"string");return"symbol"===o(s)?s:String(s)}var m=function(){function e(s){!function(e,s){if(!(e instanceof s))throw new TypeError("Cannot call a class as a function")}(this,e),a(this,"context",void 0),a(this,"factory",void 0),this.context={},this.factory=s}var s,t,o;return s=e,(t=[{key:"setApp",value:function(e){return this.context.app=e,this}},{key:"setLogLevel",value:function(e){return this.context.level=e,this}},{key:"setUid",value:function(e){return this.context.uid=e,this}},{key:"detectUser",value:function(){var e=(0,r.getCurrentUser)();return null!==e&&(this.context.uid=e.uid),this}},{key:"detectLogLevel",value:function(){var e=this;return function s(){var t,r;"complete"===document.readyState||"interactive"===document.readyState?(e.context.level=null!==(t=null===(r=window._oc_config)||void 0===r?void 0:r.loglevel)&&void 0!==t?t:n.LogLevel.Warn,window._oc_debug&&(e.context.level=n.LogLevel.Debug),document.removeEventListener("readystatechange",s)):document.addEventListener("readystatechange",s)}(),this}},{key:"build",value:function(){return void 0===this.context.level&&this.detectLogLevel(),this.factory(this.context)}}])&&i(s.prototype,t),o&&i(s,o),Object.defineProperty(s,"prototype",{writable:!1}),e}();s.LoggerBuilder=m},6:(e,s,t)=>{"use strict";t(9070),Object.defineProperty(s,"__esModule",{value:!0}),s.LogLevel=void 0;var r=function(e){return e[e.Debug=0]="Debug",e[e.Info=1]="Info",e[e.Warn=2]="Warn",e[e.Error=3]="Error",e[e.Fatal=4]="Fatal",e}({});s.LogLevel=r},7499:(e,s,t)=>{"use strict";t(9070),s.IY=i;var r=t(1356),n=t(5058),o=t(6);function i(){return new n.LoggerBuilder(r.buildConsoleLogger)}},9753:(e,s,t)=>{"use strict";Object.defineProperty(s,"__esModule",{value:!0}),s.generateUrl=s.generateRemoteUrl=s.generateOcsUrl=s.generateFilePath=void 0,s.getAppRootUrl=i,s.getRootUrl=o,s.linkTo=s.imagePath=void 0,t(5306);s.linkTo=(e,s)=>n(e,"",s);s.generateRemoteUrl=e=>window.location.protocol+"//"+window.location.host+(e=>o()+"/remote.php/"+e)(e);s.generateOcsUrl=(e,s,t)=>{const n=1===Object.assign({ocsVersion:2},t||{}).ocsVersion?1:2;return window.location.protocol+"//"+window.location.host+o()+"/ocs/v"+n+".php"+r(e,s,t)};const r=(e,s,t)=>{const r=Object.assign({escape:!0},t||{});return"/"!==e.charAt(0)&&(e="/"+e),n=(n=s||{})||{},e.replace(/{([^{}]*)}/g,(function(e,s){var t=n[s];return r.escape?"string"==typeof t||"number"==typeof t?encodeURIComponent(t.toString()):encodeURIComponent(e):"string"==typeof t||"number"==typeof t?t.toString():e}));var n};s.generateUrl=(e,s,t)=>{var n;const i=Object.assign({noRewrite:!1},t||{});return!0!==(null===(n=window)||void 0===n||null===(n=n.OC)||void 0===n||null===(n=n.config)||void 0===n?void 0:n.modRewriteWorking)||i.noRewrite?o()+"/index.php"+r(e,s,t):o()+r(e,s,t)};s.imagePath=(e,s)=>-1===s.indexOf(".")?n(e,"img",s+".svg"):n(e,"img",s);const n=(e,s,t)=>{var r;const n=-1!==(null===(r=window)||void 0===r||null===(r=r.OC)||void 0===r||null===(r=r.coreApps)||void 0===r?void 0:r.indexOf(e));let a=o();return"php"!==t.substring(t.length-3)||n?"php"===t.substring(t.length-3)||n?(a+="settings"!==e&&"core"!==e&&"search"!==e||"ajax"!==s?"/":"/index.php/",n||(a+="apps/"),""!==e&&(a+=e+="/"),s&&(a+=s+"/"),a+=t):(a=i(e),s&&(a+="/"+s+"/"),"/"!==a.substring(a.length-1)&&(a+="/"),a+=t):(a+="/index.php/apps/"+e,"index.php"!==t&&(a+="/",s&&(a+=encodeURI(s+"/")),a+=t)),a};function o(){let e=window._oc_webroot;if(void 0===e){e=location.pathname;const s=e.indexOf("/index.php/");e=-1!==s?e.substr(0,s):e.substr(0,e.lastIndexOf("/"))}return e}function i(e){var s,t;return null!==(t=(null!==(s=window._oc_appswebroots)&&void 0!==s?s:{})[e])&&void 0!==t?t:""}s.generateFilePath=n},9742:(e,s)=>{"use strict";s.byteLength=function(e){var s=a(e),t=s[0],r=s[1];return 3*(t+r)/4-r},s.toByteArray=function(e){var s,t,o=a(e),i=o[0],l=o[1],m=new n(function(e,s,t){return 3*(s+t)/4-t}(0,i,l)),d=0,g=l>0?i-4:i;for(t=0;t<g;t+=4)s=r[e.charCodeAt(t)]<<18|r[e.charCodeAt(t+1)]<<12|r[e.charCodeAt(t+2)]<<6|r[e.charCodeAt(t+3)],m[d++]=s>>16&255,m[d++]=s>>8&255,m[d++]=255&s;2===l&&(s=r[e.charCodeAt(t)]<<2|r[e.charCodeAt(t+1)]>>4,m[d++]=255&s);1===l&&(s=r[e.charCodeAt(t)]<<10|r[e.charCodeAt(t+1)]<<4|r[e.charCodeAt(t+2)]>>2,m[d++]=s>>8&255,m[d++]=255&s);return m},s.fromByteArray=function(e){for(var s,r=e.length,n=r%3,o=[],i=16383,a=0,m=r-n;a<m;a+=i)o.push(l(e,a,a+i>m?m:a+i));1===n?(s=e[r-1],o.push(t[s>>2]+t[s<<4&63]+"==")):2===n&&(s=(e[r-2]<<8)+e[r-1],o.push(t[s>>10]+t[s>>4&63]+t[s<<2&63]+"="));return o.join("")};for(var t=[],r=[],n="undefined"!=typeof Uint8Array?Uint8Array:Array,o="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",i=0;i<64;++i)t[i]=o[i],r[o.charCodeAt(i)]=i;function a(e){var s=e.length;if(s%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var t=e.indexOf("=");return-1===t&&(t=s),[t,t===s?0:4-t%4]}function l(e,s,r){for(var n,o,i=[],a=s;a<r;a+=3)n=(e[a]<<16&16711680)+(e[a+1]<<8&65280)+(255&e[a+2]),i.push(t[(o=n)>>18&63]+t[o>>12&63]+t[o>>6&63]+t[63&o]);return i.join("")}r["-".charCodeAt(0)]=62,r["_".charCodeAt(0)]=63},8764:(e,s,t)=>{"use strict";const r=t(9742),n=t(645),o="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;s.Buffer=l,s.SlowBuffer=function(e){+e!=e&&(e=0);return l.alloc(+e)},s.INSPECT_MAX_BYTES=50;const i=2147483647;function a(e){if(e>i)throw new RangeError('The value "'+e+'" is invalid for option "size"');const s=new Uint8Array(e);return Object.setPrototypeOf(s,l.prototype),s}function l(e,s,t){if("number"==typeof e){if("string"==typeof s)throw new TypeError('The "string" argument must be of type string. Received type number');return g(e)}return m(e,s,t)}function m(e,s,t){if("string"==typeof e)return function(e,s){"string"==typeof s&&""!==s||(s="utf8");if(!l.isEncoding(s))throw new TypeError("Unknown encoding: "+s);const t=0|p(e,s);let r=a(t);const n=r.write(e,s);n!==t&&(r=r.slice(0,n));return r}(e,s);if(ArrayBuffer.isView(e))return function(e){if(K(e,Uint8Array)){const s=new Uint8Array(e);return u(s.buffer,s.byteOffset,s.byteLength)}return c(e)}(e);if(null==e)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e);if(K(e,ArrayBuffer)||e&&K(e.buffer,ArrayBuffer))return u(e,s,t);if("undefined"!=typeof SharedArrayBuffer&&(K(e,SharedArrayBuffer)||e&&K(e.buffer,SharedArrayBuffer)))return u(e,s,t);if("number"==typeof e)throw new TypeError('The "value" argument must not be of type number. Received type number');const r=e.valueOf&&e.valueOf();if(null!=r&&r!==e)return l.from(r,s,t);const n=function(e){if(l.isBuffer(e)){const s=0|f(e.length),t=a(s);return 0===t.length||e.copy(t,0,0,s),t}if(void 0!==e.length)return"number"!=typeof e.length||Y(e.length)?a(0):c(e);if("Buffer"===e.type&&Array.isArray(e.data))return c(e.data)}(e);if(n)return n;if("undefined"!=typeof Symbol&&null!=Symbol.toPrimitive&&"function"==typeof e[Symbol.toPrimitive])return l.from(e[Symbol.toPrimitive]("string"),s,t);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e)}function d(e){if("number"!=typeof e)throw new TypeError('"size" argument must be of type number');if(e<0)throw new RangeError('The value "'+e+'" is invalid for option "size"')}function g(e){return d(e),a(e<0?0:0|f(e))}function c(e){const s=e.length<0?0:0|f(e.length),t=a(s);for(let r=0;r<s;r+=1)t[r]=255&e[r];return t}function u(e,s,t){if(s<0||e.byteLength<s)throw new RangeError('"offset" is outside of buffer bounds');if(e.byteLength<s+(t||0))throw new RangeError('"length" is outside of buffer bounds');let r;return r=void 0===s&&void 0===t?new Uint8Array(e):void 0===t?new Uint8Array(e,s):new Uint8Array(e,s,t),Object.setPrototypeOf(r,l.prototype),r}function f(e){if(e>=i)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+i.toString(16)+" bytes");return 0|e}function p(e,s){if(l.isBuffer(e))return e.length;if(ArrayBuffer.isView(e)||K(e,ArrayBuffer))return e.byteLength;if("string"!=typeof e)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof e);const t=e.length,r=arguments.length>2&&!0===arguments[2];if(!r&&0===t)return 0;let n=!1;for(;;)switch(s){case"ascii":case"latin1":case"binary":return t;case"utf8":case"utf-8":return V(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*t;case"hex":return t>>>1;case"base64":return q(e).length;default:if(n)return r?-1:V(e).length;s=(""+s).toLowerCase(),n=!0}}function h(e,s,t){let r=!1;if((void 0===s||s<0)&&(s=0),s>this.length)return"";if((void 0===t||t>this.length)&&(t=this.length),t<=0)return"";if((t>>>=0)<=(s>>>=0))return"";for(e||(e="utf8");;)switch(e){case"hex":return R(this,s,t);case"utf8":case"utf-8":return b(this,s,t);case"ascii":return L(this,s,t);case"latin1":case"binary":return k(this,s,t);case"base64":return x(this,s,t);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return A(this,s,t);default:if(r)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),r=!0}}function y(e,s,t){const r=e[s];e[s]=e[t],e[t]=r}function w(e,s,t,r,n){if(0===e.length)return-1;if("string"==typeof t?(r=t,t=0):t>2147483647?t=2147483647:t<-2147483648&&(t=-2147483648),Y(t=+t)&&(t=n?0:e.length-1),t<0&&(t=e.length+t),t>=e.length){if(n)return-1;t=e.length-1}else if(t<0){if(!n)return-1;t=0}if("string"==typeof s&&(s=l.from(s,r)),l.isBuffer(s))return 0===s.length?-1:v(e,s,t,r,n);if("number"==typeof s)return s&=255,"function"==typeof Uint8Array.prototype.indexOf?n?Uint8Array.prototype.indexOf.call(e,s,t):Uint8Array.prototype.lastIndexOf.call(e,s,t):v(e,[s],t,r,n);throw new TypeError("val must be string, number or Buffer")}function v(e,s,t,r,n){let o,i=1,a=e.length,l=s.length;if(void 0!==r&&("ucs2"===(r=String(r).toLowerCase())||"ucs-2"===r||"utf16le"===r||"utf-16le"===r)){if(e.length<2||s.length<2)return-1;i=2,a/=2,l/=2,t/=2}function m(e,s){return 1===i?e[s]:e.readUInt16BE(s*i)}if(n){let r=-1;for(o=t;o<a;o++)if(m(e,o)===m(s,-1===r?0:o-r)){if(-1===r&&(r=o),o-r+1===l)return r*i}else-1!==r&&(o-=o-r),r=-1}else for(t+l>a&&(t=a-l),o=t;o>=0;o--){let t=!0;for(let r=0;r<l;r++)if(m(e,o+r)!==m(s,r)){t=!1;break}if(t)return o}return-1}function F(e,s,t,r){t=Number(t)||0;const n=e.length-t;r?(r=Number(r))>n&&(r=n):r=n;const o=s.length;let i;for(r>o/2&&(r=o/2),i=0;i<r;++i){const r=parseInt(s.substr(2*i,2),16);if(Y(r))return i;e[t+i]=r}return i}function T(e,s,t,r){return W(V(s,e.length-t),e,t,r)}function N(e,s,t,r){return W(function(e){const s=[];for(let t=0;t<e.length;++t)s.push(255&e.charCodeAt(t));return s}(s),e,t,r)}function C(e,s,t,r){return W(q(s),e,t,r)}function S(e,s,t,r){return W(function(e,s){let t,r,n;const o=[];for(let i=0;i<e.length&&!((s-=2)<0);++i)t=e.charCodeAt(i),r=t>>8,n=t%256,o.push(n),o.push(r);return o}(s,e.length-t),e,t,r)}function x(e,s,t){return 0===s&&t===e.length?r.fromByteArray(e):r.fromByteArray(e.slice(s,t))}function b(e,s,t){t=Math.min(e.length,t);const r=[];let n=s;for(;n<t;){const s=e[n];let o=null,i=s>239?4:s>223?3:s>191?2:1;if(n+i<=t){let t,r,a,l;switch(i){case 1:s<128&&(o=s);break;case 2:t=e[n+1],128==(192&t)&&(l=(31&s)<<6|63&t,l>127&&(o=l));break;case 3:t=e[n+1],r=e[n+2],128==(192&t)&&128==(192&r)&&(l=(15&s)<<12|(63&t)<<6|63&r,l>2047&&(l<55296||l>57343)&&(o=l));break;case 4:t=e[n+1],r=e[n+2],a=e[n+3],128==(192&t)&&128==(192&r)&&128==(192&a)&&(l=(15&s)<<18|(63&t)<<12|(63&r)<<6|63&a,l>65535&&l<1114112&&(o=l))}}null===o?(o=65533,i=1):o>65535&&(o-=65536,r.push(o>>>10&1023|55296),o=56320|1023&o),r.push(o),n+=i}return function(e){const s=e.length;if(s<=M)return String.fromCharCode.apply(String,e);let t="",r=0;for(;r<s;)t+=String.fromCharCode.apply(String,e.slice(r,r+=M));return t}(r)}s.kMaxLength=i,l.TYPED_ARRAY_SUPPORT=function(){try{const e=new Uint8Array(1),s={foo:function(){return 42}};return Object.setPrototypeOf(s,Uint8Array.prototype),Object.setPrototypeOf(e,s),42===e.foo()}catch(e){return!1}}(),l.TYPED_ARRAY_SUPPORT||"undefined"==typeof console||"function"!=typeof console.error||console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support."),Object.defineProperty(l.prototype,"parent",{enumerable:!0,get:function(){if(l.isBuffer(this))return this.buffer}}),Object.defineProperty(l.prototype,"offset",{enumerable:!0,get:function(){if(l.isBuffer(this))return this.byteOffset}}),l.poolSize=8192,l.from=function(e,s,t){return m(e,s,t)},Object.setPrototypeOf(l.prototype,Uint8Array.prototype),Object.setPrototypeOf(l,Uint8Array),l.alloc=function(e,s,t){return function(e,s,t){return d(e),e<=0?a(e):void 0!==s?"string"==typeof t?a(e).fill(s,t):a(e).fill(s):a(e)}(e,s,t)},l.allocUnsafe=function(e){return g(e)},l.allocUnsafeSlow=function(e){return g(e)},l.isBuffer=function(e){return null!=e&&!0===e._isBuffer&&e!==l.prototype},l.compare=function(e,s){if(K(e,Uint8Array)&&(e=l.from(e,e.offset,e.byteLength)),K(s,Uint8Array)&&(s=l.from(s,s.offset,s.byteLength)),!l.isBuffer(e)||!l.isBuffer(s))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(e===s)return 0;let t=e.length,r=s.length;for(let n=0,o=Math.min(t,r);n<o;++n)if(e[n]!==s[n]){t=e[n],r=s[n];break}return t<r?-1:r<t?1:0},l.isEncoding=function(e){switch(String(e).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},l.concat=function(e,s){if(!Array.isArray(e))throw new TypeError('"list" argument must be an Array of Buffers');if(0===e.length)return l.alloc(0);let t;if(void 0===s)for(s=0,t=0;t<e.length;++t)s+=e[t].length;const r=l.allocUnsafe(s);let n=0;for(t=0;t<e.length;++t){let s=e[t];if(K(s,Uint8Array))n+s.length>r.length?(l.isBuffer(s)||(s=l.from(s)),s.copy(r,n)):Uint8Array.prototype.set.call(r,s,n);else{if(!l.isBuffer(s))throw new TypeError('"list" argument must be an Array of Buffers');s.copy(r,n)}n+=s.length}return r},l.byteLength=p,l.prototype._isBuffer=!0,l.prototype.swap16=function(){const e=this.length;if(e%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let s=0;s<e;s+=2)y(this,s,s+1);return this},l.prototype.swap32=function(){const e=this.length;if(e%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(let s=0;s<e;s+=4)y(this,s,s+3),y(this,s+1,s+2);return this},l.prototype.swap64=function(){const e=this.length;if(e%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(let s=0;s<e;s+=8)y(this,s,s+7),y(this,s+1,s+6),y(this,s+2,s+5),y(this,s+3,s+4);return this},l.prototype.toString=function(){const e=this.length;return 0===e?"":0===arguments.length?b(this,0,e):h.apply(this,arguments)},l.prototype.toLocaleString=l.prototype.toString,l.prototype.equals=function(e){if(!l.isBuffer(e))throw new TypeError("Argument must be a Buffer");return this===e||0===l.compare(this,e)},l.prototype.inspect=function(){let e="";const t=s.INSPECT_MAX_BYTES;return e=this.toString("hex",0,t).replace(/(.{2})/g,"$1 ").trim(),this.length>t&&(e+=" ... "),"<Buffer "+e+">"},o&&(l.prototype[o]=l.prototype.inspect),l.prototype.compare=function(e,s,t,r,n){if(K(e,Uint8Array)&&(e=l.from(e,e.offset,e.byteLength)),!l.isBuffer(e))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof e);if(void 0===s&&(s=0),void 0===t&&(t=e?e.length:0),void 0===r&&(r=0),void 0===n&&(n=this.length),s<0||t>e.length||r<0||n>this.length)throw new RangeError("out of range index");if(r>=n&&s>=t)return 0;if(r>=n)return-1;if(s>=t)return 1;if(this===e)return 0;let o=(n>>>=0)-(r>>>=0),i=(t>>>=0)-(s>>>=0);const a=Math.min(o,i),m=this.slice(r,n),d=e.slice(s,t);for(let e=0;e<a;++e)if(m[e]!==d[e]){o=m[e],i=d[e];break}return o<i?-1:i<o?1:0},l.prototype.includes=function(e,s,t){return-1!==this.indexOf(e,s,t)},l.prototype.indexOf=function(e,s,t){return w(this,e,s,t,!0)},l.prototype.lastIndexOf=function(e,s,t){return w(this,e,s,t,!1)},l.prototype.write=function(e,s,t,r){if(void 0===s)r="utf8",t=this.length,s=0;else if(void 0===t&&"string"==typeof s)r=s,t=this.length,s=0;else{if(!isFinite(s))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");s>>>=0,isFinite(t)?(t>>>=0,void 0===r&&(r="utf8")):(r=t,t=void 0)}const n=this.length-s;if((void 0===t||t>n)&&(t=n),e.length>0&&(t<0||s<0)||s>this.length)throw new RangeError("Attempt to write outside buffer bounds");r||(r="utf8");let o=!1;for(;;)switch(r){case"hex":return F(this,e,s,t);case"utf8":case"utf-8":return T(this,e,s,t);case"ascii":case"latin1":case"binary":return N(this,e,s,t);case"base64":return C(this,e,s,t);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return S(this,e,s,t);default:if(o)throw new TypeError("Unknown encoding: "+r);r=(""+r).toLowerCase(),o=!0}},l.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};const M=4096;function L(e,s,t){let r="";t=Math.min(e.length,t);for(let n=s;n<t;++n)r+=String.fromCharCode(127&e[n]);return r}function k(e,s,t){let r="";t=Math.min(e.length,t);for(let n=s;n<t;++n)r+=String.fromCharCode(e[n]);return r}function R(e,s,t){const r=e.length;(!s||s<0)&&(s=0),(!t||t<0||t>r)&&(t=r);let n="";for(let r=s;r<t;++r)n+=X[e[r]];return n}function A(e,s,t){const r=e.slice(s,t);let n="";for(let e=0;e<r.length-1;e+=2)n+=String.fromCharCode(r[e]+256*r[e+1]);return n}function E(e,s,t){if(e%1!=0||e<0)throw new RangeError("offset is not uint");if(e+s>t)throw new RangeError("Trying to access beyond buffer length")}function _(e,s,t,r,n,o){if(!l.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(s>n||s<o)throw new RangeError('"value" argument is out of bounds');if(t+r>e.length)throw new RangeError("Index out of range")}function O(e,s,t,r,n){$(s,r,n,e,t,7);let o=Number(s&BigInt(4294967295));e[t++]=o,o>>=8,e[t++]=o,o>>=8,e[t++]=o,o>>=8,e[t++]=o;let i=Number(s>>BigInt(32)&BigInt(4294967295));return e[t++]=i,i>>=8,e[t++]=i,i>>=8,e[t++]=i,i>>=8,e[t++]=i,t}function U(e,s,t,r,n){$(s,r,n,e,t,7);let o=Number(s&BigInt(4294967295));e[t+7]=o,o>>=8,e[t+6]=o,o>>=8,e[t+5]=o,o>>=8,e[t+4]=o;let i=Number(s>>BigInt(32)&BigInt(4294967295));return e[t+3]=i,i>>=8,e[t+2]=i,i>>=8,e[t+1]=i,i>>=8,e[t]=i,t+8}function I(e,s,t,r,n,o){if(t+r>e.length)throw new RangeError("Index out of range");if(t<0)throw new RangeError("Index out of range")}function P(e,s,t,r,o){return s=+s,t>>>=0,o||I(e,0,t,4),n.write(e,s,t,r,23,4),t+4}function j(e,s,t,r,o){return s=+s,t>>>=0,o||I(e,0,t,8),n.write(e,s,t,r,52,8),t+8}l.prototype.slice=function(e,s){const t=this.length;(e=~~e)<0?(e+=t)<0&&(e=0):e>t&&(e=t),(s=void 0===s?t:~~s)<0?(s+=t)<0&&(s=0):s>t&&(s=t),s<e&&(s=e);const r=this.subarray(e,s);return Object.setPrototypeOf(r,l.prototype),r},l.prototype.readUintLE=l.prototype.readUIntLE=function(e,s,t){e>>>=0,s>>>=0,t||E(e,s,this.length);let r=this[e],n=1,o=0;for(;++o<s&&(n*=256);)r+=this[e+o]*n;return r},l.prototype.readUintBE=l.prototype.readUIntBE=function(e,s,t){e>>>=0,s>>>=0,t||E(e,s,this.length);let r=this[e+--s],n=1;for(;s>0&&(n*=256);)r+=this[e+--s]*n;return r},l.prototype.readUint8=l.prototype.readUInt8=function(e,s){return e>>>=0,s||E(e,1,this.length),this[e]},l.prototype.readUint16LE=l.prototype.readUInt16LE=function(e,s){return e>>>=0,s||E(e,2,this.length),this[e]|this[e+1]<<8},l.prototype.readUint16BE=l.prototype.readUInt16BE=function(e,s){return e>>>=0,s||E(e,2,this.length),this[e]<<8|this[e+1]},l.prototype.readUint32LE=l.prototype.readUInt32LE=function(e,s){return e>>>=0,s||E(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},l.prototype.readUint32BE=l.prototype.readUInt32BE=function(e,s){return e>>>=0,s||E(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},l.prototype.readBigUInt64LE=Z((function(e){H(e>>>=0,"offset");const s=this[e],t=this[e+7];void 0!==s&&void 0!==t||G(e,this.length-8);const r=s+256*this[++e]+65536*this[++e]+this[++e]*2**24,n=this[++e]+256*this[++e]+65536*this[++e]+t*2**24;return BigInt(r)+(BigInt(n)<<BigInt(32))})),l.prototype.readBigUInt64BE=Z((function(e){H(e>>>=0,"offset");const s=this[e],t=this[e+7];void 0!==s&&void 0!==t||G(e,this.length-8);const r=s*2**24+65536*this[++e]+256*this[++e]+this[++e],n=this[++e]*2**24+65536*this[++e]+256*this[++e]+t;return(BigInt(r)<<BigInt(32))+BigInt(n)})),l.prototype.readIntLE=function(e,s,t){e>>>=0,s>>>=0,t||E(e,s,this.length);let r=this[e],n=1,o=0;for(;++o<s&&(n*=256);)r+=this[e+o]*n;return n*=128,r>=n&&(r-=Math.pow(2,8*s)),r},l.prototype.readIntBE=function(e,s,t){e>>>=0,s>>>=0,t||E(e,s,this.length);let r=s,n=1,o=this[e+--r];for(;r>0&&(n*=256);)o+=this[e+--r]*n;return n*=128,o>=n&&(o-=Math.pow(2,8*s)),o},l.prototype.readInt8=function(e,s){return e>>>=0,s||E(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},l.prototype.readInt16LE=function(e,s){e>>>=0,s||E(e,2,this.length);const t=this[e]|this[e+1]<<8;return 32768&t?4294901760|t:t},l.prototype.readInt16BE=function(e,s){e>>>=0,s||E(e,2,this.length);const t=this[e+1]|this[e]<<8;return 32768&t?4294901760|t:t},l.prototype.readInt32LE=function(e,s){return e>>>=0,s||E(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},l.prototype.readInt32BE=function(e,s){return e>>>=0,s||E(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},l.prototype.readBigInt64LE=Z((function(e){H(e>>>=0,"offset");const s=this[e],t=this[e+7];void 0!==s&&void 0!==t||G(e,this.length-8);const r=this[e+4]+256*this[e+5]+65536*this[e+6]+(t<<24);return(BigInt(r)<<BigInt(32))+BigInt(s+256*this[++e]+65536*this[++e]+this[++e]*2**24)})),l.prototype.readBigInt64BE=Z((function(e){H(e>>>=0,"offset");const s=this[e],t=this[e+7];void 0!==s&&void 0!==t||G(e,this.length-8);const r=(s<<24)+65536*this[++e]+256*this[++e]+this[++e];return(BigInt(r)<<BigInt(32))+BigInt(this[++e]*2**24+65536*this[++e]+256*this[++e]+t)})),l.prototype.readFloatLE=function(e,s){return e>>>=0,s||E(e,4,this.length),n.read(this,e,!0,23,4)},l.prototype.readFloatBE=function(e,s){return e>>>=0,s||E(e,4,this.length),n.read(this,e,!1,23,4)},l.prototype.readDoubleLE=function(e,s){return e>>>=0,s||E(e,8,this.length),n.read(this,e,!0,52,8)},l.prototype.readDoubleBE=function(e,s){return e>>>=0,s||E(e,8,this.length),n.read(this,e,!1,52,8)},l.prototype.writeUintLE=l.prototype.writeUIntLE=function(e,s,t,r){if(e=+e,s>>>=0,t>>>=0,!r){_(this,e,s,t,Math.pow(2,8*t)-1,0)}let n=1,o=0;for(this[s]=255&e;++o<t&&(n*=256);)this[s+o]=e/n&255;return s+t},l.prototype.writeUintBE=l.prototype.writeUIntBE=function(e,s,t,r){if(e=+e,s>>>=0,t>>>=0,!r){_(this,e,s,t,Math.pow(2,8*t)-1,0)}let n=t-1,o=1;for(this[s+n]=255&e;--n>=0&&(o*=256);)this[s+n]=e/o&255;return s+t},l.prototype.writeUint8=l.prototype.writeUInt8=function(e,s,t){return e=+e,s>>>=0,t||_(this,e,s,1,255,0),this[s]=255&e,s+1},l.prototype.writeUint16LE=l.prototype.writeUInt16LE=function(e,s,t){return e=+e,s>>>=0,t||_(this,e,s,2,65535,0),this[s]=255&e,this[s+1]=e>>>8,s+2},l.prototype.writeUint16BE=l.prototype.writeUInt16BE=function(e,s,t){return e=+e,s>>>=0,t||_(this,e,s,2,65535,0),this[s]=e>>>8,this[s+1]=255&e,s+2},l.prototype.writeUint32LE=l.prototype.writeUInt32LE=function(e,s,t){return e=+e,s>>>=0,t||_(this,e,s,4,4294967295,0),this[s+3]=e>>>24,this[s+2]=e>>>16,this[s+1]=e>>>8,this[s]=255&e,s+4},l.prototype.writeUint32BE=l.prototype.writeUInt32BE=function(e,s,t){return e=+e,s>>>=0,t||_(this,e,s,4,4294967295,0),this[s]=e>>>24,this[s+1]=e>>>16,this[s+2]=e>>>8,this[s+3]=255&e,s+4},l.prototype.writeBigUInt64LE=Z((function(e,s=0){return O(this,e,s,BigInt(0),BigInt("0xffffffffffffffff"))})),l.prototype.writeBigUInt64BE=Z((function(e,s=0){return U(this,e,s,BigInt(0),BigInt("0xffffffffffffffff"))})),l.prototype.writeIntLE=function(e,s,t,r){if(e=+e,s>>>=0,!r){const r=Math.pow(2,8*t-1);_(this,e,s,t,r-1,-r)}let n=0,o=1,i=0;for(this[s]=255&e;++n<t&&(o*=256);)e<0&&0===i&&0!==this[s+n-1]&&(i=1),this[s+n]=(e/o>>0)-i&255;return s+t},l.prototype.writeIntBE=function(e,s,t,r){if(e=+e,s>>>=0,!r){const r=Math.pow(2,8*t-1);_(this,e,s,t,r-1,-r)}let n=t-1,o=1,i=0;for(this[s+n]=255&e;--n>=0&&(o*=256);)e<0&&0===i&&0!==this[s+n+1]&&(i=1),this[s+n]=(e/o>>0)-i&255;return s+t},l.prototype.writeInt8=function(e,s,t){return e=+e,s>>>=0,t||_(this,e,s,1,127,-128),e<0&&(e=255+e+1),this[s]=255&e,s+1},l.prototype.writeInt16LE=function(e,s,t){return e=+e,s>>>=0,t||_(this,e,s,2,32767,-32768),this[s]=255&e,this[s+1]=e>>>8,s+2},l.prototype.writeInt16BE=function(e,s,t){return e=+e,s>>>=0,t||_(this,e,s,2,32767,-32768),this[s]=e>>>8,this[s+1]=255&e,s+2},l.prototype.writeInt32LE=function(e,s,t){return e=+e,s>>>=0,t||_(this,e,s,4,2147483647,-2147483648),this[s]=255&e,this[s+1]=e>>>8,this[s+2]=e>>>16,this[s+3]=e>>>24,s+4},l.prototype.writeInt32BE=function(e,s,t){return e=+e,s>>>=0,t||_(this,e,s,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),this[s]=e>>>24,this[s+1]=e>>>16,this[s+2]=e>>>8,this[s+3]=255&e,s+4},l.prototype.writeBigInt64LE=Z((function(e,s=0){return O(this,e,s,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))})),l.prototype.writeBigInt64BE=Z((function(e,s=0){return U(this,e,s,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))})),l.prototype.writeFloatLE=function(e,s,t){return P(this,e,s,!0,t)},l.prototype.writeFloatBE=function(e,s,t){return P(this,e,s,!1,t)},l.prototype.writeDoubleLE=function(e,s,t){return j(this,e,s,!0,t)},l.prototype.writeDoubleBE=function(e,s,t){return j(this,e,s,!1,t)},l.prototype.copy=function(e,s,t,r){if(!l.isBuffer(e))throw new TypeError("argument should be a Buffer");if(t||(t=0),r||0===r||(r=this.length),s>=e.length&&(s=e.length),s||(s=0),r>0&&r<t&&(r=t),r===t)return 0;if(0===e.length||0===this.length)return 0;if(s<0)throw new RangeError("targetStart out of bounds");if(t<0||t>=this.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("sourceEnd out of bounds");r>this.length&&(r=this.length),e.length-s<r-t&&(r=e.length-s+t);const n=r-t;return this===e&&"function"==typeof Uint8Array.prototype.copyWithin?this.copyWithin(s,t,r):Uint8Array.prototype.set.call(e,this.subarray(t,r),s),n},l.prototype.fill=function(e,s,t,r){if("string"==typeof e){if("string"==typeof s?(r=s,s=0,t=this.length):"string"==typeof t&&(r=t,t=this.length),void 0!==r&&"string"!=typeof r)throw new TypeError("encoding must be a string");if("string"==typeof r&&!l.isEncoding(r))throw new TypeError("Unknown encoding: "+r);if(1===e.length){const s=e.charCodeAt(0);("utf8"===r&&s<128||"latin1"===r)&&(e=s)}}else"number"==typeof e?e&=255:"boolean"==typeof e&&(e=Number(e));if(s<0||this.length<s||this.length<t)throw new RangeError("Out of range index");if(t<=s)return this;let n;if(s>>>=0,t=void 0===t?this.length:t>>>0,e||(e=0),"number"==typeof e)for(n=s;n<t;++n)this[n]=e;else{const o=l.isBuffer(e)?e:l.from(e,r),i=o.length;if(0===i)throw new TypeError('The value "'+e+'" is invalid for argument "value"');for(n=0;n<t-s;++n)this[n+s]=o[n%i]}return this};const B={};function z(e,s,t){B[e]=class extends t{constructor(){super(),Object.defineProperty(this,"message",{value:s.apply(this,arguments),writable:!0,configurable:!0}),this.name=`${this.name} [${e}]`,this.stack,delete this.name}get code(){return e}set code(e){Object.defineProperty(this,"code",{configurable:!0,enumerable:!0,value:e,writable:!0})}toString(){return`${this.name} [${e}]: ${this.message}`}}}function D(e){let s="",t=e.length;const r="-"===e[0]?1:0;for(;t>=r+4;t-=3)s=`_${e.slice(t-3,t)}${s}`;return`${e.slice(0,t)}${s}`}function $(e,s,t,r,n,o){if(e>t||e<s){const r="bigint"==typeof s?"n":"";let n;throw n=o>3?0===s||s===BigInt(0)?`>= 0${r} and < 2${r} ** ${8*(o+1)}${r}`:`>= -(2${r} ** ${8*(o+1)-1}${r}) and < 2 ** ${8*(o+1)-1}${r}`:`>= ${s}${r} and <= ${t}${r}`,new B.ERR_OUT_OF_RANGE("value",n,e)}!function(e,s,t){H(s,"offset"),void 0!==e[s]&&void 0!==e[s+t]||G(s,e.length-(t+1))}(r,n,o)}function H(e,s){if("number"!=typeof e)throw new B.ERR_INVALID_ARG_TYPE(s,"number",e)}function G(e,s,t){if(Math.floor(e)!==e)throw H(e,t),new B.ERR_OUT_OF_RANGE(t||"offset","an integer",e);if(s<0)throw new B.ERR_BUFFER_OUT_OF_BOUNDS;throw new B.ERR_OUT_OF_RANGE(t||"offset",`>= ${t?1:0} and <= ${s}`,e)}z("ERR_BUFFER_OUT_OF_BOUNDS",(function(e){return e?`${e} is outside of buffer bounds`:"Attempt to access memory outside buffer bounds"}),RangeError),z("ERR_INVALID_ARG_TYPE",(function(e,s){return`The "${e}" argument must be of type number. Received type ${typeof s}`}),TypeError),z("ERR_OUT_OF_RANGE",(function(e,s,t){let r=`The value of "${e}" is out of range.`,n=t;return Number.isInteger(t)&&Math.abs(t)>2**32?n=D(String(t)):"bigint"==typeof t&&(n=String(t),(t>BigInt(2)**BigInt(32)||t<-(BigInt(2)**BigInt(32)))&&(n=D(n)),n+="n"),r+=` It must be ${s}. Received ${n}`,r}),RangeError);const J=/[^+/0-9A-Za-z-_]/g;function V(e,s){let t;s=s||1/0;const r=e.length;let n=null;const o=[];for(let i=0;i<r;++i){if(t=e.charCodeAt(i),t>55295&&t<57344){if(!n){if(t>56319){(s-=3)>-1&&o.push(239,191,189);continue}if(i+1===r){(s-=3)>-1&&o.push(239,191,189);continue}n=t;continue}if(t<56320){(s-=3)>-1&&o.push(239,191,189),n=t;continue}t=65536+(n-55296<<10|t-56320)}else n&&(s-=3)>-1&&o.push(239,191,189);if(n=null,t<128){if((s-=1)<0)break;o.push(t)}else if(t<2048){if((s-=2)<0)break;o.push(t>>6|192,63&t|128)}else if(t<65536){if((s-=3)<0)break;o.push(t>>12|224,t>>6&63|128,63&t|128)}else{if(!(t<1114112))throw new Error("Invalid code point");if((s-=4)<0)break;o.push(t>>18|240,t>>12&63|128,t>>6&63|128,63&t|128)}}return o}function q(e){return r.toByteArray(function(e){if((e=(e=e.split("=")[0]).trim().replace(J,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function W(e,s,t,r){let n;for(n=0;n<r&&!(n+t>=s.length||n>=e.length);++n)s[n+t]=e[n];return n}function K(e,s){return e instanceof s||null!=e&&null!=e.constructor&&null!=e.constructor.name&&e.constructor.name===s.name}function Y(e){return e!=e}const X=function(){const e="0123456789abcdef",s=new Array(256);for(let t=0;t<16;++t){const r=16*t;for(let n=0;n<16;++n)s[r+n]=e[t]+e[n]}return s}();function Z(e){return"undefined"==typeof BigInt?Q:e}function Q(){throw new Error("BigInt not supported")}},9662:(e,s,t)=>{var r=t(614),n=t(6330),o=TypeError;e.exports=function(e){if(r(e))return e;throw o(n(e)+" is not a function")}},6077:(e,s,t)=>{var r=t(614),n=String,o=TypeError;e.exports=function(e){if("object"==typeof e||r(e))return e;throw o("Can't set "+n(e)+" as a prototype")}},1223:(e,s,t)=>{var r=t(5112),n=t(30),o=t(3070).f,i=r("unscopables"),a=Array.prototype;null==a[i]&&o(a,i,{configurable:!0,value:n(null)}),e.exports=function(e){a[i][e]=!0}},1530:(e,s,t)=>{"use strict";var r=t(8710).charAt;e.exports=function(e,s,t){return s+(t?r(e,s).length:1)}},9670:(e,s,t)=>{var r=t(111),n=String,o=TypeError;e.exports=function(e){if(r(e))return e;throw o(n(e)+" is not an object")}},1318:(e,s,t)=>{var r=t(5656),n=t(1400),o=t(6244),i=function(e){return function(s,t,i){var a,l=r(s),m=o(l),d=n(i,m);if(e&&t!=t){for(;m>d;)if((a=l[d++])!=a)return!0}else for(;m>d;d++)if((e||d in l)&&l[d]===t)return e||d||0;return!e&&-1}};e.exports={includes:i(!0),indexOf:i(!1)}},2092:(e,s,t)=>{var r=t(9974),n=t(1702),o=t(8361),i=t(7908),a=t(6244),l=t(5417),m=n([].push),d=function(e){var s=1==e,t=2==e,n=3==e,d=4==e,g=6==e,c=7==e,u=5==e||g;return function(f,p,h,y){for(var w,v,F=i(f),T=o(F),N=r(p,h),C=a(T),S=0,x=y||l,b=s?x(f,C):t||c?x(f,0):void 0;C>S;S++)if((u||S in T)&&(v=N(w=T[S],S,F),e))if(s)b[S]=v;else if(v)switch(e){case 3:return!0;case 5:return w;case 6:return S;case 2:m(b,w)}else switch(e){case 4:return!1;case 7:m(b,w)}return g?-1:n||d?d:b}};e.exports={forEach:d(0),map:d(1),filter:d(2),some:d(3),every:d(4),find:d(5),findIndex:d(6),filterReject:d(7)}},1589:(e,s,t)=>{var r=t(1400),n=t(6244),o=t(6135),i=Array,a=Math.max;e.exports=function(e,s,t){for(var l=n(e),m=r(s,l),d=r(void 0===t?l:t,l),g=i(a(d-m,0)),c=0;m<d;m++,c++)o(g,c,e[m]);return g.length=c,g}},206:(e,s,t)=>{var r=t(1702);e.exports=r([].slice)},7475:(e,s,t)=>{var r=t(3157),n=t(4411),o=t(111),i=t(5112)("species"),a=Array;e.exports=function(e){var s;return r(e)&&(s=e.constructor,(n(s)&&(s===a||r(s.prototype))||o(s)&&null===(s=s[i]))&&(s=void 0)),void 0===s?a:s}},5417:(e,s,t)=>{var r=t(7475);e.exports=function(e,s){return new(r(e))(0===s?0:s)}},4326:(e,s,t)=>{var r=t(84),n=r({}.toString),o=r("".slice);e.exports=function(e){return o(n(e),8,-1)}},648:(e,s,t)=>{var r=t(1694),n=t(614),o=t(4326),i=t(5112)("toStringTag"),a=Object,l="Arguments"==o(function(){return arguments}());e.exports=r?o:function(e){var s,t,r;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(t=function(e,s){try{return e[s]}catch(e){}}(s=a(e),i))?t:l?o(s):"Object"==(r=o(s))&&n(s.callee)?"Arguments":r}},9920:(e,s,t)=>{var r=t(2597),n=t(3887),o=t(1236),i=t(3070);e.exports=function(e,s,t){for(var a=n(s),l=i.f,m=o.f,d=0;d<a.length;d++){var g=a[d];r(e,g)||t&&r(t,g)||l(e,g,m(s,g))}}},8544:(e,s,t)=>{var r=t(7293);e.exports=!r((function(){function e(){}return e.prototype.constructor=null,Object.getPrototypeOf(new e)!==e.prototype}))},6178:e=>{e.exports=function(e,s){return{value:e,done:s}}},8880:(e,s,t)=>{var r=t(9781),n=t(3070),o=t(9114);e.exports=r?function(e,s,t){return n.f(e,s,o(1,t))}:function(e,s,t){return e[s]=t,e}},9114:e=>{e.exports=function(e,s){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:s}}},6135:(e,s,t)=>{"use strict";var r=t(4948),n=t(3070),o=t(9114);e.exports=function(e,s,t){var i=r(s);i in e?n.f(e,i,o(0,t)):e[i]=t}},8709:(e,s,t)=>{"use strict";var r=t(9670),n=t(2140),o=TypeError;e.exports=function(e){if(r(this),"string"===e||"default"===e)e="string";else if("number"!==e)throw o("Incorrect hint");return n(this,e)}},8052:(e,s,t)=>{var r=t(614),n=t(3070),o=t(6339),i=t(3072);e.exports=function(e,s,t,a){a||(a={});var l=a.enumerable,m=void 0!==a.name?a.name:s;if(r(t)&&o(t,m,a),a.global)l?e[s]=t:i(s,t);else{try{a.unsafe?e[s]&&(l=!0):delete e[s]}catch(e){}l?e[s]=t:n.f(e,s,{value:t,enumerable:!1,configurable:!a.nonConfigurable,writable:!a.nonWritable})}return e}},3072:(e,s,t)=>{var r=t(7854),n=Object.defineProperty;e.exports=function(e,s){try{n(r,e,{value:s,configurable:!0,writable:!0})}catch(t){r[e]=s}return s}},9781:(e,s,t)=>{var r=t(7293);e.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},4154:e=>{var s="object"==typeof document&&document.all,t=void 0===s&&void 0!==s;e.exports={all:s,IS_HTMLDDA:t}},317:(e,s,t)=>{var r=t(7854),n=t(111),o=r.document,i=n(o)&&n(o.createElement);e.exports=function(e){return i?o.createElement(e):{}}},8324:e=>{e.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},8509:(e,s,t)=>{var r=t(317)("span").classList,n=r&&r.constructor&&r.constructor.prototype;e.exports=n===Object.prototype?void 0:n},8113:(e,s,t)=>{var r=t(5005);e.exports=r("navigator","userAgent")||""},7392:(e,s,t)=>{var r,n,o=t(7854),i=t(8113),a=o.process,l=o.Deno,m=a&&a.versions||l&&l.version,d=m&&m.v8;d&&(n=(r=d.split("."))[0]>0&&r[0]<4?1:+(r[0]+r[1])),!n&&i&&(!(r=i.match(/Edge\/(\d+)/))||r[1]>=74)&&(r=i.match(/Chrome\/(\d+)/))&&(n=+r[1]),e.exports=n},748:e=>{e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},2109:(e,s,t)=>{var r=t(7854),n=t(1236).f,o=t(8880),i=t(8052),a=t(3072),l=t(9920),m=t(4705);e.exports=function(e,s){var t,d,g,c,u,f=e.target,p=e.global,h=e.stat;if(t=p?r:h?r[f]||a(f,{}):(r[f]||{}).prototype)for(d in s){if(c=s[d],g=e.dontCallGetSet?(u=n(t,d))&&u.value:t[d],!m(p?d:f+(h?".":"#")+d,e.forced)&&void 0!==g){if(typeof c==typeof g)continue;l(c,g)}(e.sham||g&&g.sham)&&o(c,"sham",!0),i(t,d,c,e)}}},7293:e=>{e.exports=function(e){try{return!!e()}catch(e){return!0}}},7007:(e,s,t)=>{"use strict";t(4916);var r=t(1702),n=t(8052),o=t(2261),i=t(7293),a=t(5112),l=t(8880),m=a("species"),d=RegExp.prototype;e.exports=function(e,s,t,g){var c=a(e),u=!i((function(){var s={};return s[c]=function(){return 7},7!=""[e](s)})),f=u&&!i((function(){var s=!1,t=/a/;return"split"===e&&((t={}).constructor={},t.constructor[m]=function(){return t},t.flags="",t[c]=/./[c]),t.exec=function(){return s=!0,null},t[c](""),!s}));if(!u||!f||t){var p=r(/./[c]),h=s(c,""[e],(function(e,s,t,n,i){var a=r(e),l=s.exec;return l===o||l===d.exec?u&&!i?{done:!0,value:p(s,t,n)}:{done:!0,value:a(t,s,n)}:{done:!1}}));n(String.prototype,e,h[0]),n(d,c,h[1])}g&&l(d[c],"sham",!0)}},2104:(e,s,t)=>{var r=t(4374),n=Function.prototype,o=n.apply,i=n.call;e.exports="object"==typeof Reflect&&Reflect.apply||(r?i.bind(o):function(){return i.apply(o,arguments)})},9974:(e,s,t)=>{var r=t(1702),n=t(9662),o=t(4374),i=r(r.bind);e.exports=function(e,s){return n(e),void 0===s?e:o?i(e,s):function(){return e.apply(s,arguments)}}},4374:(e,s,t)=>{var r=t(7293);e.exports=!r((function(){var e=function(){}.bind();return"function"!=typeof e||e.hasOwnProperty("prototype")}))},6916:(e,s,t)=>{var r=t(4374),n=Function.prototype.call;e.exports=r?n.bind(n):function(){return n.apply(n,arguments)}},6530:(e,s,t)=>{var r=t(9781),n=t(2597),o=Function.prototype,i=r&&Object.getOwnPropertyDescriptor,a=n(o,"name"),l=a&&"something"===function(){}.name,m=a&&(!r||r&&i(o,"name").configurable);e.exports={EXISTS:a,PROPER:l,CONFIGURABLE:m}},84:(e,s,t)=>{var r=t(4374),n=Function.prototype,o=n.call,i=r&&n.bind.bind(o,o);e.exports=function(e){return r?i(e):function(){return o.apply(e,arguments)}}},1702:(e,s,t)=>{var r=t(4326),n=t(84);e.exports=function(e){if("Function"===r(e))return n(e)}},5005:(e,s,t)=>{var r=t(7854),n=t(614);e.exports=function(e,s){return arguments.length<2?(t=r[e],n(t)?t:void 0):r[e]&&r[e][s];var t}},8173:(e,s,t)=>{var r=t(9662),n=t(8554);e.exports=function(e,s){var t=e[s];return n(t)?void 0:r(t)}},647:(e,s,t)=>{var r=t(1702),n=t(7908),o=Math.floor,i=r("".charAt),a=r("".replace),l=r("".slice),m=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,d=/\$([$&'`]|\d{1,2})/g;e.exports=function(e,s,t,r,g,c){var u=t+e.length,f=r.length,p=d;return void 0!==g&&(g=n(g),p=m),a(c,p,(function(n,a){var m;switch(i(a,0)){case"$":return"$";case"&":return e;case"`":return l(s,0,t);case"'":return l(s,u);case"<":m=g[l(a,1,-1)];break;default:var d=+a;if(0===d)return n;if(d>f){var c=o(d/10);return 0===c?n:c<=f?void 0===r[c-1]?i(a,1):r[c-1]+i(a,1):n}m=r[d-1]}return void 0===m?"":m}))}},7854:(e,s,t)=>{var r=function(e){return e&&e.Math==Math&&e};e.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof t.g&&t.g)||function(){return this}()||Function("return this")()},2597:(e,s,t)=>{var r=t(1702),n=t(7908),o=r({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,s){return o(n(e),s)}},3501:e=>{e.exports={}},490:(e,s,t)=>{var r=t(5005);e.exports=r("document","documentElement")},4664:(e,s,t)=>{var r=t(9781),n=t(7293),o=t(317);e.exports=!r&&!n((function(){return 7!=Object.defineProperty(o("div"),"a",{get:function(){return 7}}).a}))},8361:(e,s,t)=>{var r=t(1702),n=t(7293),o=t(4326),i=Object,a=r("".split);e.exports=n((function(){return!i("z").propertyIsEnumerable(0)}))?function(e){return"String"==o(e)?a(e,""):i(e)}:i},9587:(e,s,t)=>{var r=t(614),n=t(111),o=t(7674);e.exports=function(e,s,t){var i,a;return o&&r(i=s.constructor)&&i!==t&&n(a=i.prototype)&&a!==t.prototype&&o(e,a),e}},2788:(e,s,t)=>{var r=t(1702),n=t(614),o=t(5465),i=r(Function.toString);n(o.inspectSource)||(o.inspectSource=function(e){return i(e)}),e.exports=o.inspectSource},9909:(e,s,t)=>{var r,n,o,i=t(4811),a=t(7854),l=t(111),m=t(8880),d=t(2597),g=t(5465),c=t(6200),u=t(3501),f="Object already initialized",p=a.TypeError,h=a.WeakMap;if(i||g.state){var y=g.state||(g.state=new h);y.get=y.get,y.has=y.has,y.set=y.set,r=function(e,s){if(y.has(e))throw p(f);return s.facade=e,y.set(e,s),s},n=function(e){return y.get(e)||{}},o=function(e){return y.has(e)}}else{var w=c("state");u[w]=!0,r=function(e,s){if(d(e,w))throw p(f);return s.facade=e,m(e,w,s),s},n=function(e){return d(e,w)?e[w]:{}},o=function(e){return d(e,w)}}e.exports={set:r,get:n,has:o,enforce:function(e){return o(e)?n(e):r(e,{})},getterFor:function(e){return function(s){var t;if(!l(s)||(t=n(s)).type!==e)throw p("Incompatible receiver, "+e+" required");return t}}}},3157:(e,s,t)=>{var r=t(4326);e.exports=Array.isArray||function(e){return"Array"==r(e)}},614:(e,s,t)=>{var r=t(4154),n=r.all;e.exports=r.IS_HTMLDDA?function(e){return"function"==typeof e||e===n}:function(e){return"function"==typeof e}},4411:(e,s,t)=>{var r=t(1702),n=t(7293),o=t(614),i=t(648),a=t(5005),l=t(2788),m=function(){},d=[],g=a("Reflect","construct"),c=/^\s*(?:class|function)\b/,u=r(c.exec),f=!c.exec(m),p=function(e){if(!o(e))return!1;try{return g(m,d,e),!0}catch(e){return!1}},h=function(e){if(!o(e))return!1;switch(i(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return f||!!u(c,l(e))}catch(e){return!0}};h.sham=!0,e.exports=!g||n((function(){var e;return p(p.call)||!p(Object)||!p((function(){e=!0}))||e}))?h:p},4705:(e,s,t)=>{var r=t(7293),n=t(614),o=/#|\.prototype\./,i=function(e,s){var t=l[a(e)];return t==d||t!=m&&(n(s)?r(s):!!s)},a=i.normalize=function(e){return String(e).replace(o,".").toLowerCase()},l=i.data={},m=i.NATIVE="N",d=i.POLYFILL="P";e.exports=i},8554:e=>{e.exports=function(e){return null==e}},111:(e,s,t)=>{var r=t(614),n=t(4154),o=n.all;e.exports=n.IS_HTMLDDA?function(e){return"object"==typeof e?null!==e:r(e)||e===o}:function(e){return"object"==typeof e?null!==e:r(e)}},1913:e=>{e.exports=!1},2190:(e,s,t)=>{var r=t(5005),n=t(614),o=t(7976),i=t(3307),a=Object;e.exports=i?function(e){return"symbol"==typeof e}:function(e){var s=r("Symbol");return n(s)&&o(s.prototype,a(e))}},3061:(e,s,t)=>{"use strict";var r=t(3383).IteratorPrototype,n=t(30),o=t(9114),i=t(8003),a=t(7497),l=function(){return this};e.exports=function(e,s,t,m){var d=s+" Iterator";return e.prototype=n(r,{next:o(+!m,t)}),i(e,d,!1,!0),a[d]=l,e}},1656:(e,s,t)=>{"use strict";var r=t(2109),n=t(6916),o=t(1913),i=t(6530),a=t(614),l=t(3061),m=t(9518),d=t(7674),g=t(8003),c=t(8880),u=t(8052),f=t(5112),p=t(7497),h=t(3383),y=i.PROPER,w=i.CONFIGURABLE,v=h.IteratorPrototype,F=h.BUGGY_SAFARI_ITERATORS,T=f("iterator"),N="keys",C="values",S="entries",x=function(){return this};e.exports=function(e,s,t,i,f,h,b){l(t,s,i);var M,L,k,R=function(e){if(e===f&&U)return U;if(!F&&e in _)return _[e];switch(e){case N:case C:case S:return function(){return new t(this,e)}}return function(){return new t(this)}},A=s+" Iterator",E=!1,_=e.prototype,O=_[T]||_["@@iterator"]||f&&_[f],U=!F&&O||R(f),I="Array"==s&&_.entries||O;if(I&&(M=m(I.call(new e)))!==Object.prototype&&M.next&&(o||m(M)===v||(d?d(M,v):a(M[T])||u(M,T,x)),g(M,A,!0,!0),o&&(p[A]=x)),y&&f==C&&O&&O.name!==C&&(!o&&w?c(_,"name",C):(E=!0,U=function(){return n(O,this)})),f)if(L={values:R(C),keys:h?U:R(N),entries:R(S)},b)for(k in L)(F||E||!(k in _))&&u(_,k,L[k]);else r({target:s,proto:!0,forced:F||E},L);return o&&!b||_[T]===U||u(_,T,U,{name:f}),p[s]=U,L}},3383:(e,s,t)=>{"use strict";var r,n,o,i=t(7293),a=t(614),l=t(111),m=t(30),d=t(9518),g=t(8052),c=t(5112),u=t(1913),f=c("iterator"),p=!1;[].keys&&("next"in(o=[].keys())?(n=d(d(o)))!==Object.prototype&&(r=n):p=!0),!l(r)||i((function(){var e={};return r[f].call(e)!==e}))?r={}:u&&(r=m(r)),a(r[f])||g(r,f,(function(){return this})),e.exports={IteratorPrototype:r,BUGGY_SAFARI_ITERATORS:p}},7497:e=>{e.exports={}},6244:(e,s,t)=>{var r=t(7466);e.exports=function(e){return r(e.length)}},6339:(e,s,t)=>{var r=t(7293),n=t(614),o=t(2597),i=t(9781),a=t(6530).CONFIGURABLE,l=t(2788),m=t(9909),d=m.enforce,g=m.get,c=Object.defineProperty,u=i&&!r((function(){return 8!==c((function(){}),"length",{value:8}).length})),f=String(String).split("String"),p=e.exports=function(e,s,t){"Symbol("===String(s).slice(0,7)&&(s="["+String(s).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),t&&t.getter&&(s="get "+s),t&&t.setter&&(s="set "+s),(!o(e,"name")||a&&e.name!==s)&&(i?c(e,"name",{value:s,configurable:!0}):e.name=s),u&&t&&o(t,"arity")&&e.length!==t.arity&&c(e,"length",{value:t.arity});try{t&&o(t,"constructor")&&t.constructor?i&&c(e,"prototype",{writable:!1}):e.prototype&&(e.prototype=void 0)}catch(e){}var r=d(e);return o(r,"source")||(r.source=f.join("string"==typeof s?s:"")),e};Function.prototype.toString=p((function(){return n(this)&&g(this).source||l(this)}),"toString")},4758:e=>{var s=Math.ceil,t=Math.floor;e.exports=Math.trunc||function(e){var r=+e;return(r>0?t:s)(r)}},1574:(e,s,t)=>{"use strict";var r=t(9781),n=t(1702),o=t(6916),i=t(7293),a=t(1956),l=t(5181),m=t(5296),d=t(7908),g=t(8361),c=Object.assign,u=Object.defineProperty,f=n([].concat);e.exports=!c||i((function(){if(r&&1!==c({b:1},c(u({},"a",{enumerable:!0,get:function(){u(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var e={},s={},t=Symbol(),n="abcdefghijklmnopqrst";return e[t]=7,n.split("").forEach((function(e){s[e]=e})),7!=c({},e)[t]||a(c({},s)).join("")!=n}))?function(e,s){for(var t=d(e),n=arguments.length,i=1,c=l.f,u=m.f;n>i;)for(var p,h=g(arguments[i++]),y=c?f(a(h),c(h)):a(h),w=y.length,v=0;w>v;)p=y[v++],r&&!o(u,h,p)||(t[p]=h[p]);return t}:c},30:(e,s,t)=>{var r,n=t(9670),o=t(6048),i=t(748),a=t(3501),l=t(490),m=t(317),d=t(6200),g="prototype",c="script",u=d("IE_PROTO"),f=function(){},p=function(e){return"<"+c+">"+e+"</"+c+">"},h=function(e){e.write(p("")),e.close();var s=e.parentWindow.Object;return e=null,s},y=function(){try{r=new ActiveXObject("htmlfile")}catch(e){}var e,s,t;y="undefined"!=typeof document?document.domain&&r?h(r):(s=m("iframe"),t="java"+c+":",s.style.display="none",l.appendChild(s),s.src=String(t),(e=s.contentWindow.document).open(),e.write(p("document.F=Object")),e.close(),e.F):h(r);for(var n=i.length;n--;)delete y[g][i[n]];return y()};a[u]=!0,e.exports=Object.create||function(e,s){var t;return null!==e?(f[g]=n(e),t=new f,f[g]=null,t[u]=e):t=y(),void 0===s?t:o.f(t,s)}},6048:(e,s,t)=>{var r=t(9781),n=t(3353),o=t(3070),i=t(9670),a=t(5656),l=t(1956);s.f=r&&!n?Object.defineProperties:function(e,s){i(e);for(var t,r=a(s),n=l(s),m=n.length,d=0;m>d;)o.f(e,t=n[d++],r[t]);return e}},3070:(e,s,t)=>{var r=t(9781),n=t(4664),o=t(3353),i=t(9670),a=t(4948),l=TypeError,m=Object.defineProperty,d=Object.getOwnPropertyDescriptor,g="enumerable",c="configurable",u="writable";s.f=r?o?function(e,s,t){if(i(e),s=a(s),i(t),"function"==typeof e&&"prototype"===s&&"value"in t&&u in t&&!t[u]){var r=d(e,s);r&&r[u]&&(e[s]=t.value,t={configurable:c in t?t[c]:r[c],enumerable:g in t?t[g]:r[g],writable:!1})}return m(e,s,t)}:m:function(e,s,t){if(i(e),s=a(s),i(t),n)try{return m(e,s,t)}catch(e){}if("get"in t||"set"in t)throw l("Accessors not supported");return"value"in t&&(e[s]=t.value),e}},1236:(e,s,t)=>{var r=t(9781),n=t(6916),o=t(5296),i=t(9114),a=t(5656),l=t(4948),m=t(2597),d=t(4664),g=Object.getOwnPropertyDescriptor;s.f=r?g:function(e,s){if(e=a(e),s=l(s),d)try{return g(e,s)}catch(e){}if(m(e,s))return i(!n(o.f,e,s),e[s])}},1156:(e,s,t)=>{var r=t(4326),n=t(5656),o=t(8006).f,i=t(1589),a="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];e.exports.f=function(e){return a&&"Window"==r(e)?function(e){try{return o(e)}catch(e){return i(a)}}(e):o(n(e))}},8006:(e,s,t)=>{var r=t(6324),n=t(748).concat("length","prototype");s.f=Object.getOwnPropertyNames||function(e){return r(e,n)}},5181:(e,s)=>{s.f=Object.getOwnPropertySymbols},9518:(e,s,t)=>{var r=t(2597),n=t(614),o=t(7908),i=t(6200),a=t(8544),l=i("IE_PROTO"),m=Object,d=m.prototype;e.exports=a?m.getPrototypeOf:function(e){var s=o(e);if(r(s,l))return s[l];var t=s.constructor;return n(t)&&s instanceof t?t.prototype:s instanceof m?d:null}},7976:(e,s,t)=>{var r=t(1702);e.exports=r({}.isPrototypeOf)},6324:(e,s,t)=>{var r=t(1702),n=t(2597),o=t(5656),i=t(1318).indexOf,a=t(3501),l=r([].push);e.exports=function(e,s){var t,r=o(e),m=0,d=[];for(t in r)!n(a,t)&&n(r,t)&&l(d,t);for(;s.length>m;)n(r,t=s[m++])&&(~i(d,t)||l(d,t));return d}},1956:(e,s,t)=>{var r=t(6324),n=t(748);e.exports=Object.keys||function(e){return r(e,n)}},5296:(e,s)=>{"use strict";var t={}.propertyIsEnumerable,r=Object.getOwnPropertyDescriptor,n=r&&!t.call({1:2},1);s.f=n?function(e){var s=r(this,e);return!!s&&s.enumerable}:t},7674:(e,s,t)=>{var r=t(1702),n=t(9670),o=t(6077);e.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var e,s=!1,t={};try{(e=r(Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set))(t,[]),s=t instanceof Array}catch(e){}return function(t,r){return n(t),o(r),s?e(t,r):t.__proto__=r,t}}():void 0)},288:(e,s,t)=>{"use strict";var r=t(1694),n=t(648);e.exports=r?{}.toString:function(){return"[object "+n(this)+"]"}},2140:(e,s,t)=>{var r=t(6916),n=t(614),o=t(111),i=TypeError;e.exports=function(e,s){var t,a;if("string"===s&&n(t=e.toString)&&!o(a=r(t,e)))return a;if(n(t=e.valueOf)&&!o(a=r(t,e)))return a;if("string"!==s&&n(t=e.toString)&&!o(a=r(t,e)))return a;throw i("Can't convert object to primitive value")}},3887:(e,s,t)=>{var r=t(5005),n=t(1702),o=t(8006),i=t(5181),a=t(9670),l=n([].concat);e.exports=r("Reflect","ownKeys")||function(e){var s=o.f(a(e)),t=i.f;return t?l(s,t(e)):s}},857:(e,s,t)=>{var r=t(7854);e.exports=r},7651:(e,s,t)=>{var r=t(6916),n=t(9670),o=t(614),i=t(4326),a=t(2261),l=TypeError;e.exports=function(e,s){var t=e.exec;if(o(t)){var m=r(t,e,s);return null!==m&&n(m),m}if("RegExp"===i(e))return r(a,e,s);throw l("RegExp#exec called on incompatible receiver")}},2261:(e,s,t)=>{"use strict";var r,n,o=t(6916),i=t(1702),a=t(1340),l=t(7066),m=t(2999),d=t(2309),g=t(30),c=t(9909).get,u=t(9441),f=t(7168),p=d("native-string-replace",String.prototype.replace),h=RegExp.prototype.exec,y=h,w=i("".charAt),v=i("".indexOf),F=i("".replace),T=i("".slice),N=(n=/b*/g,o(h,r=/a/,"a"),o(h,n,"a"),0!==r.lastIndex||0!==n.lastIndex),C=m.BROKEN_CARET,S=void 0!==/()??/.exec("")[1];(N||S||C||u||f)&&(y=function(e){var s,t,r,n,i,m,d,u=this,f=c(u),x=a(e),b=f.raw;if(b)return b.lastIndex=u.lastIndex,s=o(y,b,x),u.lastIndex=b.lastIndex,s;var M=f.groups,L=C&&u.sticky,k=o(l,u),R=u.source,A=0,E=x;if(L&&(k=F(k,"y",""),-1===v(k,"g")&&(k+="g"),E=T(x,u.lastIndex),u.lastIndex>0&&(!u.multiline||u.multiline&&"\n"!==w(x,u.lastIndex-1))&&(R="(?: "+R+")",E=" "+E,A++),t=new RegExp("^(?:"+R+")",k)),S&&(t=new RegExp("^"+R+"$(?!\\s)",k)),N&&(r=u.lastIndex),n=o(h,L?t:u,E),L?n?(n.input=T(n.input,A),n[0]=T(n[0],A),n.index=u.lastIndex,u.lastIndex+=n[0].length):u.lastIndex=0:N&&n&&(u.lastIndex=u.global?n.index+n[0].length:r),S&&n&&n.length>1&&o(p,n[0],t,(function(){for(i=1;i<arguments.length-2;i++)void 0===arguments[i]&&(n[i]=void 0)})),n&&M)for(n.groups=m=g(null),i=0;i<M.length;i++)m[(d=M[i])[0]]=n[d[1]];return n}),e.exports=y},7066:(e,s,t)=>{"use strict";var r=t(9670);e.exports=function(){var e=r(this),s="";return e.hasIndices&&(s+="d"),e.global&&(s+="g"),e.ignoreCase&&(s+="i"),e.multiline&&(s+="m"),e.dotAll&&(s+="s"),e.unicode&&(s+="u"),e.unicodeSets&&(s+="v"),e.sticky&&(s+="y"),s}},2999:(e,s,t)=>{var r=t(7293),n=t(7854).RegExp,o=r((function(){var e=n("a","y");return e.lastIndex=2,null!=e.exec("abcd")})),i=o||r((function(){return!n("a","y").sticky})),a=o||r((function(){var e=n("^r","gy");return e.lastIndex=2,null!=e.exec("str")}));e.exports={BROKEN_CARET:a,MISSED_STICKY:i,UNSUPPORTED_Y:o}},9441:(e,s,t)=>{var r=t(7293),n=t(7854).RegExp;e.exports=r((function(){var e=n(".","s");return!(e.dotAll&&e.exec("\n")&&"s"===e.flags)}))},7168:(e,s,t)=>{var r=t(7293),n=t(7854).RegExp;e.exports=r((function(){var e=n("(?<a>b)","g");return"b"!==e.exec("b").groups.a||"bc"!=="b".replace(e,"$<a>c")}))},4488:(e,s,t)=>{var r=t(8554),n=TypeError;e.exports=function(e){if(r(e))throw n("Can't call method on "+e);return e}},8003:(e,s,t)=>{var r=t(3070).f,n=t(2597),o=t(5112)("toStringTag");e.exports=function(e,s,t){e&&!t&&(e=e.prototype),e&&!n(e,o)&&r(e,o,{configurable:!0,value:s})}},6200:(e,s,t)=>{var r=t(2309),n=t(9711),o=r("keys");e.exports=function(e){return o[e]||(o[e]=n(e))}},5465:(e,s,t)=>{var r=t(7854),n=t(3072),o="__core-js_shared__",i=r[o]||n(o,{});e.exports=i},2309:(e,s,t)=>{var r=t(1913),n=t(5465);(e.exports=function(e,s){return n[e]||(n[e]=void 0!==s?s:{})})("versions",[]).push({version:"3.25.5",mode:r?"pure":"global",copyright:"© 2014-2022 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.25.5/LICENSE",source:"https://github.com/zloirock/core-js"})},8710:(e,s,t)=>{var r=t(1702),n=t(9303),o=t(1340),i=t(4488),a=r("".charAt),l=r("".charCodeAt),m=r("".slice),d=function(e){return function(s,t){var r,d,g=o(i(s)),c=n(t),u=g.length;return c<0||c>=u?e?"":void 0:(r=l(g,c))<55296||r>56319||c+1===u||(d=l(g,c+1))<56320||d>57343?e?a(g,c):r:e?m(g,c,c+2):d-56320+(r-55296<<10)+65536}};e.exports={codeAt:d(!1),charAt:d(!0)}},3111:(e,s,t)=>{var r=t(1702),n=t(4488),o=t(1340),i=t(1361),a=r("".replace),l="["+i+"]",m=RegExp("^"+l+l+"*"),d=RegExp(l+l+"*$"),g=function(e){return function(s){var t=o(n(s));return 1&e&&(t=a(t,m,"")),2&e&&(t=a(t,d,"")),t}};e.exports={start:g(1),end:g(2),trim:g(3)}},6293:(e,s,t)=>{var r=t(7392),n=t(7293);e.exports=!!Object.getOwnPropertySymbols&&!n((function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&r&&r<41}))},6532:(e,s,t)=>{var r=t(6916),n=t(5005),o=t(5112),i=t(8052);e.exports=function(){var e=n("Symbol"),s=e&&e.prototype,t=s&&s.valueOf,a=o("toPrimitive");s&&!s[a]&&i(s,a,(function(e){return r(t,this)}),{arity:1})}},2015:(e,s,t)=>{var r=t(6293);e.exports=r&&!!Symbol.for&&!!Symbol.keyFor},863:(e,s,t)=>{var r=t(1702);e.exports=r(1..valueOf)},1400:(e,s,t)=>{var r=t(9303),n=Math.max,o=Math.min;e.exports=function(e,s){var t=r(e);return t<0?n(t+s,0):o(t,s)}},5656:(e,s,t)=>{var r=t(8361),n=t(4488);e.exports=function(e){return r(n(e))}},9303:(e,s,t)=>{var r=t(4758);e.exports=function(e){var s=+e;return s!=s||0===s?0:r(s)}},7466:(e,s,t)=>{var r=t(9303),n=Math.min;e.exports=function(e){return e>0?n(r(e),9007199254740991):0}},7908:(e,s,t)=>{var r=t(4488),n=Object;e.exports=function(e){return n(r(e))}},7593:(e,s,t)=>{var r=t(6916),n=t(111),o=t(2190),i=t(8173),a=t(2140),l=t(5112),m=TypeError,d=l("toPrimitive");e.exports=function(e,s){if(!n(e)||o(e))return e;var t,l=i(e,d);if(l){if(void 0===s&&(s="default"),t=r(l,e,s),!n(t)||o(t))return t;throw m("Can't convert object to primitive value")}return void 0===s&&(s="number"),a(e,s)}},4948:(e,s,t)=>{var r=t(7593),n=t(2190);e.exports=function(e){var s=r(e,"string");return n(s)?s:s+""}},1694:(e,s,t)=>{var r={};r[t(5112)("toStringTag")]="z",e.exports="[object z]"===String(r)},1340:(e,s,t)=>{var r=t(648),n=String;e.exports=function(e){if("Symbol"===r(e))throw TypeError("Cannot convert a Symbol value to a string");return n(e)}},6330:e=>{var s=String;e.exports=function(e){try{return s(e)}catch(e){return"Object"}}},9711:(e,s,t)=>{var r=t(1702),n=0,o=Math.random(),i=r(1..toString);e.exports=function(e){return"Symbol("+(void 0===e?"":e)+")_"+i(++n+o,36)}},3307:(e,s,t)=>{var r=t(6293);e.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},3353:(e,s,t)=>{var r=t(9781),n=t(7293);e.exports=r&&n((function(){return 42!=Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},4811:(e,s,t)=>{var r=t(7854),n=t(614),o=r.WeakMap;e.exports=n(o)&&/native code/.test(String(o))},6800:(e,s,t)=>{var r=t(857),n=t(2597),o=t(6061),i=t(3070).f;e.exports=function(e){var s=r.Symbol||(r.Symbol={});n(s,e)||i(s,e,{value:o.f(e)})}},6061:(e,s,t)=>{var r=t(5112);s.f=r},5112:(e,s,t)=>{var r=t(7854),n=t(2309),o=t(2597),i=t(9711),a=t(6293),l=t(3307),m=n("wks"),d=r.Symbol,g=d&&d.for,c=l?d:d&&d.withoutSetter||i;e.exports=function(e){if(!o(m,e)||!a&&"string"!=typeof m[e]){var s="Symbol."+e;a&&o(d,e)?m[e]=d[e]:m[e]=l&&g?g(s):c(s)}return m[e]}},1361:e=>{e.exports="\t\n\v\f\r    \u2028\u2029\ufeff"},6992:(e,s,t)=>{"use strict";var r=t(5656),n=t(1223),o=t(7497),i=t(9909),a=t(3070).f,l=t(1656),m=t(6178),d=t(1913),g=t(9781),c="Array Iterator",u=i.set,f=i.getterFor(c);e.exports=l(Array,"Array",(function(e,s){u(this,{type:c,target:r(e),index:0,kind:s})}),(function(){var e=f(this),s=e.target,t=e.kind,r=e.index++;return!s||r>=s.length?(e.target=void 0,m(void 0,!0)):m("keys"==t?r:"values"==t?s[r]:[r,s[r]],!1)}),"values");var p=o.Arguments=o.Array;if(n("keys"),n("values"),n("entries"),!d&&g&&"values"!==p.name)try{a(p,"name",{value:"values"})}catch(e){}},6078:(e,s,t)=>{var r=t(2597),n=t(8052),o=t(8709),i=t(5112)("toPrimitive"),a=Date.prototype;r(a,i)||n(a,i,o)},8862:(e,s,t)=>{var r=t(2109),n=t(5005),o=t(2104),i=t(6916),a=t(1702),l=t(7293),m=t(3157),d=t(614),g=t(111),c=t(2190),u=t(206),f=t(6293),p=n("JSON","stringify"),h=a(/./.exec),y=a("".charAt),w=a("".charCodeAt),v=a("".replace),F=a(1..toString),T=/[\uD800-\uDFFF]/g,N=/^[\uD800-\uDBFF]$/,C=/^[\uDC00-\uDFFF]$/,S=!f||l((function(){var e=n("Symbol")();return"[null]"!=p([e])||"{}"!=p({a:e})||"{}"!=p(Object(e))})),x=l((function(){return'"\\udf06\\ud834"'!==p("\udf06\ud834")||'"\\udead"'!==p("\udead")})),b=function(e,s){var t=u(arguments),r=s;if((g(s)||void 0!==e)&&!c(e))return m(s)||(s=function(e,s){if(d(r)&&(s=i(r,this,e,s)),!c(s))return s}),t[1]=s,o(p,null,t)},M=function(e,s,t){var r=y(t,s-1),n=y(t,s+1);return h(N,e)&&!h(C,n)||h(C,e)&&!h(N,r)?"\\u"+F(w(e,0),16):e};p&&r({target:"JSON",stat:!0,arity:3,forced:S||x},{stringify:function(e,s,t){var r=u(arguments),n=o(S?b:p,null,r);return x&&"string"==typeof n?v(n,T,M):n}})},9653:(e,s,t)=>{"use strict";var r=t(9781),n=t(7854),o=t(1702),i=t(4705),a=t(8052),l=t(2597),m=t(9587),d=t(7976),g=t(2190),c=t(7593),u=t(7293),f=t(8006).f,p=t(1236).f,h=t(3070).f,y=t(863),w=t(3111).trim,v="Number",F=n[v],T=F.prototype,N=n.TypeError,C=o("".slice),S=o("".charCodeAt),x=function(e){var s,t,r,n,o,i,a,l,m=c(e,"number");if(g(m))throw N("Cannot convert a Symbol value to a number");if("string"==typeof m&&m.length>2)if(m=w(m),43===(s=S(m,0))||45===s){if(88===(t=S(m,2))||120===t)return NaN}else if(48===s){switch(S(m,1)){case 66:case 98:r=2,n=49;break;case 79:case 111:r=8,n=55;break;default:return+m}for(i=(o=C(m,2)).length,a=0;a<i;a++)if((l=S(o,a))<48||l>n)return NaN;return parseInt(o,r)}return+m};if(i(v,!F(" 0o1")||!F("0b1")||F("+0x1"))){for(var b,M=function(e){var s=arguments.length<1?0:F(function(e){var s=c(e,"number");return"bigint"==typeof s?s:x(s)}(e)),t=this;return d(T,t)&&u((function(){y(t)}))?m(Object(s),t,M):s},L=r?f(F):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,fromString,range".split(","),k=0;L.length>k;k++)l(F,b=L[k])&&!l(M,b)&&h(M,b,p(F,b));M.prototype=T,T.constructor=M,a(n,v,M,{constructor:!0})}},9601:(e,s,t)=>{var r=t(2109),n=t(1574);r({target:"Object",stat:!0,arity:2,forced:Object.assign!==n},{assign:n})},9070:(e,s,t)=>{var r=t(2109),n=t(9781),o=t(3070).f;r({target:"Object",stat:!0,forced:Object.defineProperty!==o,sham:!n},{defineProperty:o})},9660:(e,s,t)=>{var r=t(2109),n=t(6293),o=t(7293),i=t(5181),a=t(7908);r({target:"Object",stat:!0,forced:!n||o((function(){i.f(1)}))},{getOwnPropertySymbols:function(e){var s=i.f;return s?s(a(e)):[]}})},1539:(e,s,t)=>{var r=t(1694),n=t(8052),o=t(288);r||n(Object.prototype,"toString",o,{unsafe:!0})},4916:(e,s,t)=>{"use strict";var r=t(2109),n=t(2261);r({target:"RegExp",proto:!0,forced:/./.exec!==n},{exec:n})},8783:(e,s,t)=>{"use strict";var r=t(8710).charAt,n=t(1340),o=t(9909),i=t(1656),a=t(6178),l="String Iterator",m=o.set,d=o.getterFor(l);i(String,"String",(function(e){m(this,{type:l,string:n(e),index:0})}),(function(){var e,s=d(this),t=s.string,n=s.index;return n>=t.length?a(void 0,!0):(e=r(t,n),s.index+=e.length,a(e,!1))}))},5306:(e,s,t)=>{"use strict";var r=t(2104),n=t(6916),o=t(1702),i=t(7007),a=t(7293),l=t(9670),m=t(614),d=t(8554),g=t(9303),c=t(7466),u=t(1340),f=t(4488),p=t(1530),h=t(8173),y=t(647),w=t(7651),v=t(5112)("replace"),F=Math.max,T=Math.min,N=o([].concat),C=o([].push),S=o("".indexOf),x=o("".slice),b="$0"==="a".replace(/./,"$0"),M=!!/./[v]&&""===/./[v]("a","$0");i("replace",(function(e,s,t){var o=M?"$":"$0";return[function(e,t){var r=f(this),o=d(e)?void 0:h(e,v);return o?n(o,e,r,t):n(s,u(r),e,t)},function(e,n){var i=l(this),a=u(e);if("string"==typeof n&&-1===S(n,o)&&-1===S(n,"$<")){var d=t(s,i,a,n);if(d.done)return d.value}var f=m(n);f||(n=u(n));var h=i.global;if(h){var v=i.unicode;i.lastIndex=0}for(var b=[];;){var M=w(i,a);if(null===M)break;if(C(b,M),!h)break;""===u(M[0])&&(i.lastIndex=p(a,c(i.lastIndex),v))}for(var L,k="",R=0,A=0;A<b.length;A++){for(var E=u((M=b[A])[0]),_=F(T(g(M.index),a.length),0),O=[],U=1;U<M.length;U++)C(O,void 0===(L=M[U])?L:String(L));var I=M.groups;if(f){var P=N([E],O,_,a);void 0!==I&&C(P,I);var j=u(r(n,void 0,P))}else j=y(E,a,_,O,I,n);_>=R&&(k+=x(a,R,_)+j,R=_+E.length)}return k+x(a,R)}]}),!!a((function(){var e=/./;return e.exec=function(){var e=[];return e.groups={a:"7"},e},"7"!=="".replace(e,"$<a>")}))||!b||M)},4032:(e,s,t)=>{"use strict";var r=t(2109),n=t(7854),o=t(6916),i=t(1702),a=t(1913),l=t(9781),m=t(6293),d=t(7293),g=t(2597),c=t(7976),u=t(9670),f=t(5656),p=t(4948),h=t(1340),y=t(9114),w=t(30),v=t(1956),F=t(8006),T=t(1156),N=t(5181),C=t(1236),S=t(3070),x=t(6048),b=t(5296),M=t(8052),L=t(2309),k=t(6200),R=t(3501),A=t(9711),E=t(5112),_=t(6061),O=t(6800),U=t(6532),I=t(8003),P=t(9909),j=t(2092).forEach,B=k("hidden"),z="Symbol",D="prototype",$=P.set,H=P.getterFor(z),G=Object[D],J=n.Symbol,V=J&&J[D],q=n.TypeError,W=n.QObject,K=C.f,Y=S.f,X=T.f,Z=b.f,Q=i([].push),ee=L("symbols"),se=L("op-symbols"),te=L("wks"),re=!W||!W[D]||!W[D].findChild,ne=l&&d((function(){return 7!=w(Y({},"a",{get:function(){return Y(this,"a",{value:7}).a}})).a}))?function(e,s,t){var r=K(G,s);r&&delete G[s],Y(e,s,t),r&&e!==G&&Y(G,s,r)}:Y,oe=function(e,s){var t=ee[e]=w(V);return $(t,{type:z,tag:e,description:s}),l||(t.description=s),t},ie=function(e,s,t){e===G&&ie(se,s,t),u(e);var r=p(s);return u(t),g(ee,r)?(t.enumerable?(g(e,B)&&e[B][r]&&(e[B][r]=!1),t=w(t,{enumerable:y(0,!1)})):(g(e,B)||Y(e,B,y(1,{})),e[B][r]=!0),ne(e,r,t)):Y(e,r,t)},ae=function(e,s){u(e);var t=f(s),r=v(t).concat(ge(t));return j(r,(function(s){l&&!o(le,t,s)||ie(e,s,t[s])})),e},le=function(e){var s=p(e),t=o(Z,this,s);return!(this===G&&g(ee,s)&&!g(se,s))&&(!(t||!g(this,s)||!g(ee,s)||g(this,B)&&this[B][s])||t)},me=function(e,s){var t=f(e),r=p(s);if(t!==G||!g(ee,r)||g(se,r)){var n=K(t,r);return!n||!g(ee,r)||g(t,B)&&t[B][r]||(n.enumerable=!0),n}},de=function(e){var s=X(f(e)),t=[];return j(s,(function(e){g(ee,e)||g(R,e)||Q(t,e)})),t},ge=function(e){var s=e===G,t=X(s?se:f(e)),r=[];return j(t,(function(e){!g(ee,e)||s&&!g(G,e)||Q(r,ee[e])})),r};m||(M(V=(J=function(){if(c(V,this))throw q("Symbol is not a constructor");var e=arguments.length&&void 0!==arguments[0]?h(arguments[0]):void 0,s=A(e),t=function(e){this===G&&o(t,se,e),g(this,B)&&g(this[B],s)&&(this[B][s]=!1),ne(this,s,y(1,e))};return l&&re&&ne(G,s,{configurable:!0,set:t}),oe(s,e)})[D],"toString",(function(){return H(this).tag})),M(J,"withoutSetter",(function(e){return oe(A(e),e)})),b.f=le,S.f=ie,x.f=ae,C.f=me,F.f=T.f=de,N.f=ge,_.f=function(e){return oe(E(e),e)},l&&(Y(V,"description",{configurable:!0,get:function(){return H(this).description}}),a||M(G,"propertyIsEnumerable",le,{unsafe:!0}))),r({global:!0,constructor:!0,wrap:!0,forced:!m,sham:!m},{Symbol:J}),j(v(te),(function(e){O(e)})),r({target:z,stat:!0,forced:!m},{useSetter:function(){re=!0},useSimple:function(){re=!1}}),r({target:"Object",stat:!0,forced:!m,sham:!l},{create:function(e,s){return void 0===s?w(e):ae(w(e),s)},defineProperty:ie,defineProperties:ae,getOwnPropertyDescriptor:me}),r({target:"Object",stat:!0,forced:!m},{getOwnPropertyNames:de}),U(),I(J,z),R[B]=!0},1817:(e,s,t)=>{"use strict";var r=t(2109),n=t(9781),o=t(7854),i=t(1702),a=t(2597),l=t(614),m=t(7976),d=t(1340),g=t(3070).f,c=t(9920),u=o.Symbol,f=u&&u.prototype;if(n&&l(u)&&(!("description"in f)||void 0!==u().description)){var p={},h=function(){var e=arguments.length<1||void 0===arguments[0]?void 0:d(arguments[0]),s=m(f,this)?new u(e):void 0===e?u():u(e);return""===e&&(p[s]=!0),s};c(h,u),h.prototype=f,f.constructor=h;var y="Symbol(test)"==String(u("test")),w=i(f.valueOf),v=i(f.toString),F=/^Symbol\((.*)\)[^)]+$/,T=i("".replace),N=i("".slice);g(f,"description",{configurable:!0,get:function(){var e=w(this);if(a(p,e))return"";var s=v(e),t=y?N(s,7,-1):T(s,F,"$1");return""===t?void 0:t}}),r({global:!0,constructor:!0,forced:!0},{Symbol:h})}},763:(e,s,t)=>{var r=t(2109),n=t(5005),o=t(2597),i=t(1340),a=t(2309),l=t(2015),m=a("string-to-symbol-registry"),d=a("symbol-to-string-registry");r({target:"Symbol",stat:!0,forced:!l},{for:function(e){var s=i(e);if(o(m,s))return m[s];var t=n("Symbol")(s);return m[s]=t,d[t]=s,t}})},2165:(e,s,t)=>{t(6800)("iterator")},2526:(e,s,t)=>{t(4032),t(763),t(6620),t(8862),t(9660)},6620:(e,s,t)=>{var r=t(2109),n=t(2597),o=t(2190),i=t(6330),a=t(2309),l=t(2015),m=a("symbol-to-string-registry");r({target:"Symbol",stat:!0,forced:!l},{keyFor:function(e){if(!o(e))throw TypeError(i(e)+" is not a symbol");if(n(m,e))return m[e]}})},6649:(e,s,t)=>{var r=t(6800),n=t(6532);r("toPrimitive"),n()},3948:(e,s,t)=>{var r=t(7854),n=t(8324),o=t(8509),i=t(6992),a=t(8880),l=t(5112),m=l("iterator"),d=l("toStringTag"),g=i.values,c=function(e,s){if(e){if(e[m]!==g)try{a(e,m,g)}catch(s){e[m]=g}if(e[d]||a(e,d,s),n[s])for(var t in i)if(e[t]!==i[t])try{a(e,t,i[t])}catch(s){e[t]=i[t]}}};for(var u in n)c(r[u]&&r[u].prototype,u);c(o,"DOMTokenList")},9695:(e,s,t)=>{"use strict";t.d(s,{Z:()=>a});var r=t(7537),n=t.n(r),o=t(3645),i=t.n(o)()(n());i.push([e.id,"iframe[data-v-bddb939e]{width:100%;height:calc(100vh - var(--header-height));margin-top:var(--header-height);position:absolute}","",{version:3,sources:["webpack://./src/views/PDFView.vue"],names:[],mappings:"AACA,wBACC,UAAA,CACA,yCAAA,CACA,+BAAA,CACA,iBAAA",sourcesContent:["\niframe {\n\twidth: 100%;\n\theight: calc(100vh - var(--header-height));\n\tmargin-top: var(--header-height);\n\tposition: absolute;\n}\n\n"],sourceRoot:""}]);const a=i},3645:e=>{"use strict";e.exports=function(e){var s=[];return s.toString=function(){return this.map((function(s){var t="",r=void 0!==s[5];return s[4]&&(t+="@supports (".concat(s[4],") {")),s[2]&&(t+="@media ".concat(s[2]," {")),r&&(t+="@layer".concat(s[5].length>0?" ".concat(s[5]):""," {")),t+=e(s),r&&(t+="}"),s[2]&&(t+="}"),s[4]&&(t+="}"),t})).join("")},s.i=function(e,t,r,n,o){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(r)for(var a=0;a<this.length;a++){var l=this[a][0];null!=l&&(i[l]=!0)}for(var m=0;m<e.length;m++){var d=[].concat(e[m]);r&&i[d[0]]||(void 0!==o&&(void 0===d[5]||(d[1]="@layer".concat(d[5].length>0?" ".concat(d[5]):""," {").concat(d[1],"}")),d[5]=o),t&&(d[2]?(d[1]="@media ".concat(d[2]," {").concat(d[1],"}"),d[2]=t):d[2]=t),n&&(d[4]?(d[1]="@supports (".concat(d[4],") {").concat(d[1],"}"),d[4]=n):d[4]="".concat(n)),s.push(d))}},s}},7537:e=>{"use strict";e.exports=function(e){var s=e[1],t=e[3];if(!t)return s;if("function"==typeof btoa){var r=btoa(unescape(encodeURIComponent(JSON.stringify(t)))),n="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(r),o="/*# ".concat(n," */");return[s].concat([o]).join("\n")}return[s].join("\n")}},7856:function(e){e.exports=function(){"use strict";const{entries:e,setPrototypeOf:s,isFrozen:t,getPrototypeOf:r,getOwnPropertyDescriptor:n}=Object;let{freeze:o,seal:i,create:a}=Object,{apply:l,construct:m}="undefined"!=typeof Reflect&&Reflect;o||(o=function(e){return e}),i||(i=function(e){return e}),l||(l=function(e,s,t){return e.apply(s,t)}),m||(m=function(e,s){return new e(...s)});const d=T(Array.prototype.forEach),g=T(Array.prototype.pop),c=T(Array.prototype.push),u=T(String.prototype.toLowerCase),f=T(String.prototype.toString),p=T(String.prototype.match),h=T(String.prototype.replace),y=T(String.prototype.indexOf),w=T(String.prototype.trim),v=T(RegExp.prototype.test),F=N(TypeError);function T(e){return function(s){for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];return l(e,s,r)}}function N(e){return function(){for(var s=arguments.length,t=new Array(s),r=0;r<s;r++)t[r]=arguments[r];return m(e,t)}}function C(e,r){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:u;s&&s(e,null);let o=r.length;for(;o--;){let s=r[o];if("string"==typeof s){const e=n(s);e!==s&&(t(r)||(r[o]=e),s=e)}e[s]=!0}return e}function S(s){const t=a(null);for(const[r,o]of e(s))void 0!==n(s,r)&&(t[r]=o);return t}function x(e,s){for(;null!==e;){const t=n(e,s);if(t){if(t.get)return T(t.get);if("function"==typeof t.value)return T(t.value)}e=r(e)}function t(e){return console.warn("fallback value for",e),null}return t}const b=o(["a","abbr","acronym","address","area","article","aside","audio","b","bdi","bdo","big","blink","blockquote","body","br","button","canvas","caption","center","cite","code","col","colgroup","content","data","datalist","dd","decorator","del","details","dfn","dialog","dir","div","dl","dt","element","em","fieldset","figcaption","figure","font","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","img","input","ins","kbd","label","legend","li","main","map","mark","marquee","menu","menuitem","meter","nav","nobr","ol","optgroup","option","output","p","picture","pre","progress","q","rp","rt","ruby","s","samp","section","select","shadow","small","source","spacer","span","strike","strong","style","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","time","tr","track","tt","u","ul","var","video","wbr"]),M=o(["svg","a","altglyph","altglyphdef","altglyphitem","animatecolor","animatemotion","animatetransform","circle","clippath","defs","desc","ellipse","filter","font","g","glyph","glyphref","hkern","image","line","lineargradient","marker","mask","metadata","mpath","path","pattern","polygon","polyline","radialgradient","rect","stop","style","switch","symbol","text","textpath","title","tref","tspan","view","vkern"]),L=o(["feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence"]),k=o(["animate","color-profile","cursor","discard","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","foreignobject","hatch","hatchpath","mesh","meshgradient","meshpatch","meshrow","missing-glyph","script","set","solidcolor","unknown","use"]),R=o(["math","menclose","merror","mfenced","mfrac","mglyph","mi","mlabeledtr","mmultiscripts","mn","mo","mover","mpadded","mphantom","mroot","mrow","ms","mspace","msqrt","mstyle","msub","msup","msubsup","mtable","mtd","mtext","mtr","munder","munderover","mprescripts"]),A=o(["maction","maligngroup","malignmark","mlongdiv","mscarries","mscarry","msgroup","mstack","msline","msrow","semantics","annotation","annotation-xml","mprescripts","none"]),E=o(["#text"]),_=o(["accept","action","align","alt","autocapitalize","autocomplete","autopictureinpicture","autoplay","background","bgcolor","border","capture","cellpadding","cellspacing","checked","cite","class","clear","color","cols","colspan","controls","controlslist","coords","crossorigin","datetime","decoding","default","dir","disabled","disablepictureinpicture","disableremoteplayback","download","draggable","enctype","enterkeyhint","face","for","headers","height","hidden","high","href","hreflang","id","inputmode","integrity","ismap","kind","label","lang","list","loading","loop","low","max","maxlength","media","method","min","minlength","multiple","muted","name","nonce","noshade","novalidate","nowrap","open","optimum","pattern","placeholder","playsinline","poster","preload","pubdate","radiogroup","readonly","rel","required","rev","reversed","role","rows","rowspan","spellcheck","scope","selected","shape","size","sizes","span","srclang","start","src","srcset","step","style","summary","tabindex","title","translate","type","usemap","valign","value","width","xmlns","slot"]),O=o(["accent-height","accumulate","additive","alignment-baseline","ascent","attributename","attributetype","azimuth","basefrequency","baseline-shift","begin","bias","by","class","clip","clippathunits","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","cx","cy","d","dx","dy","diffuseconstant","direction","display","divisor","dur","edgemode","elevation","end","fill","fill-opacity","fill-rule","filter","filterunits","flood-color","flood-opacity","font-family","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-weight","fx","fy","g1","g2","glyph-name","glyphref","gradientunits","gradienttransform","height","href","id","image-rendering","in","in2","k","k1","k2","k3","k4","kerning","keypoints","keysplines","keytimes","lang","lengthadjust","letter-spacing","kernelmatrix","kernelunitlength","lighting-color","local","marker-end","marker-mid","marker-start","markerheight","markerunits","markerwidth","maskcontentunits","maskunits","max","mask","media","method","mode","min","name","numoctaves","offset","operator","opacity","order","orient","orientation","origin","overflow","paint-order","path","pathlength","patterncontentunits","patterntransform","patternunits","points","preservealpha","preserveaspectratio","primitiveunits","r","rx","ry","radius","refx","refy","repeatcount","repeatdur","restart","result","rotate","scale","seed","shape-rendering","specularconstant","specularexponent","spreadmethod","startoffset","stddeviation","stitchtiles","stop-color","stop-opacity","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke","stroke-width","style","surfacescale","systemlanguage","tabindex","targetx","targety","transform","transform-origin","text-anchor","text-decoration","text-rendering","textlength","type","u1","u2","unicode","values","viewbox","visibility","version","vert-adv-y","vert-origin-x","vert-origin-y","width","word-spacing","wrap","writing-mode","xchannelselector","ychannelselector","x","x1","x2","xmlns","y","y1","y2","z","zoomandpan"]),U=o(["accent","accentunder","align","bevelled","close","columnsalign","columnlines","columnspan","denomalign","depth","dir","display","displaystyle","encoding","fence","frame","height","href","id","largeop","length","linethickness","lspace","lquote","mathbackground","mathcolor","mathsize","mathvariant","maxsize","minsize","movablelimits","notation","numalign","open","rowalign","rowlines","rowspacing","rowspan","rspace","rquote","scriptlevel","scriptminsize","scriptsizemultiplier","selection","separator","separators","stretchy","subscriptshift","supscriptshift","symmetric","voffset","width","xmlns"]),I=o(["xlink:href","xml:id","xlink:title","xml:space","xmlns:xlink"]),P=i(/\{\{[\w\W]*|[\w\W]*\}\}/gm),j=i(/<%[\w\W]*|[\w\W]*%>/gm),B=i(/\${[\w\W]*}/gm),z=i(/^data-[\-\w.\u00B7-\uFFFF]/),D=i(/^aria-[\-\w]+$/),$=i(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),H=i(/^(?:\w+script|data):/i),G=i(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),J=i(/^html$/i);var V=Object.freeze({__proto__:null,MUSTACHE_EXPR:P,ERB_EXPR:j,TMPLIT_EXPR:B,DATA_ATTR:z,ARIA_ATTR:D,IS_ALLOWED_URI:$,IS_SCRIPT_OR_DATA:H,ATTR_WHITESPACE:G,DOCTYPE_NAME:J});const q=function(){return"undefined"==typeof window?null:window},W=function(e,s){if("object"!=typeof e||"function"!=typeof e.createPolicy)return null;let t=null;const r="data-tt-policy-suffix";s&&s.hasAttribute(r)&&(t=s.getAttribute(r));const n="dompurify"+(t?"#"+t:"");try{return e.createPolicy(n,{createHTML:e=>e,createScriptURL:e=>e})}catch(e){return console.warn("TrustedTypes policy "+n+" could not be created."),null}};function K(){let s=arguments.length>0&&void 0!==arguments[0]?arguments[0]:q();const t=e=>K(e);if(t.version="3.0.6",t.removed=[],!s||!s.document||9!==s.document.nodeType)return t.isSupported=!1,t;let{document:r}=s;const n=r,i=n.currentScript,{DocumentFragment:l,HTMLTemplateElement:m,Node:T,Element:N,NodeFilter:P,NamedNodeMap:j=s.NamedNodeMap||s.MozNamedAttrMap,HTMLFormElement:B,DOMParser:z,trustedTypes:D}=s,H=N.prototype,G=x(H,"cloneNode"),Y=x(H,"nextSibling"),X=x(H,"childNodes"),Z=x(H,"parentNode");if("function"==typeof m){const e=r.createElement("template");e.content&&e.content.ownerDocument&&(r=e.content.ownerDocument)}let Q,ee="";const{implementation:se,createNodeIterator:te,createDocumentFragment:re,getElementsByTagName:ne}=r,{importNode:oe}=n;let ie={};t.isSupported="function"==typeof e&&"function"==typeof Z&&se&&void 0!==se.createHTMLDocument;const{MUSTACHE_EXPR:ae,ERB_EXPR:le,TMPLIT_EXPR:me,DATA_ATTR:de,ARIA_ATTR:ge,IS_SCRIPT_OR_DATA:ce,ATTR_WHITESPACE:ue}=V;let{IS_ALLOWED_URI:fe}=V,pe=null;const he=C({},[...b,...M,...L,...R,...E]);let ye=null;const we=C({},[..._,...O,...U,...I]);let ve=Object.seal(a(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),Fe=null,Te=null,Ne=!0,Ce=!0,Se=!1,xe=!0,be=!1,Me=!1,Le=!1,ke=!1,Re=!1,Ae=!1,Ee=!1,_e=!0,Oe=!1;const Ue="user-content-";let Ie=!0,Pe=!1,je={},Be=null;const ze=C({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","style","svg","template","thead","title","video","xmp"]);let De=null;const $e=C({},["audio","video","img","source","image","track"]);let He=null;const Ge=C({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),Je="http://www.w3.org/1998/Math/MathML",Ve="http://www.w3.org/2000/svg",qe="http://www.w3.org/1999/xhtml";let We=qe,Ke=!1,Ye=null;const Xe=C({},[Je,Ve,qe],f);let Ze=null;const Qe=["application/xhtml+xml","text/html"],es="text/html";let ss=null,ts=null;const rs=r.createElement("form"),ns=function(e){return e instanceof RegExp||e instanceof Function},os=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(!ts||ts!==e){if(e&&"object"==typeof e||(e={}),e=S(e),Ze=Ze=-1===Qe.indexOf(e.PARSER_MEDIA_TYPE)?es:e.PARSER_MEDIA_TYPE,ss="application/xhtml+xml"===Ze?f:u,pe="ALLOWED_TAGS"in e?C({},e.ALLOWED_TAGS,ss):he,ye="ALLOWED_ATTR"in e?C({},e.ALLOWED_ATTR,ss):we,Ye="ALLOWED_NAMESPACES"in e?C({},e.ALLOWED_NAMESPACES,f):Xe,He="ADD_URI_SAFE_ATTR"in e?C(S(Ge),e.ADD_URI_SAFE_ATTR,ss):Ge,De="ADD_DATA_URI_TAGS"in e?C(S($e),e.ADD_DATA_URI_TAGS,ss):$e,Be="FORBID_CONTENTS"in e?C({},e.FORBID_CONTENTS,ss):ze,Fe="FORBID_TAGS"in e?C({},e.FORBID_TAGS,ss):{},Te="FORBID_ATTR"in e?C({},e.FORBID_ATTR,ss):{},je="USE_PROFILES"in e&&e.USE_PROFILES,Ne=!1!==e.ALLOW_ARIA_ATTR,Ce=!1!==e.ALLOW_DATA_ATTR,Se=e.ALLOW_UNKNOWN_PROTOCOLS||!1,xe=!1!==e.ALLOW_SELF_CLOSE_IN_ATTR,be=e.SAFE_FOR_TEMPLATES||!1,Me=e.WHOLE_DOCUMENT||!1,Re=e.RETURN_DOM||!1,Ae=e.RETURN_DOM_FRAGMENT||!1,Ee=e.RETURN_TRUSTED_TYPE||!1,ke=e.FORCE_BODY||!1,_e=!1!==e.SANITIZE_DOM,Oe=e.SANITIZE_NAMED_PROPS||!1,Ie=!1!==e.KEEP_CONTENT,Pe=e.IN_PLACE||!1,fe=e.ALLOWED_URI_REGEXP||$,We=e.NAMESPACE||qe,ve=e.CUSTOM_ELEMENT_HANDLING||{},e.CUSTOM_ELEMENT_HANDLING&&ns(e.CUSTOM_ELEMENT_HANDLING.tagNameCheck)&&(ve.tagNameCheck=e.CUSTOM_ELEMENT_HANDLING.tagNameCheck),e.CUSTOM_ELEMENT_HANDLING&&ns(e.CUSTOM_ELEMENT_HANDLING.attributeNameCheck)&&(ve.attributeNameCheck=e.CUSTOM_ELEMENT_HANDLING.attributeNameCheck),e.CUSTOM_ELEMENT_HANDLING&&"boolean"==typeof e.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements&&(ve.allowCustomizedBuiltInElements=e.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements),be&&(Ce=!1),Ae&&(Re=!0),je&&(pe=C({},[...E]),ye=[],!0===je.html&&(C(pe,b),C(ye,_)),!0===je.svg&&(C(pe,M),C(ye,O),C(ye,I)),!0===je.svgFilters&&(C(pe,L),C(ye,O),C(ye,I)),!0===je.mathMl&&(C(pe,R),C(ye,U),C(ye,I))),e.ADD_TAGS&&(pe===he&&(pe=S(pe)),C(pe,e.ADD_TAGS,ss)),e.ADD_ATTR&&(ye===we&&(ye=S(ye)),C(ye,e.ADD_ATTR,ss)),e.ADD_URI_SAFE_ATTR&&C(He,e.ADD_URI_SAFE_ATTR,ss),e.FORBID_CONTENTS&&(Be===ze&&(Be=S(Be)),C(Be,e.FORBID_CONTENTS,ss)),Ie&&(pe["#text"]=!0),Me&&C(pe,["html","head","body"]),pe.table&&(C(pe,["tbody"]),delete Fe.tbody),e.TRUSTED_TYPES_POLICY){if("function"!=typeof e.TRUSTED_TYPES_POLICY.createHTML)throw F('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');if("function"!=typeof e.TRUSTED_TYPES_POLICY.createScriptURL)throw F('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');Q=e.TRUSTED_TYPES_POLICY,ee=Q.createHTML("")}else void 0===Q&&(Q=W(D,i)),null!==Q&&"string"==typeof ee&&(ee=Q.createHTML(""));o&&o(e),ts=e}},is=C({},["mi","mo","mn","ms","mtext"]),as=C({},["foreignobject","desc","title","annotation-xml"]),ls=C({},["title","style","font","a","script"]),ms=C({},M);C(ms,L),C(ms,k);const ds=C({},R);C(ds,A);const gs=function(e){let s=Z(e);s&&s.tagName||(s={namespaceURI:We,tagName:"template"});const t=u(e.tagName),r=u(s.tagName);return!!Ye[e.namespaceURI]&&(e.namespaceURI===Ve?s.namespaceURI===qe?"svg"===t:s.namespaceURI===Je?"svg"===t&&("annotation-xml"===r||is[r]):Boolean(ms[t]):e.namespaceURI===Je?s.namespaceURI===qe?"math"===t:s.namespaceURI===Ve?"math"===t&&as[r]:Boolean(ds[t]):e.namespaceURI===qe?!(s.namespaceURI===Ve&&!as[r])&&!(s.namespaceURI===Je&&!is[r])&&!ds[t]&&(ls[t]||!ms[t]):!("application/xhtml+xml"!==Ze||!Ye[e.namespaceURI]))},cs=function(e){c(t.removed,{element:e});try{e.parentNode.removeChild(e)}catch(s){e.remove()}},us=function(e,s){try{c(t.removed,{attribute:s.getAttributeNode(e),from:s})}catch(e){c(t.removed,{attribute:null,from:s})}if(s.removeAttribute(e),"is"===e&&!ye[e])if(Re||Ae)try{cs(s)}catch(e){}else try{s.setAttribute(e,"")}catch(e){}},fs=function(e){let s=null,t=null;if(ke)e="<remove></remove>"+e;else{const s=p(e,/^[\r\n\t ]+/);t=s&&s[0]}"application/xhtml+xml"===Ze&&We===qe&&(e='<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body>'+e+"</body></html>");const n=Q?Q.createHTML(e):e;if(We===qe)try{s=(new z).parseFromString(n,Ze)}catch(e){}if(!s||!s.documentElement){s=se.createDocument(We,"template",null);try{s.documentElement.innerHTML=Ke?ee:n}catch(e){}}const o=s.body||s.documentElement;return e&&t&&o.insertBefore(r.createTextNode(t),o.childNodes[0]||null),We===qe?ne.call(s,Me?"html":"body")[0]:Me?s.documentElement:o},ps=function(e){return te.call(e.ownerDocument||e,e,P.SHOW_ELEMENT|P.SHOW_COMMENT|P.SHOW_TEXT,null)},hs=function(e){return e instanceof B&&("string"!=typeof e.nodeName||"string"!=typeof e.textContent||"function"!=typeof e.removeChild||!(e.attributes instanceof j)||"function"!=typeof e.removeAttribute||"function"!=typeof e.setAttribute||"string"!=typeof e.namespaceURI||"function"!=typeof e.insertBefore||"function"!=typeof e.hasChildNodes)},ys=function(e){return"function"==typeof T&&e instanceof T},ws=function(e,s,r){ie[e]&&d(ie[e],(e=>{e.call(t,s,r,ts)}))},vs=function(e){let s=null;if(ws("beforeSanitizeElements",e,null),hs(e))return cs(e),!0;const r=ss(e.nodeName);if(ws("uponSanitizeElement",e,{tagName:r,allowedTags:pe}),e.hasChildNodes()&&!ys(e.firstElementChild)&&v(/<[/\w]/g,e.innerHTML)&&v(/<[/\w]/g,e.textContent))return cs(e),!0;if(!pe[r]||Fe[r]){if(!Fe[r]&&Ts(r)){if(ve.tagNameCheck instanceof RegExp&&v(ve.tagNameCheck,r))return!1;if(ve.tagNameCheck instanceof Function&&ve.tagNameCheck(r))return!1}if(Ie&&!Be[r]){const s=Z(e)||e.parentNode,t=X(e)||e.childNodes;if(t&&s)for(let r=t.length-1;r>=0;--r)s.insertBefore(G(t[r],!0),Y(e))}return cs(e),!0}return e instanceof N&&!gs(e)?(cs(e),!0):"noscript"!==r&&"noembed"!==r&&"noframes"!==r||!v(/<\/no(script|embed|frames)/i,e.innerHTML)?(be&&3===e.nodeType&&(s=e.textContent,d([ae,le,me],(e=>{s=h(s,e," ")})),e.textContent!==s&&(c(t.removed,{element:e.cloneNode()}),e.textContent=s)),ws("afterSanitizeElements",e,null),!1):(cs(e),!0)},Fs=function(e,s,t){if(_e&&("id"===s||"name"===s)&&(t in r||t in rs))return!1;if(Ce&&!Te[s]&&v(de,s));else if(Ne&&v(ge,s));else if(!ye[s]||Te[s]){if(!(Ts(e)&&(ve.tagNameCheck instanceof RegExp&&v(ve.tagNameCheck,e)||ve.tagNameCheck instanceof Function&&ve.tagNameCheck(e))&&(ve.attributeNameCheck instanceof RegExp&&v(ve.attributeNameCheck,s)||ve.attributeNameCheck instanceof Function&&ve.attributeNameCheck(s))||"is"===s&&ve.allowCustomizedBuiltInElements&&(ve.tagNameCheck instanceof RegExp&&v(ve.tagNameCheck,t)||ve.tagNameCheck instanceof Function&&ve.tagNameCheck(t))))return!1}else if(He[s]);else if(v(fe,h(t,ue,"")));else if("src"!==s&&"xlink:href"!==s&&"href"!==s||"script"===e||0!==y(t,"data:")||!De[e])if(Se&&!v(ce,h(t,ue,"")));else if(t)return!1;return!0},Ts=function(e){return e.indexOf("-")>0},Ns=function(e){ws("beforeSanitizeAttributes",e,null);const{attributes:s}=e;if(!s)return;const r={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:ye};let n=s.length;for(;n--;){const o=s[n],{name:i,namespaceURI:a,value:l}=o,m=ss(i);let c="value"===i?l:w(l);if(r.attrName=m,r.attrValue=c,r.keepAttr=!0,r.forceKeepAttr=void 0,ws("uponSanitizeAttribute",e,r),c=r.attrValue,r.forceKeepAttr)continue;if(us(i,e),!r.keepAttr)continue;if(!xe&&v(/\/>/i,c)){us(i,e);continue}be&&d([ae,le,me],(e=>{c=h(c,e," ")}));const u=ss(e.nodeName);if(Fs(u,m,c)){if(!Oe||"id"!==m&&"name"!==m||(us(i,e),c=Ue+c),Q&&"object"==typeof D&&"function"==typeof D.getAttributeType)if(a);else switch(D.getAttributeType(u,m)){case"TrustedHTML":c=Q.createHTML(c);break;case"TrustedScriptURL":c=Q.createScriptURL(c)}try{a?e.setAttributeNS(a,i,c):e.setAttribute(i,c),g(t.removed)}catch(e){}}}ws("afterSanitizeAttributes",e,null)},Cs=function e(s){let t=null;const r=ps(s);for(ws("beforeSanitizeShadowDOM",s,null);t=r.nextNode();)ws("uponSanitizeShadowNode",t,null),vs(t)||(t.content instanceof l&&e(t.content),Ns(t));ws("afterSanitizeShadowDOM",s,null)};return t.sanitize=function(e){let s=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=null,o=null,i=null,a=null;if(Ke=!e,Ke&&(e="\x3c!--\x3e"),"string"!=typeof e&&!ys(e)){if("function"!=typeof e.toString)throw F("toString is not a function");if("string"!=typeof(e=e.toString()))throw F("dirty is not a string, aborting")}if(!t.isSupported)return e;if(Le||os(s),t.removed=[],"string"==typeof e&&(Pe=!1),Pe){if(e.nodeName){const s=ss(e.nodeName);if(!pe[s]||Fe[s])throw F("root node is forbidden and cannot be sanitized in-place")}}else if(e instanceof T)r=fs("\x3c!----\x3e"),o=r.ownerDocument.importNode(e,!0),1===o.nodeType&&"BODY"===o.nodeName||"HTML"===o.nodeName?r=o:r.appendChild(o);else{if(!Re&&!be&&!Me&&-1===e.indexOf("<"))return Q&&Ee?Q.createHTML(e):e;if(r=fs(e),!r)return Re?null:Ee?ee:""}r&&ke&&cs(r.firstChild);const m=ps(Pe?e:r);for(;i=m.nextNode();)vs(i)||(i.content instanceof l&&Cs(i.content),Ns(i));if(Pe)return e;if(Re){if(Ae)for(a=re.call(r.ownerDocument);r.firstChild;)a.appendChild(r.firstChild);else a=r;return(ye.shadowroot||ye.shadowrootmode)&&(a=oe.call(n,a,!0)),a}let g=Me?r.outerHTML:r.innerHTML;return Me&&pe["!doctype"]&&r.ownerDocument&&r.ownerDocument.doctype&&r.ownerDocument.doctype.name&&v(J,r.ownerDocument.doctype.name)&&(g="<!DOCTYPE "+r.ownerDocument.doctype.name+">\n"+g),be&&d([ae,le,me],(e=>{g=h(g,e," ")})),Q&&Ee?Q.createHTML(g):g},t.setConfig=function(){os(arguments.length>0&&void 0!==arguments[0]?arguments[0]:{}),Le=!0},t.clearConfig=function(){ts=null,Le=!1},t.isValidAttribute=function(e,s,t){ts||os({});const r=ss(e),n=ss(s);return Fs(r,n,t)},t.addHook=function(e,s){"function"==typeof s&&(ie[e]=ie[e]||[],c(ie[e],s))},t.removeHook=function(e){if(ie[e])return g(ie[e])},t.removeHooks=function(e){ie[e]&&(ie[e]=[])},t.removeAllHooks=function(){ie={}},t}return K()}()},5573:e=>{"use strict";var s=/["'&<>]/;e.exports=function(e){var t,r=""+e,n=s.exec(r);if(!n)return r;var o="",i=0,a=0;for(i=n.index;i<r.length;i++){switch(r.charCodeAt(i)){case 34:t="&quot;";break;case 38:t="&amp;";break;case 39:t="&#39;";break;case 60:t="&lt;";break;case 62:t="&gt;";break;default:continue}a!==i&&(o+=r.substring(a,i)),a=i+1,o+=t}return a!==i?o+r.substring(a,i):o}},645:(e,s)=>{s.read=function(e,s,t,r,n){var o,i,a=8*n-r-1,l=(1<<a)-1,m=l>>1,d=-7,g=t?n-1:0,c=t?-1:1,u=e[s+g];for(g+=c,o=u&(1<<-d)-1,u>>=-d,d+=a;d>0;o=256*o+e[s+g],g+=c,d-=8);for(i=o&(1<<-d)-1,o>>=-d,d+=r;d>0;i=256*i+e[s+g],g+=c,d-=8);if(0===o)o=1-m;else{if(o===l)return i?NaN:1/0*(u?-1:1);i+=Math.pow(2,r),o-=m}return(u?-1:1)*i*Math.pow(2,o-r)},s.write=function(e,s,t,r,n,o){var i,a,l,m=8*o-n-1,d=(1<<m)-1,g=d>>1,c=23===n?Math.pow(2,-24)-Math.pow(2,-77):0,u=r?0:o-1,f=r?1:-1,p=s<0||0===s&&1/s<0?1:0;for(s=Math.abs(s),isNaN(s)||s===1/0?(a=isNaN(s)?1:0,i=d):(i=Math.floor(Math.log(s)/Math.LN2),s*(l=Math.pow(2,-i))<1&&(i--,l*=2),(s+=i+g>=1?c/l:c*Math.pow(2,1-g))*l>=2&&(i++,l/=2),i+g>=d?(a=0,i=d):i+g>=1?(a=(s*l-1)*Math.pow(2,n),i+=g):(a=s*Math.pow(2,g-1)*Math.pow(2,n),i=0));n>=8;e[t+u]=255&a,u+=f,a/=256,n-=8);for(i=i<<n|a,m+=n;m>0;e[t+u]=255&i,u+=f,i/=256,m-=8);e[t+u-f]|=128*p}},9208:(e,s,t)=>{var r="__lodash_hash_undefined__",n=1/0,o="[object Function]",i="[object GeneratorFunction]",a="[object Symbol]",l=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,m=/^\w*$/,d=/^\./,g=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,c=/\\(\\)?/g,u=/^\[object .+?Constructor\]$/,f="object"==typeof t.g&&t.g&&t.g.Object===Object&&t.g,p="object"==typeof self&&self&&self.Object===Object&&self,h=f||p||Function("return this")();var y,w=Array.prototype,v=Function.prototype,F=Object.prototype,T=h["__core-js_shared__"],N=(y=/[^.]+$/.exec(T&&T.keys&&T.keys.IE_PROTO||""))?"Symbol(src)_1."+y:"",C=v.toString,S=F.hasOwnProperty,x=F.toString,b=RegExp("^"+C.call(S).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),M=h.Symbol,L=w.splice,k=z(h,"Map"),R=z(Object,"create"),A=M?M.prototype:void 0,E=A?A.toString:void 0;function _(e){var s=-1,t=e?e.length:0;for(this.clear();++s<t;){var r=e[s];this.set(r[0],r[1])}}function O(e){var s=-1,t=e?e.length:0;for(this.clear();++s<t;){var r=e[s];this.set(r[0],r[1])}}function U(e){var s=-1,t=e?e.length:0;for(this.clear();++s<t;){var r=e[s];this.set(r[0],r[1])}}function I(e,s){for(var t,r,n=e.length;n--;)if((t=e[n][0])===(r=s)||t!=t&&r!=r)return n;return-1}function P(e,s){var t;s=function(e,s){if(G(e))return!1;var t=typeof e;if("number"==t||"symbol"==t||"boolean"==t||null==e||V(e))return!0;return m.test(e)||!l.test(e)||null!=s&&e in Object(s)}(s,e)?[s]:G(t=s)?t:D(t);for(var r=0,n=s.length;null!=e&&r<n;)e=e[$(s[r++])];return r&&r==n?e:void 0}function j(e){if(!J(e)||(s=e,N&&N in s))return!1;var s,t=function(e){var s=J(e)?x.call(e):"";return s==o||s==i}(e)||function(e){var s=!1;if(null!=e&&"function"!=typeof e.toString)try{s=!!(e+"")}catch(e){}return s}(e)?b:u;return t.test(function(e){if(null!=e){try{return C.call(e)}catch(e){}try{return e+""}catch(e){}}return""}(e))}function B(e,s){var t,r,n=e.__data__;return("string"==(r=typeof(t=s))||"number"==r||"symbol"==r||"boolean"==r?"__proto__"!==t:null===t)?n["string"==typeof s?"string":"hash"]:n.map}function z(e,s){var t=function(e,s){return null==e?void 0:e[s]}(e,s);return j(t)?t:void 0}_.prototype.clear=function(){this.__data__=R?R(null):{}},_.prototype.delete=function(e){return this.has(e)&&delete this.__data__[e]},_.prototype.get=function(e){var s=this.__data__;if(R){var t=s[e];return t===r?void 0:t}return S.call(s,e)?s[e]:void 0},_.prototype.has=function(e){var s=this.__data__;return R?void 0!==s[e]:S.call(s,e)},_.prototype.set=function(e,s){return this.__data__[e]=R&&void 0===s?r:s,this},O.prototype.clear=function(){this.__data__=[]},O.prototype.delete=function(e){var s=this.__data__,t=I(s,e);return!(t<0)&&(t==s.length-1?s.pop():L.call(s,t,1),!0)},O.prototype.get=function(e){var s=this.__data__,t=I(s,e);return t<0?void 0:s[t][1]},O.prototype.has=function(e){return I(this.__data__,e)>-1},O.prototype.set=function(e,s){var t=this.__data__,r=I(t,e);return r<0?t.push([e,s]):t[r][1]=s,this},U.prototype.clear=function(){this.__data__={hash:new _,map:new(k||O),string:new _}},U.prototype.delete=function(e){return B(this,e).delete(e)},U.prototype.get=function(e){return B(this,e).get(e)},U.prototype.has=function(e){return B(this,e).has(e)},U.prototype.set=function(e,s){return B(this,e).set(e,s),this};var D=H((function(e){var s;e=null==(s=e)?"":function(e){if("string"==typeof e)return e;if(V(e))return E?E.call(e):"";var s=e+"";return"0"==s&&1/e==-n?"-0":s}(s);var t=[];return d.test(e)&&t.push(""),e.replace(g,(function(e,s,r,n){t.push(r?n.replace(c,"$1"):s||e)})),t}));function $(e){if("string"==typeof e||V(e))return e;var s=e+"";return"0"==s&&1/e==-n?"-0":s}function H(e,s){if("function"!=typeof e||s&&"function"!=typeof s)throw new TypeError("Expected a function");var t=function(){var r=arguments,n=s?s.apply(this,r):r[0],o=t.cache;if(o.has(n))return o.get(n);var i=e.apply(this,r);return t.cache=o.set(n,i),i};return t.cache=new(H.Cache||U),t}H.Cache=U;var G=Array.isArray;function J(e){var s=typeof e;return!!e&&("object"==s||"function"==s)}function V(e){return"symbol"==typeof e||function(e){return!!e&&"object"==typeof e}(e)&&x.call(e)==a}e.exports=function(e,s,t){var r=null==e?void 0:P(e,s);return void 0===r?t:r}},7699:(e,s,t)=>{"use strict";var r=t(9208),n=t(4587);function o(e){e=e||{},this.catalogs={},this.locale="",this.domain="messages",this.listeners=[],this.sourceLocale="",e.sourceLocale&&("string"==typeof e.sourceLocale?this.sourceLocale=e.sourceLocale:this.warn("The `sourceLocale` option should be a string")),this.debug="debug"in e&&!0===e.debug}e.exports=o,o.prototype.on=function(e,s){this.listeners.push({eventName:e,callback:s})},o.prototype.off=function(e,s){this.listeners=this.listeners.filter((function(t){return!1==(t.eventName===e&&t.callback===s)}))},o.prototype.emit=function(e,s){for(var t=0;t<this.listeners.length;t++){var r=this.listeners[t];r.eventName===e&&r.callback(s)}},o.prototype.warn=function(e){this.debug&&console.warn(e),this.emit("error",new Error(e))},o.prototype.addTranslations=function(e,s,t){this.catalogs[e]||(this.catalogs[e]={}),this.catalogs[e][s]=t},o.prototype.setLocale=function(e){"string"==typeof e?(""===e.trim()&&this.warn("You called setLocale() with an empty value, which makes little sense."),e===this.sourceLocale||this.catalogs[e]||this.warn('You called setLocale() with "'+e+'", but no translations for that locale has been added.'),this.locale=e):this.warn("You called setLocale() with an argument of type "+typeof e+". The locale must be a string.")},o.prototype.setTextDomain=function(e){"string"==typeof e?(""===e.trim()&&this.warn("You called setTextDomain() with an empty `domain` value."),this.domain=e):this.warn("You called setTextDomain() with an argument of type "+typeof e+". The domain must be a string.")},o.prototype.gettext=function(e){return this.dnpgettext(this.domain,"",e)},o.prototype.dgettext=function(e,s){return this.dnpgettext(e,"",s)},o.prototype.ngettext=function(e,s,t){return this.dnpgettext(this.domain,"",e,s,t)},o.prototype.dngettext=function(e,s,t,r){return this.dnpgettext(e,"",s,t,r)},o.prototype.pgettext=function(e,s){return this.dnpgettext(this.domain,e,s)},o.prototype.dpgettext=function(e,s,t){return this.dnpgettext(e,s,t)},o.prototype.npgettext=function(e,s,t,r){return this.dnpgettext(this.domain,e,s,t,r)},o.prototype.dnpgettext=function(e,s,t,r,i){var a,l,m=t;if(s=s||"",isNaN(i)||1===i||(m=r||t),a=this._getTranslation(e,s,t)){if("number"==typeof i)"boolean"==typeof(l=(0,n[o.getLanguageCode(this.locale)].pluralsFunc)(i))&&(l=l?1:0);else l=0;return a.msgstr[l]||m}return this.sourceLocale&&this.locale===this.sourceLocale||this.warn('No translation was found for msgid "'+t+'" in msgctxt "'+s+'" and domain "'+e+'"'),m},o.prototype.getComment=function(e,s,t){var r;return(r=this._getTranslation(e,s,t))&&r.comments||{}},o.prototype._getTranslation=function(e,s,t){return s=s||"",r(this.catalogs,[this.locale,e,"translations",s,t])},o.getLanguageCode=function(e){return e.split(/[\-_]/)[0].toLowerCase()},o.prototype.textdomain=function(e){this.debug&&console.warn("textdomain(domain) was used to set locales in node-gettext v1. Make sure you are using it for domains, and switch to setLocale(locale) if you are not.\n\n To read more about the migration from node-gettext v1 to v2, see https://github.com/alexanderwallin/node-gettext/#migrating-from-1x-to-2x\n\nThis warning will be removed in the final 2.0.0"),this.setTextDomain(e)},o.prototype.setlocale=function(e){this.setLocale(e)},o.prototype.addTextdomain=function(){console.error("addTextdomain() is deprecated.\n\n* To add translations, use addTranslations()\n* To set the default domain, use setTextDomain() (or its alias textdomain())\n\nTo read more about the migration from node-gettext v1 to v2, see https://github.com/alexanderwallin/node-gettext/#migrating-from-1x-to-2x")}},4587:e=>{"use strict";e.exports={ach:{name:"Acholi",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},af:{name:"Afrikaans",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},ak:{name:"Akan",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},am:{name:"Amharic",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},an:{name:"Aragonese",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},ar:{name:"Arabic",examples:[{plural:0,sample:0},{plural:1,sample:1},{plural:2,sample:2},{plural:3,sample:3},{plural:4,sample:11},{plural:5,sample:100}],nplurals:6,pluralsText:"nplurals = 6; plural = (n === 0 ? 0 : n === 1 ? 1 : n === 2 ? 2 : n % 100 >= 3 && n % 100 <= 10 ? 3 : n % 100 >= 11 ? 4 : 5)",pluralsFunc:function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5}},arn:{name:"Mapudungun",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},ast:{name:"Asturian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},ay:{name:"Aymará",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},az:{name:"Azerbaijani",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},be:{name:"Belarusian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(e){return e%10==1&&e%100!=11?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2}},bg:{name:"Bulgarian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},bn:{name:"Bengali",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},bo:{name:"Tibetan",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},br:{name:"Breton",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},brx:{name:"Bodo",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},bs:{name:"Bosnian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(e){return e%10==1&&e%100!=11?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2}},ca:{name:"Catalan",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},cgg:{name:"Chiga",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},cs:{name:"Czech",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n === 1 ? 0 : (n >= 2 && n <= 4) ? 1 : 2)",pluralsFunc:function(e){return 1===e?0:e>=2&&e<=4?1:2}},csb:{name:"Kashubian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n === 1 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(e){return 1===e?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2}},cy:{name:"Welsh",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:3},{plural:3,sample:8}],nplurals:4,pluralsText:"nplurals = 4; plural = (n === 1 ? 0 : n === 2 ? 1 : (n !== 8 && n !== 11) ? 2 : 3)",pluralsFunc:function(e){return 1===e?0:2===e?1:8!==e&&11!==e?2:3}},da:{name:"Danish",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},de:{name:"German",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},doi:{name:"Dogri",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},dz:{name:"Dzongkha",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},el:{name:"Greek",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},en:{name:"English",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},eo:{name:"Esperanto",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},es:{name:"Spanish",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},et:{name:"Estonian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},eu:{name:"Basque",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},fa:{name:"Persian",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},ff:{name:"Fulah",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},fi:{name:"Finnish",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},fil:{name:"Filipino",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},fo:{name:"Faroese",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},fr:{name:"French",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},fur:{name:"Friulian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},fy:{name:"Frisian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},ga:{name:"Irish",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:3},{plural:3,sample:7},{plural:4,sample:11}],nplurals:5,pluralsText:"nplurals = 5; plural = (n === 1 ? 0 : n === 2 ? 1 : n < 7 ? 2 : n < 11 ? 3 : 4)",pluralsFunc:function(e){return 1===e?0:2===e?1:e<7?2:e<11?3:4}},gd:{name:"Scottish Gaelic",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:3},{plural:3,sample:20}],nplurals:4,pluralsText:"nplurals = 4; plural = ((n === 1 || n === 11) ? 0 : (n === 2 || n === 12) ? 1 : (n > 2 && n < 20) ? 2 : 3)",pluralsFunc:function(e){return 1===e||11===e?0:2===e||12===e?1:e>2&&e<20?2:3}},gl:{name:"Galician",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},gu:{name:"Gujarati",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},gun:{name:"Gun",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},ha:{name:"Hausa",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},he:{name:"Hebrew",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},hi:{name:"Hindi",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},hne:{name:"Chhattisgarhi",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},hr:{name:"Croatian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(e){return e%10==1&&e%100!=11?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2}},hu:{name:"Hungarian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},hy:{name:"Armenian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},id:{name:"Indonesian",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},is:{name:"Icelandic",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n % 10 !== 1 || n % 100 === 11)",pluralsFunc:function(e){return e%10!=1||e%100==11}},it:{name:"Italian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},ja:{name:"Japanese",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},jbo:{name:"Lojban",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},jv:{name:"Javanese",examples:[{plural:0,sample:0},{plural:1,sample:1}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 0)",pluralsFunc:function(e){return 0!==e}},ka:{name:"Georgian",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},kk:{name:"Kazakh",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},km:{name:"Khmer",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},kn:{name:"Kannada",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},ko:{name:"Korean",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},ku:{name:"Kurdish",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},kw:{name:"Cornish",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:3},{plural:3,sample:4}],nplurals:4,pluralsText:"nplurals = 4; plural = (n === 1 ? 0 : n === 2 ? 1 : n === 3 ? 2 : 3)",pluralsFunc:function(e){return 1===e?0:2===e?1:3===e?2:3}},ky:{name:"Kyrgyz",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},lb:{name:"Letzeburgesch",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},ln:{name:"Lingala",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},lo:{name:"Lao",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},lt:{name:"Lithuanian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:10}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(e){return e%10==1&&e%100!=11?0:e%10>=2&&(e%100<10||e%100>=20)?1:2}},lv:{name:"Latvian",examples:[{plural:2,sample:0},{plural:0,sample:1},{plural:1,sample:2}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n !== 0 ? 1 : 2)",pluralsFunc:function(e){return e%10==1&&e%100!=11?0:0!==e?1:2}},mai:{name:"Maithili",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},mfe:{name:"Mauritian Creole",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},mg:{name:"Malagasy",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},mi:{name:"Maori",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},mk:{name:"Macedonian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n === 1 || n % 10 === 1 ? 0 : 1)",pluralsFunc:function(e){return 1===e||e%10==1?0:1}},ml:{name:"Malayalam",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},mn:{name:"Mongolian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},mni:{name:"Manipuri",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},mnk:{name:"Mandinka",examples:[{plural:0,sample:0},{plural:1,sample:1},{plural:2,sample:2}],nplurals:3,pluralsText:"nplurals = 3; plural = (n === 0 ? 0 : n === 1 ? 1 : 2)",pluralsFunc:function(e){return 0===e?0:1===e?1:2}},mr:{name:"Marathi",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},ms:{name:"Malay",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},mt:{name:"Maltese",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:11},{plural:3,sample:20}],nplurals:4,pluralsText:"nplurals = 4; plural = (n === 1 ? 0 : n === 0 || ( n % 100 > 1 && n % 100 < 11) ? 1 : (n % 100 > 10 && n % 100 < 20 ) ? 2 : 3)",pluralsFunc:function(e){return 1===e?0:0===e||e%100>1&&e%100<11?1:e%100>10&&e%100<20?2:3}},my:{name:"Burmese",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},nah:{name:"Nahuatl",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},nap:{name:"Neapolitan",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},nb:{name:"Norwegian Bokmal",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},ne:{name:"Nepali",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},nl:{name:"Dutch",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},nn:{name:"Norwegian Nynorsk",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},no:{name:"Norwegian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},nso:{name:"Northern Sotho",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},oc:{name:"Occitan",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},or:{name:"Oriya",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},pa:{name:"Punjabi",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},pap:{name:"Papiamento",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},pl:{name:"Polish",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n === 1 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(e){return 1===e?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2}},pms:{name:"Piemontese",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},ps:{name:"Pashto",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},pt:{name:"Portuguese",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},rm:{name:"Romansh",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},ro:{name:"Romanian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:20}],nplurals:3,pluralsText:"nplurals = 3; plural = (n === 1 ? 0 : (n === 0 || (n % 100 > 0 && n % 100 < 20)) ? 1 : 2)",pluralsFunc:function(e){return 1===e?0:0===e||e%100>0&&e%100<20?1:2}},ru:{name:"Russian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(e){return e%10==1&&e%100!=11?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2}},rw:{name:"Kinyarwanda",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},sah:{name:"Yakut",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},sat:{name:"Santali",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},sco:{name:"Scots",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},sd:{name:"Sindhi",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},se:{name:"Northern Sami",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},si:{name:"Sinhala",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},sk:{name:"Slovak",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n === 1 ? 0 : (n >= 2 && n <= 4) ? 1 : 2)",pluralsFunc:function(e){return 1===e?0:e>=2&&e<=4?1:2}},sl:{name:"Slovenian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:3},{plural:3,sample:5}],nplurals:4,pluralsText:"nplurals = 4; plural = (n % 100 === 1 ? 0 : n % 100 === 2 ? 1 : n % 100 === 3 || n % 100 === 4 ? 2 : 3)",pluralsFunc:function(e){return e%100==1?0:e%100==2?1:e%100==3||e%100==4?2:3}},so:{name:"Somali",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},son:{name:"Songhay",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},sq:{name:"Albanian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},sr:{name:"Serbian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(e){return e%10==1&&e%100!=11?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2}},su:{name:"Sundanese",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},sv:{name:"Swedish",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},sw:{name:"Swahili",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},ta:{name:"Tamil",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},te:{name:"Telugu",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},tg:{name:"Tajik",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},th:{name:"Thai",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},ti:{name:"Tigrinya",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},tk:{name:"Turkmen",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},tr:{name:"Turkish",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},tt:{name:"Tatar",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},ug:{name:"Uyghur",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},uk:{name:"Ukrainian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(e){return e%10==1&&e%100!=11?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2}},ur:{name:"Urdu",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},uz:{name:"Uzbek",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},vi:{name:"Vietnamese",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},wa:{name:"Walloon",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},wo:{name:"Wolof",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},yo:{name:"Yoruba",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},zh:{name:"Chinese",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}}}},4155:e=>{var s,t,r=e.exports={};function n(){throw new Error("setTimeout has not been defined")}function o(){throw new Error("clearTimeout has not been defined")}function i(e){if(s===setTimeout)return setTimeout(e,0);if((s===n||!s)&&setTimeout)return s=setTimeout,setTimeout(e,0);try{return s(e,0)}catch(t){try{return s.call(null,e,0)}catch(t){return s.call(this,e,0)}}}!function(){try{s="function"==typeof setTimeout?setTimeout:n}catch(e){s=n}try{t="function"==typeof clearTimeout?clearTimeout:o}catch(e){t=o}}();var a,l=[],m=!1,d=-1;function g(){m&&a&&(m=!1,a.length?l=a.concat(l):d=-1,l.length&&c())}function c(){if(!m){var e=i(g);m=!0;for(var s=l.length;s;){for(a=l,l=[];++d<s;)a&&a[d].run();d=-1,s=l.length}a=null,m=!1,function(e){if(t===clearTimeout)return clearTimeout(e);if((t===o||!t)&&clearTimeout)return t=clearTimeout,clearTimeout(e);try{return t(e)}catch(s){try{return t.call(null,e)}catch(s){return t.call(this,e)}}}(e)}}function u(e,s){this.fun=e,this.array=s}function f(){}r.nextTick=function(e){var s=new Array(arguments.length-1);if(arguments.length>1)for(var t=1;t<arguments.length;t++)s[t-1]=arguments[t];l.push(new u(e,s)),1!==l.length||m||i(c)},u.prototype.run=function(){this.fun.apply(null,this.array)},r.title="browser",r.browser=!0,r.env={},r.argv=[],r.version="",r.versions={},r.on=f,r.addListener=f,r.once=f,r.off=f,r.removeListener=f,r.removeAllListeners=f,r.emit=f,r.prependListener=f,r.prependOnceListener=f,r.listeners=function(e){return[]},r.binding=function(e){throw new Error("process.binding is not supported")},r.cwd=function(){return"/"},r.chdir=function(e){throw new Error("process.chdir is not supported")},r.umask=function(){return 0}},3379:e=>{"use strict";var s=[];function t(e){for(var t=-1,r=0;r<s.length;r++)if(s[r].identifier===e){t=r;break}return t}function r(e,r){for(var o={},i=[],a=0;a<e.length;a++){var l=e[a],m=r.base?l[0]+r.base:l[0],d=o[m]||0,g="".concat(m," ").concat(d);o[m]=d+1;var c=t(g),u={css:l[1],media:l[2],sourceMap:l[3],supports:l[4],layer:l[5]};if(-1!==c)s[c].references++,s[c].updater(u);else{var f=n(u,r);r.byIndex=a,s.splice(a,0,{identifier:g,updater:f,references:1})}i.push(g)}return i}function n(e,s){var t=s.domAPI(s);t.update(e);return function(s){if(s){if(s.css===e.css&&s.media===e.media&&s.sourceMap===e.sourceMap&&s.supports===e.supports&&s.layer===e.layer)return;t.update(e=s)}else t.remove()}}e.exports=function(e,n){var o=r(e=e||[],n=n||{});return function(e){e=e||[];for(var i=0;i<o.length;i++){var a=t(o[i]);s[a].references--}for(var l=r(e,n),m=0;m<o.length;m++){var d=t(o[m]);0===s[d].references&&(s[d].updater(),s.splice(d,1))}o=l}}},569:e=>{"use strict";var s={};e.exports=function(e,t){var r=function(e){if(void 0===s[e]){var t=document.querySelector(e);if(window.HTMLIFrameElement&&t instanceof window.HTMLIFrameElement)try{t=t.contentDocument.head}catch(e){t=null}s[e]=t}return s[e]}(e);if(!r)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");r.appendChild(t)}},9216:e=>{"use strict";e.exports=function(e){var s=document.createElement("style");return e.setAttributes(s,e.attributes),e.insert(s,e.options),s}},3565:(e,s,t)=>{"use strict";e.exports=function(e){var s=t.nc;s&&e.setAttribute("nonce",s)}},7795:e=>{"use strict";e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var s=e.insertStyleElement(e);return{update:function(t){!function(e,s,t){var r="";t.supports&&(r+="@supports (".concat(t.supports,") {")),t.media&&(r+="@media ".concat(t.media," {"));var n=void 0!==t.layer;n&&(r+="@layer".concat(t.layer.length>0?" ".concat(t.layer):""," {")),r+=t.css,n&&(r+="}"),t.media&&(r+="}"),t.supports&&(r+="}");var o=t.sourceMap;o&&"undefined"!=typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(o))))," */")),s.styleTagTransform(r,e,s.options)}(s,e,t)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(s)}}}},4589:e=>{"use strict";e.exports=function(e,s){if(s.styleSheet)s.styleSheet.cssText=e;else{for(;s.firstChild;)s.removeChild(s.firstChild);s.appendChild(document.createTextNode(e))}}},8588:function(e){var s,t;s=this,t=function(e){var s=function(e){return new s.lib.init(e)};function t(e,s){return s.offset[e]?isNaN(s.offset[e])?s.offset[e]:s.offset[e]+"px":"0px"}function r(e,s){return!(!e||"string"!=typeof s||!(e.className&&e.className.trim().split(/\s+/gi).indexOf(s)>-1))}return s.defaults={oldestFirst:!0,text:"Toastify is awesome!",node:void 0,duration:3e3,selector:void 0,callback:function(){},destination:void 0,newWindow:!1,close:!1,gravity:"toastify-top",positionLeft:!1,position:"",backgroundColor:"",avatar:"",className:"",stopOnFocus:!0,onClick:function(){},offset:{x:0,y:0},escapeMarkup:!0,ariaLive:"polite",style:{background:""}},s.lib=s.prototype={toastify:"1.12.0",constructor:s,init:function(e){return e||(e={}),this.options={},this.toastElement=null,this.options.text=e.text||s.defaults.text,this.options.node=e.node||s.defaults.node,this.options.duration=0===e.duration?0:e.duration||s.defaults.duration,this.options.selector=e.selector||s.defaults.selector,this.options.callback=e.callback||s.defaults.callback,this.options.destination=e.destination||s.defaults.destination,this.options.newWindow=e.newWindow||s.defaults.newWindow,this.options.close=e.close||s.defaults.close,this.options.gravity="bottom"===e.gravity?"toastify-bottom":s.defaults.gravity,this.options.positionLeft=e.positionLeft||s.defaults.positionLeft,this.options.position=e.position||s.defaults.position,this.options.backgroundColor=e.backgroundColor||s.defaults.backgroundColor,this.options.avatar=e.avatar||s.defaults.avatar,this.options.className=e.className||s.defaults.className,this.options.stopOnFocus=void 0===e.stopOnFocus?s.defaults.stopOnFocus:e.stopOnFocus,this.options.onClick=e.onClick||s.defaults.onClick,this.options.offset=e.offset||s.defaults.offset,this.options.escapeMarkup=void 0!==e.escapeMarkup?e.escapeMarkup:s.defaults.escapeMarkup,this.options.ariaLive=e.ariaLive||s.defaults.ariaLive,this.options.style=e.style||s.defaults.style,e.backgroundColor&&(this.options.style.background=e.backgroundColor),this},buildToast:function(){if(!this.options)throw"Toastify is not initialized";var e=document.createElement("div");for(var s in e.className="toastify on "+this.options.className,this.options.position?e.className+=" toastify-"+this.options.position:!0===this.options.positionLeft?(e.className+=" toastify-left",console.warn("Property `positionLeft` will be depreciated in further versions. Please use `position` instead.")):e.className+=" toastify-right",e.className+=" "+this.options.gravity,this.options.backgroundColor&&console.warn('DEPRECATION NOTICE: "backgroundColor" is being deprecated. Please use the "style.background" property.'),this.options.style)e.style[s]=this.options.style[s];if(this.options.ariaLive&&e.setAttribute("aria-live",this.options.ariaLive),this.options.node&&this.options.node.nodeType===Node.ELEMENT_NODE)e.appendChild(this.options.node);else if(this.options.escapeMarkup?e.innerText=this.options.text:e.innerHTML=this.options.text,""!==this.options.avatar){var r=document.createElement("img");r.src=this.options.avatar,r.className="toastify-avatar","left"==this.options.position||!0===this.options.positionLeft?e.appendChild(r):e.insertAdjacentElement("afterbegin",r)}if(!0===this.options.close){var n=document.createElement("button");n.type="button",n.setAttribute("aria-label","Close"),n.className="toast-close",n.innerHTML="&#10006;",n.addEventListener("click",function(e){e.stopPropagation(),this.removeElement(this.toastElement),window.clearTimeout(this.toastElement.timeOutValue)}.bind(this));var o=window.innerWidth>0?window.innerWidth:screen.width;("left"==this.options.position||!0===this.options.positionLeft)&&o>360?e.insertAdjacentElement("afterbegin",n):e.appendChild(n)}if(this.options.stopOnFocus&&this.options.duration>0){var i=this;e.addEventListener("mouseover",(function(s){window.clearTimeout(e.timeOutValue)})),e.addEventListener("mouseleave",(function(){e.timeOutValue=window.setTimeout((function(){i.removeElement(e)}),i.options.duration)}))}if(void 0!==this.options.destination&&e.addEventListener("click",function(e){e.stopPropagation(),!0===this.options.newWindow?window.open(this.options.destination,"_blank"):window.location=this.options.destination}.bind(this)),"function"==typeof this.options.onClick&&void 0===this.options.destination&&e.addEventListener("click",function(e){e.stopPropagation(),this.options.onClick()}.bind(this)),"object"==typeof this.options.offset){var a=t("x",this.options),l=t("y",this.options),m="left"==this.options.position?a:"-"+a,d="toastify-top"==this.options.gravity?l:"-"+l;e.style.transform="translate("+m+","+d+")"}return e},showToast:function(){var e;if(this.toastElement=this.buildToast(),!(e="string"==typeof this.options.selector?document.getElementById(this.options.selector):this.options.selector instanceof HTMLElement||"undefined"!=typeof ShadowRoot&&this.options.selector instanceof ShadowRoot?this.options.selector:document.body))throw"Root element is not defined";var t=s.defaults.oldestFirst?e.firstChild:e.lastChild;return e.insertBefore(this.toastElement,t),s.reposition(),this.options.duration>0&&(this.toastElement.timeOutValue=window.setTimeout(function(){this.removeElement(this.toastElement)}.bind(this),this.options.duration)),this},hideToast:function(){this.toastElement.timeOutValue&&clearTimeout(this.toastElement.timeOutValue),this.removeElement(this.toastElement)},removeElement:function(e){e.className=e.className.replace(" on",""),window.setTimeout(function(){this.options.node&&this.options.node.parentNode&&this.options.node.parentNode.removeChild(this.options.node),e.parentNode&&e.parentNode.removeChild(e),this.options.callback.call(e),s.reposition()}.bind(this),400)}},s.reposition=function(){for(var e,s={top:15,bottom:15},t={top:15,bottom:15},n={top:15,bottom:15},o=document.getElementsByClassName("toastify"),i=0;i<o.length;i++){e=!0===r(o[i],"toastify-top")?"toastify-top":"toastify-bottom";var a=o[i].offsetHeight;e=e.substr(9,e.length-1),(window.innerWidth>0?window.innerWidth:screen.width)<=360?(o[i].style[e]=n[e]+"px",n[e]+=a+15):!0===r(o[i],"toastify-left")?(o[i].style[e]=s[e]+"px",s[e]+=a+15):(o[i].style[e]=t[e]+"px",t[e]+=a+15)}return this},s.lib.init.prototype=s.lib,s},e.exports?e.exports=t():s.Toastify=t()},1900:(e,s,t)=>{"use strict";function r(e,s,t,r,n,o,i,a){var l,m="function"==typeof e?e.options:e;if(s&&(m.render=s,m.staticRenderFns=t,m._compiled=!0),r&&(m.functional=!0),o&&(m._scopeId="data-v-"+o),i?(l=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),n&&n.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(i)},m._ssrRegister=l):n&&(l=a?function(){n.call(this,(m.functional?this.parent:this).$root.$options.shadowRoot)}:n),l)if(m.functional){m._injectStyles=l;var d=m.render;m.render=function(e,s){return l.call(s),d(e,s)}}else{var g=m.beforeCreate;m.beforeCreate=g?[].concat(g,l):[l]}return{exports:e,options:m}}t.d(s,{Z:()=>r})},144:(e,s,t)=>{"use strict";t.r(s),t.d(s,{EffectScope:()=>Ss,computed:()=>cs,customRef:()=>rs,default:()=>dn,defineAsyncComponent:()=>Bt,defineComponent:()=>sr,del:()=>Pe,effectScope:()=>xs,getCurrentInstance:()=>ue,getCurrentScope:()=>bs,h:()=>Nt,inject:()=>Rs,isProxy:()=>Je,isReactive:()=>$e,isReadonly:()=>Ge,isRef:()=>Ke,isShallow:()=>He,markRaw:()=>qe,mergeDefaults:()=>ft,nextTick:()=>It,onActivated:()=>qt,onBeforeMount:()=>Dt,onBeforeUnmount:()=>Jt,onBeforeUpdate:()=>Ht,onDeactivated:()=>Wt,onErrorCaptured:()=>Qt,onMounted:()=>$t,onRenderTracked:()=>Yt,onRenderTriggered:()=>Xt,onScopeDispose:()=>Ms,onServerPrefetch:()=>Kt,onUnmounted:()=>Vt,onUpdated:()=>Gt,provide:()=>Ls,proxyRefs:()=>ss,reactive:()=>Be,readonly:()=>ls,ref:()=>Ye,set:()=>Ie,shallowReactive:()=>ze,shallowReadonly:()=>gs,shallowRef:()=>Xe,toRaw:()=>Ve,toRef:()=>os,toRefs:()=>ns,triggerRef:()=>Qe,unref:()=>es,useAttrs:()=>gt,useCssModule:()=>Pt,useCssVars:()=>jt,useListeners:()=>ct,useSlots:()=>dt,version:()=>er,watch:()=>Ns,watchEffect:()=>ys,watchPostEffect:()=>ws,watchSyncEffect:()=>vs});var r=Object.freeze({}),n=Array.isArray;function o(e){return null==e}function i(e){return null!=e}function a(e){return!0===e}function l(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function m(e){return"function"==typeof e}function d(e){return null!==e&&"object"==typeof e}var g=Object.prototype.toString;function c(e){return"[object Object]"===g.call(e)}function u(e){return"[object RegExp]"===g.call(e)}function f(e){var s=parseFloat(String(e));return s>=0&&Math.floor(s)===s&&isFinite(e)}function p(e){return i(e)&&"function"==typeof e.then&&"function"==typeof e.catch}function h(e){return null==e?"":Array.isArray(e)||c(e)&&e.toString===g?JSON.stringify(e,y,2):String(e)}function y(e,s){return s&&s.__v_isRef?s.value:s}function w(e){var s=parseFloat(e);return isNaN(s)?e:s}function v(e,s){for(var t=Object.create(null),r=e.split(","),n=0;n<r.length;n++)t[r[n]]=!0;return s?function(e){return t[e.toLowerCase()]}:function(e){return t[e]}}v("slot,component",!0);var F=v("key,ref,slot,slot-scope,is");function T(e,s){var t=e.length;if(t){if(s===e[t-1])return void(e.length=t-1);var r=e.indexOf(s);if(r>-1)return e.splice(r,1)}}var N=Object.prototype.hasOwnProperty;function C(e,s){return N.call(e,s)}function S(e){var s=Object.create(null);return function(t){return s[t]||(s[t]=e(t))}}var x=/-(\w)/g,b=S((function(e){return e.replace(x,(function(e,s){return s?s.toUpperCase():""}))})),M=S((function(e){return e.charAt(0).toUpperCase()+e.slice(1)})),L=/\B([A-Z])/g,k=S((function(e){return e.replace(L,"-$1").toLowerCase()}));var R=Function.prototype.bind?function(e,s){return e.bind(s)}:function(e,s){function t(t){var r=arguments.length;return r?r>1?e.apply(s,arguments):e.call(s,t):e.call(s)}return t._length=e.length,t};function A(e,s){s=s||0;for(var t=e.length-s,r=new Array(t);t--;)r[t]=e[t+s];return r}function E(e,s){for(var t in s)e[t]=s[t];return e}function _(e){for(var s={},t=0;t<e.length;t++)e[t]&&E(s,e[t]);return s}function O(e,s,t){}var U=function(e,s,t){return!1},I=function(e){return e};function P(e,s){if(e===s)return!0;var t=d(e),r=d(s);if(!t||!r)return!t&&!r&&String(e)===String(s);try{var n=Array.isArray(e),o=Array.isArray(s);if(n&&o)return e.length===s.length&&e.every((function(e,t){return P(e,s[t])}));if(e instanceof Date&&s instanceof Date)return e.getTime()===s.getTime();if(n||o)return!1;var i=Object.keys(e),a=Object.keys(s);return i.length===a.length&&i.every((function(t){return P(e[t],s[t])}))}catch(e){return!1}}function j(e,s){for(var t=0;t<e.length;t++)if(P(e[t],s))return t;return-1}function B(e){var s=!1;return function(){s||(s=!0,e.apply(this,arguments))}}function z(e,s){return e===s?0===e&&1/e!=1/s:e==e||s==s}var D="data-server-rendered",$=["component","directive","filter"],H=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured","serverPrefetch","renderTracked","renderTriggered"],G={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:U,isReservedAttr:U,isUnknownElement:U,getTagNamespace:O,parsePlatformTagName:I,mustUseProp:U,async:!0,_lifecycleHooks:H},J=/a-zA-Z\u00B7\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u037D\u037F-\u1FFF\u200C-\u200D\u203F-\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD/;function V(e){var s=(e+"").charCodeAt(0);return 36===s||95===s}function q(e,s,t,r){Object.defineProperty(e,s,{value:t,enumerable:!!r,writable:!0,configurable:!0})}var W=new RegExp("[^".concat(J.source,".$_\\d]"));var K="__proto__"in{},Y="undefined"!=typeof window,X=Y&&window.navigator.userAgent.toLowerCase(),Z=X&&/msie|trident/.test(X),Q=X&&X.indexOf("msie 9.0")>0,ee=X&&X.indexOf("edge/")>0;X&&X.indexOf("android");var se=X&&/iphone|ipad|ipod|ios/.test(X);X&&/chrome\/\d+/.test(X),X&&/phantomjs/.test(X);var te,re=X&&X.match(/firefox\/(\d+)/),ne={}.watch,oe=!1;if(Y)try{var ie={};Object.defineProperty(ie,"passive",{get:function(){oe=!0}}),window.addEventListener("test-passive",null,ie)}catch(e){}var ae=function(){return void 0===te&&(te=!Y&&void 0!==t.g&&(t.g.process&&"server"===t.g.process.env.VUE_ENV)),te},le=Y&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function me(e){return"function"==typeof e&&/native code/.test(e.toString())}var de,ge="undefined"!=typeof Symbol&&me(Symbol)&&"undefined"!=typeof Reflect&&me(Reflect.ownKeys);de="undefined"!=typeof Set&&me(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var ce=null;function ue(){return ce&&{proxy:ce}}function fe(e){void 0===e&&(e=null),e||ce&&ce._scope.off(),ce=e,e&&e._scope.on()}var pe=function(){function e(e,s,t,r,n,o,i,a){this.tag=e,this.data=s,this.children=t,this.text=r,this.elm=n,this.ns=void 0,this.context=o,this.fnContext=void 0,this.fnOptions=void 0,this.fnScopeId=void 0,this.key=s&&s.key,this.componentOptions=i,this.componentInstance=void 0,this.parent=void 0,this.raw=!1,this.isStatic=!1,this.isRootInsert=!0,this.isComment=!1,this.isCloned=!1,this.isOnce=!1,this.asyncFactory=a,this.asyncMeta=void 0,this.isAsyncPlaceholder=!1}return Object.defineProperty(e.prototype,"child",{get:function(){return this.componentInstance},enumerable:!1,configurable:!0}),e}(),he=function(e){void 0===e&&(e="");var s=new pe;return s.text=e,s.isComment=!0,s};function ye(e){return new pe(void 0,void 0,void 0,String(e))}function we(e){var s=new pe(e.tag,e.data,e.children&&e.children.slice(),e.text,e.elm,e.context,e.componentOptions,e.asyncFactory);return s.ns=e.ns,s.isStatic=e.isStatic,s.key=e.key,s.isComment=e.isComment,s.fnContext=e.fnContext,s.fnOptions=e.fnOptions,s.fnScopeId=e.fnScopeId,s.asyncMeta=e.asyncMeta,s.isCloned=!0,s}"function"==typeof SuppressedError&&SuppressedError;var ve=0,Fe=[],Te=function(){for(var e=0;e<Fe.length;e++){var s=Fe[e];s.subs=s.subs.filter((function(e){return e})),s._pending=!1}Fe.length=0},Ne=function(){function e(){this._pending=!1,this.id=ve++,this.subs=[]}return e.prototype.addSub=function(e){this.subs.push(e)},e.prototype.removeSub=function(e){this.subs[this.subs.indexOf(e)]=null,this._pending||(this._pending=!0,Fe.push(this))},e.prototype.depend=function(s){e.target&&e.target.addDep(this)},e.prototype.notify=function(e){var s=this.subs.filter((function(e){return e}));for(var t=0,r=s.length;t<r;t++){0,s[t].update()}},e}();Ne.target=null;var Ce=[];function Se(e){Ce.push(e),Ne.target=e}function xe(){Ce.pop(),Ne.target=Ce[Ce.length-1]}var be=Array.prototype,Me=Object.create(be);["push","pop","shift","unshift","splice","sort","reverse"].forEach((function(e){var s=be[e];q(Me,e,(function(){for(var t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];var n,o=s.apply(this,t),i=this.__ob__;switch(e){case"push":case"unshift":n=t;break;case"splice":n=t.slice(2)}return n&&i.observeArray(n),i.dep.notify(),o}))}));var Le=Object.getOwnPropertyNames(Me),ke={},Re=!0;function Ae(e){Re=e}var Ee={notify:O,depend:O,addSub:O,removeSub:O},_e=function(){function e(e,s,t){if(void 0===s&&(s=!1),void 0===t&&(t=!1),this.value=e,this.shallow=s,this.mock=t,this.dep=t?Ee:new Ne,this.vmCount=0,q(e,"__ob__",this),n(e)){if(!t)if(K)e.__proto__=Me;else for(var r=0,o=Le.length;r<o;r++){q(e,a=Le[r],Me[a])}s||this.observeArray(e)}else{var i=Object.keys(e);for(r=0;r<i.length;r++){var a;Ue(e,a=i[r],ke,void 0,s,t)}}}return e.prototype.observeArray=function(e){for(var s=0,t=e.length;s<t;s++)Oe(e[s],!1,this.mock)},e}();function Oe(e,s,t){return e&&C(e,"__ob__")&&e.__ob__ instanceof _e?e.__ob__:!Re||!t&&ae()||!n(e)&&!c(e)||!Object.isExtensible(e)||e.__v_skip||Ke(e)||e instanceof pe?void 0:new _e(e,s,t)}function Ue(e,s,t,r,o,i,a){void 0===a&&(a=!1);var l=new Ne,m=Object.getOwnPropertyDescriptor(e,s);if(!m||!1!==m.configurable){var d=m&&m.get,g=m&&m.set;d&&!g||t!==ke&&2!==arguments.length||(t=e[s]);var c=o?t&&t.__ob__:Oe(t,!1,i);return Object.defineProperty(e,s,{enumerable:!0,configurable:!0,get:function(){var s=d?d.call(e):t;return Ne.target&&(l.depend(),c&&(c.dep.depend(),n(s)&&je(s))),Ke(s)&&!o?s.value:s},set:function(s){var r=d?d.call(e):t;if(z(r,s)){if(g)g.call(e,s);else{if(d)return;if(!o&&Ke(r)&&!Ke(s))return void(r.value=s);t=s}c=o?s&&s.__ob__:Oe(s,!1,i),l.notify()}}}),l}}function Ie(e,s,t){if(!Ge(e)){var r=e.__ob__;return n(e)&&f(s)?(e.length=Math.max(e.length,s),e.splice(s,1,t),r&&!r.shallow&&r.mock&&Oe(t,!1,!0),t):s in e&&!(s in Object.prototype)?(e[s]=t,t):e._isVue||r&&r.vmCount?t:r?(Ue(r.value,s,t,void 0,r.shallow,r.mock),r.dep.notify(),t):(e[s]=t,t)}}function Pe(e,s){if(n(e)&&f(s))e.splice(s,1);else{var t=e.__ob__;e._isVue||t&&t.vmCount||Ge(e)||C(e,s)&&(delete e[s],t&&t.dep.notify())}}function je(e){for(var s=void 0,t=0,r=e.length;t<r;t++)(s=e[t])&&s.__ob__&&s.__ob__.dep.depend(),n(s)&&je(s)}function Be(e){return De(e,!1),e}function ze(e){return De(e,!0),q(e,"__v_isShallow",!0),e}function De(e,s){if(!Ge(e)){Oe(e,s,ae());0}}function $e(e){return Ge(e)?$e(e.__v_raw):!(!e||!e.__ob__)}function He(e){return!(!e||!e.__v_isShallow)}function Ge(e){return!(!e||!e.__v_isReadonly)}function Je(e){return $e(e)||Ge(e)}function Ve(e){var s=e&&e.__v_raw;return s?Ve(s):e}function qe(e){return Object.isExtensible(e)&&q(e,"__v_skip",!0),e}var We="__v_isRef";function Ke(e){return!(!e||!0!==e.__v_isRef)}function Ye(e){return Ze(e,!1)}function Xe(e){return Ze(e,!0)}function Ze(e,s){if(Ke(e))return e;var t={};return q(t,We,!0),q(t,"__v_isShallow",s),q(t,"dep",Ue(t,"value",e,null,s,ae())),t}function Qe(e){e.dep&&e.dep.notify()}function es(e){return Ke(e)?e.value:e}function ss(e){if($e(e))return e;for(var s={},t=Object.keys(e),r=0;r<t.length;r++)ts(s,e,t[r]);return s}function ts(e,s,t){Object.defineProperty(e,t,{enumerable:!0,configurable:!0,get:function(){var e=s[t];if(Ke(e))return e.value;var r=e&&e.__ob__;return r&&r.dep.depend(),e},set:function(e){var r=s[t];Ke(r)&&!Ke(e)?r.value=e:s[t]=e}})}function rs(e){var s=new Ne,t=e((function(){s.depend()}),(function(){s.notify()})),r=t.get,n=t.set,o={get value(){return r()},set value(e){n(e)}};return q(o,We,!0),o}function ns(e){var s=n(e)?new Array(e.length):{};for(var t in e)s[t]=os(e,t);return s}function os(e,s,t){var r=e[s];if(Ke(r))return r;var n={get value(){var r=e[s];return void 0===r?t:r},set value(t){e[s]=t}};return q(n,We,!0),n}var is="__v_rawToReadonly",as="__v_rawToShallowReadonly";function ls(e){return ms(e,!1)}function ms(e,s){if(!c(e))return e;if(Ge(e))return e;var t=s?as:is,r=e[t];if(r)return r;var n=Object.create(Object.getPrototypeOf(e));q(e,t,n),q(n,"__v_isReadonly",!0),q(n,"__v_raw",e),Ke(e)&&q(n,We,!0),(s||He(e))&&q(n,"__v_isShallow",!0);for(var o=Object.keys(e),i=0;i<o.length;i++)ds(n,e,o[i],s);return n}function ds(e,s,t,r){Object.defineProperty(e,t,{enumerable:!0,configurable:!0,get:function(){var e=s[t];return r||!c(e)?e:ls(e)},set:function(){}})}function gs(e){return ms(e,!0)}function cs(e,s){var t,r,n=m(e);n?(t=e,r=O):(t=e.get,r=e.set);var o=ae()?null:new ar(ce,t,O,{lazy:!0});var i={effect:o,get value(){return o?(o.dirty&&o.evaluate(),Ne.target&&o.depend(),o.value):t()},set value(e){r(e)}};return q(i,We,!0),q(i,"__v_isReadonly",n),i}var us="watcher",fs="".concat(us," callback"),ps="".concat(us," getter"),hs="".concat(us," cleanup");function ys(e,s){return Cs(e,null,s)}function ws(e,s){return Cs(e,null,{flush:"post"})}function vs(e,s){return Cs(e,null,{flush:"sync"})}var Fs,Ts={};function Ns(e,s,t){return Cs(e,s,t)}function Cs(e,s,t){var o=void 0===t?r:t,i=o.immediate,a=o.deep,l=o.flush,d=void 0===l?"pre":l;o.onTrack,o.onTrigger;var g,c,u=ce,f=function(e,s,t){void 0===t&&(t=null);var r=St(e,null,t,u,s);return a&&r&&r.__ob__&&r.__ob__.dep.depend(),r},p=!1,h=!1;if(Ke(e)?(g=function(){return e.value},p=He(e)):$e(e)?(g=function(){return e.__ob__.dep.depend(),e},a=!0):n(e)?(h=!0,p=e.some((function(e){return $e(e)||He(e)})),g=function(){return e.map((function(e){return Ke(e)?e.value:$e(e)?(e.__ob__.dep.depend(),rr(e)):m(e)?f(e,ps):void 0}))}):g=m(e)?s?function(){return f(e,ps)}:function(){if(!u||!u._isDestroyed)return c&&c(),f(e,us,[w])}:O,s&&a){var y=g;g=function(){return rr(y())}}var w=function(e){c=v.onStop=function(){f(e,hs)}};if(ae())return w=O,s?i&&f(s,fs,[g(),h?[]:void 0,w]):g(),O;var v=new ar(ce,g,O,{lazy:!0});v.noRecurse=!s;var F=h?[]:Ts;return v.run=function(){if(v.active)if(s){var e=v.get();(a||p||(h?e.some((function(e,s){return z(e,F[s])})):z(e,F)))&&(c&&c(),f(s,fs,[e,F===Ts?void 0:F,w]),F=e)}else v.get()},"sync"===d?v.update=v.run:"post"===d?(v.post=!0,v.update=function(){return kr(v)}):v.update=function(){if(u&&u===ce&&!u._isMounted){var e=u._preWatchers||(u._preWatchers=[]);e.indexOf(v)<0&&e.push(v)}else kr(v)},s?i?v.run():F=v.get():"post"===d&&u?u.$once("hook:mounted",(function(){return v.get()})):v.get(),function(){v.teardown()}}var Ss=function(){function e(e){void 0===e&&(e=!1),this.detached=e,this.active=!0,this.effects=[],this.cleanups=[],this.parent=Fs,!e&&Fs&&(this.index=(Fs.scopes||(Fs.scopes=[])).push(this)-1)}return e.prototype.run=function(e){if(this.active){var s=Fs;try{return Fs=this,e()}finally{Fs=s}}else 0},e.prototype.on=function(){Fs=this},e.prototype.off=function(){Fs=this.parent},e.prototype.stop=function(e){if(this.active){var s=void 0,t=void 0;for(s=0,t=this.effects.length;s<t;s++)this.effects[s].teardown();for(s=0,t=this.cleanups.length;s<t;s++)this.cleanups[s]();if(this.scopes)for(s=0,t=this.scopes.length;s<t;s++)this.scopes[s].stop(!0);if(!this.detached&&this.parent&&!e){var r=this.parent.scopes.pop();r&&r!==this&&(this.parent.scopes[this.index]=r,r.index=this.index)}this.parent=void 0,this.active=!1}},e}();function xs(e){return new Ss(e)}function bs(){return Fs}function Ms(e){Fs&&Fs.cleanups.push(e)}function Ls(e,s){ce&&(ks(ce)[e]=s)}function ks(e){var s=e._provided,t=e.$parent&&e.$parent._provided;return t===s?e._provided=Object.create(t):s}function Rs(e,s,t){void 0===t&&(t=!1);var r=ce;if(r){var n=r.$parent&&r.$parent._provided;if(n&&e in n)return n[e];if(arguments.length>1)return t&&m(s)?s.call(r):s}else 0}var As=S((function(e){var s="&"===e.charAt(0),t="~"===(e=s?e.slice(1):e).charAt(0),r="!"===(e=t?e.slice(1):e).charAt(0);return{name:e=r?e.slice(1):e,once:t,capture:r,passive:s}}));function Es(e,s){function t(){var e=t.fns;if(!n(e))return St(e,null,arguments,s,"v-on handler");for(var r=e.slice(),o=0;o<r.length;o++)St(r[o],null,arguments,s,"v-on handler")}return t.fns=e,t}function _s(e,s,t,r,n,i){var l,m,d,g;for(l in e)m=e[l],d=s[l],g=As(l),o(m)||(o(d)?(o(m.fns)&&(m=e[l]=Es(m,i)),a(g.once)&&(m=e[l]=n(g.name,m,g.capture)),t(g.name,m,g.capture,g.passive,g.params)):m!==d&&(d.fns=m,e[l]=d));for(l in s)o(e[l])&&r((g=As(l)).name,s[l],g.capture)}function Os(e,s,t){var r;e instanceof pe&&(e=e.data.hook||(e.data.hook={}));var n=e[s];function l(){t.apply(this,arguments),T(r.fns,l)}o(n)?r=Es([l]):i(n.fns)&&a(n.merged)?(r=n).fns.push(l):r=Es([n,l]),r.merged=!0,e[s]=r}function Us(e,s,t,r,n){if(i(s)){if(C(s,t))return e[t]=s[t],n||delete s[t],!0;if(C(s,r))return e[t]=s[r],n||delete s[r],!0}return!1}function Is(e){return l(e)?[ye(e)]:n(e)?js(e):void 0}function Ps(e){return i(e)&&i(e.text)&&!1===e.isComment}function js(e,s){var t,r,m,d,g=[];for(t=0;t<e.length;t++)o(r=e[t])||"boolean"==typeof r||(d=g[m=g.length-1],n(r)?r.length>0&&(Ps((r=js(r,"".concat(s||"","_").concat(t)))[0])&&Ps(d)&&(g[m]=ye(d.text+r[0].text),r.shift()),g.push.apply(g,r)):l(r)?Ps(d)?g[m]=ye(d.text+r):""!==r&&g.push(ye(r)):Ps(r)&&Ps(d)?g[m]=ye(d.text+r.text):(a(e._isVList)&&i(r.tag)&&o(r.key)&&i(s)&&(r.key="__vlist".concat(s,"_").concat(t,"__")),g.push(r)));return g}function Bs(e,s){var t,r,o,a,l=null;if(n(e)||"string"==typeof e)for(l=new Array(e.length),t=0,r=e.length;t<r;t++)l[t]=s(e[t],t);else if("number"==typeof e)for(l=new Array(e),t=0;t<e;t++)l[t]=s(t+1,t);else if(d(e))if(ge&&e[Symbol.iterator]){l=[];for(var m=e[Symbol.iterator](),g=m.next();!g.done;)l.push(s(g.value,l.length)),g=m.next()}else for(o=Object.keys(e),l=new Array(o.length),t=0,r=o.length;t<r;t++)a=o[t],l[t]=s(e[a],a,t);return i(l)||(l=[]),l._isVList=!0,l}function zs(e,s,t,r){var n,o=this.$scopedSlots[e];o?(t=t||{},r&&(t=E(E({},r),t)),n=o(t)||(m(s)?s():s)):n=this.$slots[e]||(m(s)?s():s);var i=t&&t.slot;return i?this.$createElement("template",{slot:i},n):n}function Ds(e){return qr(this.$options,"filters",e,!0)||I}function $s(e,s){return n(e)?-1===e.indexOf(s):e!==s}function Hs(e,s,t,r,n){var o=G.keyCodes[s]||t;return n&&r&&!G.keyCodes[s]?$s(n,r):o?$s(o,e):r?k(r)!==s:void 0===e}function Gs(e,s,t,r,o){if(t)if(d(t)){n(t)&&(t=_(t));var i=void 0,a=function(n){if("class"===n||"style"===n||F(n))i=e;else{var a=e.attrs&&e.attrs.type;i=r||G.mustUseProp(s,a,n)?e.domProps||(e.domProps={}):e.attrs||(e.attrs={})}var l=b(n),m=k(n);l in i||m in i||(i[n]=t[n],o&&((e.on||(e.on={}))["update:".concat(n)]=function(e){t[n]=e}))};for(var l in t)a(l)}else;return e}function Js(e,s){var t=this._staticTrees||(this._staticTrees=[]),r=t[e];return r&&!s||qs(r=t[e]=this.$options.staticRenderFns[e].call(this._renderProxy,this._c,this),"__static__".concat(e),!1),r}function Vs(e,s,t){return qs(e,"__once__".concat(s).concat(t?"_".concat(t):""),!0),e}function qs(e,s,t){if(n(e))for(var r=0;r<e.length;r++)e[r]&&"string"!=typeof e[r]&&Ws(e[r],"".concat(s,"_").concat(r),t);else Ws(e,s,t)}function Ws(e,s,t){e.isStatic=!0,e.key=s,e.isOnce=t}function Ks(e,s){if(s)if(c(s)){var t=e.on=e.on?E({},e.on):{};for(var r in s){var n=t[r],o=s[r];t[r]=n?[].concat(n,o):o}}else;return e}function Ys(e,s,t,r){s=s||{$stable:!t};for(var o=0;o<e.length;o++){var i=e[o];n(i)?Ys(i,s,t):i&&(i.proxy&&(i.fn.proxy=!0),s[i.key]=i.fn)}return r&&(s.$key=r),s}function Xs(e,s){for(var t=0;t<s.length;t+=2){var r=s[t];"string"==typeof r&&r&&(e[s[t]]=s[t+1])}return e}function Zs(e,s){return"string"==typeof e?s+e:e}function Qs(e){e._o=Vs,e._n=w,e._s=h,e._l=Bs,e._t=zs,e._q=P,e._i=j,e._m=Js,e._f=Ds,e._k=Hs,e._b=Gs,e._v=ye,e._e=he,e._u=Ys,e._g=Ks,e._d=Xs,e._p=Zs}function et(e,s){if(!e||!e.length)return{};for(var t={},r=0,n=e.length;r<n;r++){var o=e[r],i=o.data;if(i&&i.attrs&&i.attrs.slot&&delete i.attrs.slot,o.context!==s&&o.fnContext!==s||!i||null==i.slot)(t.default||(t.default=[])).push(o);else{var a=i.slot,l=t[a]||(t[a]=[]);"template"===o.tag?l.push.apply(l,o.children||[]):l.push(o)}}for(var m in t)t[m].every(st)&&delete t[m];return t}function st(e){return e.isComment&&!e.asyncFactory||" "===e.text}function tt(e){return e.isComment&&e.asyncFactory}function rt(e,s,t,n){var o,i=Object.keys(t).length>0,a=s?!!s.$stable:!i,l=s&&s.$key;if(s){if(s._normalized)return s._normalized;if(a&&n&&n!==r&&l===n.$key&&!i&&!n.$hasNormal)return n;for(var m in o={},s)s[m]&&"$"!==m[0]&&(o[m]=nt(e,t,m,s[m]))}else o={};for(var d in t)d in o||(o[d]=ot(t,d));return s&&Object.isExtensible(s)&&(s._normalized=o),q(o,"$stable",a),q(o,"$key",l),q(o,"$hasNormal",i),o}function nt(e,s,t,r){var o=function(){var s=ce;fe(e);var t=arguments.length?r.apply(null,arguments):r({}),o=(t=t&&"object"==typeof t&&!n(t)?[t]:Is(t))&&t[0];return fe(s),t&&(!o||1===t.length&&o.isComment&&!tt(o))?void 0:t};return r.proxy&&Object.defineProperty(s,t,{get:o,enumerable:!0,configurable:!0}),o}function ot(e,s){return function(){return e[s]}}function it(e){return{get attrs(){if(!e._attrsProxy){var s=e._attrsProxy={};q(s,"_v_attr_proxy",!0),at(s,e.$attrs,r,e,"$attrs")}return e._attrsProxy},get listeners(){e._listenersProxy||at(e._listenersProxy={},e.$listeners,r,e,"$listeners");return e._listenersProxy},get slots(){return function(e){e._slotsProxy||mt(e._slotsProxy={},e.$scopedSlots);return e._slotsProxy}(e)},emit:R(e.$emit,e),expose:function(s){s&&Object.keys(s).forEach((function(t){return ts(e,s,t)}))}}}function at(e,s,t,r,n){var o=!1;for(var i in s)i in e?s[i]!==t[i]&&(o=!0):(o=!0,lt(e,i,r,n));for(var i in e)i in s||(o=!0,delete e[i]);return o}function lt(e,s,t,r){Object.defineProperty(e,s,{enumerable:!0,configurable:!0,get:function(){return t[r][s]}})}function mt(e,s){for(var t in s)e[t]=s[t];for(var t in e)t in s||delete e[t]}function dt(){return ut().slots}function gt(){return ut().attrs}function ct(){return ut().listeners}function ut(){var e=ce;return e._setupContext||(e._setupContext=it(e))}function ft(e,s){var t=n(e)?e.reduce((function(e,s){return e[s]={},e}),{}):e;for(var r in s){var o=t[r];o?n(o)||m(o)?t[r]={type:o,default:s[r]}:o.default=s[r]:null===o&&(t[r]={default:s[r]})}return t}var pt=null;function ht(e,s){return(e.__esModule||ge&&"Module"===e[Symbol.toStringTag])&&(e=e.default),d(e)?s.extend(e):e}function yt(e){if(n(e))for(var s=0;s<e.length;s++){var t=e[s];if(i(t)&&(i(t.componentOptions)||tt(t)))return t}}var wt=1,vt=2;function Ft(e,s,t,r,o,g){return(n(t)||l(t))&&(o=r,r=t,t=void 0),a(g)&&(o=vt),function(e,s,t,r,o){if(i(t)&&i(t.__ob__))return he();i(t)&&i(t.is)&&(s=t.is);if(!s)return he();0;n(r)&&m(r[0])&&((t=t||{}).scopedSlots={default:r[0]},r.length=0);o===vt?r=Is(r):o===wt&&(r=function(e){for(var s=0;s<e.length;s++)if(n(e[s]))return Array.prototype.concat.apply([],e);return e}(r));var a,l;if("string"==typeof s){var g=void 0;l=e.$vnode&&e.$vnode.ns||G.getTagNamespace(s),a=G.isReservedTag(s)?new pe(G.parsePlatformTagName(s),t,r,void 0,void 0,e):t&&t.pre||!i(g=qr(e.$options,"components",s))?new pe(s,t,r,void 0,void 0,e):Pr(g,t,e,r,s)}else a=Pr(s,t,e,r);return n(a)?a:i(a)?(i(l)&&Tt(a,l),i(t)&&function(e){d(e.style)&&rr(e.style);d(e.class)&&rr(e.class)}(t),a):he()}(e,s,t,r,o)}function Tt(e,s,t){if(e.ns=s,"foreignObject"===e.tag&&(s=void 0,t=!0),i(e.children))for(var r=0,n=e.children.length;r<n;r++){var l=e.children[r];i(l.tag)&&(o(l.ns)||a(t)&&"svg"!==l.tag)&&Tt(l,s,t)}}function Nt(e,s,t){return Ft(ce,e,s,t,2,!0)}function Ct(e,s,t){Se();try{if(s)for(var r=s;r=r.$parent;){var n=r.$options.errorCaptured;if(n)for(var o=0;o<n.length;o++)try{if(!1===n[o].call(r,e,s,t))return}catch(e){xt(e,r,"errorCaptured hook")}}xt(e,s,t)}finally{xe()}}function St(e,s,t,r,n){var o;try{(o=t?e.apply(s,t):e.call(s))&&!o._isVue&&p(o)&&!o._handled&&(o.catch((function(e){return Ct(e,r,n+" (Promise/async)")})),o._handled=!0)}catch(e){Ct(e,r,n)}return o}function xt(e,s,t){if(G.errorHandler)try{return G.errorHandler.call(null,e,s,t)}catch(s){s!==e&&bt(s,null,"config.errorHandler")}bt(e,s,t)}function bt(e,s,t){if(!Y||"undefined"==typeof console)throw e;console.error(e)}var Mt,Lt=!1,kt=[],Rt=!1;function At(){Rt=!1;var e=kt.slice(0);kt.length=0;for(var s=0;s<e.length;s++)e[s]()}if("undefined"!=typeof Promise&&me(Promise)){var Et=Promise.resolve();Mt=function(){Et.then(At),se&&setTimeout(O)},Lt=!0}else if(Z||"undefined"==typeof MutationObserver||!me(MutationObserver)&&"[object MutationObserverConstructor]"!==MutationObserver.toString())Mt="undefined"!=typeof setImmediate&&me(setImmediate)?function(){setImmediate(At)}:function(){setTimeout(At,0)};else{var _t=1,Ot=new MutationObserver(At),Ut=document.createTextNode(String(_t));Ot.observe(Ut,{characterData:!0}),Mt=function(){_t=(_t+1)%2,Ut.data=String(_t)},Lt=!0}function It(e,s){var t;if(kt.push((function(){if(e)try{e.call(s)}catch(e){Ct(e,s,"nextTick")}else t&&t(s)})),Rt||(Rt=!0,Mt()),!e&&"undefined"!=typeof Promise)return new Promise((function(e){t=e}))}function Pt(e){if(void 0===e&&(e="$style"),!ce)return r;var s=ce[e];return s||r}function jt(e){if(Y){var s=ce;s&&ws((function(){var t=s.$el,r=e(s,s._setupProxy);if(t&&1===t.nodeType){var n=t.style;for(var o in r)n.setProperty("--".concat(o),r[o])}}))}}function Bt(e){m(e)&&(e={loader:e});var s=e.loader,t=e.loadingComponent,r=e.errorComponent,n=e.delay,o=void 0===n?200:n,i=e.timeout,a=(e.suspensible,e.onError);var l=null,d=0,g=function(){var e;return l||(e=l=s().catch((function(e){if(e=e instanceof Error?e:new Error(String(e)),a)return new Promise((function(s,t){a(e,(function(){return s((d++,l=null,g()))}),(function(){return t(e)}),d+1)}));throw e})).then((function(s){return e!==l&&l?l:(s&&(s.__esModule||"Module"===s[Symbol.toStringTag])&&(s=s.default),s)})))};return function(){return{component:g(),delay:o,timeout:i,error:r,loading:t}}}function zt(e){return function(s,t){if(void 0===t&&(t=ce),t)return function(e,s,t){var r=e.$options;r[s]=Hr(r[s],t)}(t,e,s)}}var Dt=zt("beforeMount"),$t=zt("mounted"),Ht=zt("beforeUpdate"),Gt=zt("updated"),Jt=zt("beforeDestroy"),Vt=zt("destroyed"),qt=zt("activated"),Wt=zt("deactivated"),Kt=zt("serverPrefetch"),Yt=zt("renderTracked"),Xt=zt("renderTriggered"),Zt=zt("errorCaptured");function Qt(e,s){void 0===s&&(s=ce),Zt(e,s)}var er="2.7.16";function sr(e){return e}var tr=new de;function rr(e){return nr(e,tr),tr.clear(),e}function nr(e,s){var t,r,o=n(e);if(!(!o&&!d(e)||e.__v_skip||Object.isFrozen(e)||e instanceof pe)){if(e.__ob__){var i=e.__ob__.dep.id;if(s.has(i))return;s.add(i)}if(o)for(t=e.length;t--;)nr(e[t],s);else if(Ke(e))nr(e.value,s);else for(t=(r=Object.keys(e)).length;t--;)nr(e[r[t]],s)}}var or,ir=0,ar=function(){function e(e,s,t,r,n){var o,i;o=this,void 0===(i=Fs&&!Fs._vm?Fs:e?e._scope:void 0)&&(i=Fs),i&&i.active&&i.effects.push(o),(this.vm=e)&&n&&(e._watcher=this),r?(this.deep=!!r.deep,this.user=!!r.user,this.lazy=!!r.lazy,this.sync=!!r.sync,this.before=r.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=t,this.id=++ir,this.active=!0,this.post=!1,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new de,this.newDepIds=new de,this.expression="",m(s)?this.getter=s:(this.getter=function(e){if(!W.test(e)){var s=e.split(".");return function(e){for(var t=0;t<s.length;t++){if(!e)return;e=e[s[t]]}return e}}}(s),this.getter||(this.getter=O)),this.value=this.lazy?void 0:this.get()}return e.prototype.get=function(){var e;Se(this);var s=this.vm;try{e=this.getter.call(s,s)}catch(e){if(!this.user)throw e;Ct(e,s,'getter for watcher "'.concat(this.expression,'"'))}finally{this.deep&&rr(e),xe(),this.cleanupDeps()}return e},e.prototype.addDep=function(e){var s=e.id;this.newDepIds.has(s)||(this.newDepIds.add(s),this.newDeps.push(e),this.depIds.has(s)||e.addSub(this))},e.prototype.cleanupDeps=function(){for(var e=this.deps.length;e--;){var s=this.deps[e];this.newDepIds.has(s.id)||s.removeSub(this)}var t=this.depIds;this.depIds=this.newDepIds,this.newDepIds=t,this.newDepIds.clear(),t=this.deps,this.deps=this.newDeps,this.newDeps=t,this.newDeps.length=0},e.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():kr(this)},e.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||d(e)||this.deep){var s=this.value;if(this.value=e,this.user){var t='callback for watcher "'.concat(this.expression,'"');St(this.cb,this.vm,[e,s],this.vm,t)}else this.cb.call(this.vm,e,s)}}},e.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},e.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},e.prototype.teardown=function(){if(this.vm&&!this.vm._isBeingDestroyed&&T(this.vm._scope.effects,this),this.active){for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1,this.onStop&&this.onStop()}},e}();function lr(e,s){or.$on(e,s)}function mr(e,s){or.$off(e,s)}function dr(e,s){var t=or;return function r(){null!==s.apply(null,arguments)&&t.$off(e,r)}}function gr(e,s,t){or=e,_s(s,t||{},lr,mr,dr,e),or=void 0}var cr=null;function ur(e){var s=cr;return cr=e,function(){cr=s}}function fr(e){for(;e&&(e=e.$parent);)if(e._inactive)return!0;return!1}function pr(e,s){if(s){if(e._directInactive=!1,fr(e))return}else if(e._directInactive)return;if(e._inactive||null===e._inactive){e._inactive=!1;for(var t=0;t<e.$children.length;t++)pr(e.$children[t]);yr(e,"activated")}}function hr(e,s){if(!(s&&(e._directInactive=!0,fr(e))||e._inactive)){e._inactive=!0;for(var t=0;t<e.$children.length;t++)hr(e.$children[t]);yr(e,"deactivated")}}function yr(e,s,t,r){void 0===r&&(r=!0),Se();var n=ce,o=bs();r&&fe(e);var i=e.$options[s],a="".concat(s," hook");if(i)for(var l=0,m=i.length;l<m;l++)St(i[l],e,t||null,e,a);e._hasHookEvent&&e.$emit("hook:"+s),r&&(fe(n),o&&o.on()),xe()}var wr=[],vr=[],Fr={},Tr=!1,Nr=!1,Cr=0;var Sr=0,xr=Date.now;if(Y&&!Z){var br=window.performance;br&&"function"==typeof br.now&&xr()>document.createEvent("Event").timeStamp&&(xr=function(){return br.now()})}var Mr=function(e,s){if(e.post){if(!s.post)return 1}else if(s.post)return-1;return e.id-s.id};function Lr(){var e,s;for(Sr=xr(),Nr=!0,wr.sort(Mr),Cr=0;Cr<wr.length;Cr++)(e=wr[Cr]).before&&e.before(),s=e.id,Fr[s]=null,e.run();var t=vr.slice(),r=wr.slice();Cr=wr.length=vr.length=0,Fr={},Tr=Nr=!1,function(e){for(var s=0;s<e.length;s++)e[s]._inactive=!0,pr(e[s],!0)}(t),function(e){var s=e.length;for(;s--;){var t=e[s],r=t.vm;r&&r._watcher===t&&r._isMounted&&!r._isDestroyed&&yr(r,"updated")}}(r),Te(),le&&G.devtools&&le.emit("flush")}function kr(e){var s=e.id;if(null==Fr[s]&&(e!==Ne.target||!e.noRecurse)){if(Fr[s]=!0,Nr){for(var t=wr.length-1;t>Cr&&wr[t].id>e.id;)t--;wr.splice(t+1,0,e)}else wr.push(e);Tr||(Tr=!0,It(Lr))}}function Rr(e,s){if(e){for(var t=Object.create(null),r=ge?Reflect.ownKeys(e):Object.keys(e),n=0;n<r.length;n++){var o=r[n];if("__ob__"!==o){var i=e[o].from;if(i in s._provided)t[o]=s._provided[i];else if("default"in e[o]){var a=e[o].default;t[o]=m(a)?a.call(s):a}else 0}}return t}}function Ar(e,s,t,o,i){var l,m=this,d=i.options;C(o,"_uid")?(l=Object.create(o))._original=o:(l=o,o=o._original);var g=a(d._compiled),c=!g;this.data=e,this.props=s,this.children=t,this.parent=o,this.listeners=e.on||r,this.injections=Rr(d.inject,o),this.slots=function(){return m.$slots||rt(o,e.scopedSlots,m.$slots=et(t,o)),m.$slots},Object.defineProperty(this,"scopedSlots",{enumerable:!0,get:function(){return rt(o,e.scopedSlots,this.slots())}}),g&&(this.$options=d,this.$slots=this.slots(),this.$scopedSlots=rt(o,e.scopedSlots,this.$slots)),d._scopeId?this._c=function(e,s,t,r){var i=Ft(l,e,s,t,r,c);return i&&!n(i)&&(i.fnScopeId=d._scopeId,i.fnContext=o),i}:this._c=function(e,s,t,r){return Ft(l,e,s,t,r,c)}}function Er(e,s,t,r,n){var o=we(e);return o.fnContext=t,o.fnOptions=r,s.slot&&((o.data||(o.data={})).slot=s.slot),o}function _r(e,s){for(var t in s)e[b(t)]=s[t]}function Or(e){return e.name||e.__name||e._componentTag}Qs(Ar.prototype);var Ur={init:function(e,s){if(e.componentInstance&&!e.componentInstance._isDestroyed&&e.data.keepAlive){var t=e;Ur.prepatch(t,t)}else{(e.componentInstance=function(e,s){var t={_isComponent:!0,_parentVnode:e,parent:s},r=e.data.inlineTemplate;i(r)&&(t.render=r.render,t.staticRenderFns=r.staticRenderFns);return new e.componentOptions.Ctor(t)}(e,cr)).$mount(s?e.elm:void 0,s)}},prepatch:function(e,s){var t=s.componentOptions;!function(e,s,t,n,o){var i=n.data.scopedSlots,a=e.$scopedSlots,l=!!(i&&!i.$stable||a!==r&&!a.$stable||i&&e.$scopedSlots.$key!==i.$key||!i&&e.$scopedSlots.$key),m=!!(o||e.$options._renderChildren||l),d=e.$vnode;e.$options._parentVnode=n,e.$vnode=n,e._vnode&&(e._vnode.parent=n),e.$options._renderChildren=o;var g=n.data.attrs||r;e._attrsProxy&&at(e._attrsProxy,g,d.data&&d.data.attrs||r,e,"$attrs")&&(m=!0),e.$attrs=g,t=t||r;var c=e.$options._parentListeners;if(e._listenersProxy&&at(e._listenersProxy,t,c||r,e,"$listeners"),e.$listeners=e.$options._parentListeners=t,gr(e,t,c),s&&e.$options.props){Ae(!1);for(var u=e._props,f=e.$options._propKeys||[],p=0;p<f.length;p++){var h=f[p],y=e.$options.props;u[h]=Wr(h,y,s,e)}Ae(!0),e.$options.propsData=s}m&&(e.$slots=et(o,n.context),e.$forceUpdate())}(s.componentInstance=e.componentInstance,t.propsData,t.listeners,s,t.children)},insert:function(e){var s,t=e.context,r=e.componentInstance;r._isMounted||(r._isMounted=!0,yr(r,"mounted")),e.data.keepAlive&&(t._isMounted?((s=r)._inactive=!1,vr.push(s)):pr(r,!0))},destroy:function(e){var s=e.componentInstance;s._isDestroyed||(e.data.keepAlive?hr(s,!0):s.$destroy())}},Ir=Object.keys(Ur);function Pr(e,s,t,l,m){if(!o(e)){var g=t.$options._base;if(d(e)&&(e=g.extend(e)),"function"==typeof e){var c;if(o(e.cid)&&(e=function(e,s){if(a(e.error)&&i(e.errorComp))return e.errorComp;if(i(e.resolved))return e.resolved;var t=pt;if(t&&i(e.owners)&&-1===e.owners.indexOf(t)&&e.owners.push(t),a(e.loading)&&i(e.loadingComp))return e.loadingComp;if(t&&!i(e.owners)){var r=e.owners=[t],n=!0,l=null,m=null;t.$on("hook:destroyed",(function(){return T(r,t)}));var g=function(e){for(var s=0,t=r.length;s<t;s++)r[s].$forceUpdate();e&&(r.length=0,null!==l&&(clearTimeout(l),l=null),null!==m&&(clearTimeout(m),m=null))},c=B((function(t){e.resolved=ht(t,s),n?r.length=0:g(!0)})),u=B((function(s){i(e.errorComp)&&(e.error=!0,g(!0))})),f=e(c,u);return d(f)&&(p(f)?o(e.resolved)&&f.then(c,u):p(f.component)&&(f.component.then(c,u),i(f.error)&&(e.errorComp=ht(f.error,s)),i(f.loading)&&(e.loadingComp=ht(f.loading,s),0===f.delay?e.loading=!0:l=setTimeout((function(){l=null,o(e.resolved)&&o(e.error)&&(e.loading=!0,g(!1))}),f.delay||200)),i(f.timeout)&&(m=setTimeout((function(){m=null,o(e.resolved)&&u(null)}),f.timeout)))),n=!1,e.loading?e.loadingComp:e.resolved}}(c=e,g),void 0===e))return function(e,s,t,r,n){var o=he();return o.asyncFactory=e,o.asyncMeta={data:s,context:t,children:r,tag:n},o}(c,s,t,l,m);s=s||{},mn(e),i(s.model)&&function(e,s){var t=e.model&&e.model.prop||"value",r=e.model&&e.model.event||"input";(s.attrs||(s.attrs={}))[t]=s.model.value;var o=s.on||(s.on={}),a=o[r],l=s.model.callback;i(a)?(n(a)?-1===a.indexOf(l):a!==l)&&(o[r]=[l].concat(a)):o[r]=l}(e.options,s);var u=function(e,s,t){var r=s.options.props;if(!o(r)){var n={},a=e.attrs,l=e.props;if(i(a)||i(l))for(var m in r){var d=k(m);Us(n,l,m,d,!0)||Us(n,a,m,d,!1)}return n}}(s,e);if(a(e.options.functional))return function(e,s,t,o,a){var l=e.options,m={},d=l.props;if(i(d))for(var g in d)m[g]=Wr(g,d,s||r);else i(t.attrs)&&_r(m,t.attrs),i(t.props)&&_r(m,t.props);var c=new Ar(t,m,a,o,e),u=l.render.call(null,c._c,c);if(u instanceof pe)return Er(u,t,c.parent,l);if(n(u)){for(var f=Is(u)||[],p=new Array(f.length),h=0;h<f.length;h++)p[h]=Er(f[h],t,c.parent,l);return p}}(e,u,s,t,l);var f=s.on;if(s.on=s.nativeOn,a(e.options.abstract)){var h=s.slot;s={},h&&(s.slot=h)}!function(e){for(var s=e.hook||(e.hook={}),t=0;t<Ir.length;t++){var r=Ir[t],n=s[r],o=Ur[r];n===o||n&&n._merged||(s[r]=n?jr(o,n):o)}}(s);var y=Or(e.options)||m;return new pe("vue-component-".concat(e.cid).concat(y?"-".concat(y):""),s,void 0,void 0,void 0,t,{Ctor:e,propsData:u,listeners:f,tag:m,children:l},c)}}}function jr(e,s){var t=function(t,r){e(t,r),s(t,r)};return t._merged=!0,t}var Br=O,zr=G.optionMergeStrategies;function Dr(e,s,t){if(void 0===t&&(t=!0),!s)return e;for(var r,n,o,i=ge?Reflect.ownKeys(s):Object.keys(s),a=0;a<i.length;a++)"__ob__"!==(r=i[a])&&(n=e[r],o=s[r],t&&C(e,r)?n!==o&&c(n)&&c(o)&&Dr(n,o):Ie(e,r,o));return e}function $r(e,s,t){return t?function(){var r=m(s)?s.call(t,t):s,n=m(e)?e.call(t,t):e;return r?Dr(r,n):n}:s?e?function(){return Dr(m(s)?s.call(this,this):s,m(e)?e.call(this,this):e)}:s:e}function Hr(e,s){var t=s?e?e.concat(s):n(s)?s:[s]:e;return t?function(e){for(var s=[],t=0;t<e.length;t++)-1===s.indexOf(e[t])&&s.push(e[t]);return s}(t):t}function Gr(e,s,t,r){var n=Object.create(e||null);return s?E(n,s):n}zr.data=function(e,s,t){return t?$r(e,s,t):s&&"function"!=typeof s?e:$r(e,s)},H.forEach((function(e){zr[e]=Hr})),$.forEach((function(e){zr[e+"s"]=Gr})),zr.watch=function(e,s,t,r){if(e===ne&&(e=void 0),s===ne&&(s=void 0),!s)return Object.create(e||null);if(!e)return s;var o={};for(var i in E(o,e),s){var a=o[i],l=s[i];a&&!n(a)&&(a=[a]),o[i]=a?a.concat(l):n(l)?l:[l]}return o},zr.props=zr.methods=zr.inject=zr.computed=function(e,s,t,r){if(!e)return s;var n=Object.create(null);return E(n,e),s&&E(n,s),n},zr.provide=function(e,s){return e?function(){var t=Object.create(null);return Dr(t,m(e)?e.call(this):e),s&&Dr(t,m(s)?s.call(this):s,!1),t}:s};var Jr=function(e,s){return void 0===s?e:s};function Vr(e,s,t){if(m(s)&&(s=s.options),function(e,s){var t=e.props;if(t){var r,o,i={};if(n(t))for(r=t.length;r--;)"string"==typeof(o=t[r])&&(i[b(o)]={type:null});else if(c(t))for(var a in t)o=t[a],i[b(a)]=c(o)?o:{type:o};e.props=i}}(s),function(e,s){var t=e.inject;if(t){var r=e.inject={};if(n(t))for(var o=0;o<t.length;o++)r[t[o]]={from:t[o]};else if(c(t))for(var i in t){var a=t[i];r[i]=c(a)?E({from:i},a):{from:a}}}}(s),function(e){var s=e.directives;if(s)for(var t in s){var r=s[t];m(r)&&(s[t]={bind:r,update:r})}}(s),!s._base&&(s.extends&&(e=Vr(e,s.extends,t)),s.mixins))for(var r=0,o=s.mixins.length;r<o;r++)e=Vr(e,s.mixins[r],t);var i,a={};for(i in e)l(i);for(i in s)C(e,i)||l(i);function l(r){var n=zr[r]||Jr;a[r]=n(e[r],s[r],t,r)}return a}function qr(e,s,t,r){if("string"==typeof t){var n=e[s];if(C(n,t))return n[t];var o=b(t);if(C(n,o))return n[o];var i=M(o);return C(n,i)?n[i]:n[t]||n[o]||n[i]}}function Wr(e,s,t,r){var n=s[e],o=!C(t,e),i=t[e],a=Zr(Boolean,n.type);if(a>-1)if(o&&!C(n,"default"))i=!1;else if(""===i||i===k(e)){var l=Zr(String,n.type);(l<0||a<l)&&(i=!0)}if(void 0===i){i=function(e,s,t){if(!C(s,"default"))return;var r=s.default;0;if(e&&e.$options.propsData&&void 0===e.$options.propsData[t]&&void 0!==e._props[t])return e._props[t];return m(r)&&"Function"!==Yr(s.type)?r.call(e):r}(r,n,e);var d=Re;Ae(!0),Oe(i),Ae(d)}return i}var Kr=/^\s*function (\w+)/;function Yr(e){var s=e&&e.toString().match(Kr);return s?s[1]:""}function Xr(e,s){return Yr(e)===Yr(s)}function Zr(e,s){if(!n(s))return Xr(s,e)?0:-1;for(var t=0,r=s.length;t<r;t++)if(Xr(s[t],e))return t;return-1}var Qr={enumerable:!0,configurable:!0,get:O,set:O};function en(e,s,t){Qr.get=function(){return this[s][t]},Qr.set=function(e){this[s][t]=e},Object.defineProperty(e,t,Qr)}function sn(e){var s=e.$options;if(s.props&&function(e,s){var t=e.$options.propsData||{},r=e._props=ze({}),n=e.$options._propKeys=[],o=!e.$parent;o||Ae(!1);var i=function(o){n.push(o);var i=Wr(o,s,t,e);Ue(r,o,i,void 0,!0),o in e||en(e,"_props",o)};for(var a in s)i(a);Ae(!0)}(e,s.props),function(e){var s=e.$options,t=s.setup;if(t){var r=e._setupContext=it(e);fe(e),Se();var n=St(t,null,[e._props||ze({}),r],e,"setup");if(xe(),fe(),m(n))s.render=n;else if(d(n))if(e._setupState=n,n.__sfc){var o=e._setupProxy={};for(var i in n)"__sfc"!==i&&ts(o,n,i)}else for(var i in n)V(i)||ts(e,n,i)}}(e),s.methods&&function(e,s){e.$options.props;for(var t in s)e[t]="function"!=typeof s[t]?O:R(s[t],e)}(e,s.methods),s.data)!function(e){var s=e.$options.data;s=e._data=m(s)?function(e,s){Se();try{return e.call(s,s)}catch(e){return Ct(e,s,"data()"),{}}finally{xe()}}(s,e):s||{},c(s)||(s={});var t=Object.keys(s),r=e.$options.props,n=(e.$options.methods,t.length);for(;n--;){var o=t[n];0,r&&C(r,o)||V(o)||en(e,"_data",o)}var i=Oe(s);i&&i.vmCount++}(e);else{var t=Oe(e._data={});t&&t.vmCount++}s.computed&&function(e,s){var t=e._computedWatchers=Object.create(null),r=ae();for(var n in s){var o=s[n],i=m(o)?o:o.get;0,r||(t[n]=new ar(e,i||O,O,tn)),n in e||rn(e,n,o)}}(e,s.computed),s.watch&&s.watch!==ne&&function(e,s){for(var t in s){var r=s[t];if(n(r))for(var o=0;o<r.length;o++)an(e,t,r[o]);else an(e,t,r)}}(e,s.watch)}var tn={lazy:!0};function rn(e,s,t){var r=!ae();m(t)?(Qr.get=r?nn(s):on(t),Qr.set=O):(Qr.get=t.get?r&&!1!==t.cache?nn(s):on(t.get):O,Qr.set=t.set||O),Object.defineProperty(e,s,Qr)}function nn(e){return function(){var s=this._computedWatchers&&this._computedWatchers[e];if(s)return s.dirty&&s.evaluate(),Ne.target&&s.depend(),s.value}}function on(e){return function(){return e.call(this,this)}}function an(e,s,t,r){return c(t)&&(r=t,t=t.handler),"string"==typeof t&&(t=e[t]),e.$watch(s,t,r)}var ln=0;function mn(e){var s=e.options;if(e.super){var t=mn(e.super);if(t!==e.superOptions){e.superOptions=t;var r=function(e){var s,t=e.options,r=e.sealedOptions;for(var n in t)t[n]!==r[n]&&(s||(s={}),s[n]=t[n]);return s}(e);r&&E(e.extendOptions,r),(s=e.options=Vr(t,e.extendOptions)).name&&(s.components[s.name]=e)}}return s}function dn(e){this._init(e)}function gn(e){e.cid=0;var s=1;e.extend=function(e){e=e||{};var t=this,r=t.cid,n=e._Ctor||(e._Ctor={});if(n[r])return n[r];var o=Or(e)||Or(t.options);var i=function(e){this._init(e)};return(i.prototype=Object.create(t.prototype)).constructor=i,i.cid=s++,i.options=Vr(t.options,e),i.super=t,i.options.props&&function(e){var s=e.options.props;for(var t in s)en(e.prototype,"_props",t)}(i),i.options.computed&&function(e){var s=e.options.computed;for(var t in s)rn(e.prototype,t,s[t])}(i),i.extend=t.extend,i.mixin=t.mixin,i.use=t.use,$.forEach((function(e){i[e]=t[e]})),o&&(i.options.components[o]=i),i.superOptions=t.options,i.extendOptions=e,i.sealedOptions=E({},i.options),n[r]=i,i}}function cn(e){return e&&(Or(e.Ctor.options)||e.tag)}function un(e,s){return n(e)?e.indexOf(s)>-1:"string"==typeof e?e.split(",").indexOf(s)>-1:!!u(e)&&e.test(s)}function fn(e,s){var t=e.cache,r=e.keys,n=e._vnode,o=e.$vnode;for(var i in t){var a=t[i];if(a){var l=a.name;l&&!s(l)&&pn(t,i,r,n)}}o.componentOptions.children=void 0}function pn(e,s,t,r){var n=e[s];!n||r&&n.tag===r.tag||n.componentInstance.$destroy(),e[s]=null,T(t,s)}!function(e){e.prototype._init=function(e){var s=this;s._uid=ln++,s._isVue=!0,s.__v_skip=!0,s._scope=new Ss(!0),s._scope.parent=void 0,s._scope._vm=!0,e&&e._isComponent?function(e,s){var t=e.$options=Object.create(e.constructor.options),r=s._parentVnode;t.parent=s.parent,t._parentVnode=r;var n=r.componentOptions;t.propsData=n.propsData,t._parentListeners=n.listeners,t._renderChildren=n.children,t._componentTag=n.tag,s.render&&(t.render=s.render,t.staticRenderFns=s.staticRenderFns)}(s,e):s.$options=Vr(mn(s.constructor),e||{},s),s._renderProxy=s,s._self=s,function(e){var s=e.$options,t=s.parent;if(t&&!s.abstract){for(;t.$options.abstract&&t.$parent;)t=t.$parent;t.$children.push(e)}e.$parent=t,e.$root=t?t.$root:e,e.$children=[],e.$refs={},e._provided=t?t._provided:Object.create(null),e._watcher=null,e._inactive=null,e._directInactive=!1,e._isMounted=!1,e._isDestroyed=!1,e._isBeingDestroyed=!1}(s),function(e){e._events=Object.create(null),e._hasHookEvent=!1;var s=e.$options._parentListeners;s&&gr(e,s)}(s),function(e){e._vnode=null,e._staticTrees=null;var s=e.$options,t=e.$vnode=s._parentVnode,n=t&&t.context;e.$slots=et(s._renderChildren,n),e.$scopedSlots=t?rt(e.$parent,t.data.scopedSlots,e.$slots):r,e._c=function(s,t,r,n){return Ft(e,s,t,r,n,!1)},e.$createElement=function(s,t,r,n){return Ft(e,s,t,r,n,!0)};var o=t&&t.data;Ue(e,"$attrs",o&&o.attrs||r,null,!0),Ue(e,"$listeners",s._parentListeners||r,null,!0)}(s),yr(s,"beforeCreate",void 0,!1),function(e){var s=Rr(e.$options.inject,e);s&&(Ae(!1),Object.keys(s).forEach((function(t){Ue(e,t,s[t])})),Ae(!0))}(s),sn(s),function(e){var s=e.$options.provide;if(s){var t=m(s)?s.call(e):s;if(!d(t))return;for(var r=ks(e),n=ge?Reflect.ownKeys(t):Object.keys(t),o=0;o<n.length;o++){var i=n[o];Object.defineProperty(r,i,Object.getOwnPropertyDescriptor(t,i))}}}(s),yr(s,"created"),s.$options.el&&s.$mount(s.$options.el)}}(dn),function(e){var s={get:function(){return this._data}},t={get:function(){return this._props}};Object.defineProperty(e.prototype,"$data",s),Object.defineProperty(e.prototype,"$props",t),e.prototype.$set=Ie,e.prototype.$delete=Pe,e.prototype.$watch=function(e,s,t){var r=this;if(c(s))return an(r,e,s,t);(t=t||{}).user=!0;var n=new ar(r,e,s,t);if(t.immediate){var o='callback for immediate watcher "'.concat(n.expression,'"');Se(),St(s,r,[n.value],r,o),xe()}return function(){n.teardown()}}}(dn),function(e){var s=/^hook:/;e.prototype.$on=function(e,t){var r=this;if(n(e))for(var o=0,i=e.length;o<i;o++)r.$on(e[o],t);else(r._events[e]||(r._events[e]=[])).push(t),s.test(e)&&(r._hasHookEvent=!0);return r},e.prototype.$once=function(e,s){var t=this;function r(){t.$off(e,r),s.apply(t,arguments)}return r.fn=s,t.$on(e,r),t},e.prototype.$off=function(e,s){var t=this;if(!arguments.length)return t._events=Object.create(null),t;if(n(e)){for(var r=0,o=e.length;r<o;r++)t.$off(e[r],s);return t}var i,a=t._events[e];if(!a)return t;if(!s)return t._events[e]=null,t;for(var l=a.length;l--;)if((i=a[l])===s||i.fn===s){a.splice(l,1);break}return t},e.prototype.$emit=function(e){var s=this,t=s._events[e];if(t){t=t.length>1?A(t):t;for(var r=A(arguments,1),n='event handler for "'.concat(e,'"'),o=0,i=t.length;o<i;o++)St(t[o],s,r,s,n)}return s}}(dn),function(e){e.prototype._update=function(e,s){var t=this,r=t.$el,n=t._vnode,o=ur(t);t._vnode=e,t.$el=n?t.__patch__(n,e):t.__patch__(t.$el,e,s,!1),o(),r&&(r.__vue__=null),t.$el&&(t.$el.__vue__=t);for(var i=t;i&&i.$vnode&&i.$parent&&i.$vnode===i.$parent._vnode;)i.$parent.$el=i.$el,i=i.$parent},e.prototype.$forceUpdate=function(){this._watcher&&this._watcher.update()},e.prototype.$destroy=function(){var e=this;if(!e._isBeingDestroyed){yr(e,"beforeDestroy"),e._isBeingDestroyed=!0;var s=e.$parent;!s||s._isBeingDestroyed||e.$options.abstract||T(s.$children,e),e._scope.stop(),e._data.__ob__&&e._data.__ob__.vmCount--,e._isDestroyed=!0,e.__patch__(e._vnode,null),yr(e,"destroyed"),e.$off(),e.$el&&(e.$el.__vue__=null),e.$vnode&&(e.$vnode.parent=null)}}}(dn),function(e){Qs(e.prototype),e.prototype.$nextTick=function(e){return It(e,this)},e.prototype._render=function(){var e=this,s=e.$options,t=s.render,r=s._parentVnode;r&&e._isMounted&&(e.$scopedSlots=rt(e.$parent,r.data.scopedSlots,e.$slots,e.$scopedSlots),e._slotsProxy&&mt(e._slotsProxy,e.$scopedSlots)),e.$vnode=r;var o,i=ce,a=pt;try{fe(e),pt=e,o=t.call(e._renderProxy,e.$createElement)}catch(s){Ct(s,e,"render"),o=e._vnode}finally{pt=a,fe(i)}return n(o)&&1===o.length&&(o=o[0]),o instanceof pe||(o=he()),o.parent=r,o}}(dn);var hn=[String,RegExp,Array],yn={KeepAlive:{name:"keep-alive",abstract:!0,props:{include:hn,exclude:hn,max:[String,Number]},methods:{cacheVNode:function(){var e=this,s=e.cache,t=e.keys,r=e.vnodeToCache,n=e.keyToCache;if(r){var o=r.tag,i=r.componentInstance,a=r.componentOptions;s[n]={name:cn(a),tag:o,componentInstance:i},t.push(n),this.max&&t.length>parseInt(this.max)&&pn(s,t[0],t,this._vnode),this.vnodeToCache=null}}},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var e in this.cache)pn(this.cache,e,this.keys)},mounted:function(){var e=this;this.cacheVNode(),this.$watch("include",(function(s){fn(e,(function(e){return un(s,e)}))})),this.$watch("exclude",(function(s){fn(e,(function(e){return!un(s,e)}))}))},updated:function(){this.cacheVNode()},render:function(){var e=this.$slots.default,s=yt(e),t=s&&s.componentOptions;if(t){var r=cn(t),n=this.include,o=this.exclude;if(n&&(!r||!un(n,r))||o&&r&&un(o,r))return s;var i=this.cache,a=this.keys,l=null==s.key?t.Ctor.cid+(t.tag?"::".concat(t.tag):""):s.key;i[l]?(s.componentInstance=i[l].componentInstance,T(a,l),a.push(l)):(this.vnodeToCache=s,this.keyToCache=l),s.data.keepAlive=!0}return s||e&&e[0]}}};!function(e){var s={get:function(){return G}};Object.defineProperty(e,"config",s),e.util={warn:Br,extend:E,mergeOptions:Vr,defineReactive:Ue},e.set=Ie,e.delete=Pe,e.nextTick=It,e.observable=function(e){return Oe(e),e},e.options=Object.create(null),$.forEach((function(s){e.options[s+"s"]=Object.create(null)})),e.options._base=e,E(e.options.components,yn),function(e){e.use=function(e){var s=this._installedPlugins||(this._installedPlugins=[]);if(s.indexOf(e)>-1)return this;var t=A(arguments,1);return t.unshift(this),m(e.install)?e.install.apply(e,t):m(e)&&e.apply(null,t),s.push(e),this}}(e),function(e){e.mixin=function(e){return this.options=Vr(this.options,e),this}}(e),gn(e),function(e){$.forEach((function(s){e[s]=function(e,t){return t?("component"===s&&c(t)&&(t.name=t.name||e,t=this.options._base.extend(t)),"directive"===s&&m(t)&&(t={bind:t,update:t}),this.options[s+"s"][e]=t,t):this.options[s+"s"][e]}}))}(e)}(dn),Object.defineProperty(dn.prototype,"$isServer",{get:ae}),Object.defineProperty(dn.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(dn,"FunctionalRenderContext",{value:Ar}),dn.version=er;var wn=v("style,class"),vn=v("input,textarea,option,select,progress"),Fn=v("contenteditable,draggable,spellcheck"),Tn=v("events,caret,typing,plaintext-only"),Nn=function(e,s){return Mn(s)||"false"===s?"false":"contenteditable"===e&&Tn(s)?s:"true"},Cn=v("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,truespeed,typemustmatch,visible"),Sn="http://www.w3.org/1999/xlink",xn=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},bn=function(e){return xn(e)?e.slice(6,e.length):""},Mn=function(e){return null==e||!1===e};function Ln(e){for(var s=e.data,t=e,r=e;i(r.componentInstance);)(r=r.componentInstance._vnode)&&r.data&&(s=kn(r.data,s));for(;i(t=t.parent);)t&&t.data&&(s=kn(s,t.data));return function(e,s){if(i(e)||i(s))return Rn(e,An(s));return""}(s.staticClass,s.class)}function kn(e,s){return{staticClass:Rn(e.staticClass,s.staticClass),class:i(e.class)?[e.class,s.class]:s.class}}function Rn(e,s){return e?s?e+" "+s:e:s||""}function An(e){return Array.isArray(e)?function(e){for(var s,t="",r=0,n=e.length;r<n;r++)i(s=An(e[r]))&&""!==s&&(t&&(t+=" "),t+=s);return t}(e):d(e)?function(e){var s="";for(var t in e)e[t]&&(s&&(s+=" "),s+=t);return s}(e):"string"==typeof e?e:""}var En={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},_n=v("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),On=v("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignobject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),Un=function(e){return _n(e)||On(e)};var In=Object.create(null);var Pn=v("text,number,password,search,email,tel,url");var jn=Object.freeze({__proto__:null,createElement:function(e,s){var t=document.createElement(e);return"select"!==e||s.data&&s.data.attrs&&void 0!==s.data.attrs.multiple&&t.setAttribute("multiple","multiple"),t},createElementNS:function(e,s){return document.createElementNS(En[e],s)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,s,t){e.insertBefore(s,t)},removeChild:function(e,s){e.removeChild(s)},appendChild:function(e,s){e.appendChild(s)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,s){e.textContent=s},setStyleScope:function(e,s){e.setAttribute(s,"")}}),Bn={create:function(e,s){zn(s)},update:function(e,s){e.data.ref!==s.data.ref&&(zn(e,!0),zn(s))},destroy:function(e){zn(e,!0)}};function zn(e,s){var t=e.data.ref;if(i(t)){var r=e.context,o=e.componentInstance||e.elm,a=s?null:o,l=s?void 0:o;if(m(t))St(t,r,[a],r,"template ref function");else{var d=e.data.refInFor,g="string"==typeof t||"number"==typeof t,c=Ke(t),u=r.$refs;if(g||c)if(d){var f=g?u[t]:t.value;s?n(f)&&T(f,o):n(f)?f.includes(o)||f.push(o):g?(u[t]=[o],Dn(r,t,u[t])):t.value=[o]}else if(g){if(s&&u[t]!==o)return;u[t]=l,Dn(r,t,a)}else if(c){if(s&&t.value!==o)return;t.value=a}else 0}}}function Dn(e,s,t){var r=e._setupState;r&&C(r,s)&&(Ke(r[s])?r[s].value=t:r[s]=t)}var $n=new pe("",{},[]),Hn=["create","activate","update","remove","destroy"];function Gn(e,s){return e.key===s.key&&e.asyncFactory===s.asyncFactory&&(e.tag===s.tag&&e.isComment===s.isComment&&i(e.data)===i(s.data)&&function(e,s){if("input"!==e.tag)return!0;var t,r=i(t=e.data)&&i(t=t.attrs)&&t.type,n=i(t=s.data)&&i(t=t.attrs)&&t.type;return r===n||Pn(r)&&Pn(n)}(e,s)||a(e.isAsyncPlaceholder)&&o(s.asyncFactory.error))}function Jn(e,s,t){var r,n,o={};for(r=s;r<=t;++r)i(n=e[r].key)&&(o[n]=r);return o}var Vn={create:qn,update:qn,destroy:function(e){qn(e,$n)}};function qn(e,s){(e.data.directives||s.data.directives)&&function(e,s){var t,r,n,o=e===$n,i=s===$n,a=Kn(e.data.directives,e.context),l=Kn(s.data.directives,s.context),m=[],d=[];for(t in l)r=a[t],n=l[t],r?(n.oldValue=r.value,n.oldArg=r.arg,Xn(n,"update",s,e),n.def&&n.def.componentUpdated&&d.push(n)):(Xn(n,"bind",s,e),n.def&&n.def.inserted&&m.push(n));if(m.length){var g=function(){for(var t=0;t<m.length;t++)Xn(m[t],"inserted",s,e)};o?Os(s,"insert",g):g()}d.length&&Os(s,"postpatch",(function(){for(var t=0;t<d.length;t++)Xn(d[t],"componentUpdated",s,e)}));if(!o)for(t in a)l[t]||Xn(a[t],"unbind",e,e,i)}(e,s)}var Wn=Object.create(null);function Kn(e,s){var t,r,n=Object.create(null);if(!e)return n;for(t=0;t<e.length;t++){if((r=e[t]).modifiers||(r.modifiers=Wn),n[Yn(r)]=r,s._setupState&&s._setupState.__sfc){var o=r.def||qr(s,"_setupState","v-"+r.name);r.def="function"==typeof o?{bind:o,update:o}:o}r.def=r.def||qr(s.$options,"directives",r.name)}return n}function Yn(e){return e.rawName||"".concat(e.name,".").concat(Object.keys(e.modifiers||{}).join("."))}function Xn(e,s,t,r,n){var o=e.def&&e.def[s];if(o)try{o(t.elm,e,t,r,n)}catch(r){Ct(r,t.context,"directive ".concat(e.name," ").concat(s," hook"))}}var Zn=[Bn,Vn];function Qn(e,s){var t=s.componentOptions;if(!(i(t)&&!1===t.Ctor.options.inheritAttrs||o(e.data.attrs)&&o(s.data.attrs))){var r,n,l=s.elm,m=e.data.attrs||{},d=s.data.attrs||{};for(r in(i(d.__ob__)||a(d._v_attr_proxy))&&(d=s.data.attrs=E({},d)),d)n=d[r],m[r]!==n&&eo(l,r,n,s.data.pre);for(r in(Z||ee)&&d.value!==m.value&&eo(l,"value",d.value),m)o(d[r])&&(xn(r)?l.removeAttributeNS(Sn,bn(r)):Fn(r)||l.removeAttribute(r))}}function eo(e,s,t,r){r||e.tagName.indexOf("-")>-1?so(e,s,t):Cn(s)?Mn(t)?e.removeAttribute(s):(t="allowfullscreen"===s&&"EMBED"===e.tagName?"true":s,e.setAttribute(s,t)):Fn(s)?e.setAttribute(s,Nn(s,t)):xn(s)?Mn(t)?e.removeAttributeNS(Sn,bn(s)):e.setAttributeNS(Sn,s,t):so(e,s,t)}function so(e,s,t){if(Mn(t))e.removeAttribute(s);else{if(Z&&!Q&&"TEXTAREA"===e.tagName&&"placeholder"===s&&""!==t&&!e.__ieph){var r=function(s){s.stopImmediatePropagation(),e.removeEventListener("input",r)};e.addEventListener("input",r),e.__ieph=!0}e.setAttribute(s,t)}}var to={create:Qn,update:Qn};function ro(e,s){var t=s.elm,r=s.data,n=e.data;if(!(o(r.staticClass)&&o(r.class)&&(o(n)||o(n.staticClass)&&o(n.class)))){var a=Ln(s),l=t._transitionClasses;i(l)&&(a=Rn(a,An(l))),a!==t._prevClass&&(t.setAttribute("class",a),t._prevClass=a)}}var no,oo={create:ro,update:ro},io="__r",ao="__c";function lo(e,s,t){var r=no;return function n(){null!==s.apply(null,arguments)&&co(e,n,t,r)}}var mo=Lt&&!(re&&Number(re[1])<=53);function go(e,s,t,r){if(mo){var n=Sr,o=s;s=o._wrapper=function(e){if(e.target===e.currentTarget||e.timeStamp>=n||e.timeStamp<=0||e.target.ownerDocument!==document)return o.apply(this,arguments)}}no.addEventListener(e,s,oe?{capture:t,passive:r}:t)}function co(e,s,t,r){(r||no).removeEventListener(e,s._wrapper||s,t)}function uo(e,s){if(!o(e.data.on)||!o(s.data.on)){var t=s.data.on||{},r=e.data.on||{};no=s.elm||e.elm,function(e){if(i(e[io])){var s=Z?"change":"input";e[s]=[].concat(e[io],e[s]||[]),delete e[io]}i(e[ao])&&(e.change=[].concat(e[ao],e.change||[]),delete e[ao])}(t),_s(t,r,go,co,lo,s.context),no=void 0}}var fo,po={create:uo,update:uo,destroy:function(e){return uo(e,$n)}};function ho(e,s){if(!o(e.data.domProps)||!o(s.data.domProps)){var t,r,n=s.elm,l=e.data.domProps||{},m=s.data.domProps||{};for(t in(i(m.__ob__)||a(m._v_attr_proxy))&&(m=s.data.domProps=E({},m)),l)t in m||(n[t]="");for(t in m){if(r=m[t],"textContent"===t||"innerHTML"===t){if(s.children&&(s.children.length=0),r===l[t])continue;1===n.childNodes.length&&n.removeChild(n.childNodes[0])}if("value"===t&&"PROGRESS"!==n.tagName){n._value=r;var d=o(r)?"":String(r);yo(n,d)&&(n.value=d)}else if("innerHTML"===t&&On(n.tagName)&&o(n.innerHTML)){(fo=fo||document.createElement("div")).innerHTML="<svg>".concat(r,"</svg>");for(var g=fo.firstChild;n.firstChild;)n.removeChild(n.firstChild);for(;g.firstChild;)n.appendChild(g.firstChild)}else if(r!==l[t])try{n[t]=r}catch(e){}}}}function yo(e,s){return!e.composing&&("OPTION"===e.tagName||function(e,s){var t=!0;try{t=document.activeElement!==e}catch(e){}return t&&e.value!==s}(e,s)||function(e,s){var t=e.value,r=e._vModifiers;if(i(r)){if(r.number)return w(t)!==w(s);if(r.trim)return t.trim()!==s.trim()}return t!==s}(e,s))}var wo={create:ho,update:ho},vo=S((function(e){var s={},t=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach((function(e){if(e){var r=e.split(t);r.length>1&&(s[r[0].trim()]=r[1].trim())}})),s}));function Fo(e){var s=To(e.style);return e.staticStyle?E(e.staticStyle,s):s}function To(e){return Array.isArray(e)?_(e):"string"==typeof e?vo(e):e}var No,Co=/^--/,So=/\s*!important$/,xo=function(e,s,t){if(Co.test(s))e.style.setProperty(s,t);else if(So.test(t))e.style.setProperty(k(s),t.replace(So,""),"important");else{var r=Mo(s);if(Array.isArray(t))for(var n=0,o=t.length;n<o;n++)e.style[r]=t[n];else e.style[r]=t}},bo=["Webkit","Moz","ms"],Mo=S((function(e){if(No=No||document.createElement("div").style,"filter"!==(e=b(e))&&e in No)return e;for(var s=e.charAt(0).toUpperCase()+e.slice(1),t=0;t<bo.length;t++){var r=bo[t]+s;if(r in No)return r}}));function Lo(e,s){var t=s.data,r=e.data;if(!(o(t.staticStyle)&&o(t.style)&&o(r.staticStyle)&&o(r.style))){var n,a,l=s.elm,m=r.staticStyle,d=r.normalizedStyle||r.style||{},g=m||d,c=To(s.data.style)||{};s.data.normalizedStyle=i(c.__ob__)?E({},c):c;var u=function(e,s){var t,r={};if(s)for(var n=e;n.componentInstance;)(n=n.componentInstance._vnode)&&n.data&&(t=Fo(n.data))&&E(r,t);(t=Fo(e.data))&&E(r,t);for(var o=e;o=o.parent;)o.data&&(t=Fo(o.data))&&E(r,t);return r}(s,!0);for(a in g)o(u[a])&&xo(l,a,"");for(a in u)n=u[a],xo(l,a,null==n?"":n)}}var ko={create:Lo,update:Lo},Ro=/\s+/;function Ao(e,s){if(s&&(s=s.trim()))if(e.classList)s.indexOf(" ")>-1?s.split(Ro).forEach((function(s){return e.classList.add(s)})):e.classList.add(s);else{var t=" ".concat(e.getAttribute("class")||""," ");t.indexOf(" "+s+" ")<0&&e.setAttribute("class",(t+s).trim())}}function Eo(e,s){if(s&&(s=s.trim()))if(e.classList)s.indexOf(" ")>-1?s.split(Ro).forEach((function(s){return e.classList.remove(s)})):e.classList.remove(s),e.classList.length||e.removeAttribute("class");else{for(var t=" ".concat(e.getAttribute("class")||""," "),r=" "+s+" ";t.indexOf(r)>=0;)t=t.replace(r," ");(t=t.trim())?e.setAttribute("class",t):e.removeAttribute("class")}}function _o(e){if(e){if("object"==typeof e){var s={};return!1!==e.css&&E(s,Oo(e.name||"v")),E(s,e),s}return"string"==typeof e?Oo(e):void 0}}var Oo=S((function(e){return{enterClass:"".concat(e,"-enter"),enterToClass:"".concat(e,"-enter-to"),enterActiveClass:"".concat(e,"-enter-active"),leaveClass:"".concat(e,"-leave"),leaveToClass:"".concat(e,"-leave-to"),leaveActiveClass:"".concat(e,"-leave-active")}})),Uo=Y&&!Q,Io="transition",Po="animation",jo="transition",Bo="transitionend",zo="animation",Do="animationend";Uo&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(jo="WebkitTransition",Bo="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(zo="WebkitAnimation",Do="webkitAnimationEnd"));var $o=Y?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(e){return e()};function Ho(e){$o((function(){$o(e)}))}function Go(e,s){var t=e._transitionClasses||(e._transitionClasses=[]);t.indexOf(s)<0&&(t.push(s),Ao(e,s))}function Jo(e,s){e._transitionClasses&&T(e._transitionClasses,s),Eo(e,s)}function Vo(e,s,t){var r=Wo(e,s),n=r.type,o=r.timeout,i=r.propCount;if(!n)return t();var a=n===Io?Bo:Do,l=0,m=function(){e.removeEventListener(a,d),t()},d=function(s){s.target===e&&++l>=i&&m()};setTimeout((function(){l<i&&m()}),o+1),e.addEventListener(a,d)}var qo=/\b(transform|all)(,|$)/;function Wo(e,s){var t,r=window.getComputedStyle(e),n=(r[jo+"Delay"]||"").split(", "),o=(r[jo+"Duration"]||"").split(", "),i=Ko(n,o),a=(r[zo+"Delay"]||"").split(", "),l=(r[zo+"Duration"]||"").split(", "),m=Ko(a,l),d=0,g=0;return s===Io?i>0&&(t=Io,d=i,g=o.length):s===Po?m>0&&(t=Po,d=m,g=l.length):g=(t=(d=Math.max(i,m))>0?i>m?Io:Po:null)?t===Io?o.length:l.length:0,{type:t,timeout:d,propCount:g,hasTransform:t===Io&&qo.test(r[jo+"Property"])}}function Ko(e,s){for(;e.length<s.length;)e=e.concat(e);return Math.max.apply(null,s.map((function(s,t){return Yo(s)+Yo(e[t])})))}function Yo(e){return 1e3*Number(e.slice(0,-1).replace(",","."))}function Xo(e,s){var t=e.elm;i(t._leaveCb)&&(t._leaveCb.cancelled=!0,t._leaveCb());var r=_o(e.data.transition);if(!o(r)&&!i(t._enterCb)&&1===t.nodeType){for(var n=r.css,a=r.type,l=r.enterClass,g=r.enterToClass,c=r.enterActiveClass,u=r.appearClass,f=r.appearToClass,p=r.appearActiveClass,h=r.beforeEnter,y=r.enter,v=r.afterEnter,F=r.enterCancelled,T=r.beforeAppear,N=r.appear,C=r.afterAppear,S=r.appearCancelled,x=r.duration,b=cr,M=cr.$vnode;M&&M.parent;)b=M.context,M=M.parent;var L=!b._isMounted||!e.isRootInsert;if(!L||N||""===N){var k=L&&u?u:l,R=L&&p?p:c,A=L&&f?f:g,E=L&&T||h,_=L&&m(N)?N:y,O=L&&C||v,U=L&&S||F,I=w(d(x)?x.enter:x);0;var P=!1!==n&&!Q,j=ei(_),z=t._enterCb=B((function(){P&&(Jo(t,A),Jo(t,R)),z.cancelled?(P&&Jo(t,k),U&&U(t)):O&&O(t),t._enterCb=null}));e.data.show||Os(e,"insert",(function(){var s=t.parentNode,r=s&&s._pending&&s._pending[e.key];r&&r.tag===e.tag&&r.elm._leaveCb&&r.elm._leaveCb(),_&&_(t,z)})),E&&E(t),P&&(Go(t,k),Go(t,R),Ho((function(){Jo(t,k),z.cancelled||(Go(t,A),j||(Qo(I)?setTimeout(z,I):Vo(t,a,z)))}))),e.data.show&&(s&&s(),_&&_(t,z)),P||j||z()}}}function Zo(e,s){var t=e.elm;i(t._enterCb)&&(t._enterCb.cancelled=!0,t._enterCb());var r=_o(e.data.transition);if(o(r)||1!==t.nodeType)return s();if(!i(t._leaveCb)){var n=r.css,a=r.type,l=r.leaveClass,m=r.leaveToClass,g=r.leaveActiveClass,c=r.beforeLeave,u=r.leave,f=r.afterLeave,p=r.leaveCancelled,h=r.delayLeave,y=r.duration,v=!1!==n&&!Q,F=ei(u),T=w(d(y)?y.leave:y);0;var N=t._leaveCb=B((function(){t.parentNode&&t.parentNode._pending&&(t.parentNode._pending[e.key]=null),v&&(Jo(t,m),Jo(t,g)),N.cancelled?(v&&Jo(t,l),p&&p(t)):(s(),f&&f(t)),t._leaveCb=null}));h?h(C):C()}function C(){N.cancelled||(!e.data.show&&t.parentNode&&((t.parentNode._pending||(t.parentNode._pending={}))[e.key]=e),c&&c(t),v&&(Go(t,l),Go(t,g),Ho((function(){Jo(t,l),N.cancelled||(Go(t,m),F||(Qo(T)?setTimeout(N,T):Vo(t,a,N)))}))),u&&u(t,N),v||F||N())}}function Qo(e){return"number"==typeof e&&!isNaN(e)}function ei(e){if(o(e))return!1;var s=e.fns;return i(s)?ei(Array.isArray(s)?s[0]:s):(e._length||e.length)>1}function si(e,s){!0!==s.data.show&&Xo(s)}var ti=function(e){var s,t,r={},m=e.modules,d=e.nodeOps;for(s=0;s<Hn.length;++s)for(r[Hn[s]]=[],t=0;t<m.length;++t)i(m[t][Hn[s]])&&r[Hn[s]].push(m[t][Hn[s]]);function g(e){var s=d.parentNode(e);i(s)&&d.removeChild(s,e)}function c(e,s,t,n,o,l,m){if(i(e.elm)&&i(l)&&(e=l[m]=we(e)),e.isRootInsert=!o,!function(e,s,t,n){var o=e.data;if(i(o)){var l=i(e.componentInstance)&&o.keepAlive;if(i(o=o.hook)&&i(o=o.init)&&o(e,!1),i(e.componentInstance))return u(e,s),f(t,e.elm,n),a(l)&&function(e,s,t,n){var o,a=e;for(;a.componentInstance;)if(i(o=(a=a.componentInstance._vnode).data)&&i(o=o.transition)){for(o=0;o<r.activate.length;++o)r.activate[o]($n,a);s.push(a);break}f(t,e.elm,n)}(e,s,t,n),!0}}(e,s,t,n)){var g=e.data,c=e.children,h=e.tag;i(h)?(e.elm=e.ns?d.createElementNS(e.ns,h):d.createElement(h,e),w(e),p(e,c,s),i(g)&&y(e,s),f(t,e.elm,n)):a(e.isComment)?(e.elm=d.createComment(e.text),f(t,e.elm,n)):(e.elm=d.createTextNode(e.text),f(t,e.elm,n))}}function u(e,s){i(e.data.pendingInsert)&&(s.push.apply(s,e.data.pendingInsert),e.data.pendingInsert=null),e.elm=e.componentInstance.$el,h(e)?(y(e,s),w(e)):(zn(e),s.push(e))}function f(e,s,t){i(e)&&(i(t)?d.parentNode(t)===e&&d.insertBefore(e,s,t):d.appendChild(e,s))}function p(e,s,t){if(n(s)){0;for(var r=0;r<s.length;++r)c(s[r],t,e.elm,null,!0,s,r)}else l(e.text)&&d.appendChild(e.elm,d.createTextNode(String(e.text)))}function h(e){for(;e.componentInstance;)e=e.componentInstance._vnode;return i(e.tag)}function y(e,t){for(var n=0;n<r.create.length;++n)r.create[n]($n,e);i(s=e.data.hook)&&(i(s.create)&&s.create($n,e),i(s.insert)&&t.push(e))}function w(e){var s;if(i(s=e.fnScopeId))d.setStyleScope(e.elm,s);else for(var t=e;t;)i(s=t.context)&&i(s=s.$options._scopeId)&&d.setStyleScope(e.elm,s),t=t.parent;i(s=cr)&&s!==e.context&&s!==e.fnContext&&i(s=s.$options._scopeId)&&d.setStyleScope(e.elm,s)}function F(e,s,t,r,n,o){for(;r<=n;++r)c(t[r],o,e,s,!1,t,r)}function T(e){var s,t,n=e.data;if(i(n))for(i(s=n.hook)&&i(s=s.destroy)&&s(e),s=0;s<r.destroy.length;++s)r.destroy[s](e);if(i(s=e.children))for(t=0;t<e.children.length;++t)T(e.children[t])}function N(e,s,t){for(;s<=t;++s){var r=e[s];i(r)&&(i(r.tag)?(C(r),T(r)):g(r.elm))}}function C(e,s){if(i(s)||i(e.data)){var t,n=r.remove.length+1;for(i(s)?s.listeners+=n:s=function(e,s){function t(){0==--t.listeners&&g(e)}return t.listeners=s,t}(e.elm,n),i(t=e.componentInstance)&&i(t=t._vnode)&&i(t.data)&&C(t,s),t=0;t<r.remove.length;++t)r.remove[t](e,s);i(t=e.data.hook)&&i(t=t.remove)?t(e,s):s()}else g(e.elm)}function S(e,s,t,r){for(var n=t;n<r;n++){var o=s[n];if(i(o)&&Gn(e,o))return n}}function x(e,s,t,n,l,m){if(e!==s){i(s.elm)&&i(n)&&(s=n[l]=we(s));var g=s.elm=e.elm;if(a(e.isAsyncPlaceholder))i(s.asyncFactory.resolved)?L(e.elm,s,t):s.isAsyncPlaceholder=!0;else if(a(s.isStatic)&&a(e.isStatic)&&s.key===e.key&&(a(s.isCloned)||a(s.isOnce)))s.componentInstance=e.componentInstance;else{var u,f=s.data;i(f)&&i(u=f.hook)&&i(u=u.prepatch)&&u(e,s);var p=e.children,y=s.children;if(i(f)&&h(s)){for(u=0;u<r.update.length;++u)r.update[u](e,s);i(u=f.hook)&&i(u=u.update)&&u(e,s)}o(s.text)?i(p)&&i(y)?p!==y&&function(e,s,t,r,n){var a,l,m,g=0,u=0,f=s.length-1,p=s[0],h=s[f],y=t.length-1,w=t[0],v=t[y],T=!n;for(;g<=f&&u<=y;)o(p)?p=s[++g]:o(h)?h=s[--f]:Gn(p,w)?(x(p,w,r,t,u),p=s[++g],w=t[++u]):Gn(h,v)?(x(h,v,r,t,y),h=s[--f],v=t[--y]):Gn(p,v)?(x(p,v,r,t,y),T&&d.insertBefore(e,p.elm,d.nextSibling(h.elm)),p=s[++g],v=t[--y]):Gn(h,w)?(x(h,w,r,t,u),T&&d.insertBefore(e,h.elm,p.elm),h=s[--f],w=t[++u]):(o(a)&&(a=Jn(s,g,f)),o(l=i(w.key)?a[w.key]:S(w,s,g,f))?c(w,r,e,p.elm,!1,t,u):Gn(m=s[l],w)?(x(m,w,r,t,u),s[l]=void 0,T&&d.insertBefore(e,m.elm,p.elm)):c(w,r,e,p.elm,!1,t,u),w=t[++u]);g>f?F(e,o(t[y+1])?null:t[y+1].elm,t,u,y,r):u>y&&N(s,g,f)}(g,p,y,t,m):i(y)?(i(e.text)&&d.setTextContent(g,""),F(g,null,y,0,y.length-1,t)):i(p)?N(p,0,p.length-1):i(e.text)&&d.setTextContent(g,""):e.text!==s.text&&d.setTextContent(g,s.text),i(f)&&i(u=f.hook)&&i(u=u.postpatch)&&u(e,s)}}}function b(e,s,t){if(a(t)&&i(e.parent))e.parent.data.pendingInsert=s;else for(var r=0;r<s.length;++r)s[r].data.hook.insert(s[r])}var M=v("attrs,class,staticClass,staticStyle,key");function L(e,s,t,r){var n,o=s.tag,l=s.data,m=s.children;if(r=r||l&&l.pre,s.elm=e,a(s.isComment)&&i(s.asyncFactory))return s.isAsyncPlaceholder=!0,!0;if(i(l)&&(i(n=l.hook)&&i(n=n.init)&&n(s,!0),i(n=s.componentInstance)))return u(s,t),!0;if(i(o)){if(i(m))if(e.hasChildNodes())if(i(n=l)&&i(n=n.domProps)&&i(n=n.innerHTML)){if(n!==e.innerHTML)return!1}else{for(var d=!0,g=e.firstChild,c=0;c<m.length;c++){if(!g||!L(g,m[c],t,r)){d=!1;break}g=g.nextSibling}if(!d||g)return!1}else p(s,m,t);if(i(l)){var f=!1;for(var h in l)if(!M(h)){f=!0,y(s,t);break}!f&&l.class&&rr(l.class)}}else e.data!==s.text&&(e.data=s.text);return!0}return function(e,s,t,n){if(!o(s)){var l,m=!1,g=[];if(o(e))m=!0,c(s,g);else{var u=i(e.nodeType);if(!u&&Gn(e,s))x(e,s,g,null,null,n);else{if(u){if(1===e.nodeType&&e.hasAttribute(D)&&(e.removeAttribute(D),t=!0),a(t)&&L(e,s,g))return b(s,g,!0),e;l=e,e=new pe(d.tagName(l).toLowerCase(),{},[],void 0,l)}var f=e.elm,p=d.parentNode(f);if(c(s,g,f._leaveCb?null:p,d.nextSibling(f)),i(s.parent))for(var y=s.parent,w=h(s);y;){for(var v=0;v<r.destroy.length;++v)r.destroy[v](y);if(y.elm=s.elm,w){for(var F=0;F<r.create.length;++F)r.create[F]($n,y);var C=y.data.hook.insert;if(C.merged)for(var S=C.fns.slice(1),M=0;M<S.length;M++)S[M]()}else zn(y);y=y.parent}i(p)?N([e],0,0):i(e.tag)&&T(e)}}return b(s,g,m),s.elm}i(e)&&T(e)}}({nodeOps:jn,modules:[to,oo,po,wo,ko,Y?{create:si,activate:si,remove:function(e,s){!0!==e.data.show?Zo(e,s):s()}}:{}].concat(Zn)});Q&&document.addEventListener("selectionchange",(function(){var e=document.activeElement;e&&e.vmodel&&di(e,"input")}));var ri={inserted:function(e,s,t,r){"select"===t.tag?(r.elm&&!r.elm._vOptions?Os(t,"postpatch",(function(){ri.componentUpdated(e,s,t)})):ni(e,s,t.context),e._vOptions=[].map.call(e.options,ai)):("textarea"===t.tag||Pn(e.type))&&(e._vModifiers=s.modifiers,s.modifiers.lazy||(e.addEventListener("compositionstart",li),e.addEventListener("compositionend",mi),e.addEventListener("change",mi),Q&&(e.vmodel=!0)))},componentUpdated:function(e,s,t){if("select"===t.tag){ni(e,s,t.context);var r=e._vOptions,n=e._vOptions=[].map.call(e.options,ai);if(n.some((function(e,s){return!P(e,r[s])})))(e.multiple?s.value.some((function(e){return ii(e,n)})):s.value!==s.oldValue&&ii(s.value,n))&&di(e,"change")}}};function ni(e,s,t){oi(e,s,t),(Z||ee)&&setTimeout((function(){oi(e,s,t)}),0)}function oi(e,s,t){var r=s.value,n=e.multiple;if(!n||Array.isArray(r)){for(var o,i,a=0,l=e.options.length;a<l;a++)if(i=e.options[a],n)o=j(r,ai(i))>-1,i.selected!==o&&(i.selected=o);else if(P(ai(i),r))return void(e.selectedIndex!==a&&(e.selectedIndex=a));n||(e.selectedIndex=-1)}}function ii(e,s){return s.every((function(s){return!P(s,e)}))}function ai(e){return"_value"in e?e._value:e.value}function li(e){e.target.composing=!0}function mi(e){e.target.composing&&(e.target.composing=!1,di(e.target,"input"))}function di(e,s){var t=document.createEvent("HTMLEvents");t.initEvent(s,!0,!0),e.dispatchEvent(t)}function gi(e){return!e.componentInstance||e.data&&e.data.transition?e:gi(e.componentInstance._vnode)}var ci={bind:function(e,s,t){var r=s.value,n=(t=gi(t)).data&&t.data.transition,o=e.__vOriginalDisplay="none"===e.style.display?"":e.style.display;r&&n?(t.data.show=!0,Xo(t,(function(){e.style.display=o}))):e.style.display=r?o:"none"},update:function(e,s,t){var r=s.value;!r!=!s.oldValue&&((t=gi(t)).data&&t.data.transition?(t.data.show=!0,r?Xo(t,(function(){e.style.display=e.__vOriginalDisplay})):Zo(t,(function(){e.style.display="none"}))):e.style.display=r?e.__vOriginalDisplay:"none")},unbind:function(e,s,t,r,n){n||(e.style.display=e.__vOriginalDisplay)}},ui={model:ri,show:ci},fi={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function pi(e){var s=e&&e.componentOptions;return s&&s.Ctor.options.abstract?pi(yt(s.children)):e}function hi(e){var s={},t=e.$options;for(var r in t.propsData)s[r]=e[r];var n=t._parentListeners;for(var r in n)s[b(r)]=n[r];return s}function yi(e,s){if(/\d-keep-alive$/.test(s.tag))return e("keep-alive",{props:s.componentOptions.propsData})}var wi=function(e){return e.tag||tt(e)},vi=function(e){return"show"===e.name},Fi={name:"transition",props:fi,abstract:!0,render:function(e){var s=this,t=this.$slots.default;if(t&&(t=t.filter(wi)).length){0;var r=this.mode;0;var n=t[0];if(function(e){for(;e=e.parent;)if(e.data.transition)return!0}(this.$vnode))return n;var o=pi(n);if(!o)return n;if(this._leaving)return yi(e,n);var i="__transition-".concat(this._uid,"-");o.key=null==o.key?o.isComment?i+"comment":i+o.tag:l(o.key)?0===String(o.key).indexOf(i)?o.key:i+o.key:o.key;var a=(o.data||(o.data={})).transition=hi(this),m=this._vnode,d=pi(m);if(o.data.directives&&o.data.directives.some(vi)&&(o.data.show=!0),d&&d.data&&!function(e,s){return s.key===e.key&&s.tag===e.tag}(o,d)&&!tt(d)&&(!d.componentInstance||!d.componentInstance._vnode.isComment)){var g=d.data.transition=E({},a);if("out-in"===r)return this._leaving=!0,Os(g,"afterLeave",(function(){s._leaving=!1,s.$forceUpdate()})),yi(e,n);if("in-out"===r){if(tt(o))return m;var c,u=function(){c()};Os(a,"afterEnter",u),Os(a,"enterCancelled",u),Os(g,"delayLeave",(function(e){c=e}))}}return n}}},Ti=E({tag:String,moveClass:String},fi);delete Ti.mode;var Ni={props:Ti,beforeMount:function(){var e=this,s=this._update;this._update=function(t,r){var n=ur(e);e.__patch__(e._vnode,e.kept,!1,!0),e._vnode=e.kept,n(),s.call(e,t,r)}},render:function(e){for(var s=this.tag||this.$vnode.data.tag||"span",t=Object.create(null),r=this.prevChildren=this.children,n=this.$slots.default||[],o=this.children=[],i=hi(this),a=0;a<n.length;a++){if((d=n[a]).tag)if(null!=d.key&&0!==String(d.key).indexOf("__vlist"))o.push(d),t[d.key]=d,(d.data||(d.data={})).transition=i;else;}if(r){var l=[],m=[];for(a=0;a<r.length;a++){var d;(d=r[a]).data.transition=i,d.data.pos=d.elm.getBoundingClientRect(),t[d.key]?l.push(d):m.push(d)}this.kept=e(s,null,l),this.removed=m}return e(s,null,o)},updated:function(){var e=this.prevChildren,s=this.moveClass||(this.name||"v")+"-move";e.length&&this.hasMove(e[0].elm,s)&&(e.forEach(Ci),e.forEach(Si),e.forEach(xi),this._reflow=document.body.offsetHeight,e.forEach((function(e){if(e.data.moved){var t=e.elm,r=t.style;Go(t,s),r.transform=r.WebkitTransform=r.transitionDuration="",t.addEventListener(Bo,t._moveCb=function e(r){r&&r.target!==t||r&&!/transform$/.test(r.propertyName)||(t.removeEventListener(Bo,e),t._moveCb=null,Jo(t,s))})}})))},methods:{hasMove:function(e,s){if(!Uo)return!1;if(this._hasMove)return this._hasMove;var t=e.cloneNode();e._transitionClasses&&e._transitionClasses.forEach((function(e){Eo(t,e)})),Ao(t,s),t.style.display="none",this.$el.appendChild(t);var r=Wo(t);return this.$el.removeChild(t),this._hasMove=r.hasTransform}}};function Ci(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function Si(e){e.data.newPos=e.elm.getBoundingClientRect()}function xi(e){var s=e.data.pos,t=e.data.newPos,r=s.left-t.left,n=s.top-t.top;if(r||n){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate(".concat(r,"px,").concat(n,"px)"),o.transitionDuration="0s"}}var bi={Transition:Fi,TransitionGroup:Ni};dn.config.mustUseProp=function(e,s,t){return"value"===t&&vn(e)&&"button"!==s||"selected"===t&&"option"===e||"checked"===t&&"input"===e||"muted"===t&&"video"===e},dn.config.isReservedTag=Un,dn.config.isReservedAttr=wn,dn.config.getTagNamespace=function(e){return On(e)?"svg":"math"===e?"math":void 0},dn.config.isUnknownElement=function(e){if(!Y)return!0;if(Un(e))return!1;if(e=e.toLowerCase(),null!=In[e])return In[e];var s=document.createElement(e);return e.indexOf("-")>-1?In[e]=s.constructor===window.HTMLUnknownElement||s.constructor===window.HTMLElement:In[e]=/HTMLUnknownElement/.test(s.toString())},E(dn.options.directives,ui),E(dn.options.components,bi),dn.prototype.__patch__=Y?ti:O,dn.prototype.$mount=function(e,s){return function(e,s,t){var r;e.$el=s,e.$options.render||(e.$options.render=he),yr(e,"beforeMount"),r=function(){e._update(e._render(),t)},new ar(e,r,O,{before:function(){e._isMounted&&!e._isDestroyed&&yr(e,"beforeUpdate")}},!0),t=!1;var n=e._preWatchers;if(n)for(var o=0;o<n.length;o++)n[o].run();return null==e.$vnode&&(e._isMounted=!0,yr(e,"mounted")),e}(this,e=e&&Y?function(e){if("string"==typeof e){return document.querySelector(e)||document.createElement("div")}return e}(e):void 0,s)},Y&&setTimeout((function(){G.devtools&&le&&le.emit("init",dn)}),0)},7888:(e,s,t)=>{"use strict";Object.defineProperty(s,"__esModule",{value:!0});var r=t(7907),n=t(2426);function o(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var i=o(r),a=o(n),l=function(){function e(e){"function"==typeof e.getVersion&&i.default(e.getVersion())?a.default(e.getVersion())!==a.default(this.getVersion())&&console.warn("Proxying an event bus of version "+e.getVersion()+" with "+this.getVersion()):console.warn("Proxying an event bus with an unknown or invalid version"),this.bus=e}return e.prototype.getVersion=function(){return"3.1.0"},e.prototype.subscribe=function(e,s){this.bus.subscribe(e,s)},e.prototype.unsubscribe=function(e,s){this.bus.unsubscribe(e,s)},e.prototype.emit=function(e,s){this.bus.emit(e,s)},e}(),m=function(){function e(){this.handlers=new Map}return e.prototype.getVersion=function(){return"3.1.0"},e.prototype.subscribe=function(e,s){this.handlers.set(e,(this.handlers.get(e)||[]).concat(s))},e.prototype.unsubscribe=function(e,s){this.handlers.set(e,(this.handlers.get(e)||[]).filter((function(e){return e!=s})))},e.prototype.emit=function(e,s){(this.handlers.get(e)||[]).forEach((function(e){try{e(s)}catch(e){console.error("could not invoke event listener",e)}}))},e}(),d=null;function g(){return null!==d?d:"undefined"==typeof window?new Proxy({},{get:function(){return function(){return console.error("Window not available, EventBus can not be established!")}}}):(void 0!==window.OC&&window.OC._eventBus&&void 0===window._nc_event_bus&&(console.warn("found old event bus instance at OC._eventBus. Update your version!"),window._nc_event_bus=window.OC._eventBus),d=void 0!==(null===window||void 0===window?void 0:window._nc_event_bus)?new l(window._nc_event_bus):window._nc_event_bus=new m)}s.ProxyBus=l,s.SimpleBus=m,s.emit=function(e,s){g().emit(e,s)},s.subscribe=function(e,s){g().subscribe(e,s)},s.unsubscribe=function(e,s){g().unsubscribe(e,s)}},4855:(e,s,t)=>{"use strict";t.d(s,{ts:()=>y,IH:()=>g,_S:()=>c});var r=t(7907),n=t(2426);class o{bus;constructor(e){"function"==typeof e.getVersion&&r(e.getVersion())?n(e.getVersion())!==n(this.getVersion())&&console.warn("Proxying an event bus of version "+e.getVersion()+" with "+this.getVersion()):console.warn("Proxying an event bus with an unknown or invalid version"),this.bus=e}getVersion(){return"3.1.0"}subscribe(e,s){this.bus.subscribe(e,s)}unsubscribe(e,s){this.bus.unsubscribe(e,s)}emit(e,s){this.bus.emit(e,s)}}class i{handlers=new Map;getVersion(){return"3.1.0"}subscribe(e,s){this.handlers.set(e,(this.handlers.get(e)||[]).concat(s))}unsubscribe(e,s){this.handlers.set(e,(this.handlers.get(e)||[]).filter((e=>e!=s)))}emit(e,s){(this.handlers.get(e)||[]).forEach((e=>{try{e(s)}catch(e){console.error("could not invoke event listener",e)}}))}}let a,l=null;function m(){return null!==l?l:"undefined"==typeof window?new Proxy({},{get:()=>()=>console.error("Window not available, EventBus can not be established!")}):(void 0!==window.OC&&window.OC._eventBus&&void 0===window._nc_event_bus&&(console.warn("found old event bus instance at OC._eventBus. Update your version!"),window._nc_event_bus=window.OC._eventBus),l=void 0!==window?._nc_event_bus?new o(window._nc_event_bus):window._nc_event_bus=new i,l)}const d=[];function g(){if(void 0===a){const e=document?.getElementsByTagName("head")[0];a=e?e.getAttribute("data-requesttoken"):null}return a}function c(e){d.push(e)}var u,f;u="csrf-token-update",f=e=>{a=e.token,d.forEach((s=>{try{s(e.token)}catch(e){console.error("error updating CSRF token observer",e)}}))},m().subscribe(u,f);const p=(e,s)=>e?e.getAttribute(s):null;let h;function y(){if(void 0!==h)return h;const e=document?.getElementsByTagName("head")[0];if(!e)return null;const s=p(e,"data-user");return null===s?(h=null,h):(h={uid:s,displayName:p(e,"data-user-displayname"),isAdmin:!!window._oc_isadmin},h)}},894:(e,s,t)=>{"use strict";t.d(s,{a:()=>a,c:()=>g,t:()=>d});var r=t(7699);t(9753),t(7856),t(5573);class n{constructor(){this.translations={},this.debug=!1}setLanguage(e){return this.locale=e,this}detectLocale(){return this.setLanguage((document.documentElement.lang||"en").replace("-","_"))}addTranslation(e,s){return this.translations[e]=s,this}enableDebugMode(){return this.debug=!0,this}build(){return new o(this.locale||"en",this.translations,this.debug)}}class o{constructor(e,s,t){this.gt=new r({debug:t,sourceLocale:"en"});for(const e in s)this.gt.addTranslations(e,"messages",s[e]);this.gt.setLocale(e)}subtitudePlaceholders(e,s){return e.replace(/{([^{}]*)}/g,((e,t)=>{const r=s[t];return"string"==typeof r||"number"==typeof r?r.toString():e}))}gettext(e,s={}){return this.subtitudePlaceholders(this.gt.gettext(e),s)}ngettext(e,s,t,r={}){return this.subtitudePlaceholders(this.gt.ngettext(e,s,t).replace(/%n/g,t.toString()),r)}}var i=t(144),a=(Object.defineProperty,(e=>(e[e.Choose=1]="Choose",e[e.Move=2]="Move",e[e.Copy=3]="Copy",e[e.CopyMove=4]="CopyMove",e[e.Custom=5]="Custom",e))(a||{}));const l=(new n).detectLocale();[{locale:"af",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Afrikaans (https://app.transifex.com/nextcloud/teams/64236/af/)",Language:"af","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Afrikaans (https://app.transifex.com/nextcloud/teams/64236/af/)\nLanguage: af\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"ar",json:{charset:"utf-8",headers:{"Last-Translator":"Ali <alimahwer@yahoo.com>, 2023","Language-Team":"Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)",Language:"ar","Content-Type":"text/plain; charset=UTF-8","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:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nAli <alimahwer@yahoo.com>, 2023\n"},msgstr:["Last-Translator: Ali <alimahwer@yahoo.com>, 2023\nLanguage-Team: Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)\nLanguage: ar\nContent-Type: text/plain; charset=UTF-8\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"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:["كل الملفات"]},Choose:{msgid:"Choose",msgstr:["إختَر"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["إختَر {file}"]},Copy:{msgid:"Copy",msgstr:["نسخ"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["نسخٌ إلى {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["تعذّر إنشاء المجلد الجديد"]},"Create directory":{msgid:"Create directory",msgstr:["أنشِيءْ مجلّداً"]},"Current view selector":{msgid:"Current view selector",msgstr:["مُنتقِي المنظور الحالي"]},Favorites:{msgid:"Favorites",msgstr:["المُفضَّلة"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:["أقسام مُنتقِي الملفات"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["الملفات و المجلدات التي تُميِّزُها كمٌفضَّلة ستظهر هنا."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["الملفات و المجلدات التي قمت مؤخراً بتعديلها سوف تظهر هنا."]},"Filter file list":{msgid:"Filter file list",msgstr:["فلترة قائمة الملفات"]},Home:{msgid:"Home",msgstr:["البداية"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:["نوع الملف {mime}"]},Modified:{msgid:"Modified",msgstr:["مُعدَّل"]},Move:{msgid:"Move",msgstr:["أُنقُل"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["أُنقُل إلى {target}"]},Name:{msgid:"Name",msgstr:["الاسم"]},New:{msgid:"New",msgstr:["جديد"]},"New folder":{msgid:"New folder",msgstr:["مٌجلّد جديد"]},"New folder name":{msgid:"New folder name",msgstr:["اسم المجلد الجديد"]},"No files in here":{msgid:"No files in here",msgstr:["لا توجد ملفات هنا"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["لا توجد ملفات تتطابق مع الفلتر الذي وضعته"]},"No matching files":{msgid:"No matching files",msgstr:["لا توجد ملفات مُطابِقة"]},Recent:{msgid:"Recent",msgstr:["الحالي"]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:["حدِّد كل المداخل"]},"Select entry":{msgid:"Select entry",msgstr:["إختَر المدخل"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["إختر سطر الـ {nodename}"]},Size:{msgid:"Size",msgstr:["الحجم"]},Undo:{msgid:"Undo",msgstr:["تراجع"]},unknown:{msgid:"unknown",msgstr:["غير محدد"]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",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/)",Language:"ast","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\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/)\nLanguage: ast\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:["Tolos ficheros"]},Choose:{msgid:"Choose",msgstr:["Escoyer"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Escoyer «{ficheru}»"]},Copy:{msgid:"Copy",msgstr:["Copiar"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Copiar en: {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Nun se pudo crear la carpeta"]},"Create directory":{msgid:"Create directory",msgstr:["Crear un direutoriu"]},"Current view selector":{msgid:"Current view selector",msgstr:["Selector de la vista actual"]},Favorites:{msgid:"Favorites",msgstr:["Favoritos"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Equí apaecen los ficheros y les carpetes que metas en Favoritos."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Equí apaecen los fichero y les carpetes que modificares apocayá."]},"Filter file list":{msgid:"Filter file list",msgstr:["Peñerar la llista de ficheros"]},Home:{msgid:"Home",msgstr:["Aniciu"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:["Modificóse"]},Move:{msgid:"Move",msgstr:["Mover"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Mover a {target}"]},Name:{msgid:"Name",msgstr:["Nome"]},New:{msgid:"New",msgstr:["Nuevu"]},"New folder":{msgid:"New folder",msgstr:["Carpeta nueva"]},"New folder name":{msgid:"New folder name",msgstr:["Nome de carpeta nuevu"]},"No files in here":{msgid:"No files in here",msgstr:["Equí nun hai nengún ficheru"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Nun s'atopó nengún ficheru que concasare cola peñera."]},"No matching files":{msgid:"No matching files",msgstr:["Nun hai nengún ficheru que concase"]},Recent:{msgid:"Recent",msgstr:["De recién"]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:["Seleicionar toles entraes"]},"Select entry":{msgid:"Select entry",msgstr:["Seleicionar la entrada"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Seleicionar la filera de: {nodename}"]},Size:{msgid:"Size",msgstr:["Tamañu"]},Undo:{msgid:"Undo",msgstr:["Desfacer"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["¡Xubi dalgún elementu o sincroniza colos tos preseos!"]}}}}},{locale:"az",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)",Language:"az","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)\nLanguage: az\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"be",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Belarusian (https://app.transifex.com/nextcloud/teams/64236/be/)",Language:"be","Content-Type":"text/plain; charset=UTF-8","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 <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Belarusian (https://app.transifex.com/nextcloud/teams/64236/be/)\nLanguage: be\nContent-Type: text/plain; charset=UTF-8\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"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"bg_BG",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Bulgarian (Bulgaria) (https://app.transifex.com/nextcloud/teams/64236/bg_BG/)",Language:"bg_BG","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Bulgarian (Bulgaria) (https://app.transifex.com/nextcloud/teams/64236/bg_BG/)\nLanguage: bg_BG\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"bn_BD",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Bengali (Bangladesh) (https://app.transifex.com/nextcloud/teams/64236/bn_BD/)",Language:"bn_BD","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Bengali (Bangladesh) (https://app.transifex.com/nextcloud/teams/64236/bn_BD/)\nLanguage: bn_BD\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"br",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Breton (https://app.transifex.com/nextcloud/teams/64236/br/)",Language:"br","Content-Type":"text/plain; charset=UTF-8","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:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Breton (https://app.transifex.com/nextcloud/teams/64236/br/)\nLanguage: br\nContent-Type: text/plain; charset=UTF-8\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"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["Disober"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"bs",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Bosnian (https://app.transifex.com/nextcloud/teams/64236/bs/)",Language:"bs","Content-Type":"text/plain; charset=UTF-8","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 <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Bosnian (https://app.transifex.com/nextcloud/teams/64236/bs/)\nLanguage: bs\nContent-Type: text/plain; charset=UTF-8\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"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"ca",json:{charset:"utf-8",headers:{"Last-Translator":"v v <e670006006@gmail.com>, 2024","Language-Team":"Catalan (https://app.transifex.com/nextcloud/teams/64236/ca/)",Language:"ca","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nv v <e670006006@gmail.com>, 2024\n"},msgstr:["Last-Translator: v v <e670006006@gmail.com>, 2024\nLanguage-Team: Catalan (https://app.transifex.com/nextcloud/teams/64236/ca/)\nLanguage: ca\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:["Tots els arxius"]},Choose:{msgid:"Choose",msgstr:["Triar"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Triar {file}"]},Copy:{msgid:"Copy",msgstr:["Copiar"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Copiar a {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["No es pot crear la nova carpeta"]},"Create directory":{msgid:"Create directory",msgstr:["Crear directori"]},"Current view selector":{msgid:"Current view selector",msgstr:["Selector de visualització actual"]},Favorites:{msgid:"Favorites",msgstr:["Favorits"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Els fitxers i les carpetes que marqueu com a favorits es mostraran aquí."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Els fitxers i les carpetes recentment modificats es mostraran aquí."]},"Filter file list":{msgid:"Filter file list",msgstr:["Filtrar llistat de fitxers"]},Home:{msgid:"Home",msgstr:["Inici"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:["Modificat"]},Move:{msgid:"Move",msgstr:["Moure"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["More a {target}"]},Name:{msgid:"Name",msgstr:["Nom"]},New:{msgid:"New",msgstr:["Nou"]},"New folder":{msgid:"New folder",msgstr:["Nova carpeta"]},"New folder name":{msgid:"New folder name",msgstr:["Nom de nova carpeta"]},"No files in here":{msgid:"No files in here",msgstr:["No hi ha arxius"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["No s'han trobat fitxers coincidents amb el vostre filtre."]},"No matching files":{msgid:"No matching files",msgstr:["Sense arxius coincidents"]},Recent:{msgid:"Recent",msgstr:["Recent"]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:["Seleccioneu totes les entrades"]},"Select entry":{msgid:"Select entry",msgstr:["Seleccionar entrada"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Seleccioneu la fila per a {nodename}"]},Size:{msgid:"Size",msgstr:["Mida"]},Undo:{msgid:"Undo",msgstr:["Desfés"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Pengeu contingut o sincronitzeu-vos amb els vostres dispositius!"]}}}}},{locale:"cs",json:{charset:"utf-8",headers:{"Last-Translator":"Pavel Borecki <pavel.borecki@gmail.com>, 2020","Language-Team":"Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)",Language:"cs","Content-Type":"text/plain; charset=UTF-8","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>, 2020\n"},msgstr:["Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2020\nLanguage-Team: Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)\nLanguage: cs\nContent-Type: text/plain; charset=UTF-8\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"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["Zpět"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"cs_CZ",json:{charset:"utf-8",headers:{"Last-Translator":"Pavel Borecki <pavel.borecki@gmail.com>, 2024","Language-Team":"Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)",Language:"cs_CZ","Content-Type":"text/plain; charset=UTF-8","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:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nPavel Borecki <pavel.borecki@gmail.com>, 2024\n"},msgstr:["Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2024\nLanguage-Team: Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)\nLanguage: cs_CZ\nContent-Type: text/plain; charset=UTF-8\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"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:["Veškeré soubory"]},Choose:{msgid:"Choose",msgstr:["Zvolit"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Zvolit {file}"]},Copy:{msgid:"Copy",msgstr:["Zkopírovat"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Zkopírovat do {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Novou složku se nepodařilo vytvořit"]},"Create directory":{msgid:"Create directory",msgstr:["Vytvořit složku"]},"Current view selector":{msgid:"Current view selector",msgstr:["Výběr stávajícího zobrazení"]},Favorites:{msgid:"Favorites",msgstr:["Oblíbené"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:["Sekce dialogu pro výběr souboru"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Zde se zobrazí soubory a složky, které označíte jako oblíbené."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Zde se zobrazí soubory a složky, které jste nedávno pozměnili."]},"Filter file list":{msgid:"Filter file list",msgstr:["Filtrovat seznam souborů"]},Home:{msgid:"Home",msgstr:["Domů"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:["MIME typ {mime}"]},Modified:{msgid:"Modified",msgstr:["Změněno"]},Move:{msgid:"Move",msgstr:["Přesounout"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Přesunout do {target}"]},Name:{msgid:"Name",msgstr:["Název"]},New:{msgid:"New",msgstr:["Nové"]},"New folder":{msgid:"New folder",msgstr:["Nová složka"]},"New folder name":{msgid:"New folder name",msgstr:["Název pro novou složku"]},"No files in here":{msgid:"No files in here",msgstr:["Nejsou zde žádné soubory"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Nenalezeny žádné soubory odpovídající vašemu filtru"]},"No matching files":{msgid:"No matching files",msgstr:["Žádné odpovídající soubory"]},Recent:{msgid:"Recent",msgstr:["Nedávné"]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:["Vybrat všechny položky"]},"Select entry":{msgid:"Select entry",msgstr:["Vybrat položku"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Vybrat řádek pro {nodename}"]},Size:{msgid:"Size",msgstr:["Velikost"]},Undo:{msgid:"Undo",msgstr:["Zpět"]},unknown:{msgid:"unknown",msgstr:["neznámé"]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Nahrajte nějaký obsah nebo proveďte synchronizaci se svými zařízeními!"]}}}}},{locale:"cy_GB",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Welsh (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/cy_GB/)",Language:"cy_GB","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Welsh (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/cy_GB/)\nLanguage: cy_GB\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"da",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Danish (https://app.transifex.com/nextcloud/teams/64236/da/)",Language:"da","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Danish (https://app.transifex.com/nextcloud/teams/64236/da/)\nLanguage: da\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["Fortryd"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"de",json:{charset:"utf-8",headers:{"Last-Translator":"Joachim Sokolowski, 2023","Language-Team":"German (https://app.transifex.com/nextcloud/teams/64236/de/)",Language:"de","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nMario Siegmann <mario_siegmann@web.de>, 2023\nMarkus Eckstein, 2023\nAndy Scherzinger <info@andy-scherzinger.de>, 2023\nJoachim Sokolowski, 2023\n"},msgstr:["Last-Translator: Joachim Sokolowski, 2023\nLanguage-Team: German (https://app.transifex.com/nextcloud/teams/64236/de/)\nLanguage: de\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:['"{name}" ist ein ungültiger Dateiname.']},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:['"{name}" ist kein zulässiger Dateityp.']},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:['"/" ist innerhalb eines Dateinamens nicht zulässig.']},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:["Alle Dateien"]},Choose:{msgid:"Choose",msgstr:["Auswählen"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["{file} auswählen"]},Copy:{msgid:"Copy",msgstr:["Kopieren"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Nach {target} kopieren"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Der neue Ordner konnte nicht erstellt werden."]},"Create directory":{msgid:"Create directory",msgstr:["Verzeichnis erstellen"]},"Current view selector":{msgid:"Current view selector",msgstr:["Aktuelle Ansichtsauswahl"]},Favorites:{msgid:"Favorites",msgstr:["Favoriten"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:["Der Dateiname darf nicht leer sein."]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:["Filepicker-Auswahl"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Dateien und Ordner, die du als Favorit markierst, werden hier angezeigt."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Dateien und Ordner, die du kürzlich geändert hast, werden hier angezeigt."]},"Filter file list":{msgid:"Filter file list",msgstr:["Dateiliste filtern"]},Home:{msgid:"Home",msgstr:["Startseite"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:["MIME-Typ {mime}"]},Modified:{msgid:"Modified",msgstr:["Geändert"]},Move:{msgid:"Move",msgstr:["Verschieben"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Nach {target} verschieben"]},Name:{msgid:"Name",msgstr:["Name"]},New:{msgid:"New",msgstr:["Neu"]},"New folder":{msgid:"New folder",msgstr:["Neuer Ordner"]},"New folder name":{msgid:"New folder name",msgstr:["Neuer Ordnername"]},"No files in here":{msgid:"No files in here",msgstr:["Keine Dateien vorhanden"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Es wurden keine Dateien gefunden, die deinem Filter entsprechen."]},"No matching files":{msgid:"No matching files",msgstr:["Keine passenden Dateien"]},Recent:{msgid:"Recent",msgstr:["Jüngste"]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:["Alle Einträge auswählen"]},"Select entry":{msgid:"Select entry",msgstr:["Eintrag auswählen"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Die Zeile für {nodename} auswählen."]},Size:{msgid:"Size",msgstr:["Größe"]},Undo:{msgid:"Undo",msgstr:["Rückgängig"]},unknown:{msgid:"unknown",msgstr:["Unbekannt"]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Lade Inhalte hoch oder synchronisieren diese mit deinen Geräten!"]}}}}},{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/)",Language:"de_DE","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nMark Ziegler <mark.ziegler@rakekniven.de>, 2023\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/)\nLanguage: de_DE\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:["Alle Dateien"]},Choose:{msgid:"Choose",msgstr:["Auswählen"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["{file} auswählen"]},Copy:{msgid:"Copy",msgstr:["Kopieren"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Nach {target} kopieren"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Der neue Ordner konnte nicht erstellt werden"]},"Create directory":{msgid:"Create directory",msgstr:["Verzeichnis erstellen"]},"Current view selector":{msgid:"Current view selector",msgstr:["Aktuelle Ansichtsauswahl"]},Favorites:{msgid:"Favorites",msgstr:["Favoriten"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:["Dateiauswahl-Bereiche"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Dateien und Ordner, die Sie als Favorit markieren, werden hier angezeigt."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Dateien und Ordner, die Sie kürzlich geändert haben, werden hier angezeigt."]},"Filter file list":{msgid:"Filter file list",msgstr:["Dateiliste filtern"]},Home:{msgid:"Home",msgstr:["Home"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:["MIME-Typ {mime}"]},Modified:{msgid:"Modified",msgstr:["Geändert"]},Move:{msgid:"Move",msgstr:["Verschieben"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Nach {target} verschieben"]},Name:{msgid:"Name",msgstr:["Name"]},New:{msgid:"New",msgstr:["Neu"]},"New folder":{msgid:"New folder",msgstr:["Neuer Ordner"]},"New folder name":{msgid:"New folder name",msgstr:["Neuer Ordnername"]},"No files in here":{msgid:"No files in here",msgstr:["Hier sind keine Dateien"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Es wurden keine Dateien gefunden, die Ihrem Filter entsprechen."]},"No matching files":{msgid:"No matching files",msgstr:["Keine passenden Dateien"]},Recent:{msgid:"Recent",msgstr:["Neueste"]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:["Alle Einträge auswählen"]},"Select entry":{msgid:"Select entry",msgstr:["Eintrag auswählen"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Die Zeile für {nodename} auswählen."]},Size:{msgid:"Size",msgstr:["Größe"]},Undo:{msgid:"Undo",msgstr:["Rückgängig machen"]},unknown:{msgid:"unknown",msgstr:["Unbekannt"]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Laden Sie Inhalte hoch oder synchronisieren Sie diese mit Ihren Geräten!"]}}}}},{locale:"el",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Greek (https://app.transifex.com/nextcloud/teams/64236/el/)",Language:"el","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Greek (https://app.transifex.com/nextcloud/teams/64236/el/)\nLanguage: el\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["Αναίρεση"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"en_GB",json:{charset:"utf-8",headers:{"Last-Translator":"Café Tango, 2023","Language-Team":"English (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/en_GB/)",Language:"en_GB","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nAndi Chandler <andi@gowling.com>, 2023\nCafé Tango, 2023\n"},msgstr:["Last-Translator: Café Tango, 2023\nLanguage-Team: English (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/en_GB/)\nLanguage: en_GB\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:['"{name}" is an invalid file name.']},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:['"{name}" is not an allowed filetype']},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:['"/" is not allowed inside a file name.']},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:["All files"]},Choose:{msgid:"Choose",msgstr:["Choose"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Choose {file}"]},Copy:{msgid:"Copy",msgstr:["Copy"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Copy to {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Could not create the new folder"]},"Create directory":{msgid:"Create directory",msgstr:["Create directory"]},"Current view selector":{msgid:"Current view selector",msgstr:["Current view selector"]},Favorites:{msgid:"Favorites",msgstr:["Favourites"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:["File name cannot be empty."]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:["Filepicker sections"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Files and folders you mark as favourite will show up here."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Files and folders you recently modified will show up here."]},"Filter file list":{msgid:"Filter file list",msgstr:["Filter file list"]},Home:{msgid:"Home",msgstr:["Home"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:["MIME type {mime}"]},Modified:{msgid:"Modified",msgstr:["Modified"]},Move:{msgid:"Move",msgstr:["Move"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Move to {target}"]},Name:{msgid:"Name",msgstr:["Name"]},New:{msgid:"New",msgstr:["New"]},"New folder":{msgid:"New folder",msgstr:["New folder"]},"New folder name":{msgid:"New folder name",msgstr:["New folder name"]},"No files in here":{msgid:"No files in here",msgstr:["No files in here"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["No files matching your filter were found."]},"No matching files":{msgid:"No matching files",msgstr:["No matching files"]},Recent:{msgid:"Recent",msgstr:["Recent"]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:["Select all entries"]},"Select entry":{msgid:"Select entry",msgstr:["Select entry"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Select the row for {nodename}"]},Size:{msgid:"Size",msgstr:["Size"]},Undo:{msgid:"Undo",msgstr:["Undo"]},unknown:{msgid:"unknown",msgstr:["unknown"]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Upload some content or sync with your devices!"]}}}}},{locale:"eo",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Esperanto (https://app.transifex.com/nextcloud/teams/64236/eo/)",Language:"eo","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Esperanto (https://app.transifex.com/nextcloud/teams/64236/eo/)\nLanguage: eo\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["Malfari"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",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/)",Language:"es","Content-Type":"text/plain; charset=UTF-8","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\nJulio C. Ortega, 2024\n"},msgstr:["Last-Translator: Julio C. Ortega, 2024\nLanguage-Team: Spanish (https://app.transifex.com/nextcloud/teams/64236/es/)\nLanguage: es\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:['"{name}" es un nombre de archivo inválido.']},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:['"{name}" es un tipo de archivo no permitido']},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:['"/" no está permitido dentro del nombre de un archivo.']},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:["Todos los archivos"]},Choose:{msgid:"Choose",msgstr:["Escoger"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Escoger {file}"]},Copy:{msgid:"Copy",msgstr:["Copiar"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Copiar a {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["No se pudo crear la carpeta nueva"]},"Create directory":{msgid:"Create directory",msgstr:["Crear directorio"]},"Current view selector":{msgid:"Current view selector",msgstr:["Selector de vista actual"]},Favorites:{msgid:"Favorites",msgstr:["Favoritos"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:["El nombre de archivo no puede estar vacío."]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:["Secciones del selector de archivos"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Los archivos y carpetas que marque como favoritos aparecerán aquí."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Los archivos y carpetas que modificó recientemente aparecerán aquí."]},"Filter file list":{msgid:"Filter file list",msgstr:["Filtrar lista de archivos"]},Home:{msgid:"Home",msgstr:["Inicio"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:["Tipo MIME {mime}"]},Modified:{msgid:"Modified",msgstr:["Modificado"]},Move:{msgid:"Move",msgstr:["Mover"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Mover a {target}"]},Name:{msgid:"Name",msgstr:["Nombre"]},New:{msgid:"New",msgstr:["Nuevo"]},"New folder":{msgid:"New folder",msgstr:[" Nueva carpeta"]},"New folder name":{msgid:"New folder name",msgstr:["Nuevo nombre de carpeta"]},"No files in here":{msgid:"No files in here",msgstr:["No hay archivos aquí"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["No se encontraron archivos que coincidiesen con su filtro."]},"No matching files":{msgid:"No matching files",msgstr:["No hay archivos coincidentes"]},Recent:{msgid:"Recent",msgstr:["Reciente"]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:["Seleccionar todas las entradas"]},"Select entry":{msgid:"Select entry",msgstr:["Seleccionar entrada"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Seleccione la fila para {nodename}"]},Size:{msgid:"Size",msgstr:["Tamaño"]},Undo:{msgid:"Undo",msgstr:["Deshacer"]},unknown:{msgid:"unknown",msgstr:["Desconocido"]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["¡Cargue algún contenido o sincronice con sus dispositivos!"]}}}}},{locale:"es_419",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Latin America) (https://app.transifex.com/nextcloud/teams/64236/es_419/)",Language:"es_419","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Latin America) (https://app.transifex.com/nextcloud/teams/64236/es_419/)\nLanguage: es_419\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"es_AR",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Spanish (Argentina) (https://app.transifex.com/nextcloud/teams/64236/es_AR/)",Language:"es_AR","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Spanish (Argentina) (https://app.transifex.com/nextcloud/teams/64236/es_AR/)\nLanguage: es_AR\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["Deshacer"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"es_CL",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Chile) (https://app.transifex.com/nextcloud/teams/64236/es_CL/)",Language:"es_CL","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Chile) (https://app.transifex.com/nextcloud/teams/64236/es_CL/)\nLanguage: es_CL\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"es_CO",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Colombia) (https://app.transifex.com/nextcloud/teams/64236/es_CO/)",Language:"es_CO","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Colombia) (https://app.transifex.com/nextcloud/teams/64236/es_CO/)\nLanguage: es_CO\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"es_CR",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Costa Rica) (https://app.transifex.com/nextcloud/teams/64236/es_CR/)",Language:"es_CR","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Costa Rica) (https://app.transifex.com/nextcloud/teams/64236/es_CR/)\nLanguage: es_CR\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"es_DO",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Dominican Republic) (https://app.transifex.com/nextcloud/teams/64236/es_DO/)",Language:"es_DO","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Dominican Republic) (https://app.transifex.com/nextcloud/teams/64236/es_DO/)\nLanguage: es_DO\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"es_EC",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Ecuador) (https://app.transifex.com/nextcloud/teams/64236/es_EC/)",Language:"es_EC","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Ecuador) (https://app.transifex.com/nextcloud/teams/64236/es_EC/)\nLanguage: es_EC\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"es_GT",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Guatemala) (https://app.transifex.com/nextcloud/teams/64236/es_GT/)",Language:"es_GT","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Guatemala) (https://app.transifex.com/nextcloud/teams/64236/es_GT/)\nLanguage: es_GT\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"es_HN",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Honduras) (https://app.transifex.com/nextcloud/teams/64236/es_HN/)",Language:"es_HN","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Honduras) (https://app.transifex.com/nextcloud/teams/64236/es_HN/)\nLanguage: es_HN\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"es_MX",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Spanish (Mexico) (https://app.transifex.com/nextcloud/teams/64236/es_MX/)",Language:"es_MX","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Spanish (Mexico) (https://app.transifex.com/nextcloud/teams/64236/es_MX/)\nLanguage: es_MX\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["Deshacer"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"es_NI",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Nicaragua) (https://app.transifex.com/nextcloud/teams/64236/es_NI/)",Language:"es_NI","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Nicaragua) (https://app.transifex.com/nextcloud/teams/64236/es_NI/)\nLanguage: es_NI\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"es_PA",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Panama) (https://app.transifex.com/nextcloud/teams/64236/es_PA/)",Language:"es_PA","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Panama) (https://app.transifex.com/nextcloud/teams/64236/es_PA/)\nLanguage: es_PA\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"es_PE",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Peru) (https://app.transifex.com/nextcloud/teams/64236/es_PE/)",Language:"es_PE","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Peru) (https://app.transifex.com/nextcloud/teams/64236/es_PE/)\nLanguage: es_PE\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"es_PR",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Puerto Rico) (https://app.transifex.com/nextcloud/teams/64236/es_PR/)",Language:"es_PR","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Puerto Rico) (https://app.transifex.com/nextcloud/teams/64236/es_PR/)\nLanguage: es_PR\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"es_PY",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Paraguay) (https://app.transifex.com/nextcloud/teams/64236/es_PY/)",Language:"es_PY","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Paraguay) (https://app.transifex.com/nextcloud/teams/64236/es_PY/)\nLanguage: es_PY\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"es_SV",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (El Salvador) (https://app.transifex.com/nextcloud/teams/64236/es_SV/)",Language:"es_SV","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (El Salvador) (https://app.transifex.com/nextcloud/teams/64236/es_SV/)\nLanguage: es_SV\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"es_UY",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Uruguay) (https://app.transifex.com/nextcloud/teams/64236/es_UY/)",Language:"es_UY","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Uruguay) (https://app.transifex.com/nextcloud/teams/64236/es_UY/)\nLanguage: es_UY\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"et_EE",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)",Language:"et_EE","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)\nLanguage: et_EE\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"eu",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Basque (https://app.transifex.com/nextcloud/teams/64236/eu/)",Language:"eu","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Basque (https://app.transifex.com/nextcloud/teams/64236/eu/)\nLanguage: eu\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["Desegin"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"fa",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)",Language:"fa","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)\nLanguage: fa\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["بازگردانی"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"fi_FI",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Finnish (Finland) (https://app.transifex.com/nextcloud/teams/64236/fi_FI/)",Language:"fi_FI","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Finnish (Finland) (https://app.transifex.com/nextcloud/teams/64236/fi_FI/)\nLanguage: fi_FI\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["Kumoa"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"fo",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Faroese (https://app.transifex.com/nextcloud/teams/64236/fo/)",Language:"fo","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Faroese (https://app.transifex.com/nextcloud/teams/64236/fo/)\nLanguage: fo\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"fr",json:{charset:"utf-8",headers:{"Last-Translator":"fleopaul thp, 2023","Language-Team":"French (https://app.transifex.com/nextcloud/teams/64236/fr/)",Language:"fr","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nRémi LEBLOND, 2023\nMordecai, 2023\nfleopaul thp, 2023\n"},msgstr:["Last-Translator: fleopaul thp, 2023\nLanguage-Team: French (https://app.transifex.com/nextcloud/teams/64236/fr/)\nLanguage: fr\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:["Tous les fichiers"]},Choose:{msgid:"Choose",msgstr:["Choisir"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Choisir {file}"]},Copy:{msgid:"Copy",msgstr:["Copier"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Copier vers {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Impossible de créer le nouveau dossier"]},"Create directory":{msgid:"Create directory",msgstr:["Créer un répertoire"]},"Current view selector":{msgid:"Current view selector",msgstr:["Sélecteur de vue courante"]},Favorites:{msgid:"Favorites",msgstr:["Favoris"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:["Sections du sélecteur de fichiers"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Les fichiers et répertoires marqués en favoris apparaîtront ici."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Les fichiers et répertoires modifiés récemment apparaîtront ici."]},"Filter file list":{msgid:"Filter file list",msgstr:["Liste de filtre de fichiers"]},Home:{msgid:"Home",msgstr:["Accueil"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:["Type MIME {mime}"]},Modified:{msgid:"Modified",msgstr:["Modifié"]},Move:{msgid:"Move",msgstr:["Déplacer"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Déplacer vers {target}"]},Name:{msgid:"Name",msgstr:["Nom"]},New:{msgid:"New",msgstr:["Nouveau"]},"New folder":{msgid:"New folder",msgstr:["Nouveau répertoire"]},"New folder name":{msgid:"New folder name",msgstr:["Nom du nouveau répertoire"]},"No files in here":{msgid:"No files in here",msgstr:["Aucun fichier ici"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Aucun fichier trouvé correspondant à votre filtre."]},"No matching files":{msgid:"No matching files",msgstr:["Aucun fichier trouvé"]},Recent:{msgid:"Recent",msgstr:["Récents"]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:["Tous sélectionner"]},"Select entry":{msgid:"Select entry",msgstr:["Sélectionner une entrée"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Sélectionner l'enregistrement pour {nodename}"]},Size:{msgid:"Size",msgstr:["Taille"]},Undo:{msgid:"Undo",msgstr:["Rétablir"]},unknown:{msgid:"unknown",msgstr:["inconnu"]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Charger du contenu ou synchroniser avec vos équipements !"]}}}}},{locale:"gd",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Gaelic, Scottish (https://app.transifex.com/nextcloud/teams/64236/gd/)",Language:"gd","Content-Type":"text/plain; charset=UTF-8","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 <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Gaelic, Scottish (https://app.transifex.com/nextcloud/teams/64236/gd/)\nLanguage: gd\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",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/)",Language:"gl","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.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/)\nLanguage: gl\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:["Todos os ficheiros"]},Choose:{msgid:"Choose",msgstr:["Escoller"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Escoller {file}"]},Copy:{msgid:"Copy",msgstr:["Copiar"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Copiar en {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Non foi posíbel crear o novo cartafol"]},"Create directory":{msgid:"Create directory",msgstr:["Crear un directorio"]},"Current view selector":{msgid:"Current view selector",msgstr:["Selector de vista actual"]},Favorites:{msgid:"Favorites",msgstr:["Favoritos"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:["Seccións do selector de ficheiros"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Os ficheiros e cartafoles que marque como favoritos aparecerán aquí."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Os ficheiros e cartafoles que modificou recentemente aparecerán aquí."]},"Filter file list":{msgid:"Filter file list",msgstr:["Filtrar a lista de ficheiros"]},Home:{msgid:"Home",msgstr:["Inicio"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:["Tipo MIME {mime}"]},Modified:{msgid:"Modified",msgstr:["Modificado"]},Move:{msgid:"Move",msgstr:["Mover"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Mover cara a {target}"]},Name:{msgid:"Name",msgstr:["Nome"]},New:{msgid:"New",msgstr:["Novo"]},"New folder":{msgid:"New folder",msgstr:["Novo cartafol"]},"New folder name":{msgid:"New folder name",msgstr:["Novo nome do cartafol"]},"No files in here":{msgid:"No files in here",msgstr:["Aquí non hai ficheiros"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Non se atopou ningún ficheiro que coincida co filtro."]},"No matching files":{msgid:"No matching files",msgstr:["Non hai ficheiros coincidentes"]},Recent:{msgid:"Recent",msgstr:["Recente"]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:["Seleccionar todas as entradas"]},"Select entry":{msgid:"Select entry",msgstr:["Seleccionar a entrada"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Seleccionar a fila para {nodename}"]},Size:{msgid:"Size",msgstr:["Tamaño"]},Undo:{msgid:"Undo",msgstr:["Desfacer"]},unknown:{msgid:"unknown",msgstr:["descoñecido"]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Enviar algún contido ou sincronizalo cos seus dispositivos!"]}}}}},{locale:"he",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Hebrew (https://app.transifex.com/nextcloud/teams/64236/he/)",Language:"he","Content-Type":"text/plain; charset=UTF-8","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:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Hebrew (https://app.transifex.com/nextcloud/teams/64236/he/)\nLanguage: he\nContent-Type: text/plain; charset=UTF-8\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"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["ביטול"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"hi_IN",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Hindi (India) (https://app.transifex.com/nextcloud/teams/64236/hi_IN/)",Language:"hi_IN","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Hindi (India) (https://app.transifex.com/nextcloud/teams/64236/hi_IN/)\nLanguage: hi_IN\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"hr",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Croatian (https://app.transifex.com/nextcloud/teams/64236/hr/)",Language:"hr","Content-Type":"text/plain; charset=UTF-8","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 <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Croatian (https://app.transifex.com/nextcloud/teams/64236/hr/)\nLanguage: hr\nContent-Type: text/plain; charset=UTF-8\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"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"hsb",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Upper Sorbian (https://app.transifex.com/nextcloud/teams/64236/hsb/)",Language:"hsb","Content-Type":"text/plain; charset=UTF-8","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 <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Upper Sorbian (https://app.transifex.com/nextcloud/teams/64236/hsb/)\nLanguage: hsb\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"hu_HU",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Hungarian (Hungary) (https://app.transifex.com/nextcloud/teams/64236/hu_HU/)",Language:"hu_HU","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Hungarian (Hungary) (https://app.transifex.com/nextcloud/teams/64236/hu_HU/)\nLanguage: hu_HU\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["Visszavonás"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"hy",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Armenian (https://app.transifex.com/nextcloud/teams/64236/hy/)",Language:"hy","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Armenian (https://app.transifex.com/nextcloud/teams/64236/hy/)\nLanguage: hy\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"ia",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Interlingua (https://app.transifex.com/nextcloud/teams/64236/ia/)",Language:"ia","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Interlingua (https://app.transifex.com/nextcloud/teams/64236/ia/)\nLanguage: ia\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",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/)",Language:"id","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 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/)\nLanguage: id\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=1; plural=0;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:["Semua berkas"]},Choose:{msgid:"Choose",msgstr:["Pilih"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Pilih {file}"]},Copy:{msgid:"Copy",msgstr:["Salin"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Salin ke {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Tidak dapat membuat folder baru"]},"Create directory":{msgid:"Create directory",msgstr:["Buat direktori"]},"Current view selector":{msgid:"Current view selector",msgstr:["Pemilih tampilan saat ini"]},Favorites:{msgid:"Favorites",msgstr:["Favorit"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Berkas dan folder yang Anda tandai sebagai favorit akan muncul di sini."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Berkas dan folder yang Anda ubah baru-baru ini akan muncul di sini."]},"Filter file list":{msgid:"Filter file list",msgstr:["Saring daftar berkas"]},Home:{msgid:"Home",msgstr:["Beranda"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:["Diubah"]},Move:{msgid:"Move",msgstr:["Pindahkan"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Pindahkan ke {target}"]},Name:{msgid:"Name",msgstr:["Nama"]},New:{msgid:"New",msgstr:["Baru"]},"New folder":{msgid:"New folder",msgstr:["Folder baru"]},"New folder name":{msgid:"New folder name",msgstr:["Nama folder baru"]},"No files in here":{msgid:"No files in here",msgstr:["Tidak ada berkas di sini"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Tidak ada berkas yang cocok dengan penyaringan Anda."]},"No matching files":{msgid:"No matching files",msgstr:["Tidak ada berkas yang cocok"]},Recent:{msgid:"Recent",msgstr:["Terkini"]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:["Pilih semua entri"]},"Select entry":{msgid:"Select entry",msgstr:["Pilih entri"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Pilih baris untuk {nodename}"]},Size:{msgid:"Size",msgstr:["Ukuran"]},Undo:{msgid:"Undo",msgstr:["Tidak jadi"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Unggah beberapa konten atau sinkron dengan perangkat Anda!"]}}}}},{locale:"ig",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Igbo (https://app.transifex.com/nextcloud/teams/64236/ig/)",Language:"ig","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Igbo (https://app.transifex.com/nextcloud/teams/64236/ig/)\nLanguage: ig\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=1; plural=0;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",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/)",Language:"is","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\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/)\nLanguage: is\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:["Allar skrár"]},Choose:{msgid:"Choose",msgstr:["Veldu"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Veldu {file}"]},Copy:{msgid:"Copy",msgstr:["Afrita"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Afrita í {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Get ekki búið til nýju möppuna"]},"Create directory":{msgid:"Create directory",msgstr:["Búa til möppu"]},"Current view selector":{msgid:"Current view selector",msgstr:["Núverandi val sýnar"]},Favorites:{msgid:"Favorites",msgstr:["Eftirlæti"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Skrár og möppur sem þú merkir sem eftirlæti birtast hér."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Skrár og möppur sem þú breyttir nýlega birtast hér."]},"Filter file list":{msgid:"Filter file list",msgstr:["Sía skráalista"]},Home:{msgid:"Home",msgstr:["Heim"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:["Breytt"]},Move:{msgid:"Move",msgstr:["Færa"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Færa í {target}"]},Name:{msgid:"Name",msgstr:["Heiti"]},New:{msgid:"New",msgstr:["Nýtt"]},"New folder":{msgid:"New folder",msgstr:["Ný mappa"]},"New folder name":{msgid:"New folder name",msgstr:["Heiti nýrrar möppu"]},"No files in here":{msgid:"No files in here",msgstr:["Engar skrár hér"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Engar skrár fundust sem passa við síuna."]},"No matching files":{msgid:"No matching files",msgstr:["Engar samsvarandi skrár"]},Recent:{msgid:"Recent",msgstr:["Nýlegt"]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:["Velja allar færslur"]},"Select entry":{msgid:"Select entry",msgstr:["Velja færslu"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Veldu röðina fyrir {nodename}"]},Size:{msgid:"Size",msgstr:["Stærð"]},Undo:{msgid:"Undo",msgstr:["Afturkalla"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Sendu inn eitthvað efni eða samstilltu við tækin þín!"]}}}}},{locale:"it",json:{charset:"utf-8",headers:{"Last-Translator":"Raffaele Silano <raffaelone@gmail.com>, 2024","Language-Team":"Italian (https://app.transifex.com/nextcloud/teams/64236/it/)",Language:"it","Content-Type":"text/plain; charset=UTF-8","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\nClaudio Scandella, 2023\nRaffaele Silano <raffaelone@gmail.com>, 2024\n"},msgstr:["Last-Translator: Raffaele Silano <raffaelone@gmail.com>, 2024\nLanguage-Team: Italian (https://app.transifex.com/nextcloud/teams/64236/it/)\nLanguage: it\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:["Tutti i file"]},Choose:{msgid:"Choose",msgstr:["Scegli"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Scegli {file}"]},Copy:{msgid:"Copy",msgstr:["Copia"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Copia in {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Impossibile creare la nuova cartella"]},"Create directory":{msgid:"Create directory",msgstr:["Crea directory"]},"Current view selector":{msgid:"Current view selector",msgstr:["Selettore della vista corrente"]},Favorites:{msgid:"Favorites",msgstr:["Preferiti"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["I file e le cartelle contrassegnate come preferite saranno mostrate qui."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["I file e le cartelle che hai modificato di recente saranno mostrate qui."]},"Filter file list":{msgid:"Filter file list",msgstr:["Filtra elenco file"]},Home:{msgid:"Home",msgstr:["Home"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:["Modificato"]},Move:{msgid:"Move",msgstr:["Sposta"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Sposta in {target}"]},Name:{msgid:"Name",msgstr:["Nome"]},New:{msgid:"New",msgstr:["Nuovo"]},"New folder":{msgid:"New folder",msgstr:["Nuova cartella"]},"New folder name":{msgid:"New folder name",msgstr:["Nuovo nome cartella"]},"No files in here":{msgid:"No files in here",msgstr:["Nessun file qui"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Nessun file che corrisponde al tuo filtro è stato trovato."]},"No matching files":{msgid:"No matching files",msgstr:["Nessun file corrispondente"]},Recent:{msgid:"Recent",msgstr:["Recente"]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:["Scegli tutte le voci"]},"Select entry":{msgid:"Select entry",msgstr:["Seleziona la voce"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Seleziona la riga per {nodename}"]},Size:{msgid:"Size",msgstr:["Taglia/dimensioni"]},Undo:{msgid:"Undo",msgstr:["Annulla"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Carica qualche contenuto o sincronizza con i tuoi dispositivi!"]}}}}},{locale:"ja_JP",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Japanese (Japan) (https://app.transifex.com/nextcloud/teams/64236/ja_JP/)",Language:"ja_JP","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Japanese (Japan) (https://app.transifex.com/nextcloud/teams/64236/ja_JP/)\nLanguage: ja_JP\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=1; plural=0;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["元に戻す"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"ka",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Georgian (https://app.transifex.com/nextcloud/teams/64236/ka/)",Language:"ka","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n!=1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Georgian (https://app.transifex.com/nextcloud/teams/64236/ka/)\nLanguage: ka\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n!=1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"ka_GE",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Georgian (Georgia) (https://app.transifex.com/nextcloud/teams/64236/ka_GE/)",Language:"ka_GE","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n!=1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Georgian (Georgia) (https://app.transifex.com/nextcloud/teams/64236/ka_GE/)\nLanguage: ka_GE\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n!=1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"kab",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)",Language:"kab","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)\nLanguage: kab\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["Sefsex"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"kk",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Kazakh (https://app.transifex.com/nextcloud/teams/64236/kk/)",Language:"kk","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n!=1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Kazakh (https://app.transifex.com/nextcloud/teams/64236/kk/)\nLanguage: kk\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n!=1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"km",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Khmer (https://app.transifex.com/nextcloud/teams/64236/km/)",Language:"km","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Khmer (https://app.transifex.com/nextcloud/teams/64236/km/)\nLanguage: km\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=1; plural=0;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"kn",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Kannada (https://app.transifex.com/nextcloud/teams/64236/kn/)",Language:"kn","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Kannada (https://app.transifex.com/nextcloud/teams/64236/kn/)\nLanguage: kn\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"ko",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Korean (https://app.transifex.com/nextcloud/teams/64236/ko/)",Language:"ko","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Korean (https://app.transifex.com/nextcloud/teams/64236/ko/)\nLanguage: ko\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=1; plural=0;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["되돌리기"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"la",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Latin (https://app.transifex.com/nextcloud/teams/64236/la/)",Language:"la","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Latin (https://app.transifex.com/nextcloud/teams/64236/la/)\nLanguage: la\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"lb",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Luxembourgish (https://app.transifex.com/nextcloud/teams/64236/lb/)",Language:"lb","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Luxembourgish (https://app.transifex.com/nextcloud/teams/64236/lb/)\nLanguage: lb\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"lo",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Lao (https://app.transifex.com/nextcloud/teams/64236/lo/)",Language:"lo","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Lao (https://app.transifex.com/nextcloud/teams/64236/lo/)\nLanguage: lo\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=1; plural=0;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"lt_LT",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Lithuanian (Lithuania) (https://app.transifex.com/nextcloud/teams/64236/lt_LT/)",Language:"lt_LT","Content-Type":"text/plain; charset=UTF-8","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:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Lithuanian (Lithuania) (https://app.transifex.com/nextcloud/teams/64236/lt_LT/)\nLanguage: lt_LT\nContent-Type: text/plain; charset=UTF-8\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"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["Atšaukti"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"lv",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Latvian (https://app.transifex.com/nextcloud/teams/64236/lv/)",Language:"lv","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Latvian (https://app.transifex.com/nextcloud/teams/64236/lv/)\nLanguage: lv\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"mk",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Macedonian (https://app.transifex.com/nextcloud/teams/64236/mk/)",Language:"mk","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Macedonian (https://app.transifex.com/nextcloud/teams/64236/mk/)\nLanguage: mk\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["Врати"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"mn",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)",Language:"mn","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)\nLanguage: mn\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["Буцаах"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"mr",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Marathi (https://app.transifex.com/nextcloud/teams/64236/mr/)",Language:"mr","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Marathi (https://app.transifex.com/nextcloud/teams/64236/mr/)\nLanguage: mr\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["पूर्ववत करा"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"ms_MY",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Malay (Malaysia) (https://app.transifex.com/nextcloud/teams/64236/ms_MY/)",Language:"ms_MY","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Malay (Malaysia) (https://app.transifex.com/nextcloud/teams/64236/ms_MY/)\nLanguage: ms_MY\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=1; plural=0;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"my",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Burmese (https://app.transifex.com/nextcloud/teams/64236/my/)",Language:"my","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Burmese (https://app.transifex.com/nextcloud/teams/64236/my/)\nLanguage: my\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=1; plural=0;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["နဂိုအတိုင်းပြန်ထားရန်"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"nb_NO",json:{charset:"utf-8",headers:{"Last-Translator":"D PE, 2023","Language-Team":"Norwegian Bokmål (Norway) (https://app.transifex.com/nextcloud/teams/64236/nb_NO/)",Language:"nb_NO","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nD PE, 2023\n"},msgstr:["Last-Translator: D PE, 2023\nLanguage-Team: Norwegian Bokmål (Norway) (https://app.transifex.com/nextcloud/teams/64236/nb_NO/)\nLanguage: nb_NO\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:["Alle filer"]},Choose:{msgid:"Choose",msgstr:["Velg"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Velg {fil}"]},Copy:{msgid:"Copy",msgstr:["Kopier"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Kopier til {destinasjon}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Kunne ikke opprette den nye mappen"]},"Create directory":{msgid:"Create directory",msgstr:["Opprett mappe"]},"Current view selector":{msgid:"Current view selector",msgstr:["Nåværende visningsvelger"]},Favorites:{msgid:"Favorites",msgstr:["Favoritter"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Filer og mapper du markerer som favoritter vil vises her."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Filer og mapper du nylig har endret, vil vises her."]},"Filter file list":{msgid:"Filter file list",msgstr:["Filtrer filliste"]},Home:{msgid:"Home",msgstr:["Hjem"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:["Modifisert"]},Move:{msgid:"Move",msgstr:["Flytt"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Flytt til {destinasjon}"]},Name:{msgid:"Name",msgstr:["Navn"]},New:{msgid:"New",msgstr:["Ny"]},"New folder":{msgid:"New folder",msgstr:["Ny mappe"]},"New folder name":{msgid:"New folder name",msgstr:["Nytt mappenavn"]},"No files in here":{msgid:"No files in here",msgstr:["Ingen filer her"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Ingen filer funnet med ditt filter."]},"No matching files":{msgid:"No matching files",msgstr:["Ingen treffende filer"]},Recent:{msgid:"Recent",msgstr:["Nylig"]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:["Velg alle oppføringer"]},"Select entry":{msgid:"Select entry",msgstr:["Velg oppføring"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Velg raden for {nodenavn}"]},Size:{msgid:"Size",msgstr:["Størrelse"]},Undo:{msgid:"Undo",msgstr:["Angre"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Last opp innhold eller synkroniser med enhetene dine!"]}}}}},{locale:"ne",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Nepali (https://app.transifex.com/nextcloud/teams/64236/ne/)",Language:"ne","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Nepali (https://app.transifex.com/nextcloud/teams/64236/ne/)\nLanguage: ne\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"nl",json:{charset:"utf-8",headers:{"Last-Translator":"Jeroen Gui, 2023","Language-Team":"Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)",Language:"nl","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nJoost <joho500@hotmail.com>, 2023\nJeroen Gui, 2023\n"},msgstr:["Last-Translator: Jeroen Gui, 2023\nLanguage-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\nLanguage: nl\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:["Alle bestanden"]},Choose:{msgid:"Choose",msgstr:["Kies"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Kies {file}"]},Copy:{msgid:"Copy",msgstr:["Kopieer"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Kopieer naar {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Kon de nieuwe map niet maken"]},"Create directory":{msgid:"Create directory",msgstr:["Maak map"]},"Current view selector":{msgid:"Current view selector",msgstr:["Huidige weergave keuze"]},Favorites:{msgid:"Favorites",msgstr:["Favorieten"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Bestanden en mappen die je favoriet maakt, worden hier getoond."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Bestanden en mappen die je recent hebt gewijzigd, worden hier getoond."]},"Filter file list":{msgid:"Filter file list",msgstr:["Filter bestandslijst"]},Home:{msgid:"Home",msgstr:["Home"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:["Gewijzigd"]},Move:{msgid:"Move",msgstr:["Verplaatsen"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Verplaats naar {target}"]},Name:{msgid:"Name",msgstr:["Naam"]},New:{msgid:"New",msgstr:["Nieuw"]},"New folder":{msgid:"New folder",msgstr:["Nieuwe map"]},"New folder name":{msgid:"New folder name",msgstr:["Nieuwe mapnaam"]},"No files in here":{msgid:"No files in here",msgstr:["Geen bestanden hier"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Geen bestanden gevonden die voldoen aan je filter."]},"No matching files":{msgid:"No matching files",msgstr:["Geen gevonden bestanden"]},Recent:{msgid:"Recent",msgstr:["Recent"]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:["Selecteer alle invoer"]},"Select entry":{msgid:"Select entry",msgstr:["Selecteer invoer"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Selecteer de rij voor {nodename}"]},Size:{msgid:"Size",msgstr:["Grootte"]},Undo:{msgid:"Undo",msgstr:["Ongedaan maken"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Upload inhoud of synchroniseer met je apparaten!"]}}}}},{locale:"nn_NO",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Norwegian Nynorsk (Norway) (https://app.transifex.com/nextcloud/teams/64236/nn_NO/)",Language:"nn_NO","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Norwegian Nynorsk (Norway) (https://app.transifex.com/nextcloud/teams/64236/nn_NO/)\nLanguage: nn_NO\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"oc",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Occitan (post 1500) (https://app.transifex.com/nextcloud/teams/64236/oc/)",Language:"oc","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Occitan (post 1500) (https://app.transifex.com/nextcloud/teams/64236/oc/)\nLanguage: oc\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["Anullar"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"pl",json:{charset:"utf-8",headers:{"Last-Translator":"Valdnet, 2024","Language-Team":"Polish (https://app.transifex.com/nextcloud/teams/64236/pl/)",Language:"pl","Content-Type":"text/plain; charset=UTF-8","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\nJUJER wtf, 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/)\nLanguage: pl\nContent-Type: text/plain; charset=UTF-8\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"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:["Wszystkie pliki"]},Choose:{msgid:"Choose",msgstr:["Wybierz"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Wybierz {file}"]},Copy:{msgid:"Copy",msgstr:["Kopiuj"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Skopiuj do {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Nie można utworzyć nowego folderu"]},"Create directory":{msgid:"Create directory",msgstr:["Utwórz katalog"]},"Current view selector":{msgid:"Current view selector",msgstr:["Bieżący selektor widoku"]},Favorites:{msgid:"Favorites",msgstr:["Ulubione"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Pliki i foldery które oznaczysz jako ulubione będą wyświetlały się tutaj"]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Pliki i foldery które ostatnio modyfikowałeś będą wyświetlały się tutaj"]},"Filter file list":{msgid:"Filter file list",msgstr:["Filtruj listę plików"]},Home:{msgid:"Home",msgstr:["Strona główna"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:["Zmodyfikowano"]},Move:{msgid:"Move",msgstr:["Przenieś"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Przejdź do {target}"]},Name:{msgid:"Name",msgstr:["Nazwa"]},New:{msgid:"New",msgstr:["Nowy"]},"New folder":{msgid:"New folder",msgstr:["Nowy folder"]},"New folder name":{msgid:"New folder name",msgstr:["Nowa nazwa folderu"]},"No files in here":{msgid:"No files in here",msgstr:["Brak plików"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Nie znaleziono plików spełniających warunki filtru"]},"No matching files":{msgid:"No matching files",msgstr:["Brak pasujących plików"]},Recent:{msgid:"Recent",msgstr:["Ostatni"]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:["Wybierz wszystkie wpisy"]},"Select entry":{msgid:"Select entry",msgstr:["Wybierz wpis"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Wybierz wiersz dla {nodename}"]},Size:{msgid:"Size",msgstr:["Rozmiar"]},Undo:{msgid:"Undo",msgstr:["Cofnij"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Wyślij zawartość lub zsynchronizuj ze swoimi urządzeniami!"]}}}}},{locale:"ps",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Pashto (https://app.transifex.com/nextcloud/teams/64236/ps/)",Language:"ps","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Pashto (https://app.transifex.com/nextcloud/teams/64236/ps/)\nLanguage: ps\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"pt_BR",json:{charset:"utf-8",headers:{"Last-Translator":"Flávio Veras <flaviove@gmail.com>, 2023","Language-Team":"Portuguese (Brazil) (https://app.transifex.com/nextcloud/teams/64236/pt_BR/)",Language:"pt_BR","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nFlávio Veras <flaviove@gmail.com>, 2023\n"},msgstr:["Last-Translator: Flávio Veras <flaviove@gmail.com>, 2023\nLanguage-Team: Portuguese (Brazil) (https://app.transifex.com/nextcloud/teams/64236/pt_BR/)\nLanguage: pt_BR\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:["Todos os arquivos"]},Choose:{msgid:"Choose",msgstr:["Escolher"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Escolher arquivo}"]},Copy:{msgid:"Copy",msgstr:["Copiar"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Copiar para {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Não foi possível criar a nova pasta"]},"Create directory":{msgid:"Create directory",msgstr:["Criar diretório"]},"Current view selector":{msgid:"Current view selector",msgstr:["Seletor de visualização atual"]},Favorites:{msgid:"Favorites",msgstr:["Favoritos"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Os arquivos e pastas marcados como favoritos aparecerão aqui."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Arquivos e pastas que você modificou recentemente aparecerão aqui."]},"Filter file list":{msgid:"Filter file list",msgstr:["Filtrar lista de arquivos"]},Home:{msgid:"Home",msgstr:["Home"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:["Modificado"]},Move:{msgid:"Move",msgstr:["Mover"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Mover para {target}"]},Name:{msgid:"Name",msgstr:["Nome"]},New:{msgid:"New",msgstr:["Novo"]},"New folder":{msgid:"New folder",msgstr:["Nova pasta"]},"New folder name":{msgid:"New folder name",msgstr:["Novo nome de pasta"]},"No files in here":{msgid:"No files in here",msgstr:["Nenhum arquivo aqui"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Nenhum arquivo correspondente ao seu filtro foi encontrado."]},"No matching files":{msgid:"No matching files",msgstr:["Nenhum arquivo correspondente"]},Recent:{msgid:"Recent",msgstr:["Recente"]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:["Selecione todas as entradas"]},"Select entry":{msgid:"Select entry",msgstr:["Selecione a entrada"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Selecione a linha para {nodename}"]},Size:{msgid:"Size",msgstr:["Tamanho"]},Undo:{msgid:"Undo",msgstr:["Desfazer"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Carregue algum conteúdo ou sincronize com seus dispositivos!"]}}}}},{locale:"pt_PT",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Portuguese (Portugal) (https://app.transifex.com/nextcloud/teams/64236/pt_PT/)",Language:"pt_PT","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Portuguese (Portugal) (https://app.transifex.com/nextcloud/teams/64236/pt_PT/)\nLanguage: pt_PT\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["Anular"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"ro",json:{charset:"utf-8",headers:{"Last-Translator":"Daniel MD <dmihaidumitru@gmail.com>, 2023","Language-Team":"Romanian (https://app.transifex.com/nextcloud/teams/64236/ro/)",Language:"ro","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nDaniel MD <dmihaidumitru@gmail.com>, 2023\n"},msgstr:["Last-Translator: Daniel MD <dmihaidumitru@gmail.com>, 2023\nLanguage-Team: Romanian (https://app.transifex.com/nextcloud/teams/64236/ro/)\nLanguage: ro\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:["Toate fișierele"]},Choose:{msgid:"Choose",msgstr:["Alege"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Alege {file}"]},Copy:{msgid:"Copy",msgstr:["Copiază"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Copiază în {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Nu s-a putut crea noul director"]},"Create directory":{msgid:"Create directory",msgstr:["Creează director"]},"Current view selector":{msgid:"Current view selector",msgstr:["Selectorul curent al vizualizării"]},Favorites:{msgid:"Favorites",msgstr:["Favorite"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Fișiere și directoare pe care le marcați ca favorite vor apărea aici."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Fișiere și directoare pe care le-ați modificat recent vor apărea aici."]},"Filter file list":{msgid:"Filter file list",msgstr:["Filtrează lista de fișiere"]},Home:{msgid:"Home",msgstr:["Acasă"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:["Modificat"]},Move:{msgid:"Move",msgstr:["Mută"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Mută către {target}"]},Name:{msgid:"Name",msgstr:["Nume"]},New:{msgid:"New",msgstr:["Nou"]},"New folder":{msgid:"New folder",msgstr:["Director nou"]},"New folder name":{msgid:"New folder name",msgstr:["Numele noului director"]},"No files in here":{msgid:"No files in here",msgstr:["Nu există fișiere"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Nu există fișiere potrivite pentru filtrul selectat"]},"No matching files":{msgid:"No matching files",msgstr:["Nu există fișiere potrivite"]},Recent:{msgid:"Recent",msgstr:["Recente"]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:["Selectează toate înregistrările"]},"Select entry":{msgid:"Select entry",msgstr:["Selectează înregistrarea"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Selectează rândul pentru {nodename}"]},Size:{msgid:"Size",msgstr:["Mărime"]},Undo:{msgid:"Undo",msgstr:["Anulează"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Încărcați conținut sau sincronizați cu dispozitivele dumneavoastră!"]}}}}},{locale:"ru",json:{charset:"utf-8",headers:{"Last-Translator":"Alex <kekcuha@gmail.com>, 2024","Language-Team":"Russian (https://app.transifex.com/nextcloud/teams/64236/ru/)",Language:"ru","Content-Type":"text/plain; charset=UTF-8","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\nashed <craysy@gmail.com>, 2023\nAlex <kekcuha@gmail.com>, 2024\n"},msgstr:["Last-Translator: Alex <kekcuha@gmail.com>, 2024\nLanguage-Team: Russian (https://app.transifex.com/nextcloud/teams/64236/ru/)\nLanguage: ru\nContent-Type: text/plain; charset=UTF-8\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"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:["Все файлы"]},Choose:{msgid:"Choose",msgstr:["Выбрать"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Выбрать {file}"]},Copy:{msgid:"Copy",msgstr:["Копировать"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Копировать в «{target}»"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Не удалось создать новую папку"]},"Create directory":{msgid:"Create directory",msgstr:["Создать папку"]},"Current view selector":{msgid:"Current view selector",msgstr:["Переключатель текущего вида"]},Favorites:{msgid:"Favorites",msgstr:["Избранное"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:["Разделы для выбора файлов"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Здесь появятся файлы и папки, которые вы пометили как избранные."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Здесь будут отображаться файлы и папки, которые вы недавно изменили."]},"Filter file list":{msgid:"Filter file list",msgstr:["Фильтровать список файлов"]},Home:{msgid:"Home",msgstr:["Home"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:["MIME тип {mime}"]},Modified:{msgid:"Modified",msgstr:["Модифицированный"]},Move:{msgid:"Move",msgstr:["Переместить"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Перейти к {target}"]},Name:{msgid:"Name",msgstr:["Имя"]},New:{msgid:"New",msgstr:["Новый"]},"New folder":{msgid:"New folder",msgstr:["Новая папка"]},"New folder name":{msgid:"New folder name",msgstr:["Новое имя папки"]},"No files in here":{msgid:"No files in here",msgstr:["Здесь нет файлов"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Файлы, соответствующие вашему фильтру, не найдены."]},"No matching files":{msgid:"No matching files",msgstr:["Нет подходящих файлов"]},Recent:{msgid:"Recent",msgstr:["Недавний"]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:["Выбрать все записи"]},"Select entry":{msgid:"Select entry",msgstr:["Выберите запись"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Выберите строку для {nodename}"]},Size:{msgid:"Size",msgstr:["Размер"]},Undo:{msgid:"Undo",msgstr:["Отменить"]},unknown:{msgid:"unknown",msgstr:["неизвестный"]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Загрузите контент или синхронизируйте его со своими устройствами!"]}}}}},{locale:"sc",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Sardinian (https://app.transifex.com/nextcloud/teams/64236/sc/)",Language:"sc","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Sardinian (https://app.transifex.com/nextcloud/teams/64236/sc/)\nLanguage: sc\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"si",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Sinhala (https://app.transifex.com/nextcloud/teams/64236/si/)",Language:"si","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Sinhala (https://app.transifex.com/nextcloud/teams/64236/si/)\nLanguage: si\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["පෙරසේ"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"sk_SK",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Slovak (Slovakia) (https://app.transifex.com/nextcloud/teams/64236/sk_SK/)",Language:"sk_SK","Content-Type":"text/plain; charset=UTF-8","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:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Slovak (Slovakia) (https://app.transifex.com/nextcloud/teams/64236/sk_SK/)\nLanguage: sk_SK\nContent-Type: text/plain; charset=UTF-8\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"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["Späť"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"sl",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Slovenian (https://app.transifex.com/nextcloud/teams/64236/sl/)",Language:"sl","Content-Type":"text/plain; charset=UTF-8","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:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Slovenian (https://app.transifex.com/nextcloud/teams/64236/sl/)\nLanguage: sl\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["Razveljavi"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"sq",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Albanian (https://app.transifex.com/nextcloud/teams/64236/sq/)",Language:"sq","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Albanian (https://app.transifex.com/nextcloud/teams/64236/sq/)\nLanguage: sq\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"sr",json:{charset:"utf-8",headers:{"Last-Translator":"Иван Пешић, 2024","Language-Team":"Serbian (https://app.transifex.com/nextcloud/teams/64236/sr/)",Language:"sr","Content-Type":"text/plain; charset=UTF-8","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Иван Пешић, 2024\n"},msgstr:["Last-Translator: Иван Пешић, 2024\nLanguage-Team: Serbian (https://app.transifex.com/nextcloud/teams/64236/sr/)\nLanguage: sr\nContent-Type: text/plain; charset=UTF-8\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"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:["Сви фајлови"]},Choose:{msgid:"Choose",msgstr:["Изаберите"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Изаберите {file}"]},Copy:{msgid:"Copy",msgstr:["Копирај"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Копирај у {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Није могао да се креира нови фолдер"]},"Create directory":{msgid:"Create directory",msgstr:["Креирај директоријум"]},"Current view selector":{msgid:"Current view selector",msgstr:["Бирач тренутног приказа"]},Favorites:{msgid:"Favorites",msgstr:["Омиљено"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:["Одељци бирача фајлова"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Овде ће се појавити фајлови и фолдери које сте означили као омиљене."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Овде ће се појавити фајлови и фолдери који се се недавно изменили."]},"Filter file list":{msgid:"Filter file list",msgstr:["Фитрирање листе фајлова"]},Home:{msgid:"Home",msgstr:["Почетак"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:["MIME тип {mime}"]},Modified:{msgid:"Modified",msgstr:["Измењено"]},Move:{msgid:"Move",msgstr:["Премести"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Премести у {target}"]},Name:{msgid:"Name",msgstr:["Име"]},New:{msgid:"New",msgstr:["Ново"]},"New folder":{msgid:"New folder",msgstr:["Нови фолдер"]},"New folder name":{msgid:"New folder name",msgstr:["Име новог фолдера"]},"No files in here":{msgid:"No files in here",msgstr:["Овде нема фајлова"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Није пронађен ниједан фајл који задовољава ваш филтер."]},"No matching files":{msgid:"No matching files",msgstr:["Нема таквих фајлова"]},Recent:{msgid:"Recent",msgstr:["Скорашње"]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:["Изаберите све ставке"]},"Select entry":{msgid:"Select entry",msgstr:["Изаберите ставку"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Изаберите ред за {nodename}"]},Size:{msgid:"Size",msgstr:["Величина"]},Undo:{msgid:"Undo",msgstr:["Поништи"]},unknown:{msgid:"unknown",msgstr:["непозната"]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Отпремите нешто или синхронизујте са својим уређајима!"]}}}}},{locale:"sr@latin",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Serbian (Latin) (https://app.transifex.com/nextcloud/teams/64236/sr@latin/)",Language:"sr@latin","Content-Type":"text/plain; charset=UTF-8","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 <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Serbian (Latin) (https://app.transifex.com/nextcloud/teams/64236/sr@latin/)\nLanguage: sr@latin\nContent-Type: text/plain; charset=UTF-8\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"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",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/)",Language:"sv","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nMagnus Höglund, 2024\n"},msgstr:["Last-Translator: Magnus Höglund, 2024\nLanguage-Team: Swedish (https://app.transifex.com/nextcloud/teams/64236/sv/)\nLanguage: sv\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:["Alla filer"]},Choose:{msgid:"Choose",msgstr:["Välj"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Välj {file}"]},Copy:{msgid:"Copy",msgstr:["Kopiera"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Kopiera till {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Kunde inte skapa den nya mappen"]},"Create directory":{msgid:"Create directory",msgstr:["Skapa katalog"]},"Current view selector":{msgid:"Current view selector",msgstr:["Aktuell vyväljare"]},Favorites:{msgid:"Favorites",msgstr:["Favoriter"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:["Filepicker-sektioner"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Filer och mappar som du markerar som favorit kommer att visas här."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Filer och mappar som du nyligen ändrat kommer att visas här."]},"Filter file list":{msgid:"Filter file list",msgstr:["Filtrera fillistan"]},Home:{msgid:"Home",msgstr:["Hem"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:["MIME typ {mime}"]},Modified:{msgid:"Modified",msgstr:["Ändrad"]},Move:{msgid:"Move",msgstr:["Flytta"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Flytta till {target}"]},Name:{msgid:"Name",msgstr:["Namn"]},New:{msgid:"New",msgstr:["Ny"]},"New folder":{msgid:"New folder",msgstr:["Ny mapp"]},"New folder name":{msgid:"New folder name",msgstr:["Nytt mappnamn"]},"No files in here":{msgid:"No files in here",msgstr:["Inga filer här"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Inga filer som matchar ditt filter hittades."]},"No matching files":{msgid:"No matching files",msgstr:["Inga matchande filer"]},Recent:{msgid:"Recent",msgstr:["Nyligen"]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:["Välj alla poster"]},"Select entry":{msgid:"Select entry",msgstr:["Välj post"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Välj raden för {nodename}"]},Size:{msgid:"Size",msgstr:["Storlek"]},Undo:{msgid:"Undo",msgstr:["Ångra"]},unknown:{msgid:"unknown",msgstr:["okänd"]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Ladda upp lite innehåll eller synkronisera med dina enheter!"]}}}}},{locale:"sw",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Swahili (https://app.transifex.com/nextcloud/teams/64236/sw/)",Language:"sw","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Swahili (https://app.transifex.com/nextcloud/teams/64236/sw/)\nLanguage: sw\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"ta",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Tamil (https://app.transifex.com/nextcloud/teams/64236/ta/)",Language:"ta","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Tamil (https://app.transifex.com/nextcloud/teams/64236/ta/)\nLanguage: ta\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["செயல்தவிர்"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"th_TH",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Thai (Thailand) (https://app.transifex.com/nextcloud/teams/64236/th_TH/)",Language:"th_TH","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Thai (Thailand) (https://app.transifex.com/nextcloud/teams/64236/th_TH/)\nLanguage: th_TH\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=1; plural=0;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["เลิกทำ"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"tk",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Turkmen (https://app.transifex.com/nextcloud/teams/64236/tk/)",Language:"tk","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Turkmen (https://app.transifex.com/nextcloud/teams/64236/tk/)\nLanguage: tk\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",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/)",Language:"tr","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\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/)\nLanguage: tr\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:["Tüm dosyalar"]},Choose:{msgid:"Choose",msgstr:["Seçin"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["{file} seçin"]},Copy:{msgid:"Copy",msgstr:["Kopyala"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["{target} üzerine kopyala"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Yeni klasör oluşturulamadı"]},"Create directory":{msgid:"Create directory",msgstr:["Klasör oluştur"]},"Current view selector":{msgid:"Current view selector",msgstr:["Geçerli görünüm seçici"]},Favorites:{msgid:"Favorites",msgstr:["Sık kullanılanlar"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:["Dosya seçici bölümleri"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Sık kullanılan olarak seçtiğiniz dosyalar burada görüntülenir."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Son zamanlarda değiştirdiğiniz dosya ve klasörler burada görüntülenir."]},"Filter file list":{msgid:"Filter file list",msgstr:["Dosya listesini süz"]},Home:{msgid:"Home",msgstr:["Giriş"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:["MIME türü {mime}"]},Modified:{msgid:"Modified",msgstr:["Değiştirilme"]},Move:{msgid:"Move",msgstr:["Taşı"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["{target} üzerine taşı"]},Name:{msgid:"Name",msgstr:["Ad"]},New:{msgid:"New",msgstr:["Yeni"]},"New folder":{msgid:"New folder",msgstr:["Yeni klasör"]},"New folder name":{msgid:"New folder name",msgstr:["Yeni klasör adı"]},"No files in here":{msgid:"No files in here",msgstr:["Burada herhangi bir dosya yok"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Süzgece uyan bir dosya bulunamadı."]},"No matching files":{msgid:"No matching files",msgstr:["Eşleşen bir dosya yok"]},Recent:{msgid:"Recent",msgstr:["Son kullanılanlar"]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:["Tüm kayıtları seç"]},"Select entry":{msgid:"Select entry",msgstr:["Kaydı seç"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["{nodename} satırını seçin"]},Size:{msgid:"Size",msgstr:["Boyut"]},Undo:{msgid:"Undo",msgstr:["Geri al"]},unknown:{msgid:"unknown",msgstr:["bilinmiyor"]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Bazı içerikler yükleyin ya da aygıtlarınızla eşitleyin!"]}}}}},{locale:"ug",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Uyghur (https://app.transifex.com/nextcloud/teams/64236/ug/)",Language:"ug","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Uyghur (https://app.transifex.com/nextcloud/teams/64236/ug/)\nLanguage: ug\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",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/)",Language:"uk","Content-Type":"text/plain; charset=UTF-8","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:\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/)\nLanguage: uk\nContent-Type: text/plain; charset=UTF-8\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"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:["Всі файли"]},Choose:{msgid:"Choose",msgstr:["Вибрати"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Вибрати {file}"]},Copy:{msgid:"Copy",msgstr:["Копіювати"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Копіювати до {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Не вдалося створити новий каталог"]},"Create directory":{msgid:"Create directory",msgstr:["Створити каталог"]},"Current view selector":{msgid:"Current view selector",msgstr:["Вибір подання"]},Favorites:{msgid:"Favorites",msgstr:["Із зірочкою"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Тут показуватимуться файли та каталоги, які ви позначите зірочкою."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Тут показуватимуться файли та каталоги, які було нещодавно змінено."]},"Filter file list":{msgid:"Filter file list",msgstr:["Фільтрувати список файлів"]},Home:{msgid:"Home",msgstr:["Домівка"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:["Змінено"]},Move:{msgid:"Move",msgstr:["Перемістити"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Перемістити до {target}"]},Name:{msgid:"Name",msgstr:["Ім'я"]},New:{msgid:"New",msgstr:["Новий"]},"New folder":{msgid:"New folder",msgstr:["Новий каталог"]},"New folder name":{msgid:"New folder name",msgstr:["Ім'я нового каталогу"]},"No files in here":{msgid:"No files in here",msgstr:["Тут відсутні файли"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Відсутні збіги за фільтром."]},"No matching files":{msgid:"No matching files",msgstr:["Відсутні збіги файлів."]},Recent:{msgid:"Recent",msgstr:["Останні"]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:["Вибрати всі записи"]},"Select entry":{msgid:"Select entry",msgstr:["Вибрати запис"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Вибрати рядок для {nodename}"]},Size:{msgid:"Size",msgstr:["Розмір"]},Undo:{msgid:"Undo",msgstr:["Повернути"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Завантажте вміст або синхронізуйте з вашим пристроєм!"]}}}}},{locale:"ur_PK",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Urdu (Pakistan) (https://app.transifex.com/nextcloud/teams/64236/ur_PK/)",Language:"ur_PK","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Urdu (Pakistan) (https://app.transifex.com/nextcloud/teams/64236/ur_PK/)\nLanguage: ur_PK\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"uz",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Uzbek (https://app.transifex.com/nextcloud/teams/64236/uz/)",Language:"uz","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Uzbek (https://app.transifex.com/nextcloud/teams/64236/uz/)\nLanguage: uz\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=1; plural=0;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"vi",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Vietnamese (https://app.transifex.com/nextcloud/teams/64236/vi/)",Language:"vi","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Vietnamese (https://app.transifex.com/nextcloud/teams/64236/vi/)\nLanguage: vi\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=1; plural=0;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:["Hoàn tác"]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}},{locale:"zh_CN",json:{charset:"utf-8",headers:{"Last-Translator":"Eric, 2023","Language-Team":"Chinese (China) (https://app.transifex.com/nextcloud/teams/64236/zh_CN/)",Language:"zh_CN","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nken, 2023\nEric, 2023\n"},msgstr:["Last-Translator: Eric, 2023\nLanguage-Team: Chinese (China) (https://app.transifex.com/nextcloud/teams/64236/zh_CN/)\nLanguage: zh_CN\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=1; plural=0;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:["所有文件"]},Choose:{msgid:"Choose",msgstr:["选择"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["选择 {file}"]},Copy:{msgid:"Copy",msgstr:["复制"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["复制到 {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["无法创建新文件夹"]},"Create directory":{msgid:"Create directory",msgstr:["创建目录"]},"Current view selector":{msgid:"Current view selector",msgstr:["当前视图选择器"]},Favorites:{msgid:"Favorites",msgstr:["最爱"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:["文件选取器选择"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["您标记为最爱的文件与文件夹会显示在这里"]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["您最近修改的文件与文件夹会显示在这里"]},"Filter file list":{msgid:"Filter file list",msgstr:["过滤文件列表"]},Home:{msgid:"Home",msgstr:["主目录"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:["MIME 类型 {mime}"]},Modified:{msgid:"Modified",msgstr:["已修改"]},Move:{msgid:"Move",msgstr:["移动"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["移动至 {target}"]},Name:{msgid:"Name",msgstr:["名称"]},New:{msgid:"New",msgstr:["新"]},"New folder":{msgid:"New folder",msgstr:["新文件夹"]},"New folder name":{msgid:"New folder name",msgstr:["新文件夹名称"]},"No files in here":{msgid:"No files in here",msgstr:["此处无文件"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["找不到符合您过滤条件的文件"]},"No matching files":{msgid:"No matching files",msgstr:["无符合的文件"]},Recent:{msgid:"Recent",msgstr:["最近"]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:["选择所有条目"]},"Select entry":{msgid:"Select entry",msgstr:["选择条目"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["选择 {nodename} 的列"]},Size:{msgid:"Size",msgstr:["大小"]},Undo:{msgid:"Undo",msgstr:[" 撤消"]},unknown:{msgid:"unknown",msgstr:["未知"]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",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/)",Language:"zh_HK","Content-Type":"text/plain; charset=UTF-8","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/)\nLanguage: zh_HK\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=1; plural=0;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:["「{name}」是無效的檔案名稱。"]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:["「{name}」並非允許的檔案類型"]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:['檔案名稱中不允許使用 "/"。']},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:["所有檔案"]},Choose:{msgid:"Choose",msgstr:["選擇"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["選擇 {file}"]},Copy:{msgid:"Copy",msgstr:["複製"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["複製到 {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["無法建立新資料夾"]},"Create directory":{msgid:"Create directory",msgstr:["建立目錄"]},"Current view selector":{msgid:"Current view selector",msgstr:["目前檢視選取器"]},Favorites:{msgid:"Favorites",msgstr:["最愛"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:["檔案名稱不能為空。"]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:["檔案挑選器部分"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["您標記為最愛的檔案與資料夾將會顯示在此處。"]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["您最近修改的檔案與資料夾將會顯示在此處。"]},"Filter file list":{msgid:"Filter file list",msgstr:["過濾檔案清單"]},Home:{msgid:"Home",msgstr:["首頁"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:["MIME 類型 {mime}"]},Modified:{msgid:"Modified",msgstr:["已修改"]},Move:{msgid:"Move",msgstr:["移動"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["移動至 {target}"]},Name:{msgid:"Name",msgstr:["名稱"]},New:{msgid:"New",msgstr:["新"]},"New folder":{msgid:"New folder",msgstr:["新資料夾"]},"New folder name":{msgid:"New folder name",msgstr:["新資料夾名稱"]},"No files in here":{msgid:"No files in here",msgstr:["此處無檔案"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["找不到符合您過濾條件的檔案。"]},"No matching files":{msgid:"No matching files",msgstr:["無符合的檔案"]},Recent:{msgid:"Recent",msgstr:["最近"]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:["選取所有條目"]},"Select entry":{msgid:"Select entry",msgstr:["選取條目"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["選取 {nodename} 的列"]},Size:{msgid:"Size",msgstr:["大小"]},Undo:{msgid:"Undo",msgstr:["還原"]},unknown:{msgid:"unknown",msgstr:["不詳"]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["上傳一些內容或與您的裝置同步"]}}}}},{locale:"zh_TW",json:{charset:"utf-8",headers:{"Last-Translator":"黃柏諺 <s8321414@gmail.com>, 2023","Language-Team":"Chinese (Taiwan) (https://app.transifex.com/nextcloud/teams/64236/zh_TW/)",Language:"zh_TW","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\n黃柏諺 <s8321414@gmail.com>, 2023\n"},msgstr:["Last-Translator: 黃柏諺 <s8321414@gmail.com>, 2023\nLanguage-Team: Chinese (Taiwan) (https://app.transifex.com/nextcloud/teams/64236/zh_TW/)\nLanguage: zh_TW\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=1; plural=0;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:["「{name}」是無效的檔案名稱。"]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:["「{name}」並非允許的檔案類型"]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:["檔案名稱中不允許使用「/」。"]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:["所有檔案"]},Choose:{msgid:"Choose",msgstr:["選擇"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["選擇 {file}"]},Copy:{msgid:"Copy",msgstr:["複製"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["複製到 {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["無法建立新資料夾"]},"Create directory":{msgid:"Create directory",msgstr:["建立目錄"]},"Current view selector":{msgid:"Current view selector",msgstr:["目前檢視選取器"]},Favorites:{msgid:"Favorites",msgstr:["最愛"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:["檔案名稱不能為空。"]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:["檔案挑選器選取"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["您標記為最愛的檔案與資料夾將會顯示在此處。"]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["您最近修改的檔案與資料夾將會顯示在此處。"]},"Filter file list":{msgid:"Filter file list",msgstr:["過濾檔案清單"]},Home:{msgid:"Home",msgstr:["家"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:["已修改"]},Move:{msgid:"Move",msgstr:["移動"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["移動至 {target}"]},Name:{msgid:"Name",msgstr:["名稱"]},New:{msgid:"New",msgstr:["新"]},"New folder":{msgid:"New folder",msgstr:["新資料夾"]},"New folder name":{msgid:"New folder name",msgstr:["新資料夾名稱"]},"No files in here":{msgid:"No files in here",msgstr:["此處無檔案"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["找不到符合您過濾條件的檔案。"]},"No matching files":{msgid:"No matching files",msgstr:["無符合的檔案"]},Recent:{msgid:"Recent",msgstr:["最近"]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:["選取所有條目"]},"Select entry":{msgid:"Select entry",msgstr:["選取條目"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["選取 {nodename} 的列"]},Size:{msgid:"Size",msgstr:["大小"]},Undo:{msgid:"Undo",msgstr:["復原"]},unknown:{msgid:"unknown",msgstr:["未知"]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["上傳一些內容或與您的裝置同步"]}}}}},{locale:"zu_ZA",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Zulu (South Africa) (https://app.transifex.com/nextcloud/teams/64236/zu_ZA/)",Language:"zu_ZA","Content-Type":"text/plain; charset=UTF-8","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Zulu (South Africa) (https://app.transifex.com/nextcloud/teams/64236/zu_ZA/)\nLanguage: zu_ZA\nContent-Type: text/plain; charset=UTF-8\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:[""]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:[""]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:[""]},"a few seconds ago":{msgid:"a few seconds ago",msgstr:[""]},"All files":{msgid:"All files",msgstr:[""]},Choose:{msgid:"Choose",msgstr:[""]},"Choose {file}":{msgid:"Choose {file}",msgstr:[""]},Copy:{msgid:"Copy",msgstr:[""]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:[""]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:[""]},"Create directory":{msgid:"Create directory",msgstr:[""]},"Current view selector":{msgid:"Current view selector",msgstr:[""]},Favorites:{msgid:"Favorites",msgstr:[""]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:[""]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:[""]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:[""]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:[""]},"Filter file list":{msgid:"Filter file list",msgstr:[""]},Home:{msgid:"Home",msgstr:[""]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:[""]},Modified:{msgid:"Modified",msgstr:[""]},Move:{msgid:"Move",msgstr:[""]},"Move to {target}":{msgid:"Move to {target}",msgstr:[""]},Name:{msgid:"Name",msgstr:[""]},New:{msgid:"New",msgstr:[""]},"New folder":{msgid:"New folder",msgstr:[""]},"New folder name":{msgid:"New folder name",msgstr:[""]},"No files in here":{msgid:"No files in here",msgstr:[""]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:[""]},"No matching files":{msgid:"No matching files",msgstr:[""]},Recent:{msgid:"Recent",msgstr:[""]},"sec. ago":{msgid:"sec. ago",comments:{extracted:"FOR TRANSLATORS: If possible in your language an even shorter version of 'a few seconds ago'"},msgstr:[""]},"seconds ago":{msgid:"seconds ago",comments:{extracted:"FOR TRANSLATORS: Shorter version of 'a few seconds ago'"},msgstr:[""]},"Select all entries":{msgid:"Select all entries",msgstr:[""]},"Select entry":{msgid:"Select entry",msgstr:[""]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:[""]},Size:{msgid:"Size",msgstr:[""]},Undo:{msgid:"Undo",msgstr:[""]},unknown:{msgid:"unknown",msgstr:[""]},Unset:{msgid:"Unset",msgstr:[""]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:[""]}}}}}].map((e=>l.addTranslation(e.locale,e.json)));const m=l.build();m.ngettext.bind(m);const d=m.gettext.bind(m),g=(0,i.defineAsyncComponent)((()=>Promise.all([t.e("vendors-node_modules_path-browserify_index_js-node_modules_nextcloud_dialogs_dist_chunks_Dial-e0595f"),t.e("vendors-node_modules_nextcloud_dialogs_dist_chunks_FilePicker-nJePvM3F_mjs"),t.e("_4f7e-_ed1b-_d17e")]).then(t.bind(t,789))))},9994:(e,s,t)=>{"use strict";t.d(s,{i:()=>a});var r=t(8588);t(894);var n=(e=>(e[e.OFF="off"]="OFF",e[e.POLITE="polite"]="POLITE",e[e.ASSERTIVE="assertive"]="ASSERTIVE",e))(n||{});const o=7e3;function i(e,s){var t;if(s=Object.assign({timeout:o,isHTML:!1,type:void 0,selector:void 0,onRemove:()=>{},onClick:void 0,close:!0},s),"string"==typeof e&&!s.isHTML){const s=document.createElement("div");s.innerHTML=e,e=s.innerText}let i=null!=(t=s.type)?t:"";"function"==typeof s.onClick&&(i+=" toast-with-click ");const a=e instanceof Node;let l=n.POLITE;s.ariaLive?l=s.ariaLive:("toast-error"===s.type||"toast-undo"===s.type)&&(l=n.ASSERTIVE);const m=r({[a?"node":"text"]:e,duration:s.timeout,callback:s.onRemove,onClick:s.onClick,close:s.close,gravity:"top",selector:s.selector,position:"right",backgroundColor:"",className:"dialogs "+i,escapeMarkup:!s.isHTML,ariaLive:l});return m.showToast(),m}function a(e,s){return i(e,{...s,type:"toast-error"})}}},n={};function o(e){var s=n[e];if(void 0!==s)return s.exports;var t=n[e]={id:e,loaded:!1,exports:{}};return r[e].call(t.exports,t,t.exports,o),t.loaded=!0,t.exports}o.m=r,o.n=e=>{var s=e&&e.__esModule?()=>e.default:()=>e;return o.d(s,{a:s}),s},o.d=(e,s)=>{for(var t in s)o.o(s,t)&&!o.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:s[t]})},o.f={},o.e=e=>Promise.all(Object.keys(o.f).reduce(((s,t)=>(o.f[t](e,s),s)),[])),o.u=e=>"files_pdfviewer-"+e+".js?v="+{"vendors-node_modules_path-browserify_index_js-node_modules_nextcloud_dialogs_dist_chunks_Dial-e0595f":"e66d5ef26b51332f2f11",node_modules_nextcloud_dialogs_dist_legacy_mjs:"f75c609b4c65bc295de6","vendors-node_modules_nextcloud_dialogs_dist_chunks_FilePicker-nJePvM3F_mjs":"de8d5db99a1489ab81f5","_4f7e-_ed1b-_d17e":"ea99aa4cf12212033ecb"}[e],o.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),o.o=(e,s)=>Object.prototype.hasOwnProperty.call(e,s),e={},s="files_pdfviewer:",o.l=(t,r,n,i)=>{if(e[t])e[t].push(r);else{var a,l;if(void 0!==n)for(var m=document.getElementsByTagName("script"),d=0;d<m.length;d++){var g=m[d];if(g.getAttribute("src")==t||g.getAttribute("data-webpack")==s+n){a=g;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+n),a.src=t),e[t]=[r];var c=(s,r)=>{a.onerror=a.onload=null,clearTimeout(u);var n=e[t];if(delete e[t],a.parentNode&&a.parentNode.removeChild(a),n&&n.forEach((e=>e(r))),s)return s(r)},u=setTimeout(c.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=c.bind(null,a.onerror),a.onload=c.bind(null,a.onload),l&&document.head.appendChild(a)}},o.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),o.p="/apps/files_pdfviewer/js/",(()=>{var e={main:0};o.f.j=(s,t)=>{var r=o.o(e,s)?e[s]:void 0;if(0!==r)if(r)t.push(r[2]);else{var n=new Promise(((t,n)=>r=e[s]=[t,n]));t.push(r[2]=n);var i=o.p+o.u(s),a=new Error;o.l(i,(t=>{if(o.o(e,s)&&(0!==(r=e[s])&&(e[s]=void 0),r)){var n=t&&("load"===t.type?"missing":t.type),i=t&&t.target&&t.target.src;a.message="Loading chunk "+s+" failed.\n("+n+": "+i+")",a.name="ChunkLoadError",a.type=n,a.request=i,r[1](a)}}),"chunk-"+s,s)}};var s=(s,t)=>{var r,n,[i,a,l]=t,m=0;if(i.some((s=>0!==e[s]))){for(r in a)o.o(a,r)&&(o.m[r]=a[r]);if(l)l(o)}for(s&&s(t);m<i.length;m++)n=i[m],o.o(e,n)&&e[n]&&e[n][0](),e[n]=0},t=self.webpackChunkfiles_pdfviewer=self.webpackChunkfiles_pdfviewer||[];t.forEach(s.bind(null,0)),t.push=s.bind(null,t.push.bind(t))})(),o.nc=void 0,(()=>{"use strict";var e={};o.r(e),o.d(e,{hasBrowserEnv:()=>ae,hasStandardBrowserEnv:()=>le,hasStandardBrowserWebWorkerEnv:()=>de});o(894);var s=o(9994);var r=o(9753);const n=(0,o(7499).IY)().setApp("Files_PDFViewer").detectUser().build();var i=o(4855);function a(e,s){return function(){return e.apply(s,arguments)}}const{toString:l}=Object.prototype,{getPrototypeOf:m}=Object,d=(g=Object.create(null),e=>{const s=l.call(e);return g[s]||(g[s]=s.slice(8,-1).toLowerCase())});var g;const c=e=>(e=e.toLowerCase(),s=>d(s)===e),u=e=>s=>typeof s===e,{isArray:f}=Array,p=u("undefined");const h=c("ArrayBuffer");const y=u("string"),w=u("function"),v=u("number"),F=e=>null!==e&&"object"==typeof e,T=e=>{if("object"!==d(e))return!1;const s=m(e);return!(null!==s&&s!==Object.prototype&&null!==Object.getPrototypeOf(s)||Symbol.toStringTag in e||Symbol.iterator in e)},N=c("Date"),C=c("File"),S=c("Blob"),x=c("FileList"),b=c("URLSearchParams");function M(e,s,{allOwnKeys:t=!1}={}){if(null==e)return;let r,n;if("object"!=typeof e&&(e=[e]),f(e))for(r=0,n=e.length;r<n;r++)s.call(null,e[r],r,e);else{const n=t?Object.getOwnPropertyNames(e):Object.keys(e),o=n.length;let i;for(r=0;r<o;r++)i=n[r],s.call(null,e[i],i,e)}}function L(e,s){s=s.toLowerCase();const t=Object.keys(e);let r,n=t.length;for(;n-- >0;)if(r=t[n],s===r.toLowerCase())return r;return null}const k="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:global,R=e=>!p(e)&&e!==k;const A=(E="undefined"!=typeof Uint8Array&&m(Uint8Array),e=>E&&e instanceof E);var E;const _=c("HTMLFormElement"),O=(({hasOwnProperty:e})=>(s,t)=>e.call(s,t))(Object.prototype),U=c("RegExp"),I=(e,s)=>{const t=Object.getOwnPropertyDescriptors(e),r={};M(t,((t,n)=>{let o;!1!==(o=s(t,n,e))&&(r[n]=o||t)})),Object.defineProperties(e,r)},P="abcdefghijklmnopqrstuvwxyz",j="0123456789",B={DIGIT:j,ALPHA:P,ALPHA_DIGIT:P+P.toUpperCase()+j};const z=c("AsyncFunction"),D={isArray:f,isArrayBuffer:h,isBuffer:function(e){return null!==e&&!p(e)&&null!==e.constructor&&!p(e.constructor)&&w(e.constructor.isBuffer)&&e.constructor.isBuffer(e)},isFormData:e=>{let s;return e&&("function"==typeof FormData&&e instanceof FormData||w(e.append)&&("formdata"===(s=d(e))||"object"===s&&w(e.toString)&&"[object FormData]"===e.toString()))},isArrayBufferView:function(e){let s;return s="undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(e):e&&e.buffer&&h(e.buffer),s},isString:y,isNumber:v,isBoolean:e=>!0===e||!1===e,isObject:F,isPlainObject:T,isUndefined:p,isDate:N,isFile:C,isBlob:S,isRegExp:U,isFunction:w,isStream:e=>F(e)&&w(e.pipe),isURLSearchParams:b,isTypedArray:A,isFileList:x,forEach:M,merge:function e(){const{caseless:s}=R(this)&&this||{},t={},r=(r,n)=>{const o=s&&L(t,n)||n;T(t[o])&&T(r)?t[o]=e(t[o],r):T(r)?t[o]=e({},r):f(r)?t[o]=r.slice():t[o]=r};for(let e=0,s=arguments.length;e<s;e++)arguments[e]&&M(arguments[e],r);return t},extend:(e,s,t,{allOwnKeys:r}={})=>(M(s,((s,r)=>{t&&w(s)?e[r]=a(s,t):e[r]=s}),{allOwnKeys:r}),e),trim:e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,""),stripBOM:e=>(65279===e.charCodeAt(0)&&(e=e.slice(1)),e),inherits:(e,s,t,r)=>{e.prototype=Object.create(s.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:s.prototype}),t&&Object.assign(e.prototype,t)},toFlatObject:(e,s,t,r)=>{let n,o,i;const a={};if(s=s||{},null==e)return s;do{for(n=Object.getOwnPropertyNames(e),o=n.length;o-- >0;)i=n[o],r&&!r(i,e,s)||a[i]||(s[i]=e[i],a[i]=!0);e=!1!==t&&m(e)}while(e&&(!t||t(e,s))&&e!==Object.prototype);return s},kindOf:d,kindOfTest:c,endsWith:(e,s,t)=>{e=String(e),(void 0===t||t>e.length)&&(t=e.length),t-=s.length;const r=e.indexOf(s,t);return-1!==r&&r===t},toArray:e=>{if(!e)return null;if(f(e))return e;let s=e.length;if(!v(s))return null;const t=new Array(s);for(;s-- >0;)t[s]=e[s];return t},forEachEntry:(e,s)=>{const t=(e&&e[Symbol.iterator]).call(e);let r;for(;(r=t.next())&&!r.done;){const t=r.value;s.call(e,t[0],t[1])}},matchAll:(e,s)=>{let t;const r=[];for(;null!==(t=e.exec(s));)r.push(t);return r},isHTMLForm:_,hasOwnProperty:O,hasOwnProp:O,reduceDescriptors:I,freezeMethods:e=>{I(e,((s,t)=>{if(w(e)&&-1!==["arguments","caller","callee"].indexOf(t))return!1;const r=e[t];w(r)&&(s.enumerable=!1,"writable"in s?s.writable=!1:s.set||(s.set=()=>{throw Error("Can not rewrite read-only method '"+t+"'")}))}))},toObjectSet:(e,s)=>{const t={},r=e=>{e.forEach((e=>{t[e]=!0}))};return f(e)?r(e):r(String(e).split(s)),t},toCamelCase:e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,(function(e,s,t){return s.toUpperCase()+t})),noop:()=>{},toFiniteNumber:(e,s)=>(e=+e,Number.isFinite(e)?e:s),findKey:L,global:k,isContextDefined:R,ALPHABET:B,generateString:(e=16,s=B.ALPHA_DIGIT)=>{let t="";const{length:r}=s;for(;e--;)t+=s[Math.random()*r|0];return t},isSpecCompliantForm:function(e){return!!(e&&w(e.append)&&"FormData"===e[Symbol.toStringTag]&&e[Symbol.iterator])},toJSONObject:e=>{const s=new Array(10),t=(e,r)=>{if(F(e)){if(s.indexOf(e)>=0)return;if(!("toJSON"in e)){s[r]=e;const n=f(e)?[]:{};return M(e,((e,s)=>{const o=t(e,r+1);!p(o)&&(n[s]=o)})),s[r]=void 0,n}}return e};return t(e,0)},isAsyncFn:z,isThenable:e=>e&&(F(e)||w(e))&&w(e.then)&&w(e.catch)};function $(e,s,t,r,n){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=(new Error).stack,this.message=e,this.name="AxiosError",s&&(this.code=s),t&&(this.config=t),r&&(this.request=r),n&&(this.response=n)}D.inherits($,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:D.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const H=$.prototype,G={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach((e=>{G[e]={value:e}})),Object.defineProperties($,G),Object.defineProperty(H,"isAxiosError",{value:!0}),$.from=(e,s,t,r,n,o)=>{const i=Object.create(H);return D.toFlatObject(e,i,(function(e){return e!==Error.prototype}),(e=>"isAxiosError"!==e)),$.call(i,e.message,s,t,r,n),i.cause=e,i.name=e.name,o&&Object.assign(i,o),i};const J=$;var V=o(8764).Buffer;function q(e){return D.isPlainObject(e)||D.isArray(e)}function W(e){return D.endsWith(e,"[]")?e.slice(0,-2):e}function K(e,s,t){return e?e.concat(s).map((function(e,s){return e=W(e),!t&&s?"["+e+"]":e})).join(t?".":""):s}const Y=D.toFlatObject(D,{},null,(function(e){return/^is[A-Z]/.test(e)}));const X=function(e,s,t){if(!D.isObject(e))throw new TypeError("target must be an object");s=s||new FormData;const r=(t=D.toFlatObject(t,{metaTokens:!0,dots:!1,indexes:!1},!1,(function(e,s){return!D.isUndefined(s[e])}))).metaTokens,n=t.visitor||m,o=t.dots,i=t.indexes,a=(t.Blob||"undefined"!=typeof Blob&&Blob)&&D.isSpecCompliantForm(s);if(!D.isFunction(n))throw new TypeError("visitor must be a function");function l(e){if(null===e)return"";if(D.isDate(e))return e.toISOString();if(!a&&D.isBlob(e))throw new J("Blob is not supported. Use a Buffer instead.");return D.isArrayBuffer(e)||D.isTypedArray(e)?a&&"function"==typeof Blob?new Blob([e]):V.from(e):e}function m(e,t,n){let a=e;if(e&&!n&&"object"==typeof e)if(D.endsWith(t,"{}"))t=r?t:t.slice(0,-2),e=JSON.stringify(e);else if(D.isArray(e)&&function(e){return D.isArray(e)&&!e.some(q)}(e)||(D.isFileList(e)||D.endsWith(t,"[]"))&&(a=D.toArray(e)))return t=W(t),a.forEach((function(e,r){!D.isUndefined(e)&&null!==e&&s.append(!0===i?K([t],r,o):null===i?t:t+"[]",l(e))})),!1;return!!q(e)||(s.append(K(n,t,o),l(e)),!1)}const d=[],g=Object.assign(Y,{defaultVisitor:m,convertValue:l,isVisitable:q});if(!D.isObject(e))throw new TypeError("data must be an object");return function e(t,r){if(!D.isUndefined(t)){if(-1!==d.indexOf(t))throw Error("Circular reference detected in "+r.join("."));d.push(t),D.forEach(t,(function(t,o){!0===(!(D.isUndefined(t)||null===t)&&n.call(s,t,D.isString(o)?o.trim():o,r,g))&&e(t,r?r.concat(o):[o])})),d.pop()}}(e),s};function Z(e){const s={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,(function(e){return s[e]}))}function Q(e,s){this._pairs=[],e&&X(e,this,s)}const ee=Q.prototype;ee.append=function(e,s){this._pairs.push([e,s])},ee.toString=function(e){const s=e?function(s){return e.call(this,s,Z)}:Z;return this._pairs.map((function(e){return s(e[0])+"="+s(e[1])}),"").join("&")};const se=Q;function te(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function re(e,s,t){if(!s)return e;const r=t&&t.encode||te,n=t&&t.serialize;let o;if(o=n?n(s,t):D.isURLSearchParams(s)?s.toString():new se(s,t).toString(r),o){const s=e.indexOf("#");-1!==s&&(e=e.slice(0,s)),e+=(-1===e.indexOf("?")?"?":"&")+o}return e}const ne=class{constructor(){this.handlers=[]}use(e,s,t){return this.handlers.push({fulfilled:e,rejected:s,synchronous:!!t&&t.synchronous,runWhen:t?t.runWhen:null}),this.handlers.length-1}eject(e){this.handlers[e]&&(this.handlers[e]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(e){D.forEach(this.handlers,(function(s){null!==s&&e(s)}))}},oe={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},ie={isBrowser:!0,classes:{URLSearchParams:"undefined"!=typeof URLSearchParams?URLSearchParams:se,FormData:"undefined"!=typeof FormData?FormData:null,Blob:"undefined"!=typeof Blob?Blob:null},protocols:["http","https","file","blob","url","data"]},ae="undefined"!=typeof window&&"undefined"!=typeof document,le=(me="undefined"!=typeof navigator&&navigator.product,ae&&["ReactNative","NativeScript","NS"].indexOf(me)<0);var me;const de="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope&&"function"==typeof self.importScripts,ge={...e,...ie};const ce=function(e){function s(e,t,r,n){let o=e[n++];if("__proto__"===o)return!0;const i=Number.isFinite(+o),a=n>=e.length;if(o=!o&&D.isArray(r)?r.length:o,a)return D.hasOwnProp(r,o)?r[o]=[r[o],t]:r[o]=t,!i;r[o]&&D.isObject(r[o])||(r[o]=[]);return s(e,t,r[o],n)&&D.isArray(r[o])&&(r[o]=function(e){const s={},t=Object.keys(e);let r;const n=t.length;let o;for(r=0;r<n;r++)o=t[r],s[o]=e[o];return s}(r[o])),!i}if(D.isFormData(e)&&D.isFunction(e.entries)){const t={};return D.forEachEntry(e,((e,r)=>{s(function(e){return D.matchAll(/\w+|\[(\w*)]/g,e).map((e=>"[]"===e[0]?"":e[1]||e[0]))}(e),r,t,0)})),t}return null};const ue={transitional:oe,adapter:["xhr","http"],transformRequest:[function(e,s){const t=s.getContentType()||"",r=t.indexOf("application/json")>-1,n=D.isObject(e);n&&D.isHTMLForm(e)&&(e=new FormData(e));if(D.isFormData(e))return r?JSON.stringify(ce(e)):e;if(D.isArrayBuffer(e)||D.isBuffer(e)||D.isStream(e)||D.isFile(e)||D.isBlob(e))return e;if(D.isArrayBufferView(e))return e.buffer;if(D.isURLSearchParams(e))return s.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),e.toString();let o;if(n){if(t.indexOf("application/x-www-form-urlencoded")>-1)return function(e,s){return X(e,new ge.classes.URLSearchParams,Object.assign({visitor:function(e,s,t,r){return ge.isNode&&D.isBuffer(e)?(this.append(s,e.toString("base64")),!1):r.defaultVisitor.apply(this,arguments)}},s))}(e,this.formSerializer).toString();if((o=D.isFileList(e))||t.indexOf("multipart/form-data")>-1){const s=this.env&&this.env.FormData;return X(o?{"files[]":e}:e,s&&new s,this.formSerializer)}}return n||r?(s.setContentType("application/json",!1),function(e,s,t){if(D.isString(e))try{return(s||JSON.parse)(e),D.trim(e)}catch(e){if("SyntaxError"!==e.name)throw e}return(t||JSON.stringify)(e)}(e)):e}],transformResponse:[function(e){const s=this.transitional||ue.transitional,t=s&&s.forcedJSONParsing,r="json"===this.responseType;if(e&&D.isString(e)&&(t&&!this.responseType||r)){const t=!(s&&s.silentJSONParsing)&&r;try{return JSON.parse(e)}catch(e){if(t){if("SyntaxError"===e.name)throw J.from(e,J.ERR_BAD_RESPONSE,this,null,this.response);throw e}}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:ge.classes.FormData,Blob:ge.classes.Blob},validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};D.forEach(["delete","get","head","post","put","patch"],(e=>{ue.headers[e]={}}));const fe=ue,pe=D.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),he=Symbol("internals");function ye(e){return e&&String(e).trim().toLowerCase()}function we(e){return!1===e||null==e?e:D.isArray(e)?e.map(we):String(e)}function ve(e,s,t,r,n){return D.isFunction(r)?r.call(this,s,t):(n&&(s=t),D.isString(s)?D.isString(r)?-1!==s.indexOf(r):D.isRegExp(r)?r.test(s):void 0:void 0)}class Fe{constructor(e){e&&this.set(e)}set(e,s,t){const r=this;function n(e,s,t){const n=ye(s);if(!n)throw new Error("header name must be a non-empty string");const o=D.findKey(r,n);(!o||void 0===r[o]||!0===t||void 0===t&&!1!==r[o])&&(r[o||s]=we(e))}const o=(e,s)=>D.forEach(e,((e,t)=>n(e,t,s)));return D.isPlainObject(e)||e instanceof this.constructor?o(e,s):D.isString(e)&&(e=e.trim())&&!/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim())?o((e=>{const s={};let t,r,n;return e&&e.split("\n").forEach((function(e){n=e.indexOf(":"),t=e.substring(0,n).trim().toLowerCase(),r=e.substring(n+1).trim(),!t||s[t]&&pe[t]||("set-cookie"===t?s[t]?s[t].push(r):s[t]=[r]:s[t]=s[t]?s[t]+", "+r:r)})),s})(e),s):null!=e&&n(s,e,t),this}get(e,s){if(e=ye(e)){const t=D.findKey(this,e);if(t){const e=this[t];if(!s)return e;if(!0===s)return function(e){const s=Object.create(null),t=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=t.exec(e);)s[r[1]]=r[2];return s}(e);if(D.isFunction(s))return s.call(this,e,t);if(D.isRegExp(s))return s.exec(e);throw new TypeError("parser must be boolean|regexp|function")}}}has(e,s){if(e=ye(e)){const t=D.findKey(this,e);return!(!t||void 0===this[t]||s&&!ve(0,this[t],t,s))}return!1}delete(e,s){const t=this;let r=!1;function n(e){if(e=ye(e)){const n=D.findKey(t,e);!n||s&&!ve(0,t[n],n,s)||(delete t[n],r=!0)}}return D.isArray(e)?e.forEach(n):n(e),r}clear(e){const s=Object.keys(this);let t=s.length,r=!1;for(;t--;){const n=s[t];e&&!ve(0,this[n],n,e,!0)||(delete this[n],r=!0)}return r}normalize(e){const s=this,t={};return D.forEach(this,((r,n)=>{const o=D.findKey(t,n);if(o)return s[o]=we(r),void delete s[n];const i=e?function(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,((e,s,t)=>s.toUpperCase()+t))}(n):String(n).trim();i!==n&&delete s[n],s[i]=we(r),t[i]=!0})),this}concat(...e){return this.constructor.concat(this,...e)}toJSON(e){const s=Object.create(null);return D.forEach(this,((t,r)=>{null!=t&&!1!==t&&(s[r]=e&&D.isArray(t)?t.join(", "):t)})),s}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map((([e,s])=>e+": "+s)).join("\n")}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(e){return e instanceof this?e:new this(e)}static concat(e,...s){const t=new this(e);return s.forEach((e=>t.set(e))),t}static accessor(e){const s=(this[he]=this[he]={accessors:{}}).accessors,t=this.prototype;function r(e){const r=ye(e);s[r]||(!function(e,s){const t=D.toCamelCase(" "+s);["get","set","has"].forEach((r=>{Object.defineProperty(e,r+t,{value:function(e,t,n){return this[r].call(this,s,e,t,n)},configurable:!0})}))}(t,e),s[r]=!0)}return D.isArray(e)?e.forEach(r):r(e),this}}Fe.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]),D.reduceDescriptors(Fe.prototype,(({value:e},s)=>{let t=s[0].toUpperCase()+s.slice(1);return{get:()=>e,set(e){this[t]=e}}})),D.freezeMethods(Fe);const Te=Fe;function Ne(e,s){const t=this||fe,r=s||t,n=Te.from(r.headers);let o=r.data;return D.forEach(e,(function(e){o=e.call(t,o,n.normalize(),s?s.status:void 0)})),n.normalize(),o}function Ce(e){return!(!e||!e.__CANCEL__)}function Se(e,s,t){J.call(this,null==e?"canceled":e,J.ERR_CANCELED,s,t),this.name="CanceledError"}D.inherits(Se,J,{__CANCEL__:!0});const xe=Se;const be=ge.hasStandardBrowserEnv?{write(e,s,t,r,n,o){const i=[e+"="+encodeURIComponent(s)];D.isNumber(t)&&i.push("expires="+new Date(t).toGMTString()),D.isString(r)&&i.push("path="+r),D.isString(n)&&i.push("domain="+n),!0===o&&i.push("secure"),document.cookie=i.join("; ")},read(e){const s=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return s?decodeURIComponent(s[3]):null},remove(e){this.write(e,"",Date.now()-864e5)}}:{write(){},read:()=>null,remove(){}};function Me(e,s){return e&&!/^([a-z][a-z\d+\-.]*:)?\/\//i.test(s)?function(e,s){return s?e.replace(/\/?\/$/,"")+"/"+s.replace(/^\/+/,""):e}(e,s):s}const Le=ge.hasStandardBrowserEnv?function(){const e=/(msie|trident)/i.test(navigator.userAgent),s=document.createElement("a");let t;function r(t){let r=t;return e&&(s.setAttribute("href",r),r=s.href),s.setAttribute("href",r),{href:s.href,protocol:s.protocol?s.protocol.replace(/:$/,""):"",host:s.host,search:s.search?s.search.replace(/^\?/,""):"",hash:s.hash?s.hash.replace(/^#/,""):"",hostname:s.hostname,port:s.port,pathname:"/"===s.pathname.charAt(0)?s.pathname:"/"+s.pathname}}return t=r(window.location.href),function(e){const s=D.isString(e)?r(e):e;return s.protocol===t.protocol&&s.host===t.host}}():function(){return!0};const ke=function(e,s){e=e||10;const t=new Array(e),r=new Array(e);let n,o=0,i=0;return s=void 0!==s?s:1e3,function(a){const l=Date.now(),m=r[i];n||(n=l),t[o]=a,r[o]=l;let d=i,g=0;for(;d!==o;)g+=t[d++],d%=e;if(o=(o+1)%e,o===i&&(i=(i+1)%e),l-n<s)return;const c=m&&l-m;return c?Math.round(1e3*g/c):void 0}};function Re(e,s){let t=0;const r=ke(50,250);return n=>{const o=n.loaded,i=n.lengthComputable?n.total:void 0,a=o-t,l=r(a);t=o;const m={loaded:o,total:i,progress:i?o/i:void 0,bytes:a,rate:l||void 0,estimated:l&&i&&o<=i?(i-o)/l:void 0,event:n};m[s?"download":"upload"]=!0,e(m)}}const Ae={http:null,xhr:"undefined"!=typeof XMLHttpRequest&&function(e){return new Promise((function(s,t){let r=e.data;const n=Te.from(e.headers).normalize();let o,i,{responseType:a,withXSRFToken:l}=e;function m(){e.cancelToken&&e.cancelToken.unsubscribe(o),e.signal&&e.signal.removeEventListener("abort",o)}if(D.isFormData(r))if(ge.hasStandardBrowserEnv||ge.hasStandardBrowserWebWorkerEnv)n.setContentType(!1);else if(!1!==(i=n.getContentType())){const[e,...s]=i?i.split(";").map((e=>e.trim())).filter(Boolean):[];n.setContentType([e||"multipart/form-data",...s].join("; "))}let d=new XMLHttpRequest;if(e.auth){const s=e.auth.username||"",t=e.auth.password?unescape(encodeURIComponent(e.auth.password)):"";n.set("Authorization","Basic "+btoa(s+":"+t))}const g=Me(e.baseURL,e.url);function c(){if(!d)return;const r=Te.from("getAllResponseHeaders"in d&&d.getAllResponseHeaders());!function(e,s,t){const r=t.config.validateStatus;t.status&&r&&!r(t.status)?s(new J("Request failed with status code "+t.status,[J.ERR_BAD_REQUEST,J.ERR_BAD_RESPONSE][Math.floor(t.status/100)-4],t.config,t.request,t)):e(t)}((function(e){s(e),m()}),(function(e){t(e),m()}),{data:a&&"text"!==a&&"json"!==a?d.response:d.responseText,status:d.status,statusText:d.statusText,headers:r,config:e,request:d}),d=null}if(d.open(e.method.toUpperCase(),re(g,e.params,e.paramsSerializer),!0),d.timeout=e.timeout,"onloadend"in d?d.onloadend=c:d.onreadystatechange=function(){d&&4===d.readyState&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))&&setTimeout(c)},d.onabort=function(){d&&(t(new J("Request aborted",J.ECONNABORTED,e,d)),d=null)},d.onerror=function(){t(new J("Network Error",J.ERR_NETWORK,e,d)),d=null},d.ontimeout=function(){let s=e.timeout?"timeout of "+e.timeout+"ms exceeded":"timeout exceeded";const r=e.transitional||oe;e.timeoutErrorMessage&&(s=e.timeoutErrorMessage),t(new J(s,r.clarifyTimeoutError?J.ETIMEDOUT:J.ECONNABORTED,e,d)),d=null},ge.hasStandardBrowserEnv&&(l&&D.isFunction(l)&&(l=l(e)),l||!1!==l&&Le(g))){const s=e.xsrfHeaderName&&e.xsrfCookieName&&be.read(e.xsrfCookieName);s&&n.set(e.xsrfHeaderName,s)}void 0===r&&n.setContentType(null),"setRequestHeader"in d&&D.forEach(n.toJSON(),(function(e,s){d.setRequestHeader(s,e)})),D.isUndefined(e.withCredentials)||(d.withCredentials=!!e.withCredentials),a&&"json"!==a&&(d.responseType=e.responseType),"function"==typeof e.onDownloadProgress&&d.addEventListener("progress",Re(e.onDownloadProgress,!0)),"function"==typeof e.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",Re(e.onUploadProgress)),(e.cancelToken||e.signal)&&(o=s=>{d&&(t(!s||s.type?new xe(null,e,d):s),d.abort(),d=null)},e.cancelToken&&e.cancelToken.subscribe(o),e.signal&&(e.signal.aborted?o():e.signal.addEventListener("abort",o)));const u=function(e){const s=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return s&&s[1]||""}(g);u&&-1===ge.protocols.indexOf(u)?t(new J("Unsupported protocol "+u+":",J.ERR_BAD_REQUEST,e)):d.send(r||null)}))}};D.forEach(Ae,((e,s)=>{if(e){try{Object.defineProperty(e,"name",{value:s})}catch(e){}Object.defineProperty(e,"adapterName",{value:s})}}));const Ee=e=>`- ${e}`,_e=e=>D.isFunction(e)||null===e||!1===e,Oe=e=>{e=D.isArray(e)?e:[e];const{length:s}=e;let t,r;const n={};for(let o=0;o<s;o++){let s;if(t=e[o],r=t,!_e(t)&&(r=Ae[(s=String(t)).toLowerCase()],void 0===r))throw new J(`Unknown adapter '${s}'`);if(r)break;n[s||"#"+o]=r}if(!r){const e=Object.entries(n).map((([e,s])=>`adapter ${e} `+(!1===s?"is not supported by the environment":"is not available in the build")));let t=s?e.length>1?"since :\n"+e.map(Ee).join("\n"):" "+Ee(e[0]):"as no adapter specified";throw new J("There is no suitable adapter to dispatch the request "+t,"ERR_NOT_SUPPORT")}return r};function Ue(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new xe(null,e)}function Ie(e){Ue(e),e.headers=Te.from(e.headers),e.data=Ne.call(e,e.transformRequest),-1!==["post","put","patch"].indexOf(e.method)&&e.headers.setContentType("application/x-www-form-urlencoded",!1);return Oe(e.adapter||fe.adapter)(e).then((function(s){return Ue(e),s.data=Ne.call(e,e.transformResponse,s),s.headers=Te.from(s.headers),s}),(function(s){return Ce(s)||(Ue(e),s&&s.response&&(s.response.data=Ne.call(e,e.transformResponse,s.response),s.response.headers=Te.from(s.response.headers))),Promise.reject(s)}))}const Pe=e=>e instanceof Te?e.toJSON():e;function je(e,s){s=s||{};const t={};function r(e,s,t){return D.isPlainObject(e)&&D.isPlainObject(s)?D.merge.call({caseless:t},e,s):D.isPlainObject(s)?D.merge({},s):D.isArray(s)?s.slice():s}function n(e,s,t){return D.isUndefined(s)?D.isUndefined(e)?void 0:r(void 0,e,t):r(e,s,t)}function o(e,s){if(!D.isUndefined(s))return r(void 0,s)}function i(e,s){return D.isUndefined(s)?D.isUndefined(e)?void 0:r(void 0,e):r(void 0,s)}function a(t,n,o){return o in s?r(t,n):o in e?r(void 0,t):void 0}const l={url:o,method:o,data:o,baseURL:i,transformRequest:i,transformResponse:i,paramsSerializer:i,timeout:i,timeoutMessage:i,withCredentials:i,withXSRFToken:i,adapter:i,responseType:i,xsrfCookieName:i,xsrfHeaderName:i,onUploadProgress:i,onDownloadProgress:i,decompress:i,maxContentLength:i,maxBodyLength:i,beforeRedirect:i,transport:i,httpAgent:i,httpsAgent:i,cancelToken:i,socketPath:i,responseEncoding:i,validateStatus:a,headers:(e,s)=>n(Pe(e),Pe(s),!0)};return D.forEach(Object.keys(Object.assign({},e,s)),(function(r){const o=l[r]||n,i=o(e[r],s[r],r);D.isUndefined(i)&&o!==a||(t[r]=i)})),t}const Be="1.6.7",ze={};["object","boolean","number","function","string","symbol"].forEach(((e,s)=>{ze[e]=function(t){return typeof t===e||"a"+(s<1?"n ":" ")+e}}));const De={};ze.transitional=function(e,s,t){function r(e,s){return"[Axios v1.6.7] Transitional option '"+e+"'"+s+(t?". "+t:"")}return(t,n,o)=>{if(!1===e)throw new J(r(n," has been removed"+(s?" in "+s:"")),J.ERR_DEPRECATED);return s&&!De[n]&&(De[n]=!0,console.warn(r(n," has been deprecated since v"+s+" and will be removed in the near future"))),!e||e(t,n,o)}};const $e={assertOptions:function(e,s,t){if("object"!=typeof e)throw new J("options must be an object",J.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let n=r.length;for(;n-- >0;){const o=r[n],i=s[o];if(i){const s=e[o],t=void 0===s||i(s,o,e);if(!0!==t)throw new J("option "+o+" must be "+t,J.ERR_BAD_OPTION_VALUE)}else if(!0!==t)throw new J("Unknown option "+o,J.ERR_BAD_OPTION)}},validators:ze},He=$e.validators;class Ge{constructor(e){this.defaults=e,this.interceptors={request:new ne,response:new ne}}async request(e,s){try{return await this._request(e,s)}catch(e){if(e instanceof Error){let s;Error.captureStackTrace?Error.captureStackTrace(s={}):s=new Error;const t=s.stack?s.stack.replace(/^.+\n/,""):"";e.stack?t&&!String(e.stack).endsWith(t.replace(/^.+\n.+\n/,""))&&(e.stack+="\n"+t):e.stack=t}throw e}}_request(e,s){"string"==typeof e?(s=s||{}).url=e:s=e||{},s=je(this.defaults,s);const{transitional:t,paramsSerializer:r,headers:n}=s;void 0!==t&&$e.assertOptions(t,{silentJSONParsing:He.transitional(He.boolean),forcedJSONParsing:He.transitional(He.boolean),clarifyTimeoutError:He.transitional(He.boolean)},!1),null!=r&&(D.isFunction(r)?s.paramsSerializer={serialize:r}:$e.assertOptions(r,{encode:He.function,serialize:He.function},!0)),s.method=(s.method||this.defaults.method||"get").toLowerCase();let o=n&&D.merge(n.common,n[s.method]);n&&D.forEach(["delete","get","head","post","put","patch","common"],(e=>{delete n[e]})),s.headers=Te.concat(o,n);const i=[];let a=!0;this.interceptors.request.forEach((function(e){"function"==typeof e.runWhen&&!1===e.runWhen(s)||(a=a&&e.synchronous,i.unshift(e.fulfilled,e.rejected))}));const l=[];let m;this.interceptors.response.forEach((function(e){l.push(e.fulfilled,e.rejected)}));let d,g=0;if(!a){const e=[Ie.bind(this),void 0];for(e.unshift.apply(e,i),e.push.apply(e,l),d=e.length,m=Promise.resolve(s);g<d;)m=m.then(e[g++],e[g++]);return m}d=i.length;let c=s;for(g=0;g<d;){const e=i[g++],s=i[g++];try{c=e(c)}catch(e){s.call(this,e);break}}try{m=Ie.call(this,c)}catch(e){return Promise.reject(e)}for(g=0,d=l.length;g<d;)m=m.then(l[g++],l[g++]);return m}getUri(e){return re(Me((e=je(this.defaults,e)).baseURL,e.url),e.params,e.paramsSerializer)}}D.forEach(["delete","get","head","options"],(function(e){Ge.prototype[e]=function(s,t){return this.request(je(t||{},{method:e,url:s,data:(t||{}).data}))}})),D.forEach(["post","put","patch"],(function(e){function s(s){return function(t,r,n){return this.request(je(n||{},{method:e,headers:s?{"Content-Type":"multipart/form-data"}:{},url:t,data:r}))}}Ge.prototype[e]=s(),Ge.prototype[e+"Form"]=s(!0)}));const Je=Ge;class Ve{constructor(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");let s;this.promise=new Promise((function(e){s=e}));const t=this;this.promise.then((e=>{if(!t._listeners)return;let s=t._listeners.length;for(;s-- >0;)t._listeners[s](e);t._listeners=null})),this.promise.then=e=>{let s;const r=new Promise((e=>{t.subscribe(e),s=e})).then(e);return r.cancel=function(){t.unsubscribe(s)},r},e((function(e,r,n){t.reason||(t.reason=new xe(e,r,n),s(t.reason))}))}throwIfRequested(){if(this.reason)throw this.reason}subscribe(e){this.reason?e(this.reason):this._listeners?this._listeners.push(e):this._listeners=[e]}unsubscribe(e){if(!this._listeners)return;const s=this._listeners.indexOf(e);-1!==s&&this._listeners.splice(s,1)}static source(){let e;return{token:new Ve((function(s){e=s})),cancel:e}}}const qe=Ve;const We={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(We).forEach((([e,s])=>{We[s]=e}));const Ke=We;const Ye=function e(s){const t=new Je(s),r=a(Je.prototype.request,t);return D.extend(r,Je.prototype,t,{allOwnKeys:!0}),D.extend(r,t,null,{allOwnKeys:!0}),r.create=function(t){return e(je(s,t))},r}(fe);Ye.Axios=Je,Ye.CanceledError=xe,Ye.CancelToken=qe,Ye.isCancel=Ce,Ye.VERSION=Be,Ye.toFormData=X,Ye.AxiosError=J,Ye.Cancel=Ye.CanceledError,Ye.all=function(e){return Promise.all(e)},Ye.spread=function(e){return function(s){return e.apply(null,s)}},Ye.isAxiosError=function(e){return D.isObject(e)&&!0===e.isAxiosError},Ye.mergeConfig=je,Ye.AxiosHeaders=Te,Ye.formToJSON=e=>ce(D.isHTMLForm(e)?new FormData(e):e),Ye.getAdapter=Oe,Ye.HttpStatusCode=Ke,Ye.default=Ye;const Xe=Ye;var Ze=function(){return Ze=Object.assign||function(e){for(var s,t=1,r=arguments.length;t<r;t++)for(var n in s=arguments[t])Object.prototype.hasOwnProperty.call(s,n)&&(e[n]=s[n]);return e},Ze.apply(this,arguments)};function Qe(e,s,t,r){return new(t||(t=Promise))((function(n,o){function i(e){try{l(r.next(e))}catch(e){o(e)}}function a(e){try{l(r.throw(e))}catch(e){o(e)}}function l(e){var s;e.done?n(e.value):(s=e.value,s instanceof t?s:new t((function(e){e(s)}))).then(i,a)}l((r=r.apply(e,s||[])).next())}))}function es(e,s){var t,r,n,o,i={label:0,sent:function(){if(1&n[0])throw n[1];return n[1]},trys:[],ops:[]};return o={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(o[Symbol.iterator]=function(){return this}),o;function a(a){return function(l){return function(a){if(t)throw new TypeError("Generator is already executing.");for(;o&&(o=0,a[0]&&(i=0)),i;)try{if(t=1,r&&(n=2&a[0]?r.return:a[0]?r.throw||((n=r.return)&&n.call(r),0):r.next)&&!(n=n.call(r,a[1])).done)return n;switch(r=0,n&&(a=[2&a[0],n.value]),a[0]){case 0:case 1:n=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,r=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(!(n=i.trys,(n=n.length>0&&n[n.length-1])||6!==a[0]&&2!==a[0])){i=0;continue}if(3===a[0]&&(!n||a[1]>n[0]&&a[1]<n[3])){i.label=a[1];break}if(6===a[0]&&i.label<n[1]){i.label=n[1],n=a;break}if(n&&i.label<n[2]){i.label=n[2],i.ops.push(a);break}n[2]&&i.ops.pop(),i.trys.pop();continue}a=s.call(e,i)}catch(e){a=[6,e],r=0}finally{t=n=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}([a,l])}}}"function"==typeof SuppressedError&&SuppressedError;var ss,ts=Symbol("csrf-retry"),rs=Symbol("retryDelay"),ns=Xe.create({headers:{requesttoken:null!==(ss=(0,i.IH)())&&void 0!==ss?ss:""}}),os=Object.assign(ns,{CancelToken:Xe.CancelToken,isCancel:Xe.isCancel});os.interceptors.response.use((function(e){return e}),function(e){return function(s){return Qe(void 0,void 0,void 0,(function(){var t,n,o,i,a,l,m;return es(this,(function(d){switch(d.label){case 0:return t=s.config,n=s.response,o=s.request,i=null==o?void 0:o.responseURL,412!==(null==n?void 0:n.status)||"CSRF check failed"!==(null===(m=null==n?void 0:n.data)||void 0===m?void 0:m.message)||void 0!==t[ts]?[3,2]:(console.warn("Request to ".concat(i," failed because of a CSRF mismatch. Fetching a new token")),[4,e.get((0,r.generateUrl)("/csrftoken"))]);case 1:return a=d.sent().data.token,console.debug("New request token ".concat(a," fetched")),e.defaults.headers.requesttoken=a,[2,e(Ze(Ze({},t),(l={headers:Ze(Ze({},t.headers),{requesttoken:a})},l[ts]=!0,l)))];case 2:return[2,Promise.reject(s)]}}))}))}}(os)),os.interceptors.response.use((function(e){return e}),function(e){return function(s){return Qe(void 0,void 0,void 0,(function(){var t,r,n,o,i,a,l,m,d;return es(this,(function(g){switch(g.label){case 0:return t=s.config,r=s.response,n=s.request,o=null==n?void 0:n.responseURL,i=null==r?void 0:r.status,a=null==r?void 0:r.headers,503===i&&"1"===a["x-nextcloud-maintenance-mode"]&&t.retryIfMaintenanceMode&&(!t[rs]||t[rs]<=32)?(l=2*(null!==(d=t[rs])&&void 0!==d?d:1),console.warn("Request to ".concat(o," failed because of maintenance mode. Retrying in ").concat(l,"s")),[4,new Promise((function(e){setTimeout(e,1e3*l)}))]):[3,2];case 1:return g.sent(),[2,e(Ze(Ze({},t),(m={},m[rs]=l,m)))];case 2:return[2,Promise.reject(s)]}}))}))}}(os)),os.interceptors.response.use((function(e){return e}),(function(e){return Qe(void 0,void 0,void 0,(function(){var s,t,r,n,o;return es(this,(function(i){return s=e.config,t=e.response,r=e.request,n=null==r?void 0:r.responseURL,401===(null==t?void 0:t.status)&&"Current user is not logged in"===(null===(o=null==t?void 0:t.data)||void 0===o?void 0:o.message)&&s.reloadExpiredSession&&(null===window||void 0===window?void 0:window.location)&&(console.error("Request to ".concat(n," failed because the user session expired. Reloading the page …")),window.location.reload()),[2,Promise.reject(e)]}))}))})),(0,i._S)((function(e){ns.defaults.headers.requesttoken=e}));var is=function(){return ls()?(0,r.generateRemoteUrl)("webdav").replace("/remote.php","/public.php"):(0,r.generateRemoteUrl)("dav".concat(as()))},as=function(){var e;if(ls())throw new Error("No user logged in");return"/files/".concat(null===(e=(0,i.ts)())||void 0===e?void 0:e.uid)},ls=function(){return!(0,i.ts)()},ms=function(){var e=document.getElementById("sharingToken");return e&&e.value};function ds(e){return ds="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ds(e)}function gs(){gs=function(){return s};var e,s={},t=Object.prototype,r=t.hasOwnProperty,n=Object.defineProperty||function(e,s,t){e[s]=t.value},o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",l=o.toStringTag||"@@toStringTag";function m(e,s,t){return Object.defineProperty(e,s,{value:t,enumerable:!0,configurable:!0,writable:!0}),e[s]}try{m({},"")}catch(e){m=function(e,s,t){return e[s]=t}}function d(e,s,t,r){var o=s&&s.prototype instanceof y?s:y,i=Object.create(o.prototype),a=new R(r||[]);return n(i,"_invoke",{value:b(e,t,a)}),i}function g(e,s,t){try{return{type:"normal",arg:e.call(s,t)}}catch(e){return{type:"throw",arg:e}}}s.wrap=d;var c="suspendedStart",u="suspendedYield",f="executing",p="completed",h={};function y(){}function w(){}function v(){}var F={};m(F,i,(function(){return this}));var T=Object.getPrototypeOf,N=T&&T(T(A([])));N&&N!==t&&r.call(N,i)&&(F=N);var C=v.prototype=y.prototype=Object.create(F);function S(e){["next","throw","return"].forEach((function(s){m(e,s,(function(e){return this._invoke(s,e)}))}))}function x(e,s){function t(n,o,i,a){var l=g(e[n],e,o);if("throw"!==l.type){var m=l.arg,d=m.value;return d&&"object"==ds(d)&&r.call(d,"__await")?s.resolve(d.__await).then((function(e){t("next",e,i,a)}),(function(e){t("throw",e,i,a)})):s.resolve(d).then((function(e){m.value=e,i(m)}),(function(e){return t("throw",e,i,a)}))}a(l.arg)}var o;n(this,"_invoke",{value:function(e,r){function n(){return new s((function(s,n){t(e,r,s,n)}))}return o=o?o.then(n,n):n()}})}function b(s,t,r){var n=c;return function(o,i){if(n===f)throw new Error("Generator is already running");if(n===p){if("throw"===o)throw i;return{value:e,done:!0}}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var l=M(a,r);if(l){if(l===h)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(n===c)throw n=p,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n=f;var m=g(s,t,r);if("normal"===m.type){if(n=r.done?p:u,m.arg===h)continue;return{value:m.arg,done:r.done}}"throw"===m.type&&(n=p,r.method="throw",r.arg=m.arg)}}}function M(s,t){var r=t.method,n=s.iterator[r];if(n===e)return t.delegate=null,"throw"===r&&s.iterator.return&&(t.method="return",t.arg=e,M(s,t),"throw"===t.method)||"return"!==r&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+r+"' method")),h;var o=g(n,s.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,h;var i=o.arg;return i?i.done?(t[s.resultName]=i.value,t.next=s.nextLoc,"return"!==t.method&&(t.method="next",t.arg=e),t.delegate=null,h):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,h)}function L(e){var s={tryLoc:e[0]};1 in e&&(s.catchLoc=e[1]),2 in e&&(s.finallyLoc=e[2],s.afterLoc=e[3]),this.tryEntries.push(s)}function k(e){var s=e.completion||{};s.type="normal",delete s.arg,e.completion=s}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(L,this),this.reset(!0)}function A(s){if(s||""===s){var t=s[i];if(t)return t.call(s);if("function"==typeof s.next)return s;if(!isNaN(s.length)){var n=-1,o=function t(){for(;++n<s.length;)if(r.call(s,n))return t.value=s[n],t.done=!1,t;return t.value=e,t.done=!0,t};return o.next=o}}throw new TypeError(ds(s)+" is not iterable")}return w.prototype=v,n(C,"constructor",{value:v,configurable:!0}),n(v,"constructor",{value:w,configurable:!0}),w.displayName=m(v,l,"GeneratorFunction"),s.isGeneratorFunction=function(e){var s="function"==typeof e&&e.constructor;return!!s&&(s===w||"GeneratorFunction"===(s.displayName||s.name))},s.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,v):(e.__proto__=v,m(e,l,"GeneratorFunction")),e.prototype=Object.create(C),e},s.awrap=function(e){return{__await:e}},S(x.prototype),m(x.prototype,a,(function(){return this})),s.AsyncIterator=x,s.async=function(e,t,r,n,o){void 0===o&&(o=Promise);var i=new x(d(e,t,r,n),o);return s.isGeneratorFunction(t)?i:i.next().then((function(e){return e.done?e.value:i.next()}))},S(C),m(C,l,"Generator"),m(C,i,(function(){return this})),m(C,"toString",(function(){return"[object Generator]"})),s.keys=function(e){var s=Object(e),t=[];for(var r in s)t.push(r);return t.reverse(),function e(){for(;t.length;){var r=t.pop();if(r in s)return e.value=r,e.done=!1,e}return e.done=!0,e}},s.values=A,R.prototype={constructor:R,reset:function(s){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(k),!s)for(var t in this)"t"===t.charAt(0)&&r.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=e)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(s){if(this.done)throw s;var t=this;function n(r,n){return a.type="throw",a.arg=s,t.next=r,n&&(t.method="next",t.arg=e),!!n}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return n("end");if(i.tryLoc<=this.prev){var l=r.call(i,"catchLoc"),m=r.call(i,"finallyLoc");if(l&&m){if(this.prev<i.catchLoc)return n(i.catchLoc,!0);if(this.prev<i.finallyLoc)return n(i.finallyLoc)}else if(l){if(this.prev<i.catchLoc)return n(i.catchLoc,!0)}else{if(!m)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return n(i.finallyLoc)}}}},abrupt:function(e,s){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc<=this.prev&&r.call(n,"finallyLoc")&&this.prev<n.finallyLoc){var o=n;break}}o&&("break"===e||"continue"===e)&&o.tryLoc<=s&&s<=o.finallyLoc&&(o=null);var i=o?o.completion:{};return i.type=e,i.arg=s,o?(this.method="next",this.next=o.finallyLoc,h):this.complete(i)},complete:function(e,s){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&s&&(this.next=s),h},finish:function(e){for(var s=this.tryEntries.length-1;s>=0;--s){var t=this.tryEntries[s];if(t.finallyLoc===e)return this.complete(t.completion,t.afterLoc),k(t),h}},catch:function(e){for(var s=this.tryEntries.length-1;s>=0;--s){var t=this.tryEntries[s];if(t.tryLoc===e){var r=t.completion;if("throw"===r.type){var n=r.arg;k(t)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(s,t,r){return this.delegate={iterator:A(s),resultName:t,nextLoc:r},"next"===this.method&&(this.arg=e),h}},s}function cs(e,s,t,r,n,o,i){try{var a=e[o](i),l=a.value}catch(e){return void t(e)}a.done?s(l):Promise.resolve(l).then(r,n)}function us(){var e;return e=gs().mark((function e(s,t){var r,n,o;return gs().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return r=is()+s,n=new Blob([t],{type:"application/pdf"}),o={headers:{"Content-Type":"application/pdf",requesttoken:(0,i.IH)()}},ms()&&(o.auth={username:ms()}),e.abrupt("return",os.put(r,n,o));case 5:case"end":return e.stop()}}),e)})),us=function(){var s=this,t=arguments;return new Promise((function(r,n){var o=e.apply(s,t);function i(e){cs(o,r,n,i,a,"next",e)}function a(e){cs(o,r,n,i,a,"throw",e)}i(void 0)}))},us.apply(this,arguments)}var fs=document.getElementById("hideDownload");var ps=document.getElementById("mimetype");var hs=document.getElementById("isPublic");function ys(e){return ys="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ys(e)}function ws(){ws=function(){return s};var e,s={},t=Object.prototype,r=t.hasOwnProperty,n=Object.defineProperty||function(e,s,t){e[s]=t.value},o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",l=o.toStringTag||"@@toStringTag";function m(e,s,t){return Object.defineProperty(e,s,{value:t,enumerable:!0,configurable:!0,writable:!0}),e[s]}try{m({},"")}catch(e){m=function(e,s,t){return e[s]=t}}function d(e,s,t,r){var o=s&&s.prototype instanceof y?s:y,i=Object.create(o.prototype),a=new R(r||[]);return n(i,"_invoke",{value:b(e,t,a)}),i}function g(e,s,t){try{return{type:"normal",arg:e.call(s,t)}}catch(e){return{type:"throw",arg:e}}}s.wrap=d;var c="suspendedStart",u="suspendedYield",f="executing",p="completed",h={};function y(){}function w(){}function v(){}var F={};m(F,i,(function(){return this}));var T=Object.getPrototypeOf,N=T&&T(T(A([])));N&&N!==t&&r.call(N,i)&&(F=N);var C=v.prototype=y.prototype=Object.create(F);function S(e){["next","throw","return"].forEach((function(s){m(e,s,(function(e){return this._invoke(s,e)}))}))}function x(e,s){function t(n,o,i,a){var l=g(e[n],e,o);if("throw"!==l.type){var m=l.arg,d=m.value;return d&&"object"==ys(d)&&r.call(d,"__await")?s.resolve(d.__await).then((function(e){t("next",e,i,a)}),(function(e){t("throw",e,i,a)})):s.resolve(d).then((function(e){m.value=e,i(m)}),(function(e){return t("throw",e,i,a)}))}a(l.arg)}var o;n(this,"_invoke",{value:function(e,r){function n(){return new s((function(s,n){t(e,r,s,n)}))}return o=o?o.then(n,n):n()}})}function b(s,t,r){var n=c;return function(o,i){if(n===f)throw new Error("Generator is already running");if(n===p){if("throw"===o)throw i;return{value:e,done:!0}}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var l=M(a,r);if(l){if(l===h)continue;return l}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(n===c)throw n=p,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n=f;var m=g(s,t,r);if("normal"===m.type){if(n=r.done?p:u,m.arg===h)continue;return{value:m.arg,done:r.done}}"throw"===m.type&&(n=p,r.method="throw",r.arg=m.arg)}}}function M(s,t){var r=t.method,n=s.iterator[r];if(n===e)return t.delegate=null,"throw"===r&&s.iterator.return&&(t.method="return",t.arg=e,M(s,t),"throw"===t.method)||"return"!==r&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+r+"' method")),h;var o=g(n,s.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,h;var i=o.arg;return i?i.done?(t[s.resultName]=i.value,t.next=s.nextLoc,"return"!==t.method&&(t.method="next",t.arg=e),t.delegate=null,h):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,h)}function L(e){var s={tryLoc:e[0]};1 in e&&(s.catchLoc=e[1]),2 in e&&(s.finallyLoc=e[2],s.afterLoc=e[3]),this.tryEntries.push(s)}function k(e){var s=e.completion||{};s.type="normal",delete s.arg,e.completion=s}function R(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(L,this),this.reset(!0)}function A(s){if(s||""===s){var t=s[i];if(t)return t.call(s);if("function"==typeof s.next)return s;if(!isNaN(s.length)){var n=-1,o=function t(){for(;++n<s.length;)if(r.call(s,n))return t.value=s[n],t.done=!1,t;return t.value=e,t.done=!0,t};return o.next=o}}throw new TypeError(ys(s)+" is not iterable")}return w.prototype=v,n(C,"constructor",{value:v,configurable:!0}),n(v,"constructor",{value:w,configurable:!0}),w.displayName=m(v,l,"GeneratorFunction"),s.isGeneratorFunction=function(e){var s="function"==typeof e&&e.constructor;return!!s&&(s===w||"GeneratorFunction"===(s.displayName||s.name))},s.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,v):(e.__proto__=v,m(e,l,"GeneratorFunction")),e.prototype=Object.create(C),e},s.awrap=function(e){return{__await:e}},S(x.prototype),m(x.prototype,a,(function(){return this})),s.AsyncIterator=x,s.async=function(e,t,r,n,o){void 0===o&&(o=Promise);var i=new x(d(e,t,r,n),o);return s.isGeneratorFunction(t)?i:i.next().then((function(e){return e.done?e.value:i.next()}))},S(C),m(C,l,"Generator"),m(C,i,(function(){return this})),m(C,"toString",(function(){return"[object Generator]"})),s.keys=function(e){var s=Object(e),t=[];for(var r in s)t.push(r);return t.reverse(),function e(){for(;t.length;){var r=t.pop();if(r in s)return e.value=r,e.done=!1,e}return e.done=!0,e}},s.values=A,R.prototype={constructor:R,reset:function(s){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(k),!s)for(var t in this)"t"===t.charAt(0)&&r.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=e)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(s){if(this.done)throw s;var t=this;function n(r,n){return a.type="throw",a.arg=s,t.next=r,n&&(t.method="next",t.arg=e),!!n}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return n("end");if(i.tryLoc<=this.prev){var l=r.call(i,"catchLoc"),m=r.call(i,"finallyLoc");if(l&&m){if(this.prev<i.catchLoc)return n(i.catchLoc,!0);if(this.prev<i.finallyLoc)return n(i.finallyLoc)}else if(l){if(this.prev<i.catchLoc)return n(i.catchLoc,!0)}else{if(!m)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return n(i.finallyLoc)}}}},abrupt:function(e,s){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc<=this.prev&&r.call(n,"finallyLoc")&&this.prev<n.finallyLoc){var o=n;break}}o&&("break"===e||"continue"===e)&&o.tryLoc<=s&&s<=o.finallyLoc&&(o=null);var i=o?o.completion:{};return i.type=e,i.arg=s,o?(this.method="next",this.next=o.finallyLoc,h):this.complete(i)},complete:function(e,s){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&s&&(this.next=s),h},finish:function(e){for(var s=this.tryEntries.length-1;s>=0;--s){var t=this.tryEntries[s];if(t.finallyLoc===e)return this.complete(t.completion,t.afterLoc),k(t),h}},catch:function(e){for(var s=this.tryEntries.length-1;s>=0;--s){var t=this.tryEntries[s];if(t.tryLoc===e){var r=t.completion;if("throw"===r.type){var n=r.arg;k(t)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(s,t,r){return this.delegate={iterator:A(s),resultName:t,nextLoc:r},"next"===this.method&&(this.arg=e),h}},s}function vs(e,s,t,r,n,o,i){try{var a=e[o](i),l=a.value}catch(e){return void t(e)}a.done?s(l):Promise.resolve(l).then(r,n)}const Fs={name:"PDFView",data:function(){return{PDFViewerApplication:null}},computed:{iframeSrc:function(){var e;return(0,r.generateUrl)("/apps/files_pdfviewer/?file={file}&canDownload={canDownload}",{canDownload:!fs||fs&&"true"!==fs.value?1:0,file:null!==(e=this.source)&&void 0!==e?e:this.davPath})},file:function(){var e=this;return this.fileList.find((function(s){return s.fileid===e.fileid}))},isEditable:function(){var e;return(null===(e=this.file)||void 0===e||null===(e=e.permissions)||void 0===e?void 0:e.indexOf("W"))>=0}},mounted:function(){var e,s=this;return(e=ws().mark((function e(){return ws().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:document.addEventListener("webviewerloaded",s.handleWebviewerloaded),hs&&"1"===hs.value&&ps&&"application/pdf"===ps.value&&(s.$refs.iframe.style.height="100%",s.$refs.iframe.style.position="absolute",s.$refs.iframe.style.marginTop="unset"),s.doneLoading(),s.$nextTick((function(){this.$el.focus()})),s.isEditable&&s.$refs.iframe.addEventListener("load",(function(){s.getDownloadElement().removeAttribute("hidden"),s.getEditorModeButtonsElement().removeAttribute("hidden")}));case 5:case"end":return e.stop()}}),e)})),function(){var s=this,t=arguments;return new Promise((function(r,n){var o=e.apply(s,t);function i(e){vs(o,r,n,i,a,"next",e)}function a(e){vs(o,r,n,i,a,"throw",e)}i(void 0)}))})()},beforeDestroy:function(){document.removeEventListener("webviewerloaded",this.handleWebviewerloaded)},methods:{getIframeDocument:function(){return this.$refs.iframe.contentDocument},getDownloadElement:function(){return this.getIframeDocument().getElementById("download")},getEditorModeButtonsElement:function(){return this.getIframeDocument().getElementById("editorModeButtons")},handleWebviewerloaded:function(){var e=arguments,s=this,t=this.$refs.iframe.contentWindow.PDFViewerApplicationOptions;this.isEditable||(t.set("disablePreferences",!0),t.set("annotationMode",1)),this.$refs.iframe.contentWindow.PDFViewerApplication.initializedPromise.then((function(){s.PDFViewerApplication=s.$refs.iframe.contentWindow.PDFViewerApplication,s.PDFViewerApplication.save=s.handleSave,s.PDFViewerApplication.eventBus.on("documentinit",(function(){var t=s.PDFViewerApplication.pdfDocument.annotationStorage,r=t.onSetModified;t.onSetModified=function(){r.apply(null,e),s.getDownloadElement().removeAttribute("disabled")}}))}))},handleSave:function(){var e=this,r=this.getDownloadElement();r.setAttribute("disabled","disabled"),r.classList.add("icon-loading-small"),n.info("PDF Document with annotation is being saved"),this.PDFViewerApplication.pdfDocument.saveDocument().then((function(s){return function(e,s){return us.apply(this,arguments)}(e.file.filename,s)})).then((function(){n.info("File uploaded successfully")})).catch((function(e){n.error("Error uploading file:",e),(0,s.i)(t("files_pdfviewer","File upload failed.")),r.removeAttribute("disabled")})).finally((function(){r.classList.remove("icon-loading-small")}))}}};var Ts=o(3379),Ns=o.n(Ts),Cs=o(7795),Ss=o.n(Cs),xs=o(569),bs=o.n(xs),Ms=o(3565),Ls=o.n(Ms),ks=o(9216),Rs=o.n(ks),As=o(4589),Es=o.n(As),_s=o(9695),Os={};Os.styleTagTransform=Es(),Os.setAttributes=Ls(),Os.insert=bs().bind(null,"head"),Os.domAPI=Ss(),Os.insertStyleElement=Rs();Ns()(_s.Z,Os);_s.Z&&_s.Z.locals&&_s.Z.locals;const Us=(0,o(1900).Z)(Fs,(function(){return(0,this._self._c)("iframe",{ref:"iframe",attrs:{src:this.iframeSrc}})}),[],!1,null,"bddb939e",null).exports;OCA.Viewer.registerHandler({id:"pdf",mimes:["application/pdf","application/illustrator"],component:Us,canCompare:!0})})()})();
//# sourceMappingURL=files_pdfviewer-main.js.map?v=1c5250ef28acc12619f9