@dazhicheng/utils 1.3.50 → 1.3.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,11 +1,20 @@
1
+ export declare function getPageKey(path?: string): string;
1
2
  export declare const loadingService: {
3
+ getPageKey: typeof getPageKey;
2
4
  /**
3
- * 显示 loading
4
- * @returns 关闭 loading 的函数
5
+ * 绑定路由:切页后按当前页 count 恢复/隐藏遮罩
5
6
  */
6
- showLoading(): () => void;
7
+ bindRouter(router: any): void;
7
8
  /**
8
- * 隐藏 loading
9
+ * 显示 loading(按 pageKey 引用计数 +1)
9
10
  */
10
- hideLoading(): void;
11
+ showLoading(key?: string): () => void;
12
+ /**
13
+ * 隐藏 loading(按 pageKey 引用计数 -1,到 0 才真正关闭)
14
+ */
15
+ hideLoading(key?: string): void;
16
+ /**
17
+ * 路由切回某页时调用:若该页 count>0 则重新挂遮罩
18
+ */
19
+ sync(key?: string): void;
11
20
  };
@@ -0,0 +1,101 @@
1
+ import type dayjs from "dayjs";
2
+ /** 期间格式化类型:`period` 输出「2026年08期」,`month` 输出「08/2026」 */
3
+ export type LabelFormatType = "month" | "period";
4
+ /**
5
+ * 日期格式化入参。
6
+ *
7
+ * 接受空值:接口返回的日期字段大多是可选的,调用点不必逐个补非空断言。
8
+ */
9
+ export type FormatDateInput = Date | dayjs.Dayjs | null | number | string | undefined;
10
+ /** 金额格式化入参,接受空值 */
11
+ export type FormatAmountInput = null | number | string | undefined;
12
+ /**
13
+ * 格式化金额,默认千分位保留两位小数。
14
+ *
15
+ * 空值与 `0` 统一返回 `"0.00"`,与 `formatAmountOfPlace` 口径一致。
16
+ * @param val 金额,可以是数字或字符串
17
+ * @param format numeral 的格式化模板,默认 `0,0.00`
18
+ * @returns 格式化后的金额字符串
19
+ * @example
20
+ * formatAmount(1234.5) // "1,234.50"
21
+ * formatAmount(undefined) // "0.00"
22
+ * formatAmount(1234.5678, "0,0.0000") // "1,234.5678"
23
+ */
24
+ export declare function formatAmount(val: FormatAmountInput, format?: string): string;
25
+ /**
26
+ * 格式化金额为千分位并保留两位小数。
27
+ *
28
+ * 与 `formatAmount` 行为相同,保留该导出是为了兼容既有调用点。
29
+ * @param val 金额数值
30
+ * @param format numeral 的格式化模板,默认 `0,0.00`
31
+ * @returns 格式化后的金额字符串
32
+ * @example
33
+ * formatAmountOfPlace(1234.5) // "1,234.50"
34
+ */
35
+ export declare function formatAmountOfPlace(val: FormatAmountInput, format?: string): string;
36
+ /**
37
+ * 把千分位金额字符串转回数值。
38
+ * @param val 千分位格式的金额字符串或数值
39
+ * @returns 转换后的数值,空值返回 `0`
40
+ * @example
41
+ * formatPlaceOfAmount("1,234.50") // 1234.5
42
+ * formatPlaceOfAmount(undefined) // 0
43
+ */
44
+ export declare function formatPlaceOfAmount(val: FormatAmountInput): number;
45
+ /**
46
+ * 按指定小数位截断金额,不做四舍五入,位数不足补零。
47
+ * @param str 金额字符串或数字
48
+ * @param index 保留的小数位数
49
+ * @returns 格式化后的金额字符串,空值或非数字返回空字符串
50
+ * @example
51
+ * formatDecimal(1.239, 2) // "1.24"
52
+ * formatDecimal(undefined, 2) // ""
53
+ */
54
+ export declare function formatDecimal(str: FormatAmountInput, index: number): string;
55
+ /**
56
+ * 格式化文件大小,按 1000 进制换算并带单位。
57
+ * @param bytes 文件大小,单位字节
58
+ * @param decimalPoint 保留的小数位数,默认 2
59
+ * @returns 带单位的文件大小字符串,空值与 `0` 返回 `"0 Bytes"`
60
+ * @example
61
+ * formatFileSize(1500) // "1.5 KB"
62
+ * formatFileSize(undefined) // "0 Bytes"
63
+ */
64
+ export declare function formatFileSize(bytes: null | number | undefined, decimalPoint?: number): string;
65
+ /**
66
+ * 格式化期间(年月)。
67
+ * @param val 期间值,形如 `202608`、`2026-08`、`2026.08`
68
+ * @param formatType 输出形式,`period` 为「2026年08期」,`month` 为「 08/2026」
69
+ * @returns 格式化后的期间字符串,空值返回空字符串
70
+ * @example
71
+ * formatPeriod(202608) // "2026年08期"
72
+ * formatPeriod("2026-08", "month") // " 08/2026"
73
+ */
74
+ export declare function formatPeriod(val: FormatAmountInput, formatType?: LabelFormatType): string;
75
+ /**
76
+ * 格式化日期时间。
77
+ *
78
+ * `undefined` 与 `null` 直接返回 `"--"`,不走 dayjs:`dayjs(undefined)` 等价于 `dayjs()`,
79
+ * 会把空日期渲染成当天时间。`""` 与无效日期仍由 dayjs 的 `isValid()` 判定,
80
+ * 时间戳 `0` 沿用原行为按 1970-01-01 解析。
81
+ * @param date 日期,支持字符串、时间戳、Date 与 dayjs 对象
82
+ * @param format 格式化模板,默认 `YYYY-MM-DD HH:mm:ss`
83
+ * @returns 格式化后的字符串,空值或无效日期返回 `"--"`
84
+ * @example
85
+ * formatToDateTime("2026-08-15") // "2026-08-15 00:00:00"
86
+ * formatToDateTime(undefined) // "--"
87
+ */
88
+ export declare function formatToDateTime(date: FormatDateInput, format?: string): string;
89
+ /**
90
+ * 格式化日期。
91
+ *
92
+ * 空值处理与 `formatToDateTime` 一致,`undefined` 不会被解析成当天。
93
+ * @param date 日期,支持字符串、时间戳、Date 与 dayjs 对象
94
+ * @param format 格式化模板,默认 `YYYY-MM-DD`
95
+ * @param isTimeStamp 入参是否为时间戳,为 `true` 时按数字解析
96
+ * @returns 格式化后的字符串,空值或无效日期返回 `"--"`
97
+ * @example
98
+ * formatToDate("2026-08-15 10:00:00") // "2026-08-15"
99
+ * formatToDate(1755230400000, "YYYY-MM-DD", true) // "2026-08-15"
100
+ */
101
+ export declare function formatToDate(date: FormatDateInput, format?: string, isTimeStamp?: boolean): string;
package/dist/index.d.ts CHANGED
@@ -2,8 +2,10 @@ export * from "./string";
2
2
  export * from "./file";
3
3
  export * from "./axios/index";
4
4
  export * from "./axios/type";
5
+ export { loadingService, getPageKey } from "./axios/loading";
5
6
  export * from "./install";
6
7
  export * from "./is";
8
+ export * from "./format";
7
9
  export * from "./testid-helper";
8
10
  export * from "./tool";
9
11
  export * from "./merge";
package/dist/index.esm.js CHANGED
@@ -1,2 +1,2 @@
1
- import t from"axios";import{ElMessage as e,ElLoading as n}from"element-plus";import r from"dayjs";import{nextTick as i,computed as o}from"vue";import{twMerge as u}from"tailwind-merge";import{clsx as a}from"clsx";import{klona as c}from"klona/full";import s from"dayjs/plugin/utc";import f from"dayjs/plugin/timezone";import{createDefu as l}from"defu";export{createDefu as createMerge,defuFn as mergFn,defu as merge}from"defu";import d from"decimal.js";import{encrypt as h,decrypt as p}from"crypto-js/aes";import g,{parse as m}from"crypto-js/enc-utf8";import v from"crypto-js/mode-ecb";import y from"crypto-js/pad-pkcs7";import{cloneDeep as w}from"lodash-es";function b(t){return t.charAt(0).toUpperCase()+t.slice(1)}function E(t){return t.trim()}function S(t){return t.replace(/-(\w)/g,(t,e)=>e?e.toUpperCase():"")}const N=(t,e)=>{try{const n=new Blob([t.data],{type:e}),r=document.createElement("a"),i=(window.URL||window.webkitURL).createObjectURL(n);r.href=i;let o=((t.headers["content-disposition"]||"").split("=")||[]).at(-1)||"";o=o?decodeURI(o.replace(/"/g,"")):"";const u=o?.split("''");o=u.at(-1)||"",r.download=o,r.style.display="none",document.body.appendChild(r),r.click(),document.body.removeChild(r),window.URL.revokeObjectURL(i)}catch(t){console.log(t)}};var O,D;!function(t){t[t.success=200]="success",t[t.success1=0]="success1",t[t.error=400]="error",t[t.unauthorized=401]="unauthorized",t[t.forbidden=403]="forbidden",t[t.notFound=404]="notFound",t[t.methodNotAllowed=405]="methodNotAllowed",t[t.requestTimeout=408]="requestTimeout",t[t.internalServerError=500]="internalServerError",t[t.notImplemented=501]="notImplemented",t[t.badGateway=502]="badGateway",t[t.serviceUnavailable=503]="serviceUnavailable",t[t.gatewayTimeout=504]="gatewayTimeout",t[t.httpVersionNotSupported=505]="httpVersionNotSupported",t[t.NEED_REFRESH_TOKEN=1001]="NEED_REFRESH_TOKEN",t[t.API_NO_AUTH=1002]="API_NO_AUTH",t[t.INVALID_TOKEN=1005]="INVALID_TOKEN"}(O||(O={})),function(t){t.badGateway="网关错误,请稍后重试",t.forbidden="禁止访问该资源",t.gatewayTimeout="网关超时,请稍后重试",t.internalServerError="服务器内部错误,请稍后重试",t.methodNotAllowed="请求方法不允许",t.networkError="网络连接异常,请检查网络连接",t.notFound="请求的资源不存在",t.requestCancelled="请求已取消",t.requestConfigError="请求配置错误",t.requestFailed="请求失败",t.requestTimeout="请求超时,请稍后重试",t.serviceUnavailable="服务暂时不可用,请稍后重试",t.unauthorized="未授权访问,请重新登录"}(D||(D={}));class A extends Error{code;data;timestamp;url;method;constructor(t,e,n){super(t),this.name="HttpError",this.code=e,this.data=n?.data,this.timestamp=(new Date).toISOString(),this.url=n?.url||"",this.method=n?.method||""}toLogData(){return{code:this.code,message:this.message,data:this.data,timestamp:this.timestamp,url:this.url||"",method:this.method||"",stack:this.stack||""}}}function x(t){if("ERR_CANCELED"===t.code)throw console.warn("Request cancelled:",t.message),new A(D.requestCancelled,O.error);const e=t.response?.status,n=t.response?.data?.msg||t.message,r=t.config;if(!t.response)throw new A(D.networkError,O.error,{url:r?.url||"",method:r?.method?.toUpperCase()||""});const i=e?(o=e,{[O.unauthorized]:D.unauthorized,[O.forbidden]:D.forbidden,[O.notFound]:D.notFound,[O.methodNotAllowed]:D.methodNotAllowed,[O.requestTimeout]:D.requestTimeout,[O.internalServerError]:D.internalServerError,[O.badGateway]:D.badGateway,[O.serviceUnavailable]:D.serviceUnavailable,[O.gatewayTimeout]:D.gatewayTimeout}[o]||D.internalServerError):n||D.requestFailed;var o;throw new A(i,e||O.error,{data:t.response.data,url:r?.url||"",method:r?.method?.toUpperCase()||""})}function j(t,n=!0){n&&e.error(t.message),console.error("[HTTP Error]",t.toLogData())}const T=Object.prototype.toString;function M(t,e){return T.call(t)===`[object ${e}]`}function k(t){return void 0!==t}function I(t){return!k(t)}function C(t){return null===t}function P(t){return I(t)||C(t)}function F(t){return!P(t)&&(t instanceof Promise||M(t,"Object"))}function R(t){return!!P(t)||(q(t)||z(t)?0===t.length:t instanceof Map||t instanceof Set?0===t.size:!!F(t)&&0===Object.keys(t).length)}function $(t){return!!R(t)||(0===t||!!z(t)&&("0"===t||"undefined"===t||"null"===t))}function W(t){return M(t,"Date")}function _(t){return M(t,"Number")&&t==t}function U(t){return M(t,"Promise")&&F(t)&&H(t.then)&&H(t.catch)}function z(t){return M(t,"String")}function H(t){return"function"==typeof t}function L(t){return M(t,"Boolean")}function K(t){return M(t,"RegExp")}function q(t){return t&&Array.isArray(t)}function B(t){return"undefined"!=typeof window&&M(t,"Window")}function Z(t){return"undefined"!=typeof Element&&t instanceof Element}function Y(t){return M(t,"Map")}const J="undefined"==typeof window,V=!J;function G(t){return/(?:^https?:(?:\/\/)?(?:[-;:&=+$,\w]+@)?[A-Za-z0-9.-]+(?::\d+)?|(?:www.|[-;:&=+$,\w]+@)[A-Za-z0-9.-]+)(?:\/[+~%/.\w-]*)?\??[-+=&;%@.\w]*(?:#\w*)?$/.test(t)}function Q(t){return!!z(t)&&!Number.isNaN(Number(t))}function X(t){return null==t||"object"!=typeof t&&"function"!=typeof t}function tt(t){return"Error"===Object.prototype.toString.call(t).slice(8,-1)}function et(t){return"Symbol"===Object.prototype.toString.call(t).slice(8,-1)}function nt(t){return"Set"===Object.prototype.toString.call(t).slice(8,-1)}function rt(t){return!t||t===C(t)||t===I(t)||!1===t||t===Number.isNaN(t)||!(!q(t)||0!==t.length)}function it(t){return!rt(t)}function ot(){const t=navigator.userAgent;return t.includes("Android")||t.includes("Linux")?"Android":t.includes("iPhone")?"iPhone":t.includes("iPad")?"iPad":t.includes("Windows Phone")?"Windows Phone":t}function ut(){const t=navigator.userAgent;return function(t){const e=t.includes("Opera");return t.includes("compatible")&&t.includes("MSIE")&&!e}(t)?function(t){const e=/MSIE (\d+\.\d+);/,n=t.match(e),r=n?Number.parseFloat(n[1]||"0"):0;return 7===r?"IE7":8===r?"IE8":9===r?"IE9":10===r?"IE10":"IE7以下"}(t):function(t){return t.includes("Trident")&&t.includes("rv:11.0")}(t)?"IE11":function(t){const e=t.includes("compatible")&&t.includes("MSIE");return t.includes("Edge")&&!e}(t)?"Edge":function(t){return t.includes("Firefox")}(t)?"FF":function(t){return t.includes("Opera")}(t)?"Opera":function(t){return t.includes("Safari")&&!t.includes("Chrome")}(t)?"Safari":function(t){return t.includes("Chrome")&&t.includes("Safari")}(t)?"Chrome":""}function at(){return"iPhone"===ot()}function ct(){return"Android"===ot()}function st(){const t=navigator.userAgent,e=["Android","iPhone","SymbianOS","Windows Phone","iPad","iPod"];let n=!0;for(let r=0;r<e.length;r++){const i=e[r];if(i&&t.indexOf(i)>0){n=!1;break}}return n}function ft(t){return/^(?:https?:|mailto:|tel:|\/\/)/.test(t)}function lt(t){if("string"==typeof t)try{const e=JSON.parse(t);return!("object"!=typeof e||!e)}catch(t){return console.error(`error:${t}`),!1}return!1}function dt(t){return r.isDayjs(t)}function ht(t){return M(t,"FormData")}const pt=()=>document.documentElement.classList.contains("dark")?"rgba(7, 7, 7, 0.85)":"rgba(255, 255, 255, 0.5)",gt={lock:!0,get background(){return pt()},svg:'\n <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40">\n <style>\n .spinner {\n transform-origin: 20px 20px;\n animation: rotate 1.6s linear infinite;\n }\n .dot {\n fill: var(--theme-color);\n animation: fade 1.6s infinite;\n }\n .dot:nth-child(1) { animation-delay: 0s; }\n .dot:nth-child(2) { animation-delay: 0.5s; }\n .dot:nth-child(3) { animation-delay: 1s; }\n .dot:nth-child(4) { animation-delay: 1.5s; }\n @keyframes rotate {\n 100% { transform: rotate(360deg); }\n }\n @keyframes fade {\n 0%, 100% { opacity: 1; }\n 50% { opacity: 0.5; }\n }\n </style>\n <g class="spinner">\n <circle class="dot" cx="20" cy="8" r="4"/>\n <circle class="dot" cx="32" cy="20" r="4"/>\n <circle class="dot" cx="20" cy="32" r="4"/>\n <circle class="dot" cx="8" cy="20" r="4"/>\n </g>\n </svg>\n',svgViewBox:"0 0 40 40",customClass:"art-loading-fix"};let mt=null;const vt={showLoading(){if(!mt){const t={...gt,background:pt()};mt=n.service(t)}return()=>this.hideLoading()},hideLoading(){mt&&(mt.close(),mt=null)}};function yt(n){const{router:r,useUserStore:o,VITE_API_URL:u,VITE_WITH_CREDENTIALS:a}=n;let c=!1;const s=["image/jpeg","image/png","image/gif","image/webp","image/svg+xml","application/pdf","application/msword","application/vnd.openxmlformats-officedocument.wordprocessingml.document","application/vnd.ms-excel","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8"];let f=0;function l(){setTimeout(()=>{f--,0===f&&c&&i(()=>{vt.hideLoading(),c=!1})},0)}let d=!1,h=null;const p=t.create({timeout:6e5,baseURL:"/"+u,withCredentials:"true"===a,validateStatus:t=>t>=200&&t<300,transformResponse:[(t,e)=>{const n=e["content-type"];if(n?.includes("application/json"))try{return JSON.parse(t)}catch{return t}return t}]});function g(t,e="start"){if("string"!=typeof t||!t.trim())return"string"==typeof t?t.trim():t;const n=t.trim();if(/^\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}$/.test(n))return n;const r="end"===e?"59":"00";return/^\d{4}-\d{2}-\d{2} \d{2}:\d{2}$/.test(n)?`${n}:${r}`:/^\d{4}-\d{2}-\d{2} \d{2}$/.test(n)?`${n}:${r}:${r}`:/^\d{4}-\d{2}-\d{2}$/.test(n)?"end"===e?`${n} 23:59:59`:`${n} 00:00:00`:n}function m(t){if("string"==typeof t)return t.trim();if(null===t||"object"!=typeof t)return t;if(Array.isArray(t))return t.map(t=>m(t));const e={};for(const n in t)if(Object.prototype.hasOwnProperty.call(t,n)){const r=t[n];n.includes("DtRange")&&Array.isArray(r)&&2===r.length?e[n]={startDate:m(r[0]),endDate:m(r[1])}:n.includes("TmRange")&&Array.isArray(r)&&2===r.length?e[n]={startTime:g(r[0],"start"),endTime:g(r[1],"end")}:e[n]="startTime"===n?g(r,"start"):"endTime"===n?g(r,"end"):m(r)}return e}function v(t){if(null===t||"object"!=typeof t)return t;if(Array.isArray(t))return t.map(t=>v(t));const e={};for(const n in t)if(Object.prototype.hasOwnProperty.call(t,n)){const r=t[n];n.includes("DtRange")&&"object"==typeof r&&null!==r&&"startDate"in r&&"endDate"in r?e[n]=[r.startDate,r.endDate]:n.includes("TmRange")&&"object"==typeof r&&null!==r&&"startTime"in r&&"endTime"in r?e[n]=[r.startTime,r.endTime]:e[n]=v(r)}return e}function y(t,e){return new A(t,e)}function w(t){const e=y(t||D.unauthorized,O.unauthorized);if(!d)throw d=!0,E(),h=setTimeout(b,3e3),j(e,!0),e;throw e}function b(){d=!1,h&&clearTimeout(h),h=null}p.interceptors.request.use(t=>{const{accessToken:e,info:n}=o();return e&&(t.headers.set("Authorization",e),t.headers.set("token",e),t.headers.set("x-userid-header",n.userId),t.headers.set("x-permission-code-header",r.currentRoute.value.meta.permissionOnlyCode),t.headers.set("a-path-code",r.currentRoute.value.path)),t.hideLoading||0!==f||(c=!0,vt.showLoading()),f++,t.params&&(t.params=m(t.params)),!t.data||ht(t.data)||t.headers["Content-Type"]||(t.data=m(t.data),t.headers.set("Content-Type","application/json"),t.data=JSON.stringify(t.data)),t},t=>(j(y(D.requestConfigError,O.error)),Promise.reject(t))),p.interceptors.response.use(async t=>{l(),await async function(t){const e=t.data;if(!(e instanceof Blob))return;const n=String(t.headers["content-type"]||""),r=e.type||"";if(n.includes("application/json")||r.includes("application/json"))try{const n=await e.text();t.data=JSON.parse(n)}catch{throw y(D.requestFailed,O.error)}}(t);const e=t.headers["content-type"];if(e?.includes("application/json")){t.data&&(t.data=v(t.data));const{code:e,msg:n}=t.data;if([O.success,O.success1].includes(e))return t;throw[O.unauthorized,O.INVALID_TOKEN].includes(e)&&w(n),y(n||D.requestFailed,e)}if(s.includes(e))return N(t,e),t},t=>(l(),t.response?.status===O.unauthorized&&w(),Promise.reject(x(t))));const E=()=>{setTimeout(()=>{o().logOut()},500)};async function S(t,n=0){try{return await async function(t){["POST","PUT","PATCH"].includes(t.method?.toUpperCase()||"")&&t.params&&!t.data&&(t.data=t.params,t.params=void 0);try{const n=await p.request(t);return t.showSuccessMessage&&n.data.msg&&function(t,n=!0){n&&e.success(t)}(n.data.msg),t.responseAllData?n:n.data.data}catch(e){const n=[O.unauthorized,O.NEED_REFRESH_TOKEN].includes(e.code);if(e instanceof A&&!n){j(e,!1!==t.showErrorMessage)}return Promise.reject(e)}}(t)}catch(e){if(e instanceof A&&[O.NEED_REFRESH_TOKEN].includes(e.code)&&!t.url?.includes("/iam/user/refreshToken"))return await o().refreshTokenFunc(),await T(1e3),S(t,n-1);if(n>0&&e instanceof A&&(r=e.code,[O.requestTimeout,O.internalServerError,O.badGateway,O.serviceUnavailable,O.gatewayTimeout].includes(r)))return await T(1e3),S(t,n-1);throw e}var r}function T(t){return new Promise(e=>setTimeout(e,t))}const M={get:t=>S({...t,method:"GET"}),post:t=>S({...t,method:"POST"}),put:t=>S({...t,method:"PUT"}),del:t=>S({...t,method:"DELETE"}),patch:t=>S({...t,method:"PATCH"}),request:t=>S(t)};return{...M,logOut:E,setBaseUrl:t=>{p.defaults.baseURL=t}}}function wt(t,e){if(t.install=n=>{for(const r of[t,...Object.values(e??{})]){const t=r.name;t&&n.component(t,r)}},e)for(const[n,r]of Object.entries(e))t[n]=r;return t}function bt(t){if("string"==typeof t)return t.trim();if("function"==typeof t){return(t.name||"").replace(/^bound\s+/i,"")}return""}function Et(...t){return t.filter(t=>null!=t&&""!==t).join("-")}function St(t){return t?t.replace(/([a-z])([A-Z])/g,"$1-$2").replace(/([A-Z])([A-Z][a-z])/g,"$1-$2").replace(/[\s_]+/g,"-").replace(/[^\w\u4E00-\u9FA5-]+/g,"-").toLowerCase().replace(/^-+|-+$/g,"").replace(/-+/g,"-"):""}function Nt(t,e=3){if(!t||0===t.length)return"form";const n=t.filter(t=>null!=t&&""!==t).slice(0,e);return 0===n.length?"form":n.join("-")}function Ot(t){return t?St(t):""}function Dt(t){if(!t)return!1;return/^[a-z0-9]+(-[a-z0-9]+)*$/.test(t)}var At={keyId:1,cookies:{path:"/"},treeOptions:{parentKey:"parentId",key:"id",children:"children"},parseDateFormat:"yyyy-MM-dd HH:mm:ss",firstDayOfWeek:1};function xt(t,e,n){if(t)if(t.forEach)t.forEach(e,n);else for(var r=0,i=t.length;r<i;r++)e.call(n,t[r],r,t)}var jt=Object.prototype.toString;function Tt(t){return function(e){return"[object "+t+"]"===jt.call(e)}}var Mt=Array.isArray||Tt("Array");function kt(t,e){return!(!t||!t.hasOwnProperty)&&t.hasOwnProperty(e)}function It(t,e,n){if(t)for(var r in t)kt(t,r)&&e.call(n,t[r],r,t)}function Ct(t,e,n){return t?(Mt(t)?xt:It)(t,e,n):t}function Pt(t){return function(e){return typeof e===t}}var Ft=Pt("function");function Rt(t,e){var n=Object[t];return function(t){var r=[];if(t){if(n)return n(t);Ct(t,e>1?function(e){r.push([""+e,t[e]])}:function(){r.push(arguments[e])})}return r}}var $t=Rt("keys",1);function Wt(t,e){var n=t.__proto__.constructor;return e?new n(e):new n}function _t(t,e){return e?Ut(t,e):t}function Ut(t,e){if(t)switch(jt.call(t)){case"[object Object]":var n=Object.create(Object.getPrototypeOf(t));return It(t,function(t,r){n[r]=_t(t,e)}),n;case"[object Date]":case"[object RegExp]":return Wt(t,t.valueOf());case"[object Array]":case"[object Arguments]":var r=[];return xt(t,function(t){r.push(_t(t,e))}),r;case"[object Set]":var i=Wt(t);return i.forEach(function(t){i.add(_t(t,e))}),i;case"[object Map]":var o=Wt(t);return o.forEach(function(t,n){o.set(n,_t(t,e))}),o}return t}function zt(t,e){return t?Ut(t,e):t}var Ht=Object.assign;function Lt(t,e,n){for(var r,i=e.length,o=1;o<i;o++)r=e[o],xt($t(e[o]),n?function(e){t[e]=zt(r[e],n)}:function(e){t[e]=r[e]});return t}var Kt=function(t){if(t){var e=arguments;if(!0!==t)return Ht?Ht.apply(Object,e):Lt(t,e);if(e.length>1)return Lt(t=Mt(t[1])?[]:{},e,!0)}return t},qt=function(){};function Bt(t){return Kt(At,t)}var Zt="4.0.0";function Yt(t,e,n){for(var r=t.length-1;r>=0;r--)e.call(n,t[r],r,t)}function Jt(t,e,n){Yt($t(t),function(r){e.call(n,t[r],r,t)})}function Vt(t){return null===t}function Gt(t,e){return function(n){return Vt(n)?e:n[t]}}function Qt(t){return!!t&&t.constructor===Object}function Xt(t){return"__proto__"!==t&&"constructor"!==t}function te(t,e){return Qt(t)&&Qt(e)||Mt(t)&&Mt(e)?(Ct(e,function(n,r){Xt(r)&&(t[r]=Ft(e)?n:te(t[r],n))}),t):e}qt.VERSION=Zt,qt.version=Zt,qt.mixin=function(){xt(arguments,function(t){Ct(t,function(t,e){qt[e]=Ft(t)?function(){var e=t.apply(qt.$context,arguments);return qt.$context=null,e}:t})})},qt.setup=Bt,qt.setConfig=Bt,qt.getConfig=function(){return At};function ee(t,e,n){var r=[];if(t&&arguments.length>1){if(t.map)return t.map(e,n);Ct(t,function(){r.push(e.apply(n,arguments))})}return r}function ne(t,e,n,r,i){return function(o,u,a){if(o&&u){if(t&&o[t])return o[t](u,a);if(e&&Mt(o)){for(var c=0,s=o.length;c<s;c++)if(!!u.call(a,o[c],c,o)===r)return[!0,!1,c,o[c]][n]}else for(var f in o)if(kt(o,f)&&!!u.call(a,o[f],f,o)===r)return[!0,!1,f,o[f]][n]}return i}}var re=ne("some",1,0,!0,!1),ie=ne("every",1,1,!1,!0);function oe(t,e){if(t){if(t.includes)return t.includes(e);for(var n in t)if(kt(t,n)&&e===t[n])return!0}return!1}function ue(t,e){var n,r=0;if(Mt(t)&&Mt(e)){for(n=e.length;r<n;r++)if(!oe(t,e[r]))return!1;return!0}return oe(t,e)}function ae(t,e,n){var r=[];if(e){Ft(e)||(e=Gt(e));var i,o={};Ct(t,function(u,a){i=e.call(n,u,a,t),o[i]||(o[i]=1,r.push(u))})}else Ct(t,function(t){oe(r,t)||r.push(t)});return r}function ce(t){return ee(t,function(t){return t})}var se="undefined",fe=Pt(se);function le(t){return Vt(t)||fe(t)}var de=/(.+)?\[(\d+)\]$/;function he(t){return t?t.splice&&t.join?t:(""+t).replace(/(\[\d+\])\.?/g,"$1.").replace(/\.$/,"").split("."):[]}function pe(t,e,n){if(le(t))return n;var r=function(t,e){if(t){var n,r,i,o=0;if(t[e]||kt(t,e))return t[e];if(i=(r=he(e)).length)for(n=t;o<i;o++)if(le(n=ge(n,r[o])))return o===i-1?n:void 0;return n}}(t,e);return fe(r)?n:r}function ge(t,e){var n=e?e.match(de):"";return n?n[1]?t[n[1]]?t[n[1]][n[2]]:void 0:t[n[2]]:t[e]}function me(t,e){return fe(t)?1:Vt(t)?fe(e)?-1:1:t&&t.localeCompare?t.localeCompare(e):t>e?1:-1}function ve(t,e,n){return function(r,i){var o=r[t],u=i[t];return o===u?n?n(r,i):0:"desc"===e.order?me(u,o):me(o,u)}}function ye(t,e,n){if(t){if(le(e))return ce(t).sort(me);for(var r,i=ee(t,function(t){return{data:t}}),o=function(t,e,n,r){var i=[];return xt(n=Mt(n)?n:[n],function(n,o){if(n){var u,a=n;Mt(n)?(a=n[0],u=n[1]):Qt(n)&&(a=n.field,u=n.order),i.push({field:a,order:u||"asc"}),xt(e,Ft(a)?function(e,n){e[o]=a.call(r,e.data,n,t)}:function(t){t[o]=a?pe(t.data,a):t.data})}}),i}(t,i,e,n),u=o.length-1;u>=0;)r=ve(u,o[u],r),u--;return r&&(i=i.sort(r)),ee(i,Gt("data"))}return[]}var we=ye;function be(t,e){return t>=e?t:(t|=0)+Math.round(Math.random()*((e||9)-t))}var Ee=Rt("values",0);function Se(t){for(var e,n=[],r=Ee(t),i=r.length-1;i>=0;i--)e=i>0?be(0,i):0,n.push(r[e]),r.splice(e,1);return n}function Ne(t){return function(e){if(e){var n=t(e&&e.replace?e.replace(/,/g,""):e);if(!isNaN(n))return n}return 0}}var Oe=Ne(parseFloat);function De(t,e,n){var r=[],i=arguments.length;if(t){if(e=i>=2?Oe(e):0,n=i>=3?Oe(n):t.length,t.slice)return t.slice(e,n);for(;e<n;e++)r.push(t[e])}return r}var Ae=ne("",0,2,!0),xe=ne("find",1,3,!0);function je(t,e){return ee(t,Gt(e))}function Te(t){return function(e,n){var r,i;return e&&e.length?(xt(e,function(o,u){n&&(o=Ft(n)?n(o,u,e):pe(o,n)),le(o)||!le(r)&&!t(r,o)||(i=u,r=o)}),e[i]):r}}var Me=Te(function(t,e){return t<e});function ke(t){var e,n,r,i=[];if(t&&t.length)for(e=0,r=(n=Me(t,function(t){return t?t.length:0}))?n.length:0;e<r;e++)i.push(je(t,e));return i}function Ie(t,e){var n=[];return xt(t,function(t){n=n.concat(Mt(t)?e?Ie(t,e):t:[t])}),n}function Ce(t,e){return(console[t]||console.log)(e)}function Pe(t,e){try{delete t[e]}catch(n){t[e]=void 0}}function Fe(t,e,n){return t?(Mt(t)?Yt:Jt)(t,e,n):t}var Re=Pt("object");function $e(t,e,n){if(t){var r,i=arguments.length>1&&(Vt(e)||!Re(e)),o=i?n:e;if(Qt(t))It(t,i?function(n,r){t[r]=e}:function(e,n){Pe(t,n)}),o&&Kt(t,o);else if(Mt(t)){if(i)for(r=t.length;r>0;)r--,t[r]=e;else t.length=0;o&&t.push.apply(t,o)}}return t}function We(t,e,n){if(t){if(!le(e)){var r=[],i=[];return Ft(e)||(o=e,e=function(t,e){return e===o}),Ct(t,function(t,i,o){e.call(n,t,i,o)&&r.push(i)}),Mt(t)?Fe(r,function(e,n){i.push(t[e]),t.splice(e,1)}):(i={},xt(r,function(e){i[e]=t[e],Pe(t,e)})),i}return $e(t)}var o;return t}function _e(t,e,n,r){var i=r.key,o=r.parentKey,u=r.children,a=r.data,c=r.updated,s=r.clear;return xt(n,function(n){var f=n[u];a&&(n=n[a]),!1!==c&&(n[o]=e?e[i]:null),t.push(n),f&&f.length&&_e(t,n,f,r),s&&delete n[u]}),t}function Ue(t){return function(e,n,r,i){var o=r||{},u=o.children||"children";return t(null,e,n,i,[],[],u,o)}}var ze=Ue(function t(e,n,r,i,o,u,a,c){var s,f,l,d,h,p;if(n)for(f=0,l=n.length;f<l;f++){if(s=n[f],d=o.concat([""+f]),h=u.concat([s]),r.call(i,s,f,n,d,e,h))return{index:f,item:s,path:d,items:n,parent:e,nodes:h};if(a&&s&&(p=t(s,s[a],r,i,d.concat([a]),h,a)))return p}});var He=Ue(function t(e,n,r,i,o,u,a,c){var s,f;Ct(n,function(c,l){s=o.concat([""+l]),f=u.concat([c]),r.call(i,c,l,n,s,e,f),c&&a&&(s.push(a),t(c,c[a],r,i,s,f,a))})});var Le=Ue(function t(e,n,r,i,o,u,a,c){var s,f,l,d=c.mapChildren||a;return ee(n,function(h,p){return s=o.concat([""+p]),f=u.concat([h]),(l=r.call(i,h,p,n,s,e,f))&&h&&a&&h[a]&&(l[d]=t(h,h[a],r,i,s,f,a,c)),l})});function Ke(t,e,n,r,i,o,u,a,c){var s,f,l,d,h,p=[],g=c.original,m=c.data,v=c.mapChildren||a,y=c.isEvery;return xt(n,function(w,b){s=o.concat([""+b]),f=u.concat([w]),d=t&&!y||r.call(i,w,b,n,s,e,f),h=a&&w[a],d||h?(g?l=w:(l=Kt({},w),m&&(l[m]=w)),l[v]=Ke(d,w,w[a],r,i,s,f,a,c),(d||l[v].length)&&p.push(l)):d&&p.push(l)}),p}var qe=Ue(function(t,e,n,r,i,o,u,a){return Ke(0,t,e,n,r,i,o,u,a)});function Be(t,e){if(t.indexOf)return t.indexOf(e);for(var n=0,r=t.length;n<r;n++)if(e===t[n])return n}function Ze(t,e){if(t.lastIndexOf)return t.lastIndexOf(e);for(var n=t.length-1;n>=0;n--)if(e===t[n])return n;return-1}var Ye=Pt("number");var Je=Pt("string"),Ve=Tt("Date"),Ge=parseInt;function Qe(t){return Date.UTC(t.y,t.M||0,t.d||1,t.H||0,t.m||0,t.s||0,t.S||0)}function Xe(t){return t.getTime()}function tn(t){return"(\\d{"+t+"})"}function en(t){return isNaN(t)?t:Ge(t)}for(var nn=tn(2),rn=tn("1,2"),on=tn("1,7"),un=tn("3,4"),an=".{1}",cn=an+rn,sn="(([zZ])|([-+]\\d{2}:?\\d{2}))",fn=[un,cn,cn,cn,cn,cn,an+on,sn],ln=[],dn=fn.length-1;dn>=0;dn--){for(var hn="",pn=0;pn<dn+1;pn++)hn+=fn[pn];ln.push(new RegExp("^"+hn+"$"))}var gn=[["yyyy",un],["yy",nn],["MM",nn],["M",rn],["dd",nn],["d",rn],["HH",nn],["H",rn],["mm",nn],["m",rn],["ss",nn],["s",rn],["SSS",tn(3)],["S",on],["Z",sn]],mn={},vn=["\\[([^\\]]+)\\]"];for(pn=0;pn<gn.length;pn++){var yn=gn[pn];mn[yn[0]]=yn[1]+"?",vn.push(yn[0])}var wn=new RegExp(vn.join("|"),"g"),bn={};function En(t,e){if(t){var n=Ve(t);if(n||!e&&/^[0-9]{11,15}$/.test(t))return new Date(n?Xe(t):Ge(t));if(Je(t)){var r=e?function(t,e){var n=bn[e];if(!n){var r=[],i=e.replace(/([$(){}*+.?\\^|])/g,"\\$1").replace(wn,function(t,e){var n=t.charAt(0);return"["===n?e:(r.push(n),mn[t])});n=bn[e]={_i:r,_r:new RegExp(i)}}var o={},u=t.match(n._r);if(u){for(var a=n._i,c=1,s=u.length;c<s;c++)o[a[c-1]]=u[c];return o}return o}(t,e):function(t){for(var e,n={},r=0,i=ln.length;r<i;r++)if(e=t.match(ln[r])){n.y=e[1],n.M=e[2],n.d=e[3],n.H=e[4],n.m=e[5],n.s=e[6],n.S=e[7],n.Z=e[8];break}return n}(t);if(r.y)return r.M&&(r.M=en(r.M)-1),r.S&&(r.S=(i=en(r.S.substring(0,3)))<10?100*i:i<100?10*i:i),r.Z?function(t){if(/^[zZ]/.test(t.Z))return new Date(Qe(t));var e=t.Z.match(/([-+])(\d{2}):?(\d{2})/);return e?new Date(Qe(t)-("-"===e[1]?-1:1)*Ge(e[2])*36e5+6e4*Ge(e[3])):new Date("")}(r):new Date(r.y,r.M||0,r.d||1,r.H||0,r.m||0,r.s||0,r.S||0)}}var i;return new Date("")}function Sn(){return new Date}function Nn(t){var e,n=t?En(t):Sn();return!!Ve(n)&&((e=n.getFullYear())%4==0&&(e%100!=0||e%400==0))}function On(t,e){return function(n,r){if(n){if(n[t])return n[t](r);if(Je(n)||Mt(n))return e(n,r);for(var i in n)if(kt(n,i)&&r===n[i])return i}return-1}}var Dn=On("indexOf",Be),An=On("lastIndexOf",Ze);function xn(t){var e=0;return Je(t)||Mt(t)?t.length:(Ct(t,function(){e++}),e)}var jn=function(t){return!Vt(t)&&!isNaN(t)&&!Mt(t)&&t%1==0};var Tn=Pt("boolean"),Mn=Tt("RegExp"),kn=Tt("Error");function In(t){for(var e in t)return!1;return!0}var Cn=typeof Symbol!==se;function Pn(t){return Cn&&Symbol.isSymbol?Symbol.isSymbol(t):"symbol"==typeof t}var Fn=Tt("Arguments");var Rn=typeof document===se?0:document;var $n=typeof window===se?0:window;var Wn=typeof FormData!==se;var _n=typeof Map!==se;var Un=typeof WeakMap!==se;var zn=typeof Set!==se;var Hn=typeof WeakSet!==se;function Ln(t){return function(e,n,r){if(e&&Ft(n)){if(Mt(e)||Je(e))return t(e,n,r);for(var i in e)if(kt(e,i)&&n.call(r,e[i],i,e))return i}return-1}}var Kn=Ln(function(t,e,n){for(var r=0,i=t.length;r<i;r++)if(e.call(n,t[r],r,t))return r;return-1});function qn(t,e,n,r,i,o,u){if(t===e)return!0;if(t&&e&&!Ye(t)&&!Ye(e)&&!Je(t)&&!Je(e)){if(Mn(t))return n(""+t,""+e,i,o,u);if(Ve(t)||Tn(t))return n(+t,+e,i,o,u);var a,c,s,f=Mt(t),l=Mt(e);if(f||l?f&&l:t.constructor===e.constructor)return c=$t(t),s=$t(e),r&&(a=r(t,e,i)),c.length===s.length&&(fe(a)?ie(c,function(i,o){return i===s[o]&&qn(t[i],e[s[o]],n,r,f||l?o:i,t,e)}):!!a)}return n(t,e,i,o,u)}function Bn(t,e){return t===e}function Zn(t,e){return qn(t,e,Bn)}var Yn=Ln(function(t,e,n){for(var r=t.length-1;r>=0;r--)if(e.call(n,t[r],r,t))return r;return-1});var Jn=Rt("entries",2);function Vn(t,e){return function(n,r){var i,o,u={},a=[],c=this,s=arguments,f=s.length;if(!Ft(r)){for(o=1;o<f;o++)i=s[o],a.push.apply(a,Mt(i)?i:[i]);r=0}return Ct(n,function(i,o){((r?r.call(c,i,o,n):Kn(a,function(t){return t===o})>-1)?t:e)&&(u[o]=i)}),u}}var Gn=Vn(1,0),Qn=Vn(0,1);var Xn=/(.+)?\[(\d+)\]$/;function tr(t,e,n,r,i){if(!t[e]){var o,u,a=e?e.match(Xn):null;if(n)u=i;else{var c=r?r.match(Xn):null;u=c&&!c[1]?new Array(Ge(c[2])+1):{}}return a?a[1]?(o=Ge(a[2]),t[a[1]]?n?t[a[1]][o]=u:t[a[1]][o]?u=t[a[1]][o]:t[a[1]][o]=u:(t[a[1]]=new Array(o+1),t[a[1]][o]=u)):t[a[2]]=u:t[e]=u,u}return n&&(t[e]=i),t[e]}function er(t){return"__proto__"===t||"constructor"===t||"prototype"===t}function nr(t,e,n){var r,i={};return t&&(e&&Re(e)?e=function(t){return function(){return In(t)}}(e):Ft(e)||(e=Gt(e)),Ct(t,function(o,u){r=e?e.call(n,o,u,t):o,i[r]?i[r].push(o):i[r]=[o]})),i}function rr(t,e,n){var r,i,o=[],u=arguments;if(u.length<2&&(e=u[0],t=0),i=e|0,(r=t|0)<e)for(n=n|0||1;r<i;r+=n)o.push(r);return o}var ir=Te(function(t,e){return t>e});function or(t){return(t.split(".")[1]||"").length}function ur(t,e){if(t.repeat)return t.repeat(e);var n=isNaN(e)?[]:new Array(Ge(e));return n.join(t)+(n.length>0?t:"")}function ar(t,e){return t.substring(0,e)+"."+t.substring(e,t.length)}function cr(t){var e=""+t,n=e.match(/^([-+]?)((\d+)|((\d+)?[.](\d+)?))e([-+]{1})([0-9]+)$/);if(n){var r=t<0?"-":"",i=n[3]||"",o=n[5]||"",u=n[6]||"",a=n[7],c=n[8],s=c-u.length,f=c-i.length,l=c-o.length;return"+"===a?i?r+i+ur("0",c):s>0?r+o+u+ur("0",s):r+o+ar(u,c):i?f>0?r+"0."+ur("0",Math.abs(f))+i:r+ar(i,f):l>0?r+"0."+ur("0",Math.abs(l))+o+u:r+ar(o,l)+u}return e}function sr(t,e){var n=cr(t),r=cr(e);return parseInt(n.replace(".",""))*parseInt(r.replace(".",""))/Math.pow(10,or(n)+or(r))}function fr(t){return function(e,n){var r=Oe(e),i=r;if(r){n|=0;var o=cr(r).split("."),u=o[0],a=o[1]||"",c=a.substring(0,n+1),s=u+(c?"."+c:"");if(n>=a.length)return Oe(s);if(s=r,n>0){var f=Math.pow(10,n);i=Math[t](sr(s,f))/f}else i=Math[t](s)}return i}}var lr=fr("round"),dr=fr("ceil"),hr=fr("floor");function pr(t){return Ye(t)?cr(t):""+(le(t)?"":t)}function gr(t,e){var n=pr(lr(t,e|=0)).split("."),r=n[0],i=n[1]||"",o=e-i.length;return e?o>0?r+"."+i+ur("0",o):r+ar(i,Math.abs(o)):r}var mr=Ne(Ge);function vr(t,e){return sr(Oe(t),Oe(e))}function yr(t,e){var n=cr(t),r=cr(e),i=Math.pow(10,Math.max(or(n),or(r)));return(vr(t,i)+vr(e,i))/i}function wr(t,e){var n=cr(t),r=cr(e),i=or(n),o=or(r)-i,u=o<0,a=Math.pow(10,u?Math.abs(o):o);return vr(n.replace(".","")/r.replace(".",""),u?1/a:a)}function br(t,e,n){var r=0;return Ct(t&&t.length>2&&Mt(t)?t.sort():t,e?Ft(e)?function(){r=yr(r,e.apply(n,arguments))}:function(t){r=yr(r,pe(t,e))}:function(t){r=yr(r,t)}),r}var Er="first",Sr="last";function Nr(t){return t.getFullYear()}var Or=864e5;function Dr(t){return t.getMonth()}function Ar(t){return Ve(t)&&!isNaN(Xe(t))}function xr(t,e,n){var r=e&&!isNaN(e)?e:0;if(Ar(t=En(t))){if(n===Er)return new Date(Nr(t),Dr(t)+r,1);if(n===Sr)return new Date(Xe(xr(t,r+1,Er))-1);if(Ye(n)&&t.setDate(n),r){var i=t.getDate();if(t.setMonth(Dr(t)+r),i!==t.getDate())return t.setDate(1),new Date(Xe(t)-Or)}}return t}function jr(t,e,n){var r;if(Ar(t=En(t))&&(e&&(r=e&&!isNaN(e)?e:0,t.setFullYear(Nr(t)+r)),n||!isNaN(n))){if(n===Er)return new Date(Nr(t),0,1);if(n===Sr)return t.setMonth(11),xr(t,0,Sr);t.setMonth(n)}return t}var Tr=6048e5;function Mr(t,e,n,r){if(Ar(t=En(t))){var i=Ye(n),o=Ye(r),u=Xe(t);if(i||o){var a=o?r:At.firstDayOfWeek,c=t.getDay(),s=i?n:c;if(c!==s){var f=0;a>c?f=-(7-a+c):a<c&&(f=a-c),u+=s>a?((0===s?7:s)-a+f)*Or:s<a?(7-a+s+f)*Or:f*Or}}return e&&!isNaN(e)&&(u+=e*Tr),new Date(u)}return t}function kr(t,e,n){if(Ar(t=En(t))&&!isNaN(e)){if(t.setDate(t.getDate()+Ge(e)),n===Er)return new Date(Nr(t),Dr(t),t.getDate());if(n===Sr)return new Date(Xe(kr(t,1,Er))-1)}return t}function Ir(t){return t.toUpperCase()}var Cr=ee(rr(0,7),function(t){return[(t+1)%7,(t+2)%7,(t+3)%7]});function Pr(t,e){var n=new Date(t).getDay();return oe(Cr[e],n)}function Fr(t,e){return function(n,r){var i=Ye(r)?r:At.firstDayOfWeek,o=En(n);if(Ar(o)){var u,a=Mr(o,0,i,i),c=t(a),s=Xe(c),f=Xe(a),l=f+5184e5,d=new Date(l),h=Mr(c,0,i,i),p=Xe(h);if(f===p)return 1;if(e(a,d))for(u=Xe(t(d));u<l;u+=Or)if(Pr(u,i))return 1;var g=p+5184e5,m=new Date(l),v=1;if(e(h,m))for(v=0,u=s;u<g;u+=Or)if(Pr(u,i)){v++;break}return Math.floor((f-p)/Tr)+v}return NaN}}var Rr=Fr(function(t){return new Date(t.getFullYear(),0,1)},function(t,e){return t.getFullYear()!==e.getFullYear()});function $r(t){return Xe(function(t){return new Date(Nr(t),Dr(t),t.getDate())}(t))}function Wr(t){return Ar(t=En(t))?Math.floor(($r(t)-$r(jr(t,0,Er)))/Or)+1:NaN}function _r(t,e,n){var r=pr(t);return e|=0,n=fe(n)?" ":""+n,r.padStart?r.padStart(e,n):e>r.length?((e-=r.length)>n.length&&(n+=ur(n,e/n.length)),n.slice(0,e)+r):r}function Ur(t,e,n,r){var i=e[n];return i?Ft(i)?i(r,n,t):i[r]:r}var zr=/\[([^\]]+)]|y{2,4}|M{1,2}|d{1,2}|H{1,2}|h{1,2}|m{1,2}|s{1,2}|S{1,3}|Z{1,2}|W{1,2}|D{1,3}|[aAeEq]/g;function Hr(t,e,n){if(t){if(Ar(t=En(t))){var r=n||{},i=e||At.parseDateFormat||At.formatString,o=t.getHours(),u=o<12?"am":"pm",a=Kt({},At.parseDateRules||At.formatStringMatchs,r.formats),c=function(e,n){return(""+Nr(t)).substring(4-n)},s=function(e,n){return _r(Dr(t)+1,n,"0")},f=function(e,n){return _r(t.getDate(),n,"0")},l=function(t,e){return _r(o,e,"0")},d=function(t,e){return _r(o<=12?o:o-12,e,"0")},h=function(e,n){return _r(t.getMinutes(),n,"0")},p=function(e,n){return _r(t.getSeconds(),n,"0")},g=function(e,n){return _r(t.getMilliseconds(),n,"0")},m=function(e,n){var r=t.getTimezoneOffset()/60*-1;return Ur(t,a,e,(r>=0?"+":"-")+_r(r,2,"0")+(1===n?":":"")+"00")},v=function(e,n){return _r(Ur(t,a,e,Rr(t,le(r.firstDay)?At.firstDayOfWeek:r.firstDay)),n,"0")},y=function(e,n){return _r(Ur(t,a,e,Wr(t)),n,"0")},w={yyyy:c,yy:c,MM:s,M:s,dd:f,d:f,HH:l,H:l,hh:d,h:d,mm:h,m:h,ss:p,s:p,SSS:g,S:g,ZZ:m,Z:m,WW:v,W:v,DDD:y,D:y,a:function(e){return Ur(t,a,e,u)},A:function(e){return Ur(t,a,e,Ir(u))},e:function(e){return Ur(t,a,e,t.getDay())},E:function(e){return Ur(t,a,e,t.getDay())},q:function(e){return Ur(t,a,e,Math.floor((Dr(t)+3)/3))}};return i.replace(zr,function(t,e){return e||(w[t]?w[t](t,t.length):t)})}return"Invalid Date"}return""}var Lr=Date.now||function(){return Xe(Sn())};var Kr=Fr(function(t){return new Date(t.getFullYear(),t.getMonth(),1)},function(t,e){return t.getMonth()!==e.getMonth()});var qr=[["yyyy",31536e6],["MM",2592e6],["dd",864e5],["HH",36e5],["mm",6e4],["ss",1e3],["S",0]];function Br(t){return t&&t.trimRight?t.trimRight():pr(t).replace(/[\s\uFEFF\xA0]+$/g,"")}function Zr(t){return t&&t.trimLeft?t.trimLeft():pr(t).replace(/^[\s\uFEFF\xA0]+/g,"")}function Yr(t){return t&&t.trim?t.trim():Br(Zr(t))}var Jr={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#x27;","`":"&#x60;"};function Vr(t){var e=new RegExp("(?:"+$t(t).join("|")+")","g");return function(n){return pr(n).replace(e,function(e){return t[e]})}}var Gr=Vr(Jr),Qr={};Ct(Jr,function(t,e){Qr[Jr[e]]=e});var Xr=Vr(Qr);function ti(t,e,n){return t.substring(e,n)}function ei(t){return t.toLowerCase()}var ni={};var ri={};function ii(t,e,n){return pr(t).replace((n||At).tmplRE||/\{{2}([.\w[\]\s]+)\}{2}/g,function(t,n){return pe(e,Yr(n))})}var oi=decodeURIComponent;function ui(t){var e,n={};return t&&Je(t)&&xt(t.split("&"),function(t){e=t.split("="),n[oi(e[0])]=oi(e[1]||"")}),n}var ai=encodeURIComponent;function ci(t,e,n){var r,i=[];return Ct(t,function(t,o){r=Mt(t),Qt(t)||r?i=i.concat(ci(t,e+"["+o+"]",r)):i.push(ai(e+"["+(n?"":o)+"]")+"="+ai(Vt(t)?"":t))}),i}var si=typeof location===se?0:location;function fi(){return si?si.origin||si.protocol+"//"+si.host:""}function li(t){return ui(t.split("?")[1]||"")}function di(t){var e,n,r,i,o=""+t;return 0===o.indexOf("//")?o=(si?si.protocol:"")+o:0===o.indexOf("/")&&(o=fi()+o),r=o.replace(/#.*/,"").match(/(\?.*)/),(i={href:o,hash:"",host:"",hostname:"",protocol:"",port:"",search:r&&r[1]&&r[1].length>1?r[1]:""}).path=o.replace(/^([a-z0-9.+-]*:)\/\//,function(t,e){return i.protocol=e,""}).replace(/^([a-z0-9.+-]*)(:\d+)?\/?/,function(t,e,r){return n=r||"",i.port=n.replace(":",""),i.hostname=e,i.host=e+n,"/"}).replace(/(#.*)/,function(t,e){return i.hash=e.length>1?e:"",""}),e=i.hash.match(/#((.*)\?|(.*))/),i.pathname=i.path.replace(/(\?|#.*).*/,""),i.origin=i.protocol+"//"+i.host,i.hashKey=e&&(e[2]||e[1])||"",i.hashQuery=li(i.hash),i.searchQuery=li(i.search),i}function hi(t,e){var n=parseFloat(e),r=Sn(),i=Xe(r);switch(t){case"y":return Xe(jr(r,n));case"M":return Xe(xr(r,n));case"d":return Xe(kr(r,n));case"h":case"H":return i+60*n*60*1e3;case"m":return i+60*n*1e3;case"s":return i+1e3*n}return i}function pi(t){return(Ve(t)?t:new Date(t)).toUTCString()}function gi(t,e,n){if(Rn){var r,i,o,u,a,c,s=[],f=arguments;return Mt(t)?s=t:f.length>1?s=[Kt({name:t,value:e},n)]:Re(t)&&(s=[t]),s.length>0?(xt(s,function(t){r=Kt({},At.cookies,t),o=[],r.name&&(i=r.expires,o.push(ai(r.name)+"="+ai(Re(r.value)?JSON.stringify(r.value):r.value)),i&&(i=isNaN(i)?i.replace(/^([0-9]+)(y|M|d|H|h|m|s)$/,function(t,e,n){return pi(hi(n,e))}):/^[0-9]{11,13}$/.test(i)||Ve(i)?pi(i):pi(hi("d",i)),r.expires=i),xt(["expires","path","domain","secure"],function(t){fe(r[t])||o.push(r[t]&&"secure"===t?t:t+"="+r[t])})),Rn.cookie=o.join("; ")}),!0):(u={},(a=Rn.cookie)&&xt(a.split("; "),function(t){c=t.indexOf("="),u[oi(t.substring(0,c))]=oi(t.substring(c+1)||"")}),1===f.length?u[t]:u)}return!1}function mi(t){return gi(t)}function vi(t,e,n){return gi(t,e,n),gi}function yi(t,e){gi(t,"",Kt({expires:-1},At.cookies,e))}function wi(){return $t(gi())}function bi(t){try{var e="__xe_t";return t.setItem(e,1),t.removeItem(e),!0}catch(t){return!1}}function Ei(t){return navigator.userAgent.indexOf(t)>-1}Kt(gi,{has:function(t){return oe(wi(),t)},set:vi,setItem:vi,get:mi,getItem:mi,remove:yi,removeItem:yi,keys:wi,getJSON:function(){return gi()}}),Kt(qt,{assign:Kt,objectEach:It,lastObjectEach:Jt,objectMap:function(t,e,n){var r={};if(t){if(!e)return t;Ft(e)||(e=Gt(e)),Ct(t,function(i,o){r[o]=e.call(n,i,o,t)})}return r},merge:function(t){t||(t={});for(var e,n=arguments,r=n.length,i=1;i<r;i++)(e=n[i])&&te(t,e);return t},uniq:ae,union:function(){for(var t=arguments,e=[],n=0,r=t.length;n<r;n++)e=e.concat(ce(t[n]));return ae(e)},sortBy:we,orderBy:ye,shuffle:Se,sample:function(t,e){var n=Se(t);return arguments.length<=1?n[0]:(e<n.length&&(n.length=e||0),n)},some:re,every:ie,slice:De,filter:function(t,e,n){var r=[];if(t&&e){if(t.filter)return t.filter(e,n);Ct(t,function(i,o){e.call(n,i,o,t)&&r.push(i)})}return r},find:xe,findLast:function(t,e,n){if(t){Mt(t)||(t=Ee(t));for(var r=t.length-1;r>=0;r--)if(e.call(n,t[r],r,t))return t[r]}},findKey:Ae,includes:oe,arrayIndexOf:Be,arrayLastIndexOf:Ze,map:ee,reduce:function(t,e,n){if(t){var r,i,o=0,u=n,a=arguments.length>2,c=$t(t);if(t.length&&t.reduce)return i=function(){return e.apply(null,arguments)},a?t.reduce(i,u):t.reduce(i);for(a&&(o=1,u=t[c[0]]),r=c.length;o<r;o++)u=e.call(null,u,t[c[o]],o,t);return u}},copyWithin:function(t,e,n,r){if(Mt(t)&&t.copyWithin)return t.copyWithin(e,n,r);var i,o,u=e|0,a=n|0,c=t.length,s=arguments.length>3?r|0:c;if(u<c&&(u=u>=0?u:c+u)>=0&&(a=a>=0?a:c+a)<(s=s>=0?s:c+s))for(i=0,o=t.slice(a,s);u<c&&!(o.length<=i);u++)t[u]=o[i++];return t},chunk:function(t,e){var n,r=[],i=e|0||1;if(Mt(t))if(i>=0&&t.length>i)for(n=0;n<t.length;)r.push(t.slice(n,n+i)),n+=i;else r=t.length?[t]:t;return r},zip:function(){return ke(arguments)},unzip:ke,zipObject:function(t,e){var n={};return e=e||[],Ct(Ee(t),function(t,r){n[t]=e[r]}),n},flatten:function(t,e){return Mt(t)?Ie(t,e):[]},toArray:ce,includeArrays:ue,pluck:je,invoke:function(t,e){for(var n,r=arguments,i=[],o=[],u=2,a=r.length;u<a;u++)i.push(r[u]);if(Mt(e)){for(a=e.length-1,u=0;u<a;u++)o.push(e[u]);e=e[a]}return ee(t,function(t){if(o.length&&(t=function(t,e){for(var n=0,r=e.length;t&&n<r;)t=t[e[n++]];return r&&t?t:0}(t,o)),(n=t[e]||e)&&n.apply)return n.apply(t,i)})},arrayEach:xt,lastArrayEach:Yt,toArrayTree:function(t,e){var n,r,i,o=Kt({},At.treeOptions,e),u=o.strict,a=o.key,c=o.parentKey,s=o.children,f=o.mapChildren,l=o.sortKey,d=o.reverse,h=o.data,p=[],g={},m={};return l&&(t=ye(zt(t),l),d&&(t=t.reverse())),Ct(t,function(t){n=t[a],m[n]&&Ce("warn","Duplicate primary key="+n),m[n]=!0}),Ct(t,function(t){n=t[a],h?(r={})[h]=t:r=t,i=t[c],g[n]=g[n]||[],r[a]=n,r[c]=i,n===i&&(i=null,Ce("warn","Error infinite Loop. key="+n+" parentKey="+n)),g[i]=g[i]||[],g[i].push(r),r[s]=g[n],f&&(r[f]=g[n]),(!u||u&&le(i))&&(m[i]||p.push(r))}),u&&function(t,e){Ct(t,function(t){t[e]&&!t[e].length&&We(t,e)})}(t,s),p},toTreeArray:function(t,e){return _e([],null,t,Kt({},At.treeOptions,e))},findTree:ze,eachTree:He,mapTree:Le,filterTree:function(t,e,n,r){var i=[];return t&&e&&He(t,function(t,n,o,u,a,c){e.call(r,t,n,o,u,a,c)&&i.push(t)},n),i},searchTree:qe,hasOwnProp:kt,eqNull:le,isNaN:function(t){return Ye(t)&&isNaN(t)},isFinite:function(t){return Ye(t)&&isFinite(t)},isUndefined:fe,isArray:Mt,isFloat:function(t){return!(Vt(t)||isNaN(t)||Mt(t)||jn(t))},isInteger:jn,isFunction:Ft,isBoolean:Tn,isString:Je,isNumber:Ye,isRegExp:Mn,isObject:Re,isPlainObject:Qt,isDate:Ve,isError:kn,isTypeError:function(t){return!!t&&t.constructor===TypeError},isEmpty:In,isNull:Vt,isSymbol:Pn,isArguments:Fn,isElement:function(t){return!!(t&&Je(t.nodeName)&&Ye(t.nodeType))},isDocument:function(t){return!(!t||!Rn||9!==t.nodeType)},isWindow:function(t){return!(!$n||!t||t!==t.window)},isFormData:function(t){return Wn&&t instanceof FormData},isMap:function(t){return _n&&t instanceof Map},isWeakMap:function(t){return Un&&t instanceof WeakMap},isSet:function(t){return zn&&t instanceof Set},isWeakSet:function(t){return Hn&&t instanceof WeakSet},isLeapYear:Nn,isMatch:function(t,e){var n=$t(t),r=$t(e);return!r.length||(ue(n,r)?re(r,function(r){return Kn(n,function(n){return n===r&&Zn(t[n],e[r])})>-1}):Zn(t,e))},isEqual:Zn,isEqualWith:function(t,e,n){return Ft(n)?qn(t,e,function(t,e,r,i,o){var u=n(t,e,r,i,o);return fe(u)?Bn(t,e):!!u},n):qn(t,e,Bn)},getType:function(t){return Vt(t)?"null":Pn(t)?"symbol":Ve(t)?"date":Mt(t)?"array":Mn(t)?"regexp":kn(t)?"error":typeof t},uniqueId:function(t){return""+(le(t)?"":t)+At.keyId++},getSize:xn,indexOf:Dn,lastIndexOf:An,findIndexOf:Kn,findLastIndexOf:Yn,toStringJSON:function(t){if(Qt(t))return t;if(Je(t))try{return JSON.parse(t)}catch(t){}return{}},toJSONString:function(t){return le(t)?"":JSON.stringify(t)},keys:$t,values:Ee,entries:Jn,pick:Gn,omit:Qn,first:function(t){return Ee(t)[0]},last:function(t){var e=Ee(t);return e[e.length-1]},each:Ct,forOf:function(t,e,n){if(t)if(Mt(t))for(var r=0,i=t.length;r<i&&!1!==e.call(n,t[r],r,t);r++);else for(var o in t)if(kt(t,o)&&!1===e.call(n,t[o],o,t))break},lastForOf:function(t,e,n){var r,i;if(t)if(Mt(t))for(r=t.length-1;r>=0&&!1!==e.call(n,t[r],r,t);r--);else for(r=(i=kt(t)).length-1;r>=0&&!1!==e.call(n,t[i[r]],i[r],t);r--);},lastEach:Fe,has:function(t,e){if(t){if(kt(t,e))return!0;var n,r,i,o,u,a,c=he(e),s=0,f=c.length;for(u=t;s<f&&(a=!1,(o=(n=c[s])?n.match(de):"")?(r=o[1],i=o[2],r?u[r]&&kt(u[r],i)&&(a=!0,u=u[r][i]):kt(u,i)&&(a=!0,u=u[i])):kt(u,n)&&(a=!0,u=u[n]),a);s++)if(s===f-1)return!0}return!1},get:pe,set:function(t,e,n){if(t&&Xt(e))if(!t[e]&&!kt(t,e)||er(e)){for(var r=t,i=he(e),o=i.length,u=0;u<o;u++)if(!er(i[u])){var a=u===o-1;r=tr(r,i[u],a,a?null:i[u+1],n)}}else t[e]=n;return t},groupBy:nr,countBy:function(t,e,n){var r=nr(t,e,n||this);return It(r,function(t,e){r[e]=t.length}),r},clone:zt,clear:$e,remove:We,range:rr,destructuring:function(t,e){if(t&&e){var n=Kt.apply(this,[{}].concat(De(arguments,1))),r=$t(n);xt($t(t),function(e){oe(r,e)&&(t[e]=n[e])})}return t},random:be,min:ir,max:Me,commafy:function(t,e){var n,r,i,o,u,a=Kt({},At.commafyOptions,e),c=a.digits;return Ye(t)?(n=(a.ceil?dr:a.floor?hr:lr)(t,c),o=(r=cr(c?gr(n,c):n).split("."))[0],u=r[1],(i=o&&n<0)&&(o=o.substring(1,o.length))):o=(r=(n=pr(t).replace(/,/g,""))?[n]:[])[0],r.length?(i?"-":"")+o.replace(new RegExp("(?=(?!(\\b))(.{"+(a.spaceNumber||3)+"})+$)","g"),a.separator||",")+(u?"."+u:""):n},round:lr,ceil:dr,floor:hr,toFixed:gr,toNumber:Oe,toNumberString:cr,toInteger:mr,add:function(t,e){return yr(Oe(t),Oe(e))},subtract:function(t,e){var n=Oe(t),r=Oe(e),i=cr(n),o=cr(r),u=or(i),a=or(o),c=Math.pow(10,Math.max(u,a));return parseFloat(gr((n*c-r*c)/c,u>=a?u:a))},multiply:vr,divide:function(t,e){return wr(Oe(t),Oe(e))},sum:br,mean:function(t,e,n){return wr(br(t,e,n),xn(t))},now:Lr,timestamp:function(t,e){if(t){var n=En(t,e);return Ve(n)?Xe(n):n}return Lr()},isValidDate:Ar,isDateSame:function(t,e,n){return!(!t||!e)&&("Invalid Date"!==(t=Hr(t,n))&&t===Hr(e,n))},toStringDate:En,toDateString:Hr,getWhatYear:jr,getWhatQuarter:function(t,e,n){var r,i=e&&!isNaN(e)?3*e:0;return Ar(t=En(t))?(r=3*(function(t){var e=t.getMonth();return e<3?1:e<6?2:e<9?3:4}(t)-1),t.setMonth(r),xr(t,i,n)):t},getWhatMonth:xr,getWhatWeek:Mr,getWhatDay:kr,getWhatHours:function t(e,n,r){if(Ar(e=En(e))&&!isNaN(n)){if(e.setHours(e.getHours()+Ge(n)),r===Er)return new Date(Nr(e),Dr(e),e.getDate(),e.getHours());if(r===Sr)return new Date(Xe(t(e,1,Er))-1)}return e},getWhatMinutes:function t(e,n,r){if(Ar(e=En(e))&&!isNaN(n)){if(e.setMinutes(e.getMinutes()+Ge(n)),r===Er)return new Date(Nr(e),Dr(e),e.getDate(),e.getHours(),e.getMinutes());if(r===Sr)return new Date(Xe(t(e,1,Er))-1)}return e},getWhatSeconds:function t(e,n,r){if(Ar(e=En(e))&&!isNaN(n)){if(e.setSeconds(e.getSeconds()+Ge(n)),r===Er)return new Date(Nr(e),Dr(e),e.getDate(),e.getHours(),e.getMinutes(),e.getSeconds());if(r===Sr)return new Date(Xe(t(e,1,Er))-1)}return e},getYearDay:Wr,getYearWeek:Rr,getMonthWeek:Kr,getDayOfYear:function(t,e){return Ar(t=En(t))?Nn(jr(t,e))?366:365:NaN},getDayOfMonth:function(t,e){return Ar(t=En(t))?Math.floor((Xe(xr(t,e,Sr))-Xe(xr(t,e,Er)))/Or)+1:NaN},getDateDiff:function(t,e){var n,r,i,o,u,a,c={done:!1,status:!1,time:0};if(t=En(t),e=e?En(e):Sn(),Ar(t)&&Ar(e)&&(n=Xe(t))<(r=Xe(e)))for(o=c.time=r-n,c.done=!0,c.status=!0,a=0,u=qr.length;a<u;a++)o>=(i=qr[a])[1]?a===u-1?c[i[0]]=o||0:(c[i[0]]=Math.floor(o/i[1]),o-=c[i[0]]*i[1]):c[i[0]]=0;return c},trim:Yr,trimLeft:Zr,trimRight:Br,escape:Gr,unescape:Xr,camelCase:function(t){if(t=pr(t),ni[t])return ni[t];var e=t.length,n=t.replace(/([-]+)/g,function(t,n,r){return r&&r+n.length<e?"-":""});return e=n.length,n=n.replace(/([A-Z]+)/g,function(t,n,r){var i=n.length;return n=ei(n),r?i>2&&r+i<e?Ir(ti(n,0,1))+ti(n,1,i-1)+Ir(ti(n,i-1,i)):Ir(ti(n,0,1))+ti(n,1,i):i>1&&r+i<e?ti(n,0,i-1)+Ir(ti(n,i-1,i)):n}).replace(/(-[a-zA-Z])/g,function(t,e){return Ir(ti(e,1,e.length))}),ni[t]=n,n},kebabCase:function(t){if(t=pr(t),ri[t])return ri[t];if(/^[A-Z]+$/.test(t))return ei(t);var e=t.replace(/^([a-z])([A-Z]+)([a-z]+)$/,function(t,e,n,r){var i=n.length;return i>1?e+"-"+ei(ti(n,0,i-1))+"-"+ei(ti(n,i-1,i))+r:ei(e+"-"+n+r)}).replace(/^([A-Z]+)([a-z]+)?$/,function(t,e,n){var r=e.length;return ei(ti(e,0,r-1)+"-"+ti(e,r-1,r)+(n||""))}).replace(/([a-z]?)([A-Z]+)([a-z]?)/g,function(t,e,n,r,i){var o=n.length;return o>1&&(e&&(e+="-"),r)?(e||"")+ei(ti(n,0,o-1))+"-"+ei(ti(n,o-1,o))+r:(e||"")+(i?"-":"")+ei(n)+(r||"")});return e=e.replace(/([-]+)/g,function(t,n,r){return r&&r+n.length<e.length?"-":""}),ri[t]=e,e},repeat:function(t,e){return ur(pr(t),e)},padStart:_r,padEnd:function(t,e,n){var r=pr(t);return e|=0,n=fe(n)?" ":""+n,r.padEnd?r.padEnd(e,n):e>r.length?((e-=r.length)>n.length&&(n+=ur(n,e/n.length)),r+n.slice(0,e)):r},startsWith:function(t,e,n){var r=pr(t);return 0===(1===arguments.length?r:r.substring(n)).indexOf(e)},endsWith:function(t,e,n){var r=pr(t),i=arguments.length;return i>1&&(i>2?r.substring(0,n).indexOf(e)===n-1:r.indexOf(e)===r.length-1)},template:ii,toFormatString:function(t,e){return ii(t,e,{tmplRE:/\{([.\w[\]\s]+)\}/g})},toString:pr,toValueString:pr,noop:function(){},property:Gt,bind:function(t,e){var n=De(arguments,2);return function(){return t.apply(e,De(arguments).concat(n))}},once:function(t,e){var n=!1,r=null,i=De(arguments,2);return function(){return n||(r=t.apply(e,De(arguments).concat(i)),n=!0),r}},after:function(t,e,n){var r=0,i=[];return function(){var o=arguments;++r<=t&&i.push(o[0]),r>=t&&e.apply(n,[i].concat(De(o)))}},before:function(t,e,n){var r=0,i=[];return n=n||this,function(){var o=arguments;++r<t&&(i.push(o[0]),e.apply(n,[i].concat(De(o))))}},throttle:function(t,e,n){var r=null,i=null,o=!1,u=null,a=Kt({leading:!0,trailing:!0},n),c=a.leading,s=a.trailing,f=function(){r=null,i=null},l=function(){o=!0,t.apply(i,r),u=setTimeout(d,e),f()},d=function(){u=null,o||!0!==s?f():l()},h=function(){r=arguments,i=this,o=!1,null!==u||!0!==c?!0===s&&(u=setTimeout(d,e)):l()};return h.cancel=function(){var t=null!==u;return t&&clearTimeout(u),f(),u=null,o=!1,t},h},debounce:function(t,e,n){var r=null,i=null,o="boolean"==typeof n?{leading:n,trailing:!n}:Kt({leading:!1,trailing:!0},n),u=!1,a=null,c=o.leading,s=o.trailing,f=function(){r=null,i=null},l=function(){u=!0,t.apply(i,r),f()},d=function(){!0===c&&(a=null),u||!0!==s?f():l()},h=function(){u=!1,r=arguments,i=this,null===a?!0===c&&l():clearTimeout(a),a=setTimeout(d,e)};return h.cancel=function(){var t=null!==a;return t&&clearTimeout(a),f(),a=null,u=!1,t},h},delay:function(t,e){var n=De(arguments,2),r=this;return setTimeout(function(){t.apply(r,n)},e)},unserialize:ui,serialize:function(t){var e,n=[];return Ct(t,function(t,r){fe(t)||(e=Mt(t),Qt(t)||e?n=n.concat(ci(t,r,e)):n.push(ai(r)+"="+ai(Vt(t)?"":t)))}),n.join("&").replace(/%20/g,"+")},parseUrl:di,getBaseURL:function(){if(si){var t=si.pathname,e=An(t,"/")+1;return fi()+(e===t.length?t:t.substring(0,e))}return""},locat:function(){return si?di(si.href):{}},browse:function(){var t,e,n,r=!1,i=!1,o=!1,u={isNode:!1,isMobile:r,isPC:!1,isDoc:!!Rn};if($n||typeof process===se){n=Ei("Edge"),e=Ei("Chrome"),r=/(Android|webOS|iPhone|iPad|iPod|SymbianOS|BlackBerry|Windows Phone)/.test(navigator.userAgent),u.isDoc&&(t=Rn.body||Rn.documentElement,xt(["webkit","khtml","moz","ms","o"],function(e){u["-"+e]=!!t[e+"MatchesSelector"]}));try{i=bi($n.localStorage)}catch(t){}try{o=bi($n.sessionStorage)}catch(t){}Kt(u,{edge:n,firefox:Ei("Firefox"),msie:!n&&u["-ms"],safari:!e&&!n&&Ei("Safari"),isMobile:r,isPC:!r,isLocalStorage:i,isSessionStorage:o})}else u.isNode=!0;return u},cookie:gi});let Si=!1;function Ni(t){if(!t)return null;const e=localStorage.getItem(t);if(!e)return null;try{return JSON.parse(e,(t,e)=>{if(e&&"string"==typeof e){const t=function(){return e.replace("TT_FUNCTION","")};return e.includes("TT_FUNCTION")?t():e}return e})}catch{return e}}function Oi(t,e="12",n="Microsoft YaHei,Arial,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue','Noto Sans',sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji'"){let r=0;const i=document.createElement("canvas").getContext("2d");return i&&(i.font=`${e} ${n}`,r=i.measureText(t).width),r}function Di(t,e,n){const r=n?.excludeAll||[],i=n?.exclude||[];return r.includes("Id")||r.push("Id"),r.includes("rowId")||r.push("rowId"),Object.fromEntries(Object.entries(t).reduce((t,[o,u])=>(r.includes(o)||i.includes(o)||(u&&F(u)?Ai(n,e,u,o,t):u&&q(u)?xi(n,e,u,o,t):ji(n,e,u,o,t)),t),[]))}function Ai(t,e,n,r,i){const o=Di(n,e[r]||{},{excludeAll:t?.excludeAll,...t});Object.keys(o).length&&i.push([r,o])}function xi(t,e,n,r,i){const o=[],u=(t||{})[r]?.key;if(e[r]){const i=n?.length>=e[r]?.length?n:e[r],a=n?.length<e[r]?.length?n:e[r];u?i.forEach(e=>{const n=a.find(t=>t[u]===e[u]);if(n){const i=Di(e,n,{excludeAll:t?.excludeAll,...t[r]});Object.keys(i).length&&o.push({[u]:n[u],...i})}else o.push(e)}):i.forEach((e,n)=>{const r=a[n];if(F(e)&&!F(r)||q(e)&&!q(r)||typeof e!=typeof r||!r)o.push(e);else if(F(e)||q(e)){const n=Di(e,r,{excludeAll:t?.excludeAll});Object.keys(n).length&&o.push({...n})}else e!==r&&o.push(e)})}else o.push(...n);o.length&&i.push([r,o])}function ji(t,e,n,r,i){const o=t?.notNullToFalse||[];if("string"==typeof n&&"number"==typeof e[r]||"number"==typeof n&&"string"==typeof e[r])Number(n)!==Number(e[r])&&i.push([r,n]);else if([void 0,null,""].includes(n))[void 0,null,""].includes(e[r])||i.push([r,n]);else if(n!==e[r]){if(!1===n&&[void 0,null,""].includes(e[r])&&!o.includes(r))return;i.push([r,n])}}function Ti(t,e,n){const r={},i=["rowId","row_id"],o=n?.excludeAll||[],u=n?.exclude||[];for(const a in e)if(Object.prototype.hasOwnProperty.call(e,a)&&![...o,...i].includes(a)&&![...u,...i].includes(a)){const i=t[a],u=e[a];if(Array.isArray(u)&&Array.isArray(i)){(i.length!==u.length||i.some((t,e)=>"object"==typeof t&&"object"==typeof u[e]?Object.keys(Ti(t,u[e],{excludeAll:o,...n?.[a]})).length>0:t!==u[e]))&&(r[a]=u)}else if("object"==typeof u&&"object"==typeof i&&null!==u&&null!==i){const t=Ti(i,u,{excludeAll:o,...n?.[a]});Object.keys(t).length>0&&(r[a]=t)}else i!==u&&String(i)!==String(u)&&(r[a]=u)}return r}function Mi(t={},e={}){let n;for(n in e)t[n]=F(t[n])?Mi(t[n],e[n]):t[n]=e[n];return t}function ki(t,e="px"){return qt.isNumber(t)||/^\d+$/.test(`${t}`)?`${t}${e}`:`${t||""}`}function Ii(t,e,n){return o({get:()=>new Proxy(t[e],{set:(t,r,i)=>(n(`update:${e}`,{...t,[r]:i}),!0)}),set(t){n(`update:${e}`,t)}})}function Ci(t){const e=Object.getPrototypeOf(t);if(!e||e===Object.prototype)return t;const n=Object.getOwnPropertyNames(e);for(const e of n){const n=t[e];"constructor"!==e&&"function"==typeof n&&(t[e]=n.bind(t))}return t}function Pi(t){if(null===t||"object"!=typeof t)return t;if(t instanceof Date)return new Date(t.getTime());if(t instanceof RegExp)return new RegExp(t);if(Array.isArray(t))return t.map(t=>Pi(t));const e={};return Object.keys(t).forEach(n=>{e[n]=Pi(t[n])}),e}function Fi(t,e="id",n="parentId",r="children"){const i=new Map,o=[];return t.forEach(t=>{i.set(t[e],{...t,[r]:[]})}),t.forEach(t=>{const u=i.get(t[e]);if(t[n]){const e=i.get(t[n]);e&&e[r].push(u)}else o.push(u)}),o}function Ri(...t){for(const e of t)if(null!=e)return e}function $i(...t){return u(a(t))}function Wi(){const t=new Event("resize");window.dispatchEvent(t)}function _i(t,e,n="prop",r="content"){t.forEach(t=>{Object.prototype.hasOwnProperty.call(t,n)&&(q(r)?r.forEach(r=>{Object.prototype.hasOwnProperty.call(t,r)&&(t[r]=e[t[n]])}):Object.prototype.hasOwnProperty.call(t,r)&&(t[r]=e[t[n]]))})}const Ui=function(t,e="YYYY-MM-DD HH:mm:ss",n="Asia/Shanghai"){return""===t||null==t||0===t||"0"===t?"":r(t).isValid()?(Si||(r.extend(s),r.extend(f),Si=!0),r(t).tz(n).format(e)):""};function zi(t){return c(t)}function Hi(t,e){return t?e&&0!==e.length?e.reduce((t,e)=>(delete t[e],t),{...t}):t:{}}function Li(t,e=200,n={}){const{leading:r=!1,trailing:i=!0,maxWait:o}=n;let u,a,c,s,f,l=0;function d(e){const n=s;return s=void 0,l=e,f=t(...n),f}function h(){void 0!==u&&(window.clearTimeout(u),u=void 0),void 0!==a&&(window.clearTimeout(a),a=void 0)}function p(){h(),l=0,s=void 0,c=void 0,f=void 0}function g(t){if(void 0===c)return!0;const n=t-c;return n>=e||n<0||void 0!==o&&t-l>=o}function m(){const t=Date.now();if(g(t))return void function(t){u=void 0,i&&void 0!==s?d(t):s=void 0}(t);const n=function(t){const n=t-l,r=e-(t-c);return void 0!==o?Math.min(r,o-n):r}(t);u=n>0?window.setTimeout(m,n):void 0}function v(){const t=Date.now();h(),void 0!==s&&d(t)}const y=(...t)=>{const n=Date.now(),i=g(n);if(s=t??[],c=n,i){if(void 0===u)return function(t){return l=t,h(),u=window.setTimeout(m,e),void 0!==o&&(a=window.setTimeout(v,o)),r?d(t):f}(n);if(void 0!==o)return h(),u=window.setTimeout(m,e),a=window.setTimeout(v,o),r?d(n):f}return void 0===u&&(u=window.setTimeout(m,e),void 0!==o&&(a=window.setTimeout(v,o))),f};return y.isPending=()=>void 0!==u||void 0!==a,y.cancel=()=>{p()},y.flush=(...e)=>{if(!y.isPending())return e.length>0?t(...e):f;const n=void 0!==s?s:e;return p(),t(...n)},y}function Ki(t,...e){let n=[];const r=e[e.length-1];return e.length>0&&Array.isArray(r)&&r.every(t=>["string","number","symbol"].includes(typeof t))&&(n=e.pop()),l((t,e,r)=>n.includes(e)||Array.isArray(t[e])&&Array.isArray(r)?(t[e]=r,!0):void 0)(t,...e)}function qi(...t){let e=new d(t[0]??0);for(let n=1;n<t.length;n++)e=e.add(new d(t[n]??0));return e.toNumber()}function Bi(...t){let e=new d(t[0]??0);for(let n=1;n<t.length;n++)e=e.sub(new d(t[n]??0));return e.toNumber()}function Zi(...t){let e=new d(t[0]??0);for(let n=1;n<t.length;n++)e=e.mul(new d(t[n]??0));return e.toNumber()}function Yi(...t){let e=new d(t[0]??0);for(let n=1;n<t.length;n++)e=e.div(new d(t[n]??0));return e.toNumber()}function Ji(...t){return t.reduce((t,e)=>Qi(t??0).add(e??0).toNumber(),0)}function Vi(t,e){return t.reduce((t,n)=>Qi(t??0).add(e(n)??0).toNumber(),0)}function Gi(t,e,n){const r={},i=n;return t.forEach(t=>{const n=e(t);if(n){const e=i(t);r[n]=Qi(r[n]||0).add(e).toNumber()}}),r}function Qi(t){const e=Number(t)||0===t,n=Number.isNaN(Number(t)),r=new d(t);if(e&&!n)return r;console.error("请输入合理数字!");return new d(Number.NaN)}class Xi{condition=!1;promiseResolvers=null;isConditionTrue(){return this.condition}reset(){this.condition=!1,this.clearPromises()}setConditionFalse(){this.condition=!1,this.promiseResolvers&&(this.promiseResolvers.reject(),this.clearPromises())}setConditionTrue(){this.condition=!0,this.promiseResolvers&&(this.promiseResolvers.resolve(),this.clearPromises())}waitForCondition(){if(this.condition)return Promise.resolve();const{promise:t,resolve:e,reject:n}=Promise.withResolvers();return this.promiseResolvers={resolve:e,reject:n},t}clearPromises(){this.promiseResolvers=null}}class to{condition=!1;rejectCondition=null;resolveCondition=null;isConditionTrue(){return this.condition}reset(){this.condition=!1,this.clearPromises()}setConditionFalse(){this.condition=!1,this.rejectCondition&&(this.rejectCondition(),this.clearPromises())}setConditionTrue(){this.condition=!0,this.resolveCondition&&(this.resolveCondition(),this.clearPromises())}waitForCondition(){return new Promise((t,e)=>{this.condition?t():(this.resolveCondition=t,this.rejectCondition=e)})}clearPromises(){this.resolveCondition=null,this.rejectCondition=null}}const eo=!0,no=25200,ro={key:"_11111000001111@",iv:"@11111000001111_"};class io{key;iv;constructor(t={}){const{key:e,iv:n}=t;e&&(this.key=m?.(e)),n&&(this.iv=m?.(n))}get getOptions(){return{mode:v,padding:y,iv:this.iv}}encryptByAES(t){return h(t,this.key,this.getOptions).toString()}decryptByAES(t){return p(t,this.key,this.getOptions).toString(g)}}function oo({prefixKey:t="",storage:e=sessionStorage,key:n=ro.key,iv:r=ro.iv,timeout:i=null,hasEncrypt:o=!0}={}){if(o&&[n.length,r.length].some(t=>16!==t))throw new Error("When hasEncrypt is true, the key or iv must be 16 bits!");const u=new io({key:n,iv:r});return new class{storage;prefixKey;encryption;hasEncrypt;constructor(){this.storage=e,this.prefixKey=t,this.encryption=u,this.hasEncrypt=o}getKey(t){return`${this.prefixKey}${t}`.toUpperCase()}set(t,e,n=i){const r=JSON.stringify({value:e,time:Date.now(),expire:P(n)?null:(new Date).getTime()+1e3*n}),o=this.hasEncrypt?this.encryption.encryptByAES(r):r;this.storage.setItem(this.getKey(t),o)}get(t,e=null){const n=this.storage.getItem(this.getKey(t));if(!n)return e;try{const e=this.hasEncrypt?this.encryption.decryptByAES(n):n,r=JSON.parse(e),{value:i,expire:o}=r;if(P(o)||o>=(new Date).getTime())return i;this.remove(t)}catch(t){return console.error(`get erroe:${t}`),e}}remove(t){this.storage.removeItem(this.getKey(t))}getKeysWithPrefix(t){const e=[];for(let n=0;n<this.storage.length;n++){const r=this.storage.key(n);r&&r.startsWith(t)&&e.push(r)}return e}getKeysWithPrefixExcluding(t,e){const n=[];for(let r=0;r<this.storage.length;r++){const i=this.storage.key(r);i&&i.startsWith(t)&&!e.has(i)&&n.push(i)}return n}removeKeys(t){t.forEach(t=>{this.storage.removeItem(t)})}clear(t){const e=(this.prefixKey||"").toUpperCase();if(!t)return void this.removeKeys(this.getKeysWithPrefix(e));const{keys:n,exclude:r}=t;if(n&&n.length>0)n.forEach(t=>{this.remove(t)});else{if(r&&r.length>0){const t=new Set(r.map(t=>this.getKey(t)));return void this.removeKeys(this.getKeysWithPrefixExcluding(e,t))}this.removeKeys(this.getKeysWithPrefix(e))}}}}function uo(t=sessionStorage,e={}){return oo(function(t,e={}){return{hasEncrypt:eo,storage:t,prefixKey:"tt-admin",...e}}(t,e))}function ao(t={}){return uo(sessionStorage,{...t,timeout:no})}function co(t={}){return uo(localStorage,{...t,timeout:no})}function so(t,e,n,r){if(!t)return!1;const i=t.split(".").map(t=>Number(t));if(i.length<2)return!1;const o=i[0],u=i[1],a=i[2];return o>e||!(o<e)&&(u>n||!(u<n)&&(void 0===r||(a??0)>=r))}function fo(t,e,n){const r=w(t);return e?n?.forEach(t=>{const e=r[t];Array.isArray(e)&&(r[t]=r[t].join(","))}):Object.entries(r).forEach(([t,e])=>{Array.isArray(e)&&!n?.includes(t)&&(r[t]=e.join(","))}),r}function lo(t,e,n){const r=w(t);return e?n?.forEach(t=>{const e=r[t];"string"==typeof e&&(r[t]=""===e?[]:e.split(","))}):Object.entries(r).forEach(([t,e])=>{"string"!=typeof e||n?.includes(t)||(r[t]=""===e?[]:e.split(","))}),r}const ho=new Set(["*","all","ALL","All"]);function po(t,e,n){let{vk:r,ck:i}=n||{};const{labelField:o,valueField:u,hasDefault:a=!0}=n||{};r=r||o||"label",i=i||u||"value","number"==typeof e&&(e=e.toString());let c=[e];Array.isArray(e)?c=e:z(e)&&(c=e?.split(","));const s=t=>a?t:void 0;return c?.map(e=>ho.has(String(e))?"全部":Array.isArray(t)?t?.find(t=>t[i]==e)?.[r]??s(e):t?.[e]??s(e))?.join()}const go=(t=[])=>{let e=[];return e=t.filter(t=>Boolean(Object.values(t).filter(Boolean).length)),e.length?e:void 0},mo=(t,e=",")=>Array.isArray(t)?t:t?.split(e).filter(Boolean)??[],vo=(t=[])=>t.filter(Boolean),yo=(t,e)=>t()?e:[],wo=(t,e=",")=>Array.isArray(t)?t.join(e):t;export{po as CODE_TO_VALUE,no as DEFAULT_CACHE_TIME,vo as FILTER_BOOLEAN,go as FILTER_EMPTY,yo as GET_LIST_BY_FUNC,wo as JOIN_BY_SEPARATOR,mo as SPLIT_BY_SEPARATOR,Xi as StateHandler,to as StateHandlerOld,yt as TtHttp,qi as add,_i as arrGive,Fi as arrayToTree,Ci as bindMethods,ro as cacheCipher,Qi as calc,Oi as calcWordsWidth,b as capitalize,so as checkVersion,$i as clnm,zi as cloneDeep,Gi as clsSumTotalBy,Ti as compareObjects,oo as create,co as createLocalStorage,ao as createSessionStorage,uo as createStorage,Ui as dateFormat,Li as debounce,Pi as deepCopy,Mi as deepMerge,Yi as divide,N as downloadFile,eo as enableStorageEncryption,Ot as extractIdFromTitle,bt as extractResourceFromApi,fo as formatFormData,Nt as generateFormName,Et as generateTestId,ut as getBrowserType,ot as getDeviceType,Di as getDifference,Ri as getFirstNonNullOrUndefined,Ni as getStorage,M as is,ct as isAndroid,q as isArray,L as isBoolean,V as isClient,W as isDate,dt as isDayjsObject,k as isDef,Z as isElement,R as isEmpty,$ as isEmptyZero,tt as isError,ft as isExternal,rt as isFalse,ht as isFormData,H as isFunction,at as isIos,lt as isJson,Y as isMap,C as isNull,P as isNullOrUnDef,_ as isNumber,F as isObject,st as isPC,X as isPrimitive,U as isPromise,K as isRegExp,J as isServer,nt as isSet,z as isString,Q as isStringNumber,et as isSymbol,it as isTrue,I as isUndefined,G as isUrl,Dt as isValidTestId,B as isWindow,S as kebabToCamelCase,Ki as mergeWithArrayOverride,Zi as multiply,Hi as omit,lo as revertFormatFormData,xi as setDifferenceArr,ji as setDifferenceField,Ai as setDifferenceObj,Bi as subtract,Ji as sumTotal,Vi as sumTotalBy,ki as toCssUnit,St as toKebabCase,Wi as triggerWindowResize,E as trim,Ii as useVModel,wt as withInstall};
1
+ import t from"axios";import{ElMessage as e,ElLoading as n}from"element-plus";import r from"dayjs";import{nextTick as o,computed as i}from"vue";import u from"numeral";import{twMerge as a}from"tailwind-merge";import{clsx as c}from"clsx";import{klona as s}from"klona/full";import f from"dayjs/plugin/utc";import l from"dayjs/plugin/timezone";import{createDefu as d}from"defu";export{createDefu as createMerge,defuFn as mergFn,defu as merge}from"defu";import h from"decimal.js";import{encrypt as p,decrypt as g}from"crypto-js/aes";import m,{parse as y}from"crypto-js/enc-utf8";import v from"crypto-js/mode-ecb";import w from"crypto-js/pad-pkcs7";import{cloneDeep as b}from"lodash-es";function S(t){return t.charAt(0).toUpperCase()+t.slice(1)}function E(t){return t.trim()}function N(t){return t.replace(/-(\w)/g,(t,e)=>e?e.toUpperCase():"")}const O=(t,e)=>{try{const n=new Blob([t.data],{type:e}),r=document.createElement("a"),o=(window.URL||window.webkitURL).createObjectURL(n);r.href=o;let i=((t.headers["content-disposition"]||"").split("=")||[]).at(-1)||"";i=i?decodeURI(i.replace(/"/g,"")):"";const u=i?.split("''");i=u.at(-1)||"",r.download=i,r.style.display="none",document.body.appendChild(r),r.click(),document.body.removeChild(r),window.URL.revokeObjectURL(o)}catch(t){console.log(t)}};var D,A;!function(t){t[t.success=200]="success",t[t.success1=0]="success1",t[t.error=400]="error",t[t.unauthorized=401]="unauthorized",t[t.forbidden=403]="forbidden",t[t.notFound=404]="notFound",t[t.methodNotAllowed=405]="methodNotAllowed",t[t.requestTimeout=408]="requestTimeout",t[t.internalServerError=500]="internalServerError",t[t.notImplemented=501]="notImplemented",t[t.badGateway=502]="badGateway",t[t.serviceUnavailable=503]="serviceUnavailable",t[t.gatewayTimeout=504]="gatewayTimeout",t[t.httpVersionNotSupported=505]="httpVersionNotSupported",t[t.NEED_REFRESH_TOKEN=1001]="NEED_REFRESH_TOKEN",t[t.API_NO_AUTH=1002]="API_NO_AUTH",t[t.INVALID_TOKEN=1005]="INVALID_TOKEN"}(D||(D={})),function(t){t.badGateway="网关错误,请稍后重试",t.forbidden="禁止访问该资源",t.gatewayTimeout="网关超时,请稍后重试",t.internalServerError="服务器内部错误,请稍后重试",t.methodNotAllowed="请求方法不允许",t.networkError="网络连接异常,请检查网络连接",t.notFound="请求的资源不存在",t.requestCancelled="请求已取消",t.requestConfigError="请求配置错误",t.requestFailed="请求失败",t.requestTimeout="请求超时,请稍后重试",t.serviceUnavailable="服务暂时不可用,请稍后重试",t.unauthorized="未授权访问,请重新登录"}(A||(A={}));class x extends Error{code;data;timestamp;url;method;constructor(t,e,n){super(t),this.name="HttpError",this.code=e,this.data=n?.data,this.timestamp=(new Date).toISOString(),this.url=n?.url||"",this.method=n?.method||""}toLogData(){return{code:this.code,message:this.message,data:this.data,timestamp:this.timestamp,url:this.url||"",method:this.method||"",stack:this.stack||""}}}function j(t){if("ERR_CANCELED"===t.code)throw console.warn("Request cancelled:",t.message),new x(A.requestCancelled,D.error);const e=t.response?.status,n=t.response?.data?.msg||t.message,r=t.config;if(!t.response)throw new x(A.networkError,D.error,{url:r?.url||"",method:r?.method?.toUpperCase()||""});const o=e?(i=e,{[D.unauthorized]:A.unauthorized,[D.forbidden]:A.forbidden,[D.notFound]:A.notFound,[D.methodNotAllowed]:A.methodNotAllowed,[D.requestTimeout]:A.requestTimeout,[D.internalServerError]:A.internalServerError,[D.badGateway]:A.badGateway,[D.serviceUnavailable]:A.serviceUnavailable,[D.gatewayTimeout]:A.gatewayTimeout}[i]||A.internalServerError):n||A.requestFailed;var i;throw new x(o,e||D.error,{data:t.response.data,url:r?.url||"",method:r?.method?.toUpperCase()||""})}function T(t,n=!0){n&&e.error(t.message),console.error("[HTTP Error]",t.toLogData())}const M=Object.prototype.toString;function k(t,e){return M.call(t)===`[object ${e}]`}function C(t){return void 0!==t}function P(t){return!C(t)}function I(t){return null===t}function R(t){return P(t)||I(t)}function F(t){return!R(t)&&(t instanceof Promise||k(t,"Object"))}function $(t){return!!R(t)||(q(t)||z(t)?0===t.length:t instanceof Map||t instanceof Set?0===t.size:!!F(t)&&0===Object.keys(t).length)}function _(t){return!!$(t)||(0===t||!!z(t)&&("0"===t||"undefined"===t||"null"===t))}function W(t){return k(t,"Date")}function U(t){return k(t,"Number")&&t==t}function H(t){return k(t,"Promise")&&F(t)&&K(t.then)&&K(t.catch)}function z(t){return k(t,"String")}function K(t){return"function"==typeof t}function L(t){return k(t,"Boolean")}function B(t){return k(t,"RegExp")}function q(t){return Array.isArray(t)}function Y(t){return"undefined"!=typeof window&&k(t,"Window")}function Z(t){return"undefined"!=typeof Element&&t instanceof Element}function V(t){return k(t,"Map")}const J="undefined"==typeof window,G=!J;function Q(t){return/(?:^https?:(?:\/\/)?(?:[-;:&=+$,\w]+@)?[A-Za-z0-9.-]+(?::\d+)?|(?:www.|[-;:&=+$,\w]+@)[A-Za-z0-9.-]+)(?:\/[+~%/.\w-]*)?\??[-+=&;%@.\w]*(?:#\w*)?$/.test(t)}function X(t){return!!z(t)&&!Number.isNaN(Number(t))}function tt(t){return null==t||"object"!=typeof t&&"function"!=typeof t}function et(t){return"Error"===Object.prototype.toString.call(t).slice(8,-1)}function nt(t){return"Symbol"===Object.prototype.toString.call(t).slice(8,-1)}function rt(t){return"Set"===Object.prototype.toString.call(t).slice(8,-1)}function ot(t){return!t||t===I(t)||t===P(t)||!1===t||t===Number.isNaN(t)||!(!q(t)||0!==t.length)}function it(t){return!ot(t)}function ut(){const t=navigator.userAgent;return t.includes("Android")||t.includes("Linux")?"Android":t.includes("iPhone")?"iPhone":t.includes("iPad")?"iPad":t.includes("Windows Phone")?"Windows Phone":t}function at(){const t=navigator.userAgent;return function(t){const e=t.includes("Opera");return t.includes("compatible")&&t.includes("MSIE")&&!e}(t)?function(t){const e=/MSIE (\d+\.\d+);/,n=t.match(e),r=n?Number.parseFloat(n[1]||"0"):0;return 7===r?"IE7":8===r?"IE8":9===r?"IE9":10===r?"IE10":"IE7以下"}(t):function(t){return t.includes("Trident")&&t.includes("rv:11.0")}(t)?"IE11":function(t){const e=t.includes("compatible")&&t.includes("MSIE");return t.includes("Edge")&&!e}(t)?"Edge":function(t){return t.includes("Firefox")}(t)?"FF":function(t){return t.includes("Opera")}(t)?"Opera":function(t){return t.includes("Safari")&&!t.includes("Chrome")}(t)?"Safari":function(t){return t.includes("Chrome")&&t.includes("Safari")}(t)?"Chrome":""}function ct(){return"iPhone"===ut()}function st(){return"Android"===ut()}function ft(){const t=navigator.userAgent,e=["Android","iPhone","SymbianOS","Windows Phone","iPad","iPod"];let n=!0;for(let r=0;r<e.length;r++){const o=e[r];if(o&&t.indexOf(o)>0){n=!1;break}}return n}function lt(t){return/^(?:https?:|mailto:|tel:|\/\/)/.test(t)}function dt(t){if("string"==typeof t)try{const e=JSON.parse(t);return!("object"!=typeof e||!e)}catch(t){return console.error(`error:${t}`),!1}return!1}function ht(t){return r.isDayjs(t)}function pt(t){return k(t,"FormData")}const gt="tt-loading-mask",mt=new Map;let yt=null;const vt=()=>document.documentElement.classList.contains("dark")?"rgba(7, 7, 7, 0.85)":"rgba(255, 255, 255, 0.5)",wt={lock:!0,get background(){return vt()},svg:'\n <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40">\n <style>\n .spinner {\n transform-origin: 20px 20px;\n animation: rotate 1.6s linear infinite;\n }\n .dot {\n fill: var(--theme-color);\n animation: fade 1.6s infinite;\n }\n .dot:nth-child(1) { animation-delay: 0s; }\n .dot:nth-child(2) { animation-delay: 0.5s; }\n .dot:nth-child(3) { animation-delay: 1s; }\n .dot:nth-child(4) { animation-delay: 1.5s; }\n @keyframes rotate {\n 100% { transform: rotate(360deg); }\n }\n @keyframes fade {\n 0%, 100% { opacity: 1; }\n 50% { opacity: 0.5; }\n }\n </style>\n <g class="spinner">\n <circle class="dot" cx="20" cy="8" r="4"/>\n <circle class="dot" cx="32" cy="20" r="4"/>\n <circle class="dot" cx="20" cy="32" r="4"/>\n <circle class="dot" cx="8" cy="20" r="4"/>\n </g>\n </svg>\n',svgViewBox:"0 0 40 40",customClass:gt};function bt(t){return!!t.isConnected&&t.getClientRects().length>0}function St(t){if(!t.isConnected)return!1;return(t.clientHeight||t.getBoundingClientRect().height)>=48}function Et(){const t=document.querySelectorAll("micro-app-body");for(const e of Array.from(t)){const t=e;if(!bt(t))continue;const n=t.querySelector("#app");if(n)return n}const e=document.querySelector("micro-app-body");return e?e.querySelector("#app"):null}function Nt(t){if(t.instance){try{t.instance.close()}catch{}t.instance=null,t.target=null}else t.target=null}function Ot(t){if(!t.instance)return!1;if(!t.target)return function(){const t=document.body.querySelector(`.el-loading-mask.${gt}.is-fullscreen`);return!(!t||!t.isConnected)}();if(!bt(t.target)||!St(t.target))return!1;const e=t.target.querySelector(`.el-loading-mask.${gt}`);return!(!e||!e.isConnected)}function Dt(t,e){if(xt()!==t)return void Nt(e);if(e.instance&&Ot(e))return;Nt(e);const r=function(){const t=[Et(),document.querySelector("#app-content"),document.querySelector("#app")];for(const e of t)if(e&&bt(e)&&St(e))return e;return null}(),o={...wt,background:vt(),...r?{target:r,fullscreen:!1}:{fullscreen:!0}};e.instance=n.service(o),e.target=r}function At(t){for(const[e,n]of mt)e!==t&&Nt(n)}function xt(t){const e="undefined"!=typeof window&&window.__MICRO_APP_NAME__||"host";let n=t;return n||(n=yt?.currentRoute?.value?yt.currentRoute.value.fullPath:"undefined"!=typeof window?window.location.pathname+window.location.search+window.location.hash:"/"),`${e}::${n}`}const jt={getPageKey:xt,bindRouter(t){t&&yt!==t&&(yt=t,t.afterEach(()=>{o(()=>jt.sync())}))},showLoading(t){const e=t||xt(),n=function(t){let e=mt.get(t);return e||(e={count:0,instance:null,target:null},mt.set(t,e)),e}(e);return n.count+=1,At(xt()),Dt(e,n),()=>this.hideLoading(e)},hideLoading(t){const e=t||xt(),n=mt.get(e);n&&(n.count=Math.max(0,n.count-1),0===n.count&&(Nt(n),mt.delete(e)))},sync(t){const e=t||xt();At(e);const n=mt.get(e);n&&n.count>0&&Dt(e,n)}};function Tt(n){const{router:r,useUserStore:i,VITE_API_URL:u,VITE_WITH_CREDENTIALS:a}=n;jt.bindRouter(r);const c=new Set;const s=["image/jpeg","image/png","image/gif","image/webp","image/svg+xml","application/pdf","application/msword","application/vnd.openxmlformats-officedocument.wordprocessingml.document","application/vnd.ms-excel","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8"],f=new Map;function l(t){t&&setTimeout(()=>{const e=(f.get(t)||1)-1;e<=0?(f.delete(t),function(t){t&&c.has(t)&&(c.delete(t),o(()=>{jt.hideLoading(t)}))}(t)):f.set(t,e)},0)}let d=!1,h=null;const p=t.create({timeout:6e5,baseURL:"/"+u,withCredentials:"true"===a,validateStatus:t=>t>=200&&t<300,transformResponse:[(t,e)=>{const n=e["content-type"];if(n?.includes("application/json"))try{return JSON.parse(t)}catch{return t}return t}]});function g(t,e="start"){if("string"!=typeof t||!t.trim())return"string"==typeof t?t.trim():t;const n=t.trim();if(/^\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}$/.test(n))return n;const r="end"===e?"59":"00";return/^\d{4}-\d{2}-\d{2} \d{2}:\d{2}$/.test(n)?`${n}:${r}`:/^\d{4}-\d{2}-\d{2} \d{2}$/.test(n)?`${n}:${r}:${r}`:/^\d{4}-\d{2}-\d{2}$/.test(n)?"end"===e?`${n} 23:59:59`:`${n} 00:00:00`:n}function m(t){if("string"==typeof t)return t.trim();if(null===t||"object"!=typeof t)return t;if(Array.isArray(t))return t.map(t=>m(t));const e={};for(const n in t)if(Object.prototype.hasOwnProperty.call(t,n)){const r=t[n];n.includes("DtRange")&&Array.isArray(r)&&2===r.length?e[n]={startDate:m(r[0]),endDate:m(r[1])}:n.includes("TmRange")&&Array.isArray(r)&&2===r.length?e[n]={startTime:g(r[0],"start"),endTime:g(r[1],"end")}:e[n]="startTime"===n?g(r,"start"):"endTime"===n?g(r,"end"):m(r)}return e}function y(t){if(null===t||"object"!=typeof t)return t;if(Array.isArray(t))return t.map(t=>y(t));const e={};for(const n in t)if(Object.prototype.hasOwnProperty.call(t,n)){const r=t[n];n.includes("DtRange")&&"object"==typeof r&&null!==r&&"startDate"in r&&"endDate"in r?e[n]=[r.startDate,r.endDate]:n.includes("TmRange")&&"object"==typeof r&&null!==r&&"startTime"in r&&"endTime"in r?e[n]=[r.startTime,r.endTime]:e[n]=y(r)}return e}function v(t,e){return new x(t,e)}function w(t){const e=v(t||A.unauthorized,D.unauthorized);if(!d)throw d=!0,S(),h=setTimeout(b,3e3),T(e,!0),e;throw e}function b(){d=!1,h&&clearTimeout(h),h=null}p.interceptors.request.use(t=>{const{accessToken:e,info:n}=i();e&&(t.headers.set("Authorization",e),t.headers.set("token",e),t.headers.set("x-userid-header",n.userId),t.headers.set("x-permission-code-header",r.currentRoute.value.meta.permissionOnlyCode),t.headers.set("a-path-code",r.currentRoute.value.path));const o=xt();t.__loadingPageKey=o;const u=f.get(o)||0;return t.hideLoading||0!==u||function(t){c.add(t),jt.showLoading(t)}(o),f.set(o,u+1),t.params&&(t.params=m(t.params)),!t.data||pt(t.data)||t.headers["Content-Type"]||(t.data=m(t.data),t.headers.set("Content-Type","application/json"),t.data=JSON.stringify(t.data)),t},t=>(T(v(A.requestConfigError,D.error)),Promise.reject(t))),p.interceptors.response.use(async t=>{l(t.config?.__loadingPageKey),await async function(t){const e=t.data;if(!(e instanceof Blob))return;const n=String(t.headers["content-type"]||""),r=e.type||"";if(n.includes("application/json")||r.includes("application/json"))try{const n=await e.text();t.data=JSON.parse(n)}catch{throw v(A.requestFailed,D.error)}}(t);const e=t.headers["content-type"];if(e?.includes("application/json")){t.data&&(t.data=y(t.data));const{code:e,msg:n}=t.data;if([D.success,D.success1].includes(e))return t;throw[D.unauthorized,D.INVALID_TOKEN].includes(e)&&w(n),v(n||A.requestFailed,e)}if(s.includes(e))return O(t,e),t},t=>(l(t.config?.__loadingPageKey),t.response?.status===D.unauthorized&&w(),Promise.reject(j(t))));const S=()=>{setTimeout(()=>{i().logOut()},500)};let E=null;async function N(t,n=0){try{return await async function(t){["POST","PUT","PATCH"].includes(t.method?.toUpperCase()||"")&&t.params&&!t.data&&(t.data=t.params,t.params=void 0);try{const n=await p.request(t);return t.showSuccessMessage&&n.data.msg&&function(t,n=!0){n&&e.success(t)}(n.data.msg),t.responseAllData?n:n.data.data}catch(e){const n=[D.unauthorized,D.NEED_REFRESH_TOKEN].includes(e.code);if(e instanceof x&&!n){T(e,!1!==t.showErrorMessage)}return Promise.reject(e)}}(t)}catch(e){if(e instanceof x&&e.code===D.NEED_REFRESH_TOKEN&&!t.url?.includes("/iam/user/refreshToken")&&!t.__retriedAfterRefresh)return t.__retriedAfterRefresh=!0,await(E||(E=(async()=>{await i().refreshTokenFunc(),await M(1e3)})().finally(()=>{E=null})),E),N(t,n);if(n>0&&e instanceof x&&(r=e.code,[D.requestTimeout,D.internalServerError,D.badGateway,D.serviceUnavailable,D.gatewayTimeout].includes(r)))return await M(1e3),N(t,n-1);throw e}var r}function M(t){return new Promise(e=>setTimeout(e,t))}const k={get:t=>N({...t,method:"GET"}),post:t=>N({...t,method:"POST"}),put:t=>N({...t,method:"PUT"}),del:t=>N({...t,method:"DELETE"}),patch:t=>N({...t,method:"PATCH"}),request:t=>N(t)};return{...k,logOut:S,setBaseUrl:t=>{p.defaults.baseURL=t}}}function Mt(t,e){if(t.install=n=>{for(const r of[t,...Object.values(e??{})]){const t=r.name;t&&n.component(t,r)}},e)for(const[n,r]of Object.entries(e))t[n]=r;return t}const kt="0,0.00";function Ct(t,e=kt){return t?u(t).format(e):"0.00"}function Pt(t,e=kt){return t?u(t).format(e):"0.00"}function It(t){return t?u(u(t).format(kt)).value():0}function Rt(t,e){if(R(t)||""===t)return"";let n=Number.parseFloat(t.toString());if(Number.isNaN(n))return"";n=Math.round(n*10**e)/10**e;let r=n.toString(),o=r.indexOf(".");for(o<0&&(o=r.length,r+=".");r.length<=o+e;)r+="0";return r}function Ft(t,e=2){if(R(t)||0===t)return"0 Bytes";const n=Math.floor(Math.log(t)/Math.log(1e3));return`${Number.parseFloat((t/1e3**n).toFixed(e))} ${["B","KB","MB","GB","TB","PB","EB","ZB","YB"][n]}`}function $t(t,e="period"){if(!t)return"";const n=(U(t)?t.toString():t).replace(/[-.]/g,""),r=n.slice(0,4),o=n.slice(4,6);return"period"===e?`${r}年${o}期`:` ${o}/${r}`}function _t(t,e="YYYY-MM-DD HH:mm:ss"){return R(t)?"--":r(t).isValid()?r(t).format(e):"--"}function Wt(t,e="YYYY-MM-DD",n=!1){return R(t)?"--":n?t?r(+t).format(e):"--":r(t).isValid()?r(t).format(e):"--"}function Ut(t){if("string"==typeof t)return t.trim();if("function"==typeof t){return(t.name||"").replace(/^bound\s+/i,"")}return""}function Ht(...t){return t.filter(t=>null!=t&&""!==t).join("-")}function zt(t){return t?t.replace(/([a-z])([A-Z])/g,"$1-$2").replace(/([A-Z])([A-Z][a-z])/g,"$1-$2").replace(/[\s_]+/g,"-").replace(/[^\w\u4E00-\u9FA5-]+/g,"-").toLowerCase().replace(/^-+|-+$/g,"").replace(/-+/g,"-"):""}function Kt(t,e=3){if(!t||0===t.length)return"form";const n=t.filter(t=>null!=t&&""!==t).slice(0,e);return 0===n.length?"form":n.join("-")}function Lt(t){return t?zt(t):""}function Bt(t){if(!t)return!1;return/^[a-z0-9]+(-[a-z0-9]+)*$/.test(t)}var qt={keyId:1,cookies:{path:"/"},treeOptions:{parentKey:"parentId",key:"id",children:"children"},parseDateFormat:"yyyy-MM-dd HH:mm:ss",firstDayOfWeek:1};function Yt(t,e,n){if(t)if(t.forEach)t.forEach(e,n);else for(var r=0,o=t.length;r<o;r++)e.call(n,t[r],r,t)}var Zt=Object.prototype.toString;function Vt(t){return function(e){return"[object "+t+"]"===Zt.call(e)}}var Jt=Array.isArray||Vt("Array");function Gt(t,e){return!(!t||!t.hasOwnProperty)&&t.hasOwnProperty(e)}function Qt(t,e,n){if(t)for(var r in t)Gt(t,r)&&e.call(n,t[r],r,t)}function Xt(t,e,n){return t?(Jt(t)?Yt:Qt)(t,e,n):t}function te(t){return function(e){return typeof e===t}}var ee=te("function");function ne(t,e){var n=Object[t];return function(t){var r=[];if(t){if(n)return n(t);Xt(t,e>1?function(e){r.push([""+e,t[e]])}:function(){r.push(arguments[e])})}return r}}var re=ne("keys",1);function oe(t,e){var n=t.__proto__.constructor;return e?new n(e):new n}function ie(t,e){return e?ue(t,e):t}function ue(t,e){if(t)switch(Zt.call(t)){case"[object Object]":var n=Object.create(Object.getPrototypeOf(t));return Qt(t,function(t,r){n[r]=ie(t,e)}),n;case"[object Date]":case"[object RegExp]":return oe(t,t.valueOf());case"[object Array]":case"[object Arguments]":var r=[];return Yt(t,function(t){r.push(ie(t,e))}),r;case"[object Set]":var o=oe(t);return o.forEach(function(t){o.add(ie(t,e))}),o;case"[object Map]":var i=oe(t);return i.forEach(function(t,n){i.set(n,ie(t,e))}),i}return t}function ae(t,e){return t?ue(t,e):t}var ce=Object.assign;function se(t,e,n){for(var r,o=e.length,i=1;i<o;i++)r=e[i],Yt(re(e[i]),n?function(e){t[e]=ae(r[e],n)}:function(e){t[e]=r[e]});return t}var fe=function(t){if(t){var e=arguments;if(!0!==t)return ce?ce.apply(Object,e):se(t,e);if(e.length>1)return se(t=Jt(t[1])?[]:{},e,!0)}return t},le=function(){};function de(t){return fe(qt,t)}var he="4.0.0";function pe(t,e,n){for(var r=t.length-1;r>=0;r--)e.call(n,t[r],r,t)}function ge(t,e,n){pe(re(t),function(r){e.call(n,t[r],r,t)})}function me(t){return null===t}function ye(t,e){return function(n){return me(n)?e:n[t]}}function ve(t){return!!t&&t.constructor===Object}function we(t){return"__proto__"!==t&&"constructor"!==t}function be(t,e){return ve(t)&&ve(e)||Jt(t)&&Jt(e)?(Xt(e,function(n,r){we(r)&&(t[r]=ee(e)?n:be(t[r],n))}),t):e}le.VERSION=he,le.version=he,le.mixin=function(){Yt(arguments,function(t){Xt(t,function(t,e){le[e]=ee(t)?function(){var e=t.apply(le.$context,arguments);return le.$context=null,e}:t})})},le.setup=de,le.setConfig=de,le.getConfig=function(){return qt};function Se(t,e,n){var r=[];if(t&&arguments.length>1){if(t.map)return t.map(e,n);Xt(t,function(){r.push(e.apply(n,arguments))})}return r}function Ee(t,e,n,r,o){return function(i,u,a){if(i&&u){if(t&&i[t])return i[t](u,a);if(e&&Jt(i)){for(var c=0,s=i.length;c<s;c++)if(!!u.call(a,i[c],c,i)===r)return[!0,!1,c,i[c]][n]}else for(var f in i)if(Gt(i,f)&&!!u.call(a,i[f],f,i)===r)return[!0,!1,f,i[f]][n]}return o}}var Ne=Ee("some",1,0,!0,!1),Oe=Ee("every",1,1,!1,!0);function De(t,e){if(t){if(t.includes)return t.includes(e);for(var n in t)if(Gt(t,n)&&e===t[n])return!0}return!1}function Ae(t,e){var n,r=0;if(Jt(t)&&Jt(e)){for(n=e.length;r<n;r++)if(!De(t,e[r]))return!1;return!0}return De(t,e)}function xe(t,e,n){var r=[];if(e){ee(e)||(e=ye(e));var o,i={};Xt(t,function(u,a){o=e.call(n,u,a,t),i[o]||(i[o]=1,r.push(u))})}else Xt(t,function(t){De(r,t)||r.push(t)});return r}function je(t){return Se(t,function(t){return t})}var Te="undefined",Me=te(Te);function ke(t){return me(t)||Me(t)}var Ce=/(.+)?\[(\d+)\]$/;function Pe(t){return t?t.splice&&t.join?t:(""+t).replace(/(\[\d+\])\.?/g,"$1.").replace(/\.$/,"").split("."):[]}function Ie(t,e,n){if(ke(t))return n;var r=function(t,e){if(t){var n,r,o,i=0;if(t[e]||Gt(t,e))return t[e];if(o=(r=Pe(e)).length)for(n=t;i<o;i++)if(ke(n=Re(n,r[i])))return i===o-1?n:void 0;return n}}(t,e);return Me(r)?n:r}function Re(t,e){var n=e?e.match(Ce):"";return n?n[1]?t[n[1]]?t[n[1]][n[2]]:void 0:t[n[2]]:t[e]}function Fe(t,e){return Me(t)?1:me(t)?Me(e)?-1:1:t&&t.localeCompare?t.localeCompare(e):t>e?1:-1}function $e(t,e,n){return function(r,o){var i=r[t],u=o[t];return i===u?n?n(r,o):0:"desc"===e.order?Fe(u,i):Fe(i,u)}}function _e(t,e,n){if(t){if(ke(e))return je(t).sort(Fe);for(var r,o=Se(t,function(t){return{data:t}}),i=function(t,e,n,r){var o=[];return Yt(n=Jt(n)?n:[n],function(n,i){if(n){var u,a=n;Jt(n)?(a=n[0],u=n[1]):ve(n)&&(a=n.field,u=n.order),o.push({field:a,order:u||"asc"}),Yt(e,ee(a)?function(e,n){e[i]=a.call(r,e.data,n,t)}:function(t){t[i]=a?Ie(t.data,a):t.data})}}),o}(t,o,e,n),u=i.length-1;u>=0;)r=$e(u,i[u],r),u--;return r&&(o=o.sort(r)),Se(o,ye("data"))}return[]}var We=_e;function Ue(t,e){return t>=e?t:(t|=0)+Math.round(Math.random()*((e||9)-t))}var He=ne("values",0);function ze(t){for(var e,n=[],r=He(t),o=r.length-1;o>=0;o--)e=o>0?Ue(0,o):0,n.push(r[e]),r.splice(e,1);return n}function Ke(t){return function(e){if(e){var n=t(e&&e.replace?e.replace(/,/g,""):e);if(!isNaN(n))return n}return 0}}var Le=Ke(parseFloat);function Be(t,e,n){var r=[],o=arguments.length;if(t){if(e=o>=2?Le(e):0,n=o>=3?Le(n):t.length,t.slice)return t.slice(e,n);for(;e<n;e++)r.push(t[e])}return r}var qe=Ee("",0,2,!0),Ye=Ee("find",1,3,!0);function Ze(t,e){return Se(t,ye(e))}function Ve(t){return function(e,n){var r,o;return e&&e.length?(Yt(e,function(i,u){n&&(i=ee(n)?n(i,u,e):Ie(i,n)),ke(i)||!ke(r)&&!t(r,i)||(o=u,r=i)}),e[o]):r}}var Je=Ve(function(t,e){return t<e});function Ge(t){var e,n,r,o=[];if(t&&t.length)for(e=0,r=(n=Je(t,function(t){return t?t.length:0}))?n.length:0;e<r;e++)o.push(Ze(t,e));return o}function Qe(t,e){var n=[];return Yt(t,function(t){n=n.concat(Jt(t)?e?Qe(t,e):t:[t])}),n}function Xe(t,e){return(console[t]||console.log)(e)}function tn(t,e){try{delete t[e]}catch(n){t[e]=void 0}}function en(t,e,n){return t?(Jt(t)?pe:ge)(t,e,n):t}var nn=te("object");function rn(t,e,n){if(t){var r,o=arguments.length>1&&(me(e)||!nn(e)),i=o?n:e;if(ve(t))Qt(t,o?function(n,r){t[r]=e}:function(e,n){tn(t,n)}),i&&fe(t,i);else if(Jt(t)){if(o)for(r=t.length;r>0;)r--,t[r]=e;else t.length=0;i&&t.push.apply(t,i)}}return t}function on(t,e,n){if(t){if(!ke(e)){var r=[],o=[];return ee(e)||(i=e,e=function(t,e){return e===i}),Xt(t,function(t,o,i){e.call(n,t,o,i)&&r.push(o)}),Jt(t)?en(r,function(e,n){o.push(t[e]),t.splice(e,1)}):(o={},Yt(r,function(e){o[e]=t[e],tn(t,e)})),o}return rn(t)}var i;return t}function un(t,e,n,r){var o=r.key,i=r.parentKey,u=r.children,a=r.data,c=r.updated,s=r.clear;return Yt(n,function(n){var f=n[u];a&&(n=n[a]),!1!==c&&(n[i]=e?e[o]:null),t.push(n),f&&f.length&&un(t,n,f,r),s&&delete n[u]}),t}function an(t){return function(e,n,r,o){var i=r||{},u=i.children||"children";return t(null,e,n,o,[],[],u,i)}}var cn=an(function t(e,n,r,o,i,u,a,c){var s,f,l,d,h,p;if(n)for(f=0,l=n.length;f<l;f++){if(s=n[f],d=i.concat([""+f]),h=u.concat([s]),r.call(o,s,f,n,d,e,h))return{index:f,item:s,path:d,items:n,parent:e,nodes:h};if(a&&s&&(p=t(s,s[a],r,o,d.concat([a]),h,a)))return p}});var sn=an(function t(e,n,r,o,i,u,a,c){var s,f;Xt(n,function(c,l){s=i.concat([""+l]),f=u.concat([c]),r.call(o,c,l,n,s,e,f),c&&a&&(s.push(a),t(c,c[a],r,o,s,f,a))})});var fn=an(function t(e,n,r,o,i,u,a,c){var s,f,l,d=c.mapChildren||a;return Se(n,function(h,p){return s=i.concat([""+p]),f=u.concat([h]),(l=r.call(o,h,p,n,s,e,f))&&h&&a&&h[a]&&(l[d]=t(h,h[a],r,o,s,f,a,c)),l})});function ln(t,e,n,r,o,i,u,a,c){var s,f,l,d,h,p=[],g=c.original,m=c.data,y=c.mapChildren||a,v=c.isEvery;return Yt(n,function(w,b){s=i.concat([""+b]),f=u.concat([w]),d=t&&!v||r.call(o,w,b,n,s,e,f),h=a&&w[a],d||h?(g?l=w:(l=fe({},w),m&&(l[m]=w)),l[y]=ln(d,w,w[a],r,o,s,f,a,c),(d||l[y].length)&&p.push(l)):d&&p.push(l)}),p}var dn=an(function(t,e,n,r,o,i,u,a){return ln(0,t,e,n,r,o,i,u,a)});function hn(t,e){if(t.indexOf)return t.indexOf(e);for(var n=0,r=t.length;n<r;n++)if(e===t[n])return n}function pn(t,e){if(t.lastIndexOf)return t.lastIndexOf(e);for(var n=t.length-1;n>=0;n--)if(e===t[n])return n;return-1}var gn=te("number");var mn=te("string"),yn=Vt("Date"),vn=parseInt;function wn(t){return Date.UTC(t.y,t.M||0,t.d||1,t.H||0,t.m||0,t.s||0,t.S||0)}function bn(t){return t.getTime()}function Sn(t){return"(\\d{"+t+"})"}function En(t){return isNaN(t)?t:vn(t)}for(var Nn=Sn(2),On=Sn("1,2"),Dn=Sn("1,7"),An=Sn("3,4"),xn=".{1}",jn=xn+On,Tn="(([zZ])|([-+]\\d{2}:?\\d{2}))",Mn=[An,jn,jn,jn,jn,jn,xn+Dn,Tn],kn=[],Cn=Mn.length-1;Cn>=0;Cn--){for(var Pn="",In=0;In<Cn+1;In++)Pn+=Mn[In];kn.push(new RegExp("^"+Pn+"$"))}var Rn=[["yyyy",An],["yy",Nn],["MM",Nn],["M",On],["dd",Nn],["d",On],["HH",Nn],["H",On],["mm",Nn],["m",On],["ss",Nn],["s",On],["SSS",Sn(3)],["S",Dn],["Z",Tn]],Fn={},$n=["\\[([^\\]]+)\\]"];for(In=0;In<Rn.length;In++){var _n=Rn[In];Fn[_n[0]]=_n[1]+"?",$n.push(_n[0])}var Wn=new RegExp($n.join("|"),"g"),Un={};function Hn(t,e){if(t){var n=yn(t);if(n||!e&&/^[0-9]{11,15}$/.test(t))return new Date(n?bn(t):vn(t));if(mn(t)){var r=e?function(t,e){var n=Un[e];if(!n){var r=[],o=e.replace(/([$(){}*+.?\\^|])/g,"\\$1").replace(Wn,function(t,e){var n=t.charAt(0);return"["===n?e:(r.push(n),Fn[t])});n=Un[e]={_i:r,_r:new RegExp(o)}}var i={},u=t.match(n._r);if(u){for(var a=n._i,c=1,s=u.length;c<s;c++)i[a[c-1]]=u[c];return i}return i}(t,e):function(t){for(var e,n={},r=0,o=kn.length;r<o;r++)if(e=t.match(kn[r])){n.y=e[1],n.M=e[2],n.d=e[3],n.H=e[4],n.m=e[5],n.s=e[6],n.S=e[7],n.Z=e[8];break}return n}(t);if(r.y)return r.M&&(r.M=En(r.M)-1),r.S&&(r.S=(o=En(r.S.substring(0,3)))<10?100*o:o<100?10*o:o),r.Z?function(t){if(/^[zZ]/.test(t.Z))return new Date(wn(t));var e=t.Z.match(/([-+])(\d{2}):?(\d{2})/);return e?new Date(wn(t)-("-"===e[1]?-1:1)*vn(e[2])*36e5+6e4*vn(e[3])):new Date("")}(r):new Date(r.y,r.M||0,r.d||1,r.H||0,r.m||0,r.s||0,r.S||0)}}var o;return new Date("")}function zn(){return new Date}function Kn(t){var e,n=t?Hn(t):zn();return!!yn(n)&&((e=n.getFullYear())%4==0&&(e%100!=0||e%400==0))}function Ln(t,e){return function(n,r){if(n){if(n[t])return n[t](r);if(mn(n)||Jt(n))return e(n,r);for(var o in n)if(Gt(n,o)&&r===n[o])return o}return-1}}var Bn=Ln("indexOf",hn),qn=Ln("lastIndexOf",pn);function Yn(t){var e=0;return mn(t)||Jt(t)?t.length:(Xt(t,function(){e++}),e)}var Zn=function(t){return!me(t)&&!isNaN(t)&&!Jt(t)&&t%1==0};var Vn=te("boolean"),Jn=Vt("RegExp"),Gn=Vt("Error");function Qn(t){for(var e in t)return!1;return!0}var Xn=typeof Symbol!==Te;function tr(t){return Xn&&Symbol.isSymbol?Symbol.isSymbol(t):"symbol"==typeof t}var er=Vt("Arguments");var nr=typeof document===Te?0:document;var rr=typeof window===Te?0:window;var or=typeof FormData!==Te;var ir=typeof Map!==Te;var ur=typeof WeakMap!==Te;var ar=typeof Set!==Te;var cr=typeof WeakSet!==Te;function sr(t){return function(e,n,r){if(e&&ee(n)){if(Jt(e)||mn(e))return t(e,n,r);for(var o in e)if(Gt(e,o)&&n.call(r,e[o],o,e))return o}return-1}}var fr=sr(function(t,e,n){for(var r=0,o=t.length;r<o;r++)if(e.call(n,t[r],r,t))return r;return-1});function lr(t,e,n,r,o,i,u){if(t===e)return!0;if(t&&e&&!gn(t)&&!gn(e)&&!mn(t)&&!mn(e)){if(Jn(t))return n(""+t,""+e,o,i,u);if(yn(t)||Vn(t))return n(+t,+e,o,i,u);var a,c,s,f=Jt(t),l=Jt(e);if(f||l?f&&l:t.constructor===e.constructor)return c=re(t),s=re(e),r&&(a=r(t,e,o)),c.length===s.length&&(Me(a)?Oe(c,function(o,i){return o===s[i]&&lr(t[o],e[s[i]],n,r,f||l?i:o,t,e)}):!!a)}return n(t,e,o,i,u)}function dr(t,e){return t===e}function hr(t,e){return lr(t,e,dr)}var pr=sr(function(t,e,n){for(var r=t.length-1;r>=0;r--)if(e.call(n,t[r],r,t))return r;return-1});var gr=ne("entries",2);function mr(t,e){return function(n,r){var o,i,u={},a=[],c=this,s=arguments,f=s.length;if(!ee(r)){for(i=1;i<f;i++)o=s[i],a.push.apply(a,Jt(o)?o:[o]);r=0}return Xt(n,function(o,i){((r?r.call(c,o,i,n):fr(a,function(t){return t===i})>-1)?t:e)&&(u[i]=o)}),u}}var yr=mr(1,0),vr=mr(0,1);var wr=/(.+)?\[(\d+)\]$/;function br(t,e,n,r,o){if(!t[e]){var i,u,a=e?e.match(wr):null;if(n)u=o;else{var c=r?r.match(wr):null;u=c&&!c[1]?new Array(vn(c[2])+1):{}}return a?a[1]?(i=vn(a[2]),t[a[1]]?n?t[a[1]][i]=u:t[a[1]][i]?u=t[a[1]][i]:t[a[1]][i]=u:(t[a[1]]=new Array(i+1),t[a[1]][i]=u)):t[a[2]]=u:t[e]=u,u}return n&&(t[e]=o),t[e]}function Sr(t){return"__proto__"===t||"constructor"===t||"prototype"===t}function Er(t,e,n){var r,o={};return t&&(e&&nn(e)?e=function(t){return function(){return Qn(t)}}(e):ee(e)||(e=ye(e)),Xt(t,function(i,u){r=e?e.call(n,i,u,t):i,o[r]?o[r].push(i):o[r]=[i]})),o}function Nr(t,e,n){var r,o,i=[],u=arguments;if(u.length<2&&(e=u[0],t=0),o=e|0,(r=t|0)<e)for(n=n|0||1;r<o;r+=n)i.push(r);return i}var Or=Ve(function(t,e){return t>e});function Dr(t){return(t.split(".")[1]||"").length}function Ar(t,e){if(t.repeat)return t.repeat(e);var n=isNaN(e)?[]:new Array(vn(e));return n.join(t)+(n.length>0?t:"")}function xr(t,e){return t.substring(0,e)+"."+t.substring(e,t.length)}function jr(t){var e=""+t,n=e.match(/^([-+]?)((\d+)|((\d+)?[.](\d+)?))e([-+]{1})([0-9]+)$/);if(n){var r=t<0?"-":"",o=n[3]||"",i=n[5]||"",u=n[6]||"",a=n[7],c=n[8],s=c-u.length,f=c-o.length,l=c-i.length;return"+"===a?o?r+o+Ar("0",c):s>0?r+i+u+Ar("0",s):r+i+xr(u,c):o?f>0?r+"0."+Ar("0",Math.abs(f))+o:r+xr(o,f):l>0?r+"0."+Ar("0",Math.abs(l))+i+u:r+xr(i,l)+u}return e}function Tr(t,e){var n=jr(t),r=jr(e);return parseInt(n.replace(".",""))*parseInt(r.replace(".",""))/Math.pow(10,Dr(n)+Dr(r))}function Mr(t){return function(e,n){var r=Le(e),o=r;if(r){n|=0;var i=jr(r).split("."),u=i[0],a=i[1]||"",c=a.substring(0,n+1),s=u+(c?"."+c:"");if(n>=a.length)return Le(s);if(s=r,n>0){var f=Math.pow(10,n);o=Math[t](Tr(s,f))/f}else o=Math[t](s)}return o}}var kr=Mr("round"),Cr=Mr("ceil"),Pr=Mr("floor");function Ir(t){return gn(t)?jr(t):""+(ke(t)?"":t)}function Rr(t,e){var n=Ir(kr(t,e|=0)).split("."),r=n[0],o=n[1]||"",i=e-o.length;return e?i>0?r+"."+o+Ar("0",i):r+xr(o,Math.abs(i)):r}var Fr=Ke(vn);function $r(t,e){return Tr(Le(t),Le(e))}function _r(t,e){var n=jr(t),r=jr(e),o=Math.pow(10,Math.max(Dr(n),Dr(r)));return($r(t,o)+$r(e,o))/o}function Wr(t,e){var n=jr(t),r=jr(e),o=Dr(n),i=Dr(r)-o,u=i<0,a=Math.pow(10,u?Math.abs(i):i);return $r(n.replace(".","")/r.replace(".",""),u?1/a:a)}function Ur(t,e,n){var r=0;return Xt(t&&t.length>2&&Jt(t)?t.sort():t,e?ee(e)?function(){r=_r(r,e.apply(n,arguments))}:function(t){r=_r(r,Ie(t,e))}:function(t){r=_r(r,t)}),r}var Hr="first",zr="last";function Kr(t){return t.getFullYear()}var Lr=864e5;function Br(t){return t.getMonth()}function qr(t){return yn(t)&&!isNaN(bn(t))}function Yr(t,e,n){var r=e&&!isNaN(e)?e:0;if(qr(t=Hn(t))){if(n===Hr)return new Date(Kr(t),Br(t)+r,1);if(n===zr)return new Date(bn(Yr(t,r+1,Hr))-1);if(gn(n)&&t.setDate(n),r){var o=t.getDate();if(t.setMonth(Br(t)+r),o!==t.getDate())return t.setDate(1),new Date(bn(t)-Lr)}}return t}function Zr(t,e,n){var r;if(qr(t=Hn(t))&&(e&&(r=e&&!isNaN(e)?e:0,t.setFullYear(Kr(t)+r)),n||!isNaN(n))){if(n===Hr)return new Date(Kr(t),0,1);if(n===zr)return t.setMonth(11),Yr(t,0,zr);t.setMonth(n)}return t}var Vr=6048e5;function Jr(t,e,n,r){if(qr(t=Hn(t))){var o=gn(n),i=gn(r),u=bn(t);if(o||i){var a=i?r:qt.firstDayOfWeek,c=t.getDay(),s=o?n:c;if(c!==s){var f=0;a>c?f=-(7-a+c):a<c&&(f=a-c),u+=s>a?((0===s?7:s)-a+f)*Lr:s<a?(7-a+s+f)*Lr:f*Lr}}return e&&!isNaN(e)&&(u+=e*Vr),new Date(u)}return t}function Gr(t,e,n){if(qr(t=Hn(t))&&!isNaN(e)){if(t.setDate(t.getDate()+vn(e)),n===Hr)return new Date(Kr(t),Br(t),t.getDate());if(n===zr)return new Date(bn(Gr(t,1,Hr))-1)}return t}function Qr(t){return t.toUpperCase()}var Xr=Se(Nr(0,7),function(t){return[(t+1)%7,(t+2)%7,(t+3)%7]});function to(t,e){var n=new Date(t).getDay();return De(Xr[e],n)}function eo(t,e){return function(n,r){var o=gn(r)?r:qt.firstDayOfWeek,i=Hn(n);if(qr(i)){var u,a=Jr(i,0,o,o),c=t(a),s=bn(c),f=bn(a),l=f+5184e5,d=new Date(l),h=Jr(c,0,o,o),p=bn(h);if(f===p)return 1;if(e(a,d))for(u=bn(t(d));u<l;u+=Lr)if(to(u,o))return 1;var g=p+5184e5,m=new Date(l),y=1;if(e(h,m))for(y=0,u=s;u<g;u+=Lr)if(to(u,o)){y++;break}return Math.floor((f-p)/Vr)+y}return NaN}}var no=eo(function(t){return new Date(t.getFullYear(),0,1)},function(t,e){return t.getFullYear()!==e.getFullYear()});function ro(t){return bn(function(t){return new Date(Kr(t),Br(t),t.getDate())}(t))}function oo(t){return qr(t=Hn(t))?Math.floor((ro(t)-ro(Zr(t,0,Hr)))/Lr)+1:NaN}function io(t,e,n){var r=Ir(t);return e|=0,n=Me(n)?" ":""+n,r.padStart?r.padStart(e,n):e>r.length?((e-=r.length)>n.length&&(n+=Ar(n,e/n.length)),n.slice(0,e)+r):r}function uo(t,e,n,r){var o=e[n];return o?ee(o)?o(r,n,t):o[r]:r}var ao=/\[([^\]]+)]|y{2,4}|M{1,2}|d{1,2}|H{1,2}|h{1,2}|m{1,2}|s{1,2}|S{1,3}|Z{1,2}|W{1,2}|D{1,3}|[aAeEq]/g;function co(t,e,n){if(t){if(qr(t=Hn(t))){var r=n||{},o=e||qt.parseDateFormat||qt.formatString,i=t.getHours(),u=i<12?"am":"pm",a=fe({},qt.parseDateRules||qt.formatStringMatchs,r.formats),c=function(e,n){return(""+Kr(t)).substring(4-n)},s=function(e,n){return io(Br(t)+1,n,"0")},f=function(e,n){return io(t.getDate(),n,"0")},l=function(t,e){return io(i,e,"0")},d=function(t,e){return io(i<=12?i:i-12,e,"0")},h=function(e,n){return io(t.getMinutes(),n,"0")},p=function(e,n){return io(t.getSeconds(),n,"0")},g=function(e,n){return io(t.getMilliseconds(),n,"0")},m=function(e,n){var r=t.getTimezoneOffset()/60*-1;return uo(t,a,e,(r>=0?"+":"-")+io(r,2,"0")+(1===n?":":"")+"00")},y=function(e,n){return io(uo(t,a,e,no(t,ke(r.firstDay)?qt.firstDayOfWeek:r.firstDay)),n,"0")},v=function(e,n){return io(uo(t,a,e,oo(t)),n,"0")},w={yyyy:c,yy:c,MM:s,M:s,dd:f,d:f,HH:l,H:l,hh:d,h:d,mm:h,m:h,ss:p,s:p,SSS:g,S:g,ZZ:m,Z:m,WW:y,W:y,DDD:v,D:v,a:function(e){return uo(t,a,e,u)},A:function(e){return uo(t,a,e,Qr(u))},e:function(e){return uo(t,a,e,t.getDay())},E:function(e){return uo(t,a,e,t.getDay())},q:function(e){return uo(t,a,e,Math.floor((Br(t)+3)/3))}};return o.replace(ao,function(t,e){return e||(w[t]?w[t](t,t.length):t)})}return"Invalid Date"}return""}var so=Date.now||function(){return bn(zn())};var fo=eo(function(t){return new Date(t.getFullYear(),t.getMonth(),1)},function(t,e){return t.getMonth()!==e.getMonth()});var lo=[["yyyy",31536e6],["MM",2592e6],["dd",864e5],["HH",36e5],["mm",6e4],["ss",1e3],["S",0]];function ho(t){return t&&t.trimRight?t.trimRight():Ir(t).replace(/[\s\uFEFF\xA0]+$/g,"")}function po(t){return t&&t.trimLeft?t.trimLeft():Ir(t).replace(/^[\s\uFEFF\xA0]+/g,"")}function go(t){return t&&t.trim?t.trim():ho(po(t))}var mo={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#x27;","`":"&#x60;"};function yo(t){var e=new RegExp("(?:"+re(t).join("|")+")","g");return function(n){return Ir(n).replace(e,function(e){return t[e]})}}var vo=yo(mo),wo={};Xt(mo,function(t,e){wo[mo[e]]=e});var bo=yo(wo);function So(t,e,n){return t.substring(e,n)}function Eo(t){return t.toLowerCase()}var No={};var Oo={};function Do(t,e,n){return Ir(t).replace((n||qt).tmplRE||/\{{2}([.\w[\]\s]+)\}{2}/g,function(t,n){return Ie(e,go(n))})}var Ao=decodeURIComponent;function xo(t){var e,n={};return t&&mn(t)&&Yt(t.split("&"),function(t){e=t.split("="),n[Ao(e[0])]=Ao(e[1]||"")}),n}var jo=encodeURIComponent;function To(t,e,n){var r,o=[];return Xt(t,function(t,i){r=Jt(t),ve(t)||r?o=o.concat(To(t,e+"["+i+"]",r)):o.push(jo(e+"["+(n?"":i)+"]")+"="+jo(me(t)?"":t))}),o}var Mo=typeof location===Te?0:location;function ko(){return Mo?Mo.origin||Mo.protocol+"//"+Mo.host:""}function Co(t){return xo(t.split("?")[1]||"")}function Po(t){var e,n,r,o,i=""+t;return 0===i.indexOf("//")?i=(Mo?Mo.protocol:"")+i:0===i.indexOf("/")&&(i=ko()+i),r=i.replace(/#.*/,"").match(/(\?.*)/),(o={href:i,hash:"",host:"",hostname:"",protocol:"",port:"",search:r&&r[1]&&r[1].length>1?r[1]:""}).path=i.replace(/^([a-z0-9.+-]*:)\/\//,function(t,e){return o.protocol=e,""}).replace(/^([a-z0-9.+-]*)(:\d+)?\/?/,function(t,e,r){return n=r||"",o.port=n.replace(":",""),o.hostname=e,o.host=e+n,"/"}).replace(/(#.*)/,function(t,e){return o.hash=e.length>1?e:"",""}),e=o.hash.match(/#((.*)\?|(.*))/),o.pathname=o.path.replace(/(\?|#.*).*/,""),o.origin=o.protocol+"//"+o.host,o.hashKey=e&&(e[2]||e[1])||"",o.hashQuery=Co(o.hash),o.searchQuery=Co(o.search),o}function Io(t,e){var n=parseFloat(e),r=zn(),o=bn(r);switch(t){case"y":return bn(Zr(r,n));case"M":return bn(Yr(r,n));case"d":return bn(Gr(r,n));case"h":case"H":return o+60*n*60*1e3;case"m":return o+60*n*1e3;case"s":return o+1e3*n}return o}function Ro(t){return(yn(t)?t:new Date(t)).toUTCString()}function Fo(t,e,n){if(nr){var r,o,i,u,a,c,s=[],f=arguments;return Jt(t)?s=t:f.length>1?s=[fe({name:t,value:e},n)]:nn(t)&&(s=[t]),s.length>0?(Yt(s,function(t){r=fe({},qt.cookies,t),i=[],r.name&&(o=r.expires,i.push(jo(r.name)+"="+jo(nn(r.value)?JSON.stringify(r.value):r.value)),o&&(o=isNaN(o)?o.replace(/^([0-9]+)(y|M|d|H|h|m|s)$/,function(t,e,n){return Ro(Io(n,e))}):/^[0-9]{11,13}$/.test(o)||yn(o)?Ro(o):Ro(Io("d",o)),r.expires=o),Yt(["expires","path","domain","secure"],function(t){Me(r[t])||i.push(r[t]&&"secure"===t?t:t+"="+r[t])})),nr.cookie=i.join("; ")}),!0):(u={},(a=nr.cookie)&&Yt(a.split("; "),function(t){c=t.indexOf("="),u[Ao(t.substring(0,c))]=Ao(t.substring(c+1)||"")}),1===f.length?u[t]:u)}return!1}function $o(t){return Fo(t)}function _o(t,e,n){return Fo(t,e,n),Fo}function Wo(t,e){Fo(t,"",fe({expires:-1},qt.cookies,e))}function Uo(){return re(Fo())}function Ho(t){try{var e="__xe_t";return t.setItem(e,1),t.removeItem(e),!0}catch(t){return!1}}function zo(t){return navigator.userAgent.indexOf(t)>-1}fe(Fo,{has:function(t){return De(Uo(),t)},set:_o,setItem:_o,get:$o,getItem:$o,remove:Wo,removeItem:Wo,keys:Uo,getJSON:function(){return Fo()}}),fe(le,{assign:fe,objectEach:Qt,lastObjectEach:ge,objectMap:function(t,e,n){var r={};if(t){if(!e)return t;ee(e)||(e=ye(e)),Xt(t,function(o,i){r[i]=e.call(n,o,i,t)})}return r},merge:function(t){t||(t={});for(var e,n=arguments,r=n.length,o=1;o<r;o++)(e=n[o])&&be(t,e);return t},uniq:xe,union:function(){for(var t=arguments,e=[],n=0,r=t.length;n<r;n++)e=e.concat(je(t[n]));return xe(e)},sortBy:We,orderBy:_e,shuffle:ze,sample:function(t,e){var n=ze(t);return arguments.length<=1?n[0]:(e<n.length&&(n.length=e||0),n)},some:Ne,every:Oe,slice:Be,filter:function(t,e,n){var r=[];if(t&&e){if(t.filter)return t.filter(e,n);Xt(t,function(o,i){e.call(n,o,i,t)&&r.push(o)})}return r},find:Ye,findLast:function(t,e,n){if(t){Jt(t)||(t=He(t));for(var r=t.length-1;r>=0;r--)if(e.call(n,t[r],r,t))return t[r]}},findKey:qe,includes:De,arrayIndexOf:hn,arrayLastIndexOf:pn,map:Se,reduce:function(t,e,n){if(t){var r,o,i=0,u=n,a=arguments.length>2,c=re(t);if(t.length&&t.reduce)return o=function(){return e.apply(null,arguments)},a?t.reduce(o,u):t.reduce(o);for(a&&(i=1,u=t[c[0]]),r=c.length;i<r;i++)u=e.call(null,u,t[c[i]],i,t);return u}},copyWithin:function(t,e,n,r){if(Jt(t)&&t.copyWithin)return t.copyWithin(e,n,r);var o,i,u=e|0,a=n|0,c=t.length,s=arguments.length>3?r|0:c;if(u<c&&(u=u>=0?u:c+u)>=0&&(a=a>=0?a:c+a)<(s=s>=0?s:c+s))for(o=0,i=t.slice(a,s);u<c&&!(i.length<=o);u++)t[u]=i[o++];return t},chunk:function(t,e){var n,r=[],o=e|0||1;if(Jt(t))if(o>=0&&t.length>o)for(n=0;n<t.length;)r.push(t.slice(n,n+o)),n+=o;else r=t.length?[t]:t;return r},zip:function(){return Ge(arguments)},unzip:Ge,zipObject:function(t,e){var n={};return e=e||[],Xt(He(t),function(t,r){n[t]=e[r]}),n},flatten:function(t,e){return Jt(t)?Qe(t,e):[]},toArray:je,includeArrays:Ae,pluck:Ze,invoke:function(t,e){for(var n,r=arguments,o=[],i=[],u=2,a=r.length;u<a;u++)o.push(r[u]);if(Jt(e)){for(a=e.length-1,u=0;u<a;u++)i.push(e[u]);e=e[a]}return Se(t,function(t){if(i.length&&(t=function(t,e){for(var n=0,r=e.length;t&&n<r;)t=t[e[n++]];return r&&t?t:0}(t,i)),(n=t[e]||e)&&n.apply)return n.apply(t,o)})},arrayEach:Yt,lastArrayEach:pe,toArrayTree:function(t,e){var n,r,o,i=fe({},qt.treeOptions,e),u=i.strict,a=i.key,c=i.parentKey,s=i.children,f=i.mapChildren,l=i.sortKey,d=i.reverse,h=i.data,p=[],g={},m={};return l&&(t=_e(ae(t),l),d&&(t=t.reverse())),Xt(t,function(t){n=t[a],m[n]&&Xe("warn","Duplicate primary key="+n),m[n]=!0}),Xt(t,function(t){n=t[a],h?(r={})[h]=t:r=t,o=t[c],g[n]=g[n]||[],r[a]=n,r[c]=o,n===o&&(o=null,Xe("warn","Error infinite Loop. key="+n+" parentKey="+n)),g[o]=g[o]||[],g[o].push(r),r[s]=g[n],f&&(r[f]=g[n]),(!u||u&&ke(o))&&(m[o]||p.push(r))}),u&&function(t,e){Xt(t,function(t){t[e]&&!t[e].length&&on(t,e)})}(t,s),p},toTreeArray:function(t,e){return un([],null,t,fe({},qt.treeOptions,e))},findTree:cn,eachTree:sn,mapTree:fn,filterTree:function(t,e,n,r){var o=[];return t&&e&&sn(t,function(t,n,i,u,a,c){e.call(r,t,n,i,u,a,c)&&o.push(t)},n),o},searchTree:dn,hasOwnProp:Gt,eqNull:ke,isNaN:function(t){return gn(t)&&isNaN(t)},isFinite:function(t){return gn(t)&&isFinite(t)},isUndefined:Me,isArray:Jt,isFloat:function(t){return!(me(t)||isNaN(t)||Jt(t)||Zn(t))},isInteger:Zn,isFunction:ee,isBoolean:Vn,isString:mn,isNumber:gn,isRegExp:Jn,isObject:nn,isPlainObject:ve,isDate:yn,isError:Gn,isTypeError:function(t){return!!t&&t.constructor===TypeError},isEmpty:Qn,isNull:me,isSymbol:tr,isArguments:er,isElement:function(t){return!!(t&&mn(t.nodeName)&&gn(t.nodeType))},isDocument:function(t){return!(!t||!nr||9!==t.nodeType)},isWindow:function(t){return!(!rr||!t||t!==t.window)},isFormData:function(t){return or&&t instanceof FormData},isMap:function(t){return ir&&t instanceof Map},isWeakMap:function(t){return ur&&t instanceof WeakMap},isSet:function(t){return ar&&t instanceof Set},isWeakSet:function(t){return cr&&t instanceof WeakSet},isLeapYear:Kn,isMatch:function(t,e){var n=re(t),r=re(e);return!r.length||(Ae(n,r)?Ne(r,function(r){return fr(n,function(n){return n===r&&hr(t[n],e[r])})>-1}):hr(t,e))},isEqual:hr,isEqualWith:function(t,e,n){return ee(n)?lr(t,e,function(t,e,r,o,i){var u=n(t,e,r,o,i);return Me(u)?dr(t,e):!!u},n):lr(t,e,dr)},getType:function(t){return me(t)?"null":tr(t)?"symbol":yn(t)?"date":Jt(t)?"array":Jn(t)?"regexp":Gn(t)?"error":typeof t},uniqueId:function(t){return""+(ke(t)?"":t)+qt.keyId++},getSize:Yn,indexOf:Bn,lastIndexOf:qn,findIndexOf:fr,findLastIndexOf:pr,toStringJSON:function(t){if(ve(t))return t;if(mn(t))try{return JSON.parse(t)}catch(t){}return{}},toJSONString:function(t){return ke(t)?"":JSON.stringify(t)},keys:re,values:He,entries:gr,pick:yr,omit:vr,first:function(t){return He(t)[0]},last:function(t){var e=He(t);return e[e.length-1]},each:Xt,forOf:function(t,e,n){if(t)if(Jt(t))for(var r=0,o=t.length;r<o&&!1!==e.call(n,t[r],r,t);r++);else for(var i in t)if(Gt(t,i)&&!1===e.call(n,t[i],i,t))break},lastForOf:function(t,e,n){var r,o;if(t)if(Jt(t))for(r=t.length-1;r>=0&&!1!==e.call(n,t[r],r,t);r--);else for(r=(o=Gt(t)).length-1;r>=0&&!1!==e.call(n,t[o[r]],o[r],t);r--);},lastEach:en,has:function(t,e){if(t){if(Gt(t,e))return!0;var n,r,o,i,u,a,c=Pe(e),s=0,f=c.length;for(u=t;s<f&&(a=!1,(i=(n=c[s])?n.match(Ce):"")?(r=i[1],o=i[2],r?u[r]&&Gt(u[r],o)&&(a=!0,u=u[r][o]):Gt(u,o)&&(a=!0,u=u[o])):Gt(u,n)&&(a=!0,u=u[n]),a);s++)if(s===f-1)return!0}return!1},get:Ie,set:function(t,e,n){if(t&&we(e))if(!t[e]&&!Gt(t,e)||Sr(e)){for(var r=t,o=Pe(e),i=o.length,u=0;u<i;u++)if(!Sr(o[u])){var a=u===i-1;r=br(r,o[u],a,a?null:o[u+1],n)}}else t[e]=n;return t},groupBy:Er,countBy:function(t,e,n){var r=Er(t,e,n||this);return Qt(r,function(t,e){r[e]=t.length}),r},clone:ae,clear:rn,remove:on,range:Nr,destructuring:function(t,e){if(t&&e){var n=fe.apply(this,[{}].concat(Be(arguments,1))),r=re(n);Yt(re(t),function(e){De(r,e)&&(t[e]=n[e])})}return t},random:Ue,min:Or,max:Je,commafy:function(t,e){var n,r,o,i,u,a=fe({},qt.commafyOptions,e),c=a.digits;return gn(t)?(n=(a.ceil?Cr:a.floor?Pr:kr)(t,c),i=(r=jr(c?Rr(n,c):n).split("."))[0],u=r[1],(o=i&&n<0)&&(i=i.substring(1,i.length))):i=(r=(n=Ir(t).replace(/,/g,""))?[n]:[])[0],r.length?(o?"-":"")+i.replace(new RegExp("(?=(?!(\\b))(.{"+(a.spaceNumber||3)+"})+$)","g"),a.separator||",")+(u?"."+u:""):n},round:kr,ceil:Cr,floor:Pr,toFixed:Rr,toNumber:Le,toNumberString:jr,toInteger:Fr,add:function(t,e){return _r(Le(t),Le(e))},subtract:function(t,e){var n=Le(t),r=Le(e),o=jr(n),i=jr(r),u=Dr(o),a=Dr(i),c=Math.pow(10,Math.max(u,a));return parseFloat(Rr((n*c-r*c)/c,u>=a?u:a))},multiply:$r,divide:function(t,e){return Wr(Le(t),Le(e))},sum:Ur,mean:function(t,e,n){return Wr(Ur(t,e,n),Yn(t))},now:so,timestamp:function(t,e){if(t){var n=Hn(t,e);return yn(n)?bn(n):n}return so()},isValidDate:qr,isDateSame:function(t,e,n){return!(!t||!e)&&("Invalid Date"!==(t=co(t,n))&&t===co(e,n))},toStringDate:Hn,toDateString:co,getWhatYear:Zr,getWhatQuarter:function(t,e,n){var r,o=e&&!isNaN(e)?3*e:0;return qr(t=Hn(t))?(r=3*(function(t){var e=t.getMonth();return e<3?1:e<6?2:e<9?3:4}(t)-1),t.setMonth(r),Yr(t,o,n)):t},getWhatMonth:Yr,getWhatWeek:Jr,getWhatDay:Gr,getWhatHours:function t(e,n,r){if(qr(e=Hn(e))&&!isNaN(n)){if(e.setHours(e.getHours()+vn(n)),r===Hr)return new Date(Kr(e),Br(e),e.getDate(),e.getHours());if(r===zr)return new Date(bn(t(e,1,Hr))-1)}return e},getWhatMinutes:function t(e,n,r){if(qr(e=Hn(e))&&!isNaN(n)){if(e.setMinutes(e.getMinutes()+vn(n)),r===Hr)return new Date(Kr(e),Br(e),e.getDate(),e.getHours(),e.getMinutes());if(r===zr)return new Date(bn(t(e,1,Hr))-1)}return e},getWhatSeconds:function t(e,n,r){if(qr(e=Hn(e))&&!isNaN(n)){if(e.setSeconds(e.getSeconds()+vn(n)),r===Hr)return new Date(Kr(e),Br(e),e.getDate(),e.getHours(),e.getMinutes(),e.getSeconds());if(r===zr)return new Date(bn(t(e,1,Hr))-1)}return e},getYearDay:oo,getYearWeek:no,getMonthWeek:fo,getDayOfYear:function(t,e){return qr(t=Hn(t))?Kn(Zr(t,e))?366:365:NaN},getDayOfMonth:function(t,e){return qr(t=Hn(t))?Math.floor((bn(Yr(t,e,zr))-bn(Yr(t,e,Hr)))/Lr)+1:NaN},getDateDiff:function(t,e){var n,r,o,i,u,a,c={done:!1,status:!1,time:0};if(t=Hn(t),e=e?Hn(e):zn(),qr(t)&&qr(e)&&(n=bn(t))<(r=bn(e)))for(i=c.time=r-n,c.done=!0,c.status=!0,a=0,u=lo.length;a<u;a++)i>=(o=lo[a])[1]?a===u-1?c[o[0]]=i||0:(c[o[0]]=Math.floor(i/o[1]),i-=c[o[0]]*o[1]):c[o[0]]=0;return c},trim:go,trimLeft:po,trimRight:ho,escape:vo,unescape:bo,camelCase:function(t){if(t=Ir(t),No[t])return No[t];var e=t.length,n=t.replace(/([-]+)/g,function(t,n,r){return r&&r+n.length<e?"-":""});return e=n.length,n=n.replace(/([A-Z]+)/g,function(t,n,r){var o=n.length;return n=Eo(n),r?o>2&&r+o<e?Qr(So(n,0,1))+So(n,1,o-1)+Qr(So(n,o-1,o)):Qr(So(n,0,1))+So(n,1,o):o>1&&r+o<e?So(n,0,o-1)+Qr(So(n,o-1,o)):n}).replace(/(-[a-zA-Z])/g,function(t,e){return Qr(So(e,1,e.length))}),No[t]=n,n},kebabCase:function(t){if(t=Ir(t),Oo[t])return Oo[t];if(/^[A-Z]+$/.test(t))return Eo(t);var e=t.replace(/^([a-z])([A-Z]+)([a-z]+)$/,function(t,e,n,r){var o=n.length;return o>1?e+"-"+Eo(So(n,0,o-1))+"-"+Eo(So(n,o-1,o))+r:Eo(e+"-"+n+r)}).replace(/^([A-Z]+)([a-z]+)?$/,function(t,e,n){var r=e.length;return Eo(So(e,0,r-1)+"-"+So(e,r-1,r)+(n||""))}).replace(/([a-z]?)([A-Z]+)([a-z]?)/g,function(t,e,n,r,o){var i=n.length;return i>1&&(e&&(e+="-"),r)?(e||"")+Eo(So(n,0,i-1))+"-"+Eo(So(n,i-1,i))+r:(e||"")+(o?"-":"")+Eo(n)+(r||"")});return e=e.replace(/([-]+)/g,function(t,n,r){return r&&r+n.length<e.length?"-":""}),Oo[t]=e,e},repeat:function(t,e){return Ar(Ir(t),e)},padStart:io,padEnd:function(t,e,n){var r=Ir(t);return e|=0,n=Me(n)?" ":""+n,r.padEnd?r.padEnd(e,n):e>r.length?((e-=r.length)>n.length&&(n+=Ar(n,e/n.length)),r+n.slice(0,e)):r},startsWith:function(t,e,n){var r=Ir(t);return 0===(1===arguments.length?r:r.substring(n)).indexOf(e)},endsWith:function(t,e,n){var r=Ir(t),o=arguments.length;return o>1&&(o>2?r.substring(0,n).indexOf(e)===n-1:r.indexOf(e)===r.length-1)},template:Do,toFormatString:function(t,e){return Do(t,e,{tmplRE:/\{([.\w[\]\s]+)\}/g})},toString:Ir,toValueString:Ir,noop:function(){},property:ye,bind:function(t,e){var n=Be(arguments,2);return function(){return t.apply(e,Be(arguments).concat(n))}},once:function(t,e){var n=!1,r=null,o=Be(arguments,2);return function(){return n||(r=t.apply(e,Be(arguments).concat(o)),n=!0),r}},after:function(t,e,n){var r=0,o=[];return function(){var i=arguments;++r<=t&&o.push(i[0]),r>=t&&e.apply(n,[o].concat(Be(i)))}},before:function(t,e,n){var r=0,o=[];return n=n||this,function(){var i=arguments;++r<t&&(o.push(i[0]),e.apply(n,[o].concat(Be(i))))}},throttle:function(t,e,n){var r=null,o=null,i=!1,u=null,a=fe({leading:!0,trailing:!0},n),c=a.leading,s=a.trailing,f=function(){r=null,o=null},l=function(){i=!0,t.apply(o,r),u=setTimeout(d,e),f()},d=function(){u=null,i||!0!==s?f():l()},h=function(){r=arguments,o=this,i=!1,null!==u||!0!==c?!0===s&&(u=setTimeout(d,e)):l()};return h.cancel=function(){var t=null!==u;return t&&clearTimeout(u),f(),u=null,i=!1,t},h},debounce:function(t,e,n){var r=null,o=null,i="boolean"==typeof n?{leading:n,trailing:!n}:fe({leading:!1,trailing:!0},n),u=!1,a=null,c=i.leading,s=i.trailing,f=function(){r=null,o=null},l=function(){u=!0,t.apply(o,r),f()},d=function(){!0===c&&(a=null),u||!0!==s?f():l()},h=function(){u=!1,r=arguments,o=this,null===a?!0===c&&l():clearTimeout(a),a=setTimeout(d,e)};return h.cancel=function(){var t=null!==a;return t&&clearTimeout(a),f(),a=null,u=!1,t},h},delay:function(t,e){var n=Be(arguments,2),r=this;return setTimeout(function(){t.apply(r,n)},e)},unserialize:xo,serialize:function(t){var e,n=[];return Xt(t,function(t,r){Me(t)||(e=Jt(t),ve(t)||e?n=n.concat(To(t,r,e)):n.push(jo(r)+"="+jo(me(t)?"":t)))}),n.join("&").replace(/%20/g,"+")},parseUrl:Po,getBaseURL:function(){if(Mo){var t=Mo.pathname,e=qn(t,"/")+1;return ko()+(e===t.length?t:t.substring(0,e))}return""},locat:function(){return Mo?Po(Mo.href):{}},browse:function(){var t,e,n,r=!1,o=!1,i=!1,u={isNode:!1,isMobile:r,isPC:!1,isDoc:!!nr};if(rr||typeof process===Te){n=zo("Edge"),e=zo("Chrome"),r=/(Android|webOS|iPhone|iPad|iPod|SymbianOS|BlackBerry|Windows Phone)/.test(navigator.userAgent),u.isDoc&&(t=nr.body||nr.documentElement,Yt(["webkit","khtml","moz","ms","o"],function(e){u["-"+e]=!!t[e+"MatchesSelector"]}));try{o=Ho(rr.localStorage)}catch(t){}try{i=Ho(rr.sessionStorage)}catch(t){}fe(u,{edge:n,firefox:zo("Firefox"),msie:!n&&u["-ms"],safari:!e&&!n&&zo("Safari"),isMobile:r,isPC:!r,isLocalStorage:o,isSessionStorage:i})}else u.isNode=!0;return u},cookie:Fo});let Ko=!1;function Lo(t){if(!t)return null;const e=localStorage.getItem(t);if(!e)return null;try{return JSON.parse(e,(t,e)=>{if(e&&"string"==typeof e){const t=function(){return e.replace("TT_FUNCTION","")};return e.includes("TT_FUNCTION")?t():e}return e})}catch{return e}}function Bo(t,e="12",n="Microsoft YaHei,Arial,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue','Noto Sans',sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji'"){let r=0;const o=document.createElement("canvas").getContext("2d");return o&&(o.font=`${e} ${n}`,r=o.measureText(t).width),r}function qo(t,e,n){const r=n?.excludeAll||[],o=n?.exclude||[];return r.includes("Id")||r.push("Id"),r.includes("rowId")||r.push("rowId"),Object.fromEntries(Object.entries(t).reduce((t,[i,u])=>(r.includes(i)||o.includes(i)||(u&&F(u)?Yo(n,e,u,i,t):u&&q(u)?Zo(n,e,u,i,t):Vo(n,e,u,i,t)),t),[]))}function Yo(t,e,n,r,o){const i=qo(n,e[r]||{},{excludeAll:t?.excludeAll,...t});Object.keys(i).length&&o.push([r,i])}function Zo(t,e,n,r,o){const i=[],u=(t||{})[r]?.key;if(e[r]){const o=n?.length>=e[r]?.length?n:e[r],a=n?.length<e[r]?.length?n:e[r];u?o.forEach(e=>{const n=a.find(t=>t[u]===e[u]);if(n){const o=qo(e,n,{excludeAll:t?.excludeAll,...t[r]});Object.keys(o).length&&i.push({[u]:n[u],...o})}else i.push(e)}):o.forEach((e,n)=>{const r=a[n];if(F(e)&&!F(r)||q(e)&&!q(r)||typeof e!=typeof r||!r)i.push(e);else if(F(e)||q(e)){const n=qo(e,r,{excludeAll:t?.excludeAll});Object.keys(n).length&&i.push({...n})}else e!==r&&i.push(e)})}else i.push(...n);i.length&&o.push([r,i])}function Vo(t,e,n,r,o){const i=t?.notNullToFalse||[];if("string"==typeof n&&"number"==typeof e[r]||"number"==typeof n&&"string"==typeof e[r])Number(n)!==Number(e[r])&&o.push([r,n]);else if([void 0,null,""].includes(n))[void 0,null,""].includes(e[r])||o.push([r,n]);else if(n!==e[r]){if(!1===n&&[void 0,null,""].includes(e[r])&&!i.includes(r))return;o.push([r,n])}}function Jo(t,e,n){const r={},o=["rowId","row_id"],i=n?.excludeAll||[],u=n?.exclude||[];for(const a in e)if(Object.prototype.hasOwnProperty.call(e,a)&&![...i,...o].includes(a)&&![...u,...o].includes(a)){const o=t[a],u=e[a];if(Array.isArray(u)&&Array.isArray(o)){(o.length!==u.length||o.some((t,e)=>"object"==typeof t&&"object"==typeof u[e]?Object.keys(Jo(t,u[e],{excludeAll:i,...n?.[a]})).length>0:t!==u[e]))&&(r[a]=u)}else if("object"==typeof u&&"object"==typeof o&&null!==u&&null!==o){const t=Jo(o,u,{excludeAll:i,...n?.[a]});Object.keys(t).length>0&&(r[a]=t)}else o!==u&&String(o)!==String(u)&&(r[a]=u)}return r}function Go(t={},e={}){let n;for(n in e)t[n]=F(t[n])?Go(t[n],e[n]):t[n]=e[n];return t}function Qo(t,e="px"){return le.isNumber(t)||/^\d+$/.test(`${t}`)?`${t}${e}`:`${t||""}`}function Xo(t,e,n){return i({get:()=>new Proxy(t[e],{set:(t,r,o)=>(n(`update:${e}`,{...t,[r]:o}),!0)}),set(t){n(`update:${e}`,t)}})}function ti(t){const e=Object.getPrototypeOf(t);if(!e||e===Object.prototype)return t;const n=Object.getOwnPropertyNames(e);for(const e of n){const n=t[e];"constructor"!==e&&"function"==typeof n&&(t[e]=n.bind(t))}return t}function ei(t){if(null===t||"object"!=typeof t)return t;if(t instanceof Date)return new Date(t.getTime());if(t instanceof RegExp)return new RegExp(t);if(Array.isArray(t))return t.map(t=>ei(t));const e={};return Object.keys(t).forEach(n=>{e[n]=ei(t[n])}),e}function ni(t,e="id",n="parentId",r="children"){const o=new Map,i=[];return t.forEach(t=>{o.set(t[e],{...t,[r]:[]})}),t.forEach(t=>{const u=o.get(t[e]);if(t[n]){const e=o.get(t[n]);e&&e[r].push(u)}else i.push(u)}),i}function ri(...t){for(const e of t)if(null!=e)return e}function oi(...t){return a(c(t))}function ii(){const t=new Event("resize");window.dispatchEvent(t)}function ui(t,e,n="prop",r="content"){t.forEach(t=>{Object.prototype.hasOwnProperty.call(t,n)&&(q(r)?r.forEach(r=>{Object.prototype.hasOwnProperty.call(t,r)&&(t[r]=e[t[n]])}):Object.prototype.hasOwnProperty.call(t,r)&&(t[r]=e[t[n]]))})}const ai=function(t,e="YYYY-MM-DD HH:mm:ss",n="Asia/Shanghai"){return R(t)||""===t||0===t||"0"===t?"":r(t).isValid()?(Ko||(r.extend(f),r.extend(l),Ko=!0),r(t).tz(n).format(e)):""};function ci(t){return s(t)}function si(t,e){return t?e&&0!==e.length?e.reduce((t,e)=>(delete t[e],t),{...t}):t:{}}function fi(t,e=200,n={}){const{leading:r=!1,trailing:o=!0,maxWait:i}=n;let u,a,c,s,f,l=0;function d(e){const n=s;return s=void 0,l=e,f=t(...n),f}function h(){void 0!==u&&(window.clearTimeout(u),u=void 0),void 0!==a&&(window.clearTimeout(a),a=void 0)}function p(){h(),l=0,s=void 0,c=void 0,f=void 0}function g(t){if(void 0===c)return!0;const n=t-c;return n>=e||n<0||void 0!==i&&t-l>=i}function m(){const t=Date.now();if(g(t))return void function(t){u=void 0,o&&void 0!==s?d(t):s=void 0}(t);const n=function(t){const n=t-l,r=e-(t-c);return void 0!==i?Math.min(r,i-n):r}(t);u=n>0?window.setTimeout(m,n):void 0}function y(){const t=Date.now();h(),void 0!==s&&d(t)}const v=(...t)=>{const n=Date.now(),o=g(n);if(s=t??[],c=n,o){if(void 0===u)return function(t){return l=t,h(),u=window.setTimeout(m,e),void 0!==i&&(a=window.setTimeout(y,i)),r?d(t):f}(n);if(void 0!==i)return h(),u=window.setTimeout(m,e),a=window.setTimeout(y,i),r?d(n):f}return void 0===u&&(u=window.setTimeout(m,e),void 0!==i&&(a=window.setTimeout(y,i))),f};return v.isPending=()=>void 0!==u||void 0!==a,v.cancel=()=>{p()},v.flush=(...e)=>{if(!v.isPending())return e.length>0?t(...e):f;const n=void 0!==s?s:e;return p(),t(...n)},v}function li(t,...e){let n=[];const r=e[e.length-1];return e.length>0&&Array.isArray(r)&&r.every(t=>["string","number","symbol"].includes(typeof t))&&(n=e.pop()),d((t,e,r)=>n.includes(e)||Array.isArray(t[e])&&Array.isArray(r)?(t[e]=r,!0):void 0)(t,...e)}function di(...t){let e=new h(t[0]??0);for(let n=1;n<t.length;n++)e=e.add(new h(t[n]??0));return e.toNumber()}function hi(...t){let e=new h(t[0]??0);for(let n=1;n<t.length;n++)e=e.sub(new h(t[n]??0));return e.toNumber()}function pi(...t){let e=new h(t[0]??0);for(let n=1;n<t.length;n++)e=e.mul(new h(t[n]??0));return e.toNumber()}function gi(...t){let e=new h(t[0]??0);for(let n=1;n<t.length;n++)e=e.div(new h(t[n]??0));return e.toNumber()}function mi(...t){return t.reduce((t,e)=>wi(t??0).add(e??0).toNumber(),0)}function yi(t,e){return t.reduce((t,n)=>wi(t??0).add(e(n)??0).toNumber(),0)}function vi(t,e,n){const r={},o=n;return t.forEach(t=>{const n=e(t);if(n){const e=o(t);r[n]=wi(r[n]||0).add(e).toNumber()}}),r}function wi(t){const e=Number(t)||0===t,n=Number.isNaN(Number(t)),r=new h(t);if(e&&!n)return r;console.error("请输入合理数字!");return new h(Number.NaN)}class bi{condition=!1;promiseResolvers=null;isConditionTrue(){return this.condition}reset(){this.condition=!1,this.clearPromises()}setConditionFalse(){this.condition=!1,this.promiseResolvers&&(this.promiseResolvers.reject(),this.clearPromises())}setConditionTrue(){this.condition=!0,this.promiseResolvers&&(this.promiseResolvers.resolve(),this.clearPromises())}waitForCondition(){if(this.condition)return Promise.resolve();const{promise:t,resolve:e,reject:n}=Promise.withResolvers();return this.promiseResolvers={resolve:e,reject:n},t}clearPromises(){this.promiseResolvers=null}}class Si{condition=!1;rejectCondition=null;resolveCondition=null;isConditionTrue(){return this.condition}reset(){this.condition=!1,this.clearPromises()}setConditionFalse(){this.condition=!1,this.rejectCondition&&(this.rejectCondition(),this.clearPromises())}setConditionTrue(){this.condition=!0,this.resolveCondition&&(this.resolveCondition(),this.clearPromises())}waitForCondition(){return new Promise((t,e)=>{this.condition?t():(this.resolveCondition=t,this.rejectCondition=e)})}clearPromises(){this.resolveCondition=null,this.rejectCondition=null}}const Ei=!0,Ni=25200,Oi={key:"_11111000001111@",iv:"@11111000001111_"};class Di{key;iv;constructor(t={}){const{key:e,iv:n}=t;e&&(this.key=y?.(e)),n&&(this.iv=y?.(n))}get getOptions(){return{mode:v,padding:w,iv:this.iv}}encryptByAES(t){return p(t,this.key,this.getOptions).toString()}decryptByAES(t){return g(t,this.key,this.getOptions).toString(m)}}function Ai({prefixKey:t="",storage:e=sessionStorage,key:n=Oi.key,iv:r=Oi.iv,timeout:o=null,hasEncrypt:i=!0}={}){if(i&&[n.length,r.length].some(t=>16!==t))throw new Error("When hasEncrypt is true, the key or iv must be 16 bits!");const u=new Di({key:n,iv:r});return new class{storage;prefixKey;encryption;hasEncrypt;constructor(){this.storage=e,this.prefixKey=t,this.encryption=u,this.hasEncrypt=i}getKey(t){return`${this.prefixKey}${t}`.toUpperCase()}set(t,e,n=o){const r=JSON.stringify({value:e,time:Date.now(),expire:R(n)?null:(new Date).getTime()+1e3*n}),i=this.hasEncrypt?this.encryption.encryptByAES(r):r;this.storage.setItem(this.getKey(t),i)}get(t,e=null){const n=this.storage.getItem(this.getKey(t));if(!n)return e;try{const e=this.hasEncrypt?this.encryption.decryptByAES(n):n,r=JSON.parse(e),{value:o,expire:i}=r;if(R(i)||i>=(new Date).getTime())return o;this.remove(t)}catch(t){return console.error(`get erroe:${t}`),e}}remove(t){this.storage.removeItem(this.getKey(t))}getKeysWithPrefix(t){const e=[];for(let n=0;n<this.storage.length;n++){const r=this.storage.key(n);r&&r.startsWith(t)&&e.push(r)}return e}getKeysWithPrefixExcluding(t,e){const n=[];for(let r=0;r<this.storage.length;r++){const o=this.storage.key(r);o&&o.startsWith(t)&&!e.has(o)&&n.push(o)}return n}removeKeys(t){t.forEach(t=>{this.storage.removeItem(t)})}clear(t){const e=(this.prefixKey||"").toUpperCase();if(!t)return void this.removeKeys(this.getKeysWithPrefix(e));const{keys:n,exclude:r}=t;if(n&&n.length>0)n.forEach(t=>{this.remove(t)});else{if(r&&r.length>0){const t=new Set(r.map(t=>this.getKey(t)));return void this.removeKeys(this.getKeysWithPrefixExcluding(e,t))}this.removeKeys(this.getKeysWithPrefix(e))}}}}function xi(t=sessionStorage,e={}){return Ai(function(t,e={}){return{hasEncrypt:Ei,storage:t,prefixKey:"tt-admin",...e}}(t,e))}function ji(t={}){return xi(sessionStorage,{...t,timeout:Ni})}function Ti(t={}){return xi(localStorage,{...t,timeout:Ni})}function Mi(t,e,n,r){if(!t)return!1;const o=t.split(".").map(t=>Number(t));if(o.length<2)return!1;const i=o[0],u=o[1],a=o[2];return i>e||!(i<e)&&(u>n||!(u<n)&&(void 0===r||(a??0)>=r))}function ki(t,e,n){const r=b(t);return e?n?.forEach(t=>{const e=r[t];Array.isArray(e)&&(r[t]=r[t].join(","))}):Object.entries(r).forEach(([t,e])=>{Array.isArray(e)&&!n?.includes(t)&&(r[t]=e.join(","))}),r}function Ci(t,e,n){const r=b(t);return e?n?.forEach(t=>{const e=r[t];"string"==typeof e&&(r[t]=""===e?[]:e.split(","))}):Object.entries(r).forEach(([t,e])=>{"string"!=typeof e||n?.includes(t)||(r[t]=""===e?[]:e.split(","))}),r}const Pi=new Set(["*","all","ALL","All"]);function Ii(t,e,n){let{vk:r,ck:o}=n||{};const{labelField:i,valueField:u,hasDefault:a=!0}=n||{};r=r||i||"label",o=o||u||"value","number"==typeof e&&(e=e.toString());let c=[e];Array.isArray(e)?c=e:z(e)&&(c=e?.split(","));const s=t=>a?t:void 0;return c?.map(e=>Pi.has(String(e))?"全部":Array.isArray(t)?t?.find(t=>t[o]==e)?.[r]??s(e):t?.[e]??s(e))?.join()}const Ri=(t=[])=>{let e=[];return e=t.filter(t=>Boolean(Object.values(t).filter(Boolean).length)),e.length?e:void 0},Fi=(t,e=",")=>Array.isArray(t)?t:t?.split(e).filter(Boolean)??[],$i=(t=[])=>t.filter(Boolean),_i=(t,e)=>t()?e:[],Wi=(t,e=",")=>Array.isArray(t)?t.join(e):t;export{Ii as CODE_TO_VALUE,Ni as DEFAULT_CACHE_TIME,$i as FILTER_BOOLEAN,Ri as FILTER_EMPTY,_i as GET_LIST_BY_FUNC,Wi as JOIN_BY_SEPARATOR,Fi as SPLIT_BY_SEPARATOR,bi as StateHandler,Si as StateHandlerOld,Tt as TtHttp,di as add,ui as arrGive,ni as arrayToTree,ti as bindMethods,Oi as cacheCipher,wi as calc,Bo as calcWordsWidth,S as capitalize,Mi as checkVersion,oi as clnm,ci as cloneDeep,vi as clsSumTotalBy,Jo as compareObjects,Ai as create,Ti as createLocalStorage,ji as createSessionStorage,xi as createStorage,ai as dateFormat,fi as debounce,ei as deepCopy,Go as deepMerge,gi as divide,O as downloadFile,Ei as enableStorageEncryption,Lt as extractIdFromTitle,Ut as extractResourceFromApi,Ct as formatAmount,Pt as formatAmountOfPlace,Rt as formatDecimal,Ft as formatFileSize,ki as formatFormData,$t as formatPeriod,It as formatPlaceOfAmount,Wt as formatToDate,_t as formatToDateTime,Kt as generateFormName,Ht as generateTestId,at as getBrowserType,ut as getDeviceType,qo as getDifference,ri as getFirstNonNullOrUndefined,xt as getPageKey,Lo as getStorage,k as is,st as isAndroid,q as isArray,L as isBoolean,G as isClient,W as isDate,ht as isDayjsObject,C as isDef,Z as isElement,$ as isEmpty,_ as isEmptyZero,et as isError,lt as isExternal,ot as isFalse,pt as isFormData,K as isFunction,ct as isIos,dt as isJson,V as isMap,I as isNull,R as isNullOrUnDef,U as isNumber,F as isObject,ft as isPC,tt as isPrimitive,H as isPromise,B as isRegExp,J as isServer,rt as isSet,z as isString,X as isStringNumber,nt as isSymbol,it as isTrue,P as isUndefined,Q as isUrl,Bt as isValidTestId,Y as isWindow,N as kebabToCamelCase,jt as loadingService,li as mergeWithArrayOverride,pi as multiply,si as omit,Ci as revertFormatFormData,Zo as setDifferenceArr,Vo as setDifferenceField,Yo as setDifferenceObj,hi as subtract,mi as sumTotal,yi as sumTotalBy,Qo as toCssUnit,zt as toKebabCase,ii as triggerWindowResize,E as trim,Xo as useVModel,Mt as withInstall};
2
2
  //# sourceMappingURL=index.esm.js.map