diff --git a/.idea/modules.xml b/.idea/modules.xml index 33f94ca..12e1bc8 100644 --- a/.idea/modules.xml +++ b/.idea/modules.xml @@ -3,6 +3,7 @@ + diff --git a/.idea/modules/dev-assistant-service.main.iml b/.idea/modules/dev-assistant-service.main.iml new file mode 100644 index 0000000..ab75cad --- /dev/null +++ b/.idea/modules/dev-assistant-service.main.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/data/database.mv.db b/data/database.mv.db deleted file mode 100644 index d62ab0f..0000000 Binary files a/data/database.mv.db and /dev/null differ diff --git a/dev-assistant-service/build.gradle b/dev-assistant-service/build.gradle index 74757ba..84faf96 100644 --- a/dev-assistant-service/build.gradle +++ b/dev-assistant-service/build.gradle @@ -25,7 +25,6 @@ repositories { dependencies { implementation 'org.springframework.boot:spring-boot-starter-web' - implementation 'org.springframework.boot:spring-boot-starter-security' implementation 'org.springframework.boot:spring-boot-starter-data-jpa' implementation 'cn.hutool:hutool-all:5.8.35' diff --git a/dev-assistant-service/src/main/java/com/devassistant/authentication/controller/AuthenticationController.java b/dev-assistant-service/src/main/java/com/devassistant/authentication/controller/AuthenticationController.java new file mode 100644 index 0000000..5201cf4 --- /dev/null +++ b/dev-assistant-service/src/main/java/com/devassistant/authentication/controller/AuthenticationController.java @@ -0,0 +1,44 @@ +package com.devassistant.authentication.controller; + + +import com.alibaba.fastjson2.JSONObject; +import com.devassistant.authentication.service.AuthenticationService; +import com.devassistant.framework.common.IgnoreLogin; +import com.devassistant.framework.common.RestResult; +import jakarta.servlet.http.HttpServletRequest; +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +/** + * 权限认证接口 + */ +@Slf4j +@RestController +@RequiredArgsConstructor +@RequestMapping("authentication") +public class AuthenticationController { + + private final AuthenticationService authenticationService; + + /** + * 登录 + * + * @return token + */ + @IgnoreLogin + @PostMapping("login") + public RestResult> login(@RequestBody JSONObject body, HttpServletRequest request) { + String password = body.getString("password"); + boolean loginResult = authenticationService.login(password, request); + if (loginResult) { + return RestResult.genSuccessResult(); + } else { + return RestResult.genErrorResult("密码错误"); + } + } + +} diff --git a/dev-assistant-service/src/main/java/com/devassistant/authentication/service/AuthenticationService.java b/dev-assistant-service/src/main/java/com/devassistant/authentication/service/AuthenticationService.java new file mode 100644 index 0000000..0b3421e --- /dev/null +++ b/dev-assistant-service/src/main/java/com/devassistant/authentication/service/AuthenticationService.java @@ -0,0 +1,29 @@ +package com.devassistant.authentication.service; + +import jakarta.servlet.http.HttpServletRequest; +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +/** + * 用户身份权限认证服务 + */ +@Slf4j +@Service +@RequiredArgsConstructor +@Transactional +public class AuthenticationService { + + @Value("${file.password}") + private String loginPassword; + + public boolean login(String password, HttpServletRequest request) { + if (loginPassword.equals(password)) { + request.getSession().setAttribute("isLogin", true); + return true; + } + return false; + } +} diff --git a/dev-assistant-service/src/main/java/com/devassistant/file/controller/FileTransmissionController.java b/dev-assistant-service/src/main/java/com/devassistant/file/controller/FileTransmissionController.java index ea8083e..1115447 100644 --- a/dev-assistant-service/src/main/java/com/devassistant/file/controller/FileTransmissionController.java +++ b/dev-assistant-service/src/main/java/com/devassistant/file/controller/FileTransmissionController.java @@ -60,12 +60,10 @@ public class FileTransmissionController { /** * 下载文件 * - * @param body 查询条件 * @return 文件 */ @GetMapping("/downloadFile") - public RestResult> downloadFile(@RequestBody JSONObject body, HttpServletResponse response) { - Integer id = body.getInteger("id"); + public RestResult> downloadFile(@RequestParam Integer id, HttpServletResponse response) { fileService.downloadFile(id, response); return RestResult.genSuccessResult(); } diff --git a/dev-assistant-service/src/main/java/com/devassistant/file/model/FileRecord.java b/dev-assistant-service/src/main/java/com/devassistant/file/model/FileRecord.java index 454336d..0f2dab7 100644 --- a/dev-assistant-service/src/main/java/com/devassistant/file/model/FileRecord.java +++ b/dev-assistant-service/src/main/java/com/devassistant/file/model/FileRecord.java @@ -1,5 +1,6 @@ package com.devassistant.file.model; +import com.fasterxml.jackson.annotation.JsonFormat; import jakarta.persistence.Entity; import jakarta.persistence.GeneratedValue; import jakarta.persistence.GenerationType; @@ -20,5 +21,6 @@ public class FileRecord { private Long fileSize; private String filePath; private String fileType; + @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss") private Date uploadTime; } diff --git a/dev-assistant-service/src/main/java/com/devassistant/file/service/FileService.java b/dev-assistant-service/src/main/java/com/devassistant/file/service/FileService.java index 6b39939..adabf09 100644 --- a/dev-assistant-service/src/main/java/com/devassistant/file/service/FileService.java +++ b/dev-assistant-service/src/main/java/com/devassistant/file/service/FileService.java @@ -14,6 +14,8 @@ import org.springframework.stereotype.Service; import org.springframework.web.multipart.MultipartFile; import java.io.*; +import java.net.URLEncoder; +import java.nio.charset.StandardCharsets; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; @@ -118,7 +120,7 @@ public class FileService { // 设置响应头 response.setContentType("application/octet-stream"); - response.setHeader("Content-Disposition", "attachment; filename=\"" + file.getName() + "\""); + response.setHeader("Content-Disposition", "attachment; filename=\"" + URLEncoder.encode(file.getName(), StandardCharsets.UTF_8) + "\""); response.setContentLengthLong(file.length()); try (InputStream inputStream = new FileInputStream(file); diff --git a/dev-assistant-service/src/main/java/com/devassistant/framework/config/LoginFilter.java b/dev-assistant-service/src/main/java/com/devassistant/framework/config/LoginFilter.java new file mode 100644 index 0000000..8adc7d0 --- /dev/null +++ b/dev-assistant-service/src/main/java/com/devassistant/framework/config/LoginFilter.java @@ -0,0 +1,60 @@ +package com.devassistant.framework.config; + + +import com.alibaba.fastjson2.JSONObject; +import com.devassistant.framework.common.ResponseCode; +import com.devassistant.framework.common.RestResult; +import jakarta.servlet.*; +import jakarta.servlet.annotation.WebFilter; +import jakarta.servlet.http.HttpServletRequest; +import jakarta.servlet.http.HttpServletResponse; +import jakarta.servlet.http.HttpSession; +import org.springframework.stereotype.Component; +import org.springframework.web.cors.CorsConfiguration; + +import java.io.IOException; +import java.nio.charset.StandardCharsets; + +@Component +@WebFilter(filterName = "loginFilter", urlPatterns = "/*") +public class LoginFilter implements Filter { + + @Override + public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException { + HttpServletRequest httpRequest = (HttpServletRequest) request; + HttpServletResponse httpResponse = (HttpServletResponse) response; + + String requestURI = ((HttpServletRequest) request).getRequestURI(); + + if("/".equals(requestURI)){ + httpResponse.sendRedirect("/index.html"); + return; + } + + if ("/authentication/login".equals(requestURI) || requestURI.startsWith("/h2-console") || requestURI.startsWith("/index.html") || requestURI.startsWith("/assets")) { + chain.doFilter(request, response); + return; + } + + HttpSession session = httpRequest.getSession(); + Object isLogin = session.getAttribute("isLogin"); + if (isLogin != null && (boolean) isLogin) { + chain.doFilter(request, response); + return; + } + + RestResult result = RestResult.genErrorResult(ResponseCode.NEED_LOGIN); + String responseBody = JSONObject.toJSONString(result); + httpResponse.addHeader("Access-Control-Allow-Credentials", "true"); + httpResponse.addHeader("Access-Control-Allow-Origin", "*"); + httpResponse.addHeader("Access-Control-Allow-Methods", "GET, POST, DELETE, PUT"); + + httpResponse.setCharacterEncoding("UTF-8"); + httpResponse.setContentType("application/json;charset=UTF-8"); + httpResponse.setStatus(HttpServletResponse.SC_UNAUTHORIZED); + ServletOutputStream outputStream = response.getOutputStream(); + outputStream.write(responseBody.getBytes(StandardCharsets.UTF_8)); + outputStream.flush(); + outputStream.close(); + } +} diff --git a/dev-assistant-service/src/main/java/com/devassistant/framework/security/AuthEntryPoint.java b/dev-assistant-service/src/main/java/com/devassistant/framework/security/AuthEntryPoint.java deleted file mode 100644 index 35ecdac..0000000 --- a/dev-assistant-service/src/main/java/com/devassistant/framework/security/AuthEntryPoint.java +++ /dev/null @@ -1,39 +0,0 @@ -package com.devassistant.framework.security; - -import com.alibaba.fastjson2.JSONObject; -import com.devassistant.framework.common.ResponseCode; -import com.devassistant.framework.common.RestResult; -import jakarta.servlet.ServletException; -import jakarta.servlet.ServletOutputStream; -import jakarta.servlet.http.HttpServletRequest; -import jakarta.servlet.http.HttpServletResponse; -import lombok.extern.slf4j.Slf4j; -import org.springframework.security.core.AuthenticationException; -import org.springframework.security.web.AuthenticationEntryPoint; -import org.springframework.stereotype.Component; - -import java.io.IOException; -import java.nio.charset.StandardCharsets; - -/** - * spring security 未认证请求拦截器 - */ -@Slf4j -@Component -public class AuthEntryPoint implements AuthenticationEntryPoint { - - @Override - public void commence(HttpServletRequest httpServletRequest, HttpServletResponse response, AuthenticationException e) throws IOException, ServletException { - String method = httpServletRequest.getMethod(); - log.warn("security 未认证请求拦截 {} [{}]: {}", method, httpServletRequest.getRequestURI(), e.getMessage()); - RestResult result = RestResult.genErrorResult(ResponseCode.NEED_LOGIN); - String responseBody = JSONObject.toJSONString(result); - response.setCharacterEncoding("UTF-8"); - response.setContentType("application/json;charset=UTF-8"); - response.setStatus(HttpServletResponse.SC_UNAUTHORIZED); - ServletOutputStream outputStream = response.getOutputStream(); - outputStream.write(responseBody.getBytes(StandardCharsets.UTF_8)); - outputStream.flush(); - outputStream.close(); - } -} diff --git a/dev-assistant-service/src/main/java/com/devassistant/framework/security/FixedPasswordAuthProvider.java b/dev-assistant-service/src/main/java/com/devassistant/framework/security/FixedPasswordAuthProvider.java deleted file mode 100644 index 302242c..0000000 --- a/dev-assistant-service/src/main/java/com/devassistant/framework/security/FixedPasswordAuthProvider.java +++ /dev/null @@ -1,29 +0,0 @@ -package com.devassistant.framework.security; - - -import org.springframework.beans.factory.annotation.Value; -import org.springframework.context.annotation.Configuration; -import org.springframework.security.authentication.AuthenticationProvider; -import org.springframework.security.authentication.UsernamePasswordAuthenticationToken; -import org.springframework.security.core.Authentication; - -@Configuration -public class FixedPasswordAuthProvider implements AuthenticationProvider { - - @Value("${file.password}") - private String loginPassword; - - @Override - public Authentication authenticate(Authentication authentication) { - String password = (String) authentication.getCredentials(); - if (loginPassword.equals(password)) { - return new UsernamePasswordAuthenticationToken("admin", password); - } - return null; - } - - @Override - public boolean supports(Class> authentication) { - return UsernamePasswordAuthenticationToken.class.isAssignableFrom(authentication); - } -} diff --git a/dev-assistant-service/src/main/java/com/devassistant/framework/security/SecurityConfiguration.java b/dev-assistant-service/src/main/java/com/devassistant/framework/security/SecurityConfiguration.java deleted file mode 100644 index 3fb1bf3..0000000 --- a/dev-assistant-service/src/main/java/com/devassistant/framework/security/SecurityConfiguration.java +++ /dev/null @@ -1,101 +0,0 @@ -package com.devassistant.framework.security; - -import com.devassistant.framework.common.IgnoreLogin; -import lombok.RequiredArgsConstructor; -import lombok.extern.slf4j.Slf4j; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; -import org.springframework.http.HttpMethod; -import org.springframework.security.authentication.AnonymousAuthenticationToken; -import org.springframework.security.authorization.AuthorizationDecision; -import org.springframework.security.config.Customizer; -import org.springframework.security.config.annotation.method.configuration.EnableMethodSecurity; -import org.springframework.security.config.annotation.web.builders.HttpSecurity; -import org.springframework.security.config.annotation.web.configurers.AbstractHttpConfigurer; -import org.springframework.security.config.annotation.web.configurers.HeadersConfigurer; -import org.springframework.security.config.http.SessionCreationPolicy; -import org.springframework.security.core.Authentication; -import org.springframework.security.core.context.SecurityContextHolder; -import org.springframework.security.web.SecurityFilterChain; -import org.springframework.security.web.access.intercept.RequestAuthorizationContext; -import org.springframework.web.method.HandlerMethod; -import org.springframework.web.servlet.HandlerExecutionChain; -import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping; - -/** - * spring security 安全配置 - */ -@Slf4j -@Configuration -@RequiredArgsConstructor -@EnableMethodSecurity(securedEnabled = true) -public class SecurityConfiguration { - - - private final AuthEntryPoint authEntryPoint; - private final RequestMappingHandlerMapping handlerMapping; - - @Bean - public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception { - http - // 禁用 csrf - .csrf(AbstractHttpConfigurer::disable) - .headers(headers -> headers.frameOptions(HeadersConfigurer.FrameOptionsConfig::sameOrigin)) - // 允许跨域 - .cors(Customizer.withDefaults()) - // 禁用 httpBasic 登录 - .httpBasic(AbstractHttpConfigurer::disable) - // 禁用 logout - .logout(AbstractHttpConfigurer::disable) - - // 禁用 session - .sessionManagement(s -> s.sessionCreationPolicy(SessionCreationPolicy.STATELESS)) - // 异常处理 - .exceptionHandling(e -> e.authenticationEntryPoint(authEntryPoint)) - // 访问控制 - .authorizeHttpRequests(authorize -> authorize - .requestMatchers(HttpMethod.OPTIONS, "/**") - .permitAll().requestMatchers("/error") - .permitAll().requestMatchers("/h2-console/**") - .permitAll().anyRequest().access((authentication, object) -> getAuthorizationDecision(object))); - - return http.build(); - } - - /** - * 判断当前请求是否放行 - * - * @param object 请求信息 - * @return 放行策略 - */ - private AuthorizationDecision getAuthorizationDecision(RequestAuthorizationContext object) { - // 已认证非匿名用户放行请求 - Authentication authentication = SecurityContextHolder.getContext().getAuthentication(); - if (!(authentication instanceof AnonymousAuthenticationToken) && authentication.isAuthenticated()) { - return new AuthorizationDecision(true); - } - - // 未认证判断接口是否需要认证 - try { - HandlerExecutionChain handlerChain = handlerMapping.getHandler(object.getRequest()); - if (handlerChain != null) { - Object handlerObj = handlerChain.getHandler(); - if (handlerObj instanceof HandlerMethod handler) { - IgnoreLogin annotationMethod = handler.getMethodAnnotation(IgnoreLogin.class); - if (annotationMethod != null) { - return new AuthorizationDecision(true); - } - IgnoreLogin annotationClass = handler.getBeanType().getAnnotation(IgnoreLogin.class); - if (annotationClass != null) { - return new AuthorizationDecision(true); - } - } - } - } catch (Exception e) { - log.error("接口权限判断异常", e); - return null; - } - // 拦截其他请求 - return new AuthorizationDecision(false); - } -} diff --git a/dev-assistant-service/src/main/java/com/devassistant/note/controller/NoteController.java b/dev-assistant-service/src/main/java/com/devassistant/note/controller/NoteController.java index e6b55bf..5c30c3e 100644 --- a/dev-assistant-service/src/main/java/com/devassistant/note/controller/NoteController.java +++ b/dev-assistant-service/src/main/java/com/devassistant/note/controller/NoteController.java @@ -35,6 +35,20 @@ public class NoteController { return RestResult.genSuccessResult(noteRecord); } + /** + * 修改笔记 + * + * @param body 笔记内容 + * @return 添加结果 + */ + @PostMapping("/updateNote") + public RestResult> updateNote(@RequestBody JSONObject body, HttpServletRequest request) { + Integer id = body.getInteger("id"); + String content = body.getString("content"); + noteService.updateNote(id, content, request); + return RestResult.genSuccessResult(); + } + /** * 获取笔记列表 * diff --git a/dev-assistant-service/src/main/java/com/devassistant/note/model/NoteRecord.java b/dev-assistant-service/src/main/java/com/devassistant/note/model/NoteRecord.java index edc71af..6a3b393 100644 --- a/dev-assistant-service/src/main/java/com/devassistant/note/model/NoteRecord.java +++ b/dev-assistant-service/src/main/java/com/devassistant/note/model/NoteRecord.java @@ -1,9 +1,7 @@ package com.devassistant.note.model; -import jakarta.persistence.Entity; -import jakarta.persistence.GeneratedValue; -import jakarta.persistence.GenerationType; -import jakarta.persistence.Id; +import com.fasterxml.jackson.annotation.JsonFormat; +import jakarta.persistence.*; import lombok.Data; import java.util.Date; @@ -15,8 +13,11 @@ public class NoteRecord { @Id @GeneratedValue(strategy = GenerationType.AUTO) private Integer id; + @Column(columnDefinition = "TEXT") private String content; private String updateIp; + @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss") private Date createTime; + @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss") private Date updateTime; } diff --git a/dev-assistant-service/src/main/java/com/devassistant/note/service/NoteService.java b/dev-assistant-service/src/main/java/com/devassistant/note/service/NoteService.java index 7a11155..d41b98c 100644 --- a/dev-assistant-service/src/main/java/com/devassistant/note/service/NoteService.java +++ b/dev-assistant-service/src/main/java/com/devassistant/note/service/NoteService.java @@ -53,7 +53,7 @@ public class NoteService { return (root, query, cb) -> { Predicate predicate = cb.conjunction(); if (StrUtil.isNotBlank(searchText)) { - predicate = cb.and(predicate, cb.or(cb.like(root.get("content"), "%" + searchText + "%"), cb.like(root.get("createIp"), "%" + searchText + "%"))); + predicate = cb.and(predicate, cb.or(cb.like(root.get("content"), "%" + searchText + "%"), cb.like(root.get("updateIp"), "%" + searchText + "%"))); } Objects.requireNonNull(query).orderBy(cb.desc(root.get("updateTime"))); return predicate; diff --git a/dev-assistant-service/src/main/resources/application.yml b/dev-assistant-service/src/main/resources/application.yml index 3b7fe41..7643d38 100644 --- a/dev-assistant-service/src/main/resources/application.yml +++ b/dev-assistant-service/src/main/resources/application.yml @@ -1,3 +1,5 @@ +server: + port: 80 spring: application: name: dev-assistant-service @@ -6,12 +8,19 @@ spring: driver-class-name: org.h2.Driver username: sa password: 123456 + jpa: + hibernate: + ddl-auto: update h2: console: enabled: true path: /h2-console + servlet: + multipart: + max-file-size: 10GB + max-request-size: 10GB file: upload-dir: ./data/files - password: 0105 + password: "0105" diff --git a/dev-assistant-service/src/main/resources/static/assets/Index-BkCaaeQ1.js b/dev-assistant-service/src/main/resources/static/assets/Index-BkCaaeQ1.js new file mode 100644 index 0000000..75b5117 --- /dev/null +++ b/dev-assistant-service/src/main/resources/static/assets/Index-BkCaaeQ1.js @@ -0,0 +1,6 @@ +import{M as ds,S as Tn,e as fs,i as _n,a as Cn,b as fe,c as Y,d as N,f as ae,u as Q,r as F,g as P,o as pe,t as Se,h as K,j as R,w as _,k as _t,l as z,n as B,m as a,p as te,v as Ut,T as Kt,q as U,s as A,F as xe,x as ge,y as k,z as G,A as be,B as ps,C as vs,D as ve,E as et,G as ms,H,I,J as Be,K as Wt,L as ce,N as J,O as gs,P as ys,Q as bs,R as $e,U as Le,V as Ft,W as ht,X as Sn,Y as vo,Z as hs,_ as mo,$ as go,a0 as Re,a1 as qt,a2 as Yt,a3 as ws,a4 as Es,a5 as Ts,a6 as _s,a7 as Cs,a8 as ne,a9 as Ss,aa as Os,ab as Gt,ac as yo,ad as As,ae as Ps,af as Rs,ag as On,ah as $s,ai as Mt,aj as ks,ak as ee,al as Ls,am as bo,an as Bs,ao as ho,ap as wo,aq as Nt,ar as Vt,as as je,at as Fs,au as Ms,av as Ns,aw as Is,ax as An,ay as Ds,az as Pn,aA as Rn,aB as xs,aC as js}from"./index-km1bwIfZ.js";import{b as zs,U as $n,g as kn,a as Ln,i as Bn,S as $t,c as Hs,_ as V,t as ot,u as It,d as Xt,e as ze,f as Us,h as Eo,j as st,E as Je,k as Fn,l as Ks,o as Ws,m as Dt,n as Ce,p as Jt,C as qs,q as de,r as To,s as Mn,v as Ys,w as Gs,x as Vs,y as Xs,z as Nn,A as xt,B as Ct,D as Js,F as Zs,G as Ye,H as Qs,I as er,J as tr,K as nr,L as or,M as ct}from"./_plugin-vue_export-helper-CwQuT6Sr.js";var sr=1,rr=4;function In(e){return zs(e,sr|rr)}var ar="__lodash_hash_undefined__";function lr(e){return this.__data__.set(e,ar),this}function ir(e){return this.__data__.has(e)}function wt(e){var t=-1,n=e==null?0:e.length;for(this.__data__=new ds;++tf))return!1;var c=r.get(e),g=r.get(t);if(c&&g)return c==t&&g==e;var m=-1,y=!0,v=n&fr?new wt:void 0;for(r.set(e,t),r.set(t,e);++m{var t;if(!fe)return 0;if(ft!==void 0)return ft;const n=document.createElement("div");n.className=`${e}-scrollbar__wrap`,n.style.visibility="hidden",n.style.width="100px",n.style.position="absolute",n.style.top="-9999px",document.body.appendChild(n);const o=n.offsetWidth;n.style.overflow="scroll";const s=document.createElement("div");s.style.width="100%",n.appendChild(s);const r=s.offsetWidth;return(t=n.parentNode)==null||t.removeChild(n),ft=o-r,ft},Ne=4,Dr={vertical:{offset:"offsetHeight",scroll:"scrollTop",scrollSize:"scrollHeight",size:"height",key:"vertical",axis:"Y",client:"clientY",direction:"top"},horizontal:{offset:"offsetWidth",scroll:"scrollLeft",scrollSize:"scrollWidth",size:"width",key:"horizontal",axis:"X",client:"clientX",direction:"left"}},xr=({move:e,size:t,bar:n})=>({[n.size]:t,transform:`translate${n.axis}(${e}%)`}),Zt=Symbol("scrollbarContextKey"),jr=Y({vertical:Boolean,size:String,move:Number,ratio:{type:Number,required:!0},always:Boolean}),zr="Thumb",Hr=N({__name:"thumb",props:jr,setup(e){const t=e,n=ae(Zt),o=Q("scrollbar");n||ot(zr,"can not inject scrollbar context");const s=F(),r=F(),l=F({}),f=F(!1);let i=!1,c=!1,g=fe?document.onselectstart:null;const m=P(()=>Dr[t.vertical?"vertical":"horizontal"]),y=P(()=>xr({size:t.size,move:t.move,bar:m.value})),v=P(()=>s.value[m.value.offset]**2/n.wrapElement[m.value.scrollSize]/t.ratio/r.value[m.value.offset]),d=C=>{var S;if(C.stopPropagation(),C.ctrlKey||[1,2].includes(C.button))return;(S=window.getSelection())==null||S.removeAllRanges(),h(C);const L=C.currentTarget;L&&(l.value[m.value.axis]=L[m.value.offset]-(C[m.value.client]-L.getBoundingClientRect()[m.value.direction]))},u=C=>{if(!r.value||!s.value||!n.wrapElement)return;const S=Math.abs(C.target.getBoundingClientRect()[m.value.direction]-C[m.value.client]),L=r.value[m.value.offset]/2,D=(S-L)*100*v.value/s.value[m.value.offset];n.wrapElement[m.value.scroll]=D*n.wrapElement[m.value.scrollSize]/100},h=C=>{C.stopImmediatePropagation(),i=!0,document.addEventListener("mousemove",p),document.addEventListener("mouseup",w),g=document.onselectstart,document.onselectstart=()=>!1},p=C=>{if(!s.value||!r.value||i===!1)return;const S=l.value[m.value.axis];if(!S)return;const L=(s.value.getBoundingClientRect()[m.value.direction]-C[m.value.client])*-1,D=r.value[m.value.offset]-S,M=(L-D)*100*v.value/s.value[m.value.offset];n.wrapElement[m.value.scroll]=M*n.wrapElement[m.value.scrollSize]/100},w=()=>{i=!1,l.value[m.value.axis]=0,document.removeEventListener("mousemove",p),document.removeEventListener("mouseup",w),T(),c&&(f.value=!1)},b=()=>{c=!1,f.value=!!t.size},E=()=>{c=!0,f.value=i};pe(()=>{T(),document.removeEventListener("mouseup",w)});const T=()=>{document.onselectstart!==g&&(document.onselectstart=g)};return It(Se(n,"scrollbarElement"),"mousemove",b),It(Se(n,"scrollbarElement"),"mouseleave",E),(C,S)=>(R(),K(Kt,{name:a(o).b("fade"),persisted:""},{default:_(()=>[_t(z("div",{ref_key:"instance",ref:s,class:B([a(o).e("bar"),a(o).is(a(m).key)]),onMousedown:u},[z("div",{ref_key:"thumb",ref:r,class:B(a(o).e("thumb")),style:te(a(y)),onMousedown:d},null,38)],34),[[Ut,C.always||f.value]])]),_:1},8,["name"]))}});var Hn=V(Hr,[["__file","thumb.vue"]]);const Ur=Y({always:{type:Boolean,default:!0},minSize:{type:Number,required:!0}}),Kr=N({__name:"bar",props:Ur,setup(e,{expose:t}){const n=e,o=ae(Zt),s=F(0),r=F(0),l=F(""),f=F(""),i=F(1),c=F(1);return t({handleScroll:y=>{if(y){const v=y.offsetHeight-Ne,d=y.offsetWidth-Ne;r.value=y.scrollTop*100/v*i.value,s.value=y.scrollLeft*100/d*c.value}},update:()=>{const y=o==null?void 0:o.wrapElement;if(!y)return;const v=y.offsetHeight-Ne,d=y.offsetWidth-Ne,u=v**2/y.scrollHeight,h=d**2/y.scrollWidth,p=Math.max(u,n.minSize),w=Math.max(h,n.minSize);i.value=u/(v-u)/(p/(v-p)),c.value=h/(d-h)/(w/(d-w)),f.value=p+Ne(R(),U(xe,null,[A(Hn,{move:s.value,ratio:c.value,size:l.value,always:y.always},null,8,["move","ratio","size","always"]),A(Hn,{move:r.value,ratio:i.value,size:f.value,vertical:"",always:y.always},null,8,["move","ratio","size","always"])],64))}});var Wr=V(Kr,[["__file","bar.vue"]]);const qr=Y({height:{type:[String,Number],default:""},maxHeight:{type:[String,Number],default:""},native:{type:Boolean,default:!1},wrapStyle:{type:k([String,Object,Array]),default:""},wrapClass:{type:[String,Array],default:""},viewClass:{type:[String,Array],default:""},viewStyle:{type:[String,Array,Object],default:""},noresize:Boolean,tag:{type:String,default:"div"},always:Boolean,minSize:{type:Number,default:20},tabindex:{type:[String,Number],default:void 0},id:String,role:String,...Xt(["ariaLabel","ariaOrientation"])}),Yr={scroll:({scrollTop:e,scrollLeft:t})=>[e,t].every(ge)},Gr="ElScrollbar",Vr=N({name:Gr}),Xr=N({...Vr,props:qr,emits:Yr,setup(e,{expose:t,emit:n}){const o=e,s=Q("scrollbar");let r,l,f=0,i=0;const c=F(),g=F(),m=F(),y=F(),v=P(()=>{const T={};return o.height&&(T.height=ze(o.height)),o.maxHeight&&(T.maxHeight=ze(o.maxHeight)),[o.wrapStyle,T]}),d=P(()=>[o.wrapClass,s.e("wrap"),{[s.em("wrap","hidden-default")]:!o.native}]),u=P(()=>[s.e("view"),o.viewClass]),h=()=>{var T;g.value&&((T=y.value)==null||T.handleScroll(g.value),f=g.value.scrollTop,i=g.value.scrollLeft,n("scroll",{scrollTop:g.value.scrollTop,scrollLeft:g.value.scrollLeft}))};function p(T,C){Wt(T)?g.value.scrollTo(T):ge(T)&&ge(C)&&g.value.scrollTo(T,C)}const w=T=>{ge(T)&&(g.value.scrollTop=T)},b=T=>{ge(T)&&(g.value.scrollLeft=T)},E=()=>{var T;(T=y.value)==null||T.update()};return G(()=>o.noresize,T=>{T?(r==null||r(),l==null||l()):({stop:r}=Us(m,E),l=It("resize",E))},{immediate:!0}),G(()=>[o.maxHeight,o.height],()=>{o.native||et(()=>{var T;E(),g.value&&((T=y.value)==null||T.handleScroll(g.value))})}),be(Zt,ps({scrollbarElement:c,wrapElement:g})),vs(()=>{g.value&&(g.value.scrollTop=f,g.value.scrollLeft=i)}),ve(()=>{o.native||et(()=>{E()})}),ms(()=>E()),t({wrapRef:g,update:E,scrollTo:p,setScrollTop:w,setScrollLeft:b,handleScroll:h}),(T,C)=>(R(),U("div",{ref_key:"scrollbarRef",ref:c,class:B(a(s).b())},[z("div",{ref_key:"wrapRef",ref:g,class:B(a(d)),style:te(a(v)),tabindex:T.tabindex,onScroll:h},[(R(),K(Be(T.tag),{id:T.id,ref_key:"resizeRef",ref:m,class:B(a(u)),style:te(T.viewStyle),role:T.role,"aria-label":T.ariaLabel,"aria-orientation":T.ariaOrientation},{default:_(()=>[I(T.$slots,"default")]),_:3},8,["id","class","style","role","aria-label","aria-orientation"]))],46,["tabindex"]),T.native?H("v-if",!0):(R(),K(Wr,{key:0,ref_key:"barRef",ref:y,always:T.always,"min-size":T.minSize},null,8,["always","min-size"]))],2))}});var Jr=V(Xr,[["__file","scrollbar.vue"]]);const Zr=ce(Jr),Qt=Symbol("popper"),Oo=Symbol("popperContent"),Qr=["dialog","grid","group","listbox","menu","navigation","tooltip","tree"],Ao=Y({role:{type:String,values:Qr,default:"tooltip"}}),ea=N({name:"ElPopper",inheritAttrs:!1}),ta=N({...ea,props:Ao,setup(e,{expose:t}){const n=e,o=F(),s=F(),r=F(),l=F(),f=P(()=>n.role),i={triggerRef:o,popperInstanceRef:s,contentRef:r,referenceRef:l,role:f};return t(i),be(Qt,i),(c,g)=>I(c.$slots,"default")}});var na=V(ta,[["__file","popper.vue"]]);const Po=Y({arrowOffset:{type:Number,default:5}}),oa=N({name:"ElPopperArrow",inheritAttrs:!1}),sa=N({...oa,props:Po,setup(e,{expose:t}){const n=e,o=Q("popper"),{arrowOffset:s,arrowRef:r,arrowStyle:l}=ae(Oo,void 0);return G(()=>n.arrowOffset,f=>{s.value=f}),pe(()=>{r.value=void 0}),t({arrowRef:r}),(f,i)=>(R(),U("span",{ref_key:"arrowRef",ref:r,class:B(a(o).e("arrow")),style:te(a(l)),"data-popper-arrow":""},null,6))}});var ra=V(sa,[["__file","arrow.vue"]]);const Ro=Y({virtualRef:{type:k(Object)},virtualTriggering:Boolean,onMouseenter:{type:k(Function)},onMouseleave:{type:k(Function)},onClick:{type:k(Function)},onKeydown:{type:k(Function)},onFocus:{type:k(Function)},onBlur:{type:k(Function)},onContextmenu:{type:k(Function)},id:String,open:Boolean}),$o=Symbol("elForwardRef"),aa=e=>{be($o,{setForwardRef:n=>{e.value=n}})},la=e=>({mounted(t){e(t)},updated(t){e(t)},unmounted(){e(null)}}),jt=e=>{if(e.tabIndex>0||e.tabIndex===0&&e.getAttribute("tabIndex")!==null)return!0;if(e.tabIndex<0||e.hasAttribute("disabled")||e.getAttribute("aria-disabled")==="true")return!1;switch(e.nodeName){case"A":return!!e.href&&e.rel!=="ignore";case"INPUT":return!(e.type==="hidden"||e.type==="file");case"BUTTON":case"SELECT":case"TEXTAREA":return!0;default:return!1}},ia="ElOnlyChild",ua=N({name:ia,setup(e,{slots:t,attrs:n}){var o;const s=ae($o),r=la((o=s==null?void 0:s.setForwardRef)!=null?o:J);return()=>{var l;const f=(l=t.default)==null?void 0:l.call(t,n);if(!f||f.length>1)return null;const i=ko(f);return i?_t(gs(i,n),[[r]]):null}}});function ko(e){if(!e)return null;const t=e;for(const n of t){if(Wt(n))switch(n.type){case bs:continue;case ys:case"svg":return Un(n);case xe:return ko(n.children);default:return n}return Un(n)}return null}function Un(e){const t=Q("only-child");return A("span",{class:t.e("content")},[e])}const ca=N({name:"ElPopperTrigger",inheritAttrs:!1}),da=N({...ca,props:Ro,setup(e,{expose:t}){const n=e,{role:o,triggerRef:s}=ae(Qt,void 0);aa(s);const r=P(()=>f.value?n.id:void 0),l=P(()=>{if(o&&o.value==="tooltip")return n.open&&n.id?n.id:void 0}),f=P(()=>{if(o&&o.value!=="tooltip")return o.value}),i=P(()=>f.value?`${n.open}`:void 0);let c;const g=["onMouseenter","onMouseleave","onClick","onKeydown","onFocus","onBlur","onContextmenu"];return ve(()=>{G(()=>n.virtualRef,m=>{m&&(s.value=Eo(m))},{immediate:!0}),G(s,(m,y)=>{c==null||c(),c=void 0,$e(m)&&(g.forEach(v=>{var d;const u=n[v];u&&(m.addEventListener(v.slice(2).toLowerCase(),u),(d=y==null?void 0:y.removeEventListener)==null||d.call(y,v.slice(2).toLowerCase(),u))}),jt(m)&&(c=G([r,l,f,i],v=>{["aria-controls","aria-describedby","aria-haspopup","aria-expanded"].forEach((d,u)=>{st(v[u])?m.removeAttribute(d):m.setAttribute(d,v[u])})},{immediate:!0}))),$e(y)&&jt(y)&&["aria-controls","aria-describedby","aria-haspopup","aria-expanded"].forEach(v=>y.removeAttribute(v))},{immediate:!0})}),pe(()=>{if(c==null||c(),c=void 0,s.value&&$e(s.value)){const m=s.value;g.forEach(y=>{const v=n[y];v&&m.removeEventListener(y.slice(2).toLowerCase(),v)}),s.value=void 0}}),t({triggerRef:s}),(m,y)=>m.virtualTriggering?H("v-if",!0):(R(),K(a(ua),Le({key:0},m.$attrs,{"aria-controls":a(r),"aria-describedby":a(l),"aria-expanded":a(i),"aria-haspopup":a(f)}),{default:_(()=>[I(m.$slots,"default")]),_:3},16,["aria-controls","aria-describedby","aria-expanded","aria-haspopup"]))}});var fa=V(da,[["__file","trigger.vue"]]);const Lt="focus-trap.focus-after-trapped",Bt="focus-trap.focus-after-released",pa="focus-trap.focusout-prevented",Kn={cancelable:!0,bubbles:!1},va={cancelable:!0,bubbles:!1},Wn="focusAfterTrapped",qn="focusAfterReleased",Lo=Symbol("elFocusTrap"),en=F(),St=F(0),tn=F(0);let pt=0;const Bo=e=>{const t=[],n=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:o=>{const s=o.tagName==="INPUT"&&o.type==="hidden";return o.disabled||o.hidden||s?NodeFilter.FILTER_SKIP:o.tabIndex>=0||o===document.activeElement?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});for(;n.nextNode();)t.push(n.currentNode);return t},Yn=(e,t)=>{for(const n of e)if(!ma(n,t))return n},ma=(e,t)=>{if(getComputedStyle(e).visibility==="hidden")return!0;for(;e;){if(t&&e===t)return!1;if(getComputedStyle(e).display==="none")return!0;e=e.parentElement}return!1},ga=e=>{const t=Bo(e),n=Yn(t,e),o=Yn(t.reverse(),e);return[n,o]},ya=e=>e instanceof HTMLInputElement&&"select"in e,Ee=(e,t)=>{if(e&&e.focus){const n=document.activeElement;let o=!1;$e(e)&&!jt(e)&&!e.getAttribute("tabindex")&&(e.setAttribute("tabindex","-1"),o=!0),e.focus({preventScroll:!0}),tn.value=window.performance.now(),e!==n&&ya(e)&&t&&e.select(),$e(e)&&o&&e.removeAttribute("tabindex")}};function Gn(e,t){const n=[...e],o=e.indexOf(t);return o!==-1&&n.splice(o,1),n}const ba=()=>{let e=[];return{push:o=>{const s=e[0];s&&o!==s&&s.pause(),e=Gn(e,o),e.unshift(o)},remove:o=>{var s,r;e=Gn(e,o),(r=(s=e[0])==null?void 0:s.resume)==null||r.call(s)}}},ha=(e,t=!1)=>{const n=document.activeElement;for(const o of e)if(Ee(o,t),document.activeElement!==n)return},Vn=ba(),wa=()=>St.value>tn.value,vt=()=>{en.value="pointer",St.value=window.performance.now()},Xn=()=>{en.value="keyboard",St.value=window.performance.now()},Ea=()=>(ve(()=>{pt===0&&(document.addEventListener("mousedown",vt),document.addEventListener("touchstart",vt),document.addEventListener("keydown",Xn)),pt++}),pe(()=>{pt--,pt<=0&&(document.removeEventListener("mousedown",vt),document.removeEventListener("touchstart",vt),document.removeEventListener("keydown",Xn))}),{focusReason:en,lastUserFocusTimestamp:St,lastAutomatedFocusTimestamp:tn}),mt=e=>new CustomEvent(pa,{...va,detail:e});let De=[];const Jn=e=>{e.code===Je.esc&&De.forEach(t=>t(e))},Ta=e=>{ve(()=>{De.length===0&&document.addEventListener("keydown",Jn),fe&&De.push(e)}),pe(()=>{De=De.filter(t=>t!==e),De.length===0&&fe&&document.removeEventListener("keydown",Jn)})},_a=N({name:"ElFocusTrap",inheritAttrs:!1,props:{loop:Boolean,trapped:Boolean,focusTrapEl:Object,focusStartEl:{type:[Object,String],default:"first"}},emits:[Wn,qn,"focusin","focusout","focusout-prevented","release-requested"],setup(e,{emit:t}){const n=F();let o,s;const{focusReason:r}=Ea();Ta(d=>{e.trapped&&!l.paused&&t("release-requested",d)});const l={paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}},f=d=>{if(!e.loop&&!e.trapped||l.paused)return;const{code:u,altKey:h,ctrlKey:p,metaKey:w,currentTarget:b,shiftKey:E}=d,{loop:T}=e,C=u===Je.tab&&!h&&!p&&!w,S=document.activeElement;if(C&&S){const L=b,[D,M]=ga(L);if(D&&M){if(!E&&S===M){const x=mt({focusReason:r.value});t("focusout-prevented",x),x.defaultPrevented||(d.preventDefault(),T&&Ee(D,!0))}else if(E&&[D,L].includes(S)){const x=mt({focusReason:r.value});t("focusout-prevented",x),x.defaultPrevented||(d.preventDefault(),T&&Ee(M,!0))}}else if(S===L){const x=mt({focusReason:r.value});t("focusout-prevented",x),x.defaultPrevented||d.preventDefault()}}};be(Lo,{focusTrapRef:n,onKeydown:f}),G(()=>e.focusTrapEl,d=>{d&&(n.value=d)},{immediate:!0}),G([n],([d],[u])=>{d&&(d.addEventListener("keydown",f),d.addEventListener("focusin",g),d.addEventListener("focusout",m)),u&&(u.removeEventListener("keydown",f),u.removeEventListener("focusin",g),u.removeEventListener("focusout",m))});const i=d=>{t(Wn,d)},c=d=>t(qn,d),g=d=>{const u=a(n);if(!u)return;const h=d.target,p=d.relatedTarget,w=h&&u.contains(h);e.trapped||p&&u.contains(p)||(o=p),w&&t("focusin",d),!l.paused&&e.trapped&&(w?s=h:Ee(s,!0))},m=d=>{const u=a(n);if(!(l.paused||!u))if(e.trapped){const h=d.relatedTarget;!st(h)&&!u.contains(h)&&setTimeout(()=>{if(!l.paused&&e.trapped){const p=mt({focusReason:r.value});t("focusout-prevented",p),p.defaultPrevented||Ee(s,!0)}},0)}else{const h=d.target;h&&u.contains(h)||t("focusout",d)}};async function y(){await et();const d=a(n);if(d){Vn.push(l);const u=d.contains(document.activeElement)?o:document.activeElement;if(o=u,!d.contains(u)){const p=new Event(Lt,Kn);d.addEventListener(Lt,i),d.dispatchEvent(p),p.defaultPrevented||et(()=>{let w=e.focusStartEl;Ft(w)||(Ee(w),document.activeElement!==w&&(w="first")),w==="first"&&ha(Bo(d),!0),(document.activeElement===u||w==="container")&&Ee(d)})}}}function v(){const d=a(n);if(d){d.removeEventListener(Lt,i);const u=new CustomEvent(Bt,{...Kn,detail:{focusReason:r.value}});d.addEventListener(Bt,c),d.dispatchEvent(u),!u.defaultPrevented&&(r.value=="keyboard"||!wa()||d.contains(document.activeElement))&&Ee(o??document.body),d.removeEventListener(Bt,c),Vn.remove(l)}}return ve(()=>{e.trapped&&y(),G(()=>e.trapped,d=>{d?y():v()})}),pe(()=>{e.trapped&&v(),n.value&&(n.value.removeEventListener("keydown",f),n.value.removeEventListener("focusin",g),n.value.removeEventListener("focusout",m),n.value=void 0)}),{onKeydown:f}}});function Ca(e,t,n,o,s,r){return I(e.$slots,"default",{handleKeydown:e.onKeydown})}var Fo=V(_a,[["render",Ca],["__file","focus-trap.vue"]]),oe="top",ie="bottom",ue="right",se="left",nn="auto",rt=[oe,ie,ue,se],He="start",tt="end",Sa="clippingParents",Mo="viewport",Xe="popper",Oa="reference",Zn=rt.reduce(function(e,t){return e.concat([t+"-"+He,t+"-"+tt])},[]),on=[].concat(rt,[nn]).reduce(function(e,t){return e.concat([t,t+"-"+He,t+"-"+tt])},[]),Aa="beforeRead",Pa="read",Ra="afterRead",$a="beforeMain",ka="main",La="afterMain",Ba="beforeWrite",Fa="write",Ma="afterWrite",Na=[Aa,Pa,Ra,$a,ka,La,Ba,Fa,Ma];function he(e){return e?(e.nodeName||"").toLowerCase():null}function me(e){if(e==null)return window;if(e.toString()!=="[object Window]"){var t=e.ownerDocument;return t&&t.defaultView||window}return e}function Ue(e){var t=me(e).Element;return e instanceof t||e instanceof Element}function le(e){var t=me(e).HTMLElement;return e instanceof t||e instanceof HTMLElement}function sn(e){if(typeof ShadowRoot>"u")return!1;var t=me(e).ShadowRoot;return e instanceof t||e instanceof ShadowRoot}function Ia(e){var t=e.state;Object.keys(t.elements).forEach(function(n){var o=t.styles[n]||{},s=t.attributes[n]||{},r=t.elements[n];!le(r)||!he(r)||(Object.assign(r.style,o),Object.keys(s).forEach(function(l){var f=s[l];f===!1?r.removeAttribute(l):r.setAttribute(l,f===!0?"":f)}))})}function Da(e){var t=e.state,n={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(t.elements.popper.style,n.popper),t.styles=n,t.elements.arrow&&Object.assign(t.elements.arrow.style,n.arrow),function(){Object.keys(t.elements).forEach(function(o){var s=t.elements[o],r=t.attributes[o]||{},l=Object.keys(t.styles.hasOwnProperty(o)?t.styles[o]:n[o]),f=l.reduce(function(i,c){return i[c]="",i},{});!le(s)||!he(s)||(Object.assign(s.style,f),Object.keys(r).forEach(function(i){s.removeAttribute(i)}))})}}var No={name:"applyStyles",enabled:!0,phase:"write",fn:Ia,effect:Da,requires:["computeStyles"]};function ye(e){return e.split("-")[0]}var ke=Math.max,Et=Math.min,Ke=Math.round;function We(e,t){t===void 0&&(t=!1);var n=e.getBoundingClientRect(),o=1,s=1;if(le(e)&&t){var r=e.offsetHeight,l=e.offsetWidth;l>0&&(o=Ke(n.width)/l||1),r>0&&(s=Ke(n.height)/r||1)}return{width:n.width/o,height:n.height/s,top:n.top/s,right:n.right/o,bottom:n.bottom/s,left:n.left/o,x:n.left/o,y:n.top/s}}function rn(e){var t=We(e),n=e.offsetWidth,o=e.offsetHeight;return Math.abs(t.width-n)<=1&&(n=t.width),Math.abs(t.height-o)<=1&&(o=t.height),{x:e.offsetLeft,y:e.offsetTop,width:n,height:o}}function Io(e,t){var n=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(n&&sn(n)){var o=t;do{if(o&&e.isSameNode(o))return!0;o=o.parentNode||o.host}while(o)}return!1}function _e(e){return me(e).getComputedStyle(e)}function xa(e){return["table","td","th"].indexOf(he(e))>=0}function Oe(e){return((Ue(e)?e.ownerDocument:e.document)||window.document).documentElement}function Ot(e){return he(e)==="html"?e:e.assignedSlot||e.parentNode||(sn(e)?e.host:null)||Oe(e)}function Qn(e){return!le(e)||_e(e).position==="fixed"?null:e.offsetParent}function ja(e){var t=navigator.userAgent.toLowerCase().indexOf("firefox")!==-1,n=navigator.userAgent.indexOf("Trident")!==-1;if(n&&le(e)){var o=_e(e);if(o.position==="fixed")return null}var s=Ot(e);for(sn(s)&&(s=s.host);le(s)&&["html","body"].indexOf(he(s))<0;){var r=_e(s);if(r.transform!=="none"||r.perspective!=="none"||r.contain==="paint"||["transform","perspective"].indexOf(r.willChange)!==-1||t&&r.willChange==="filter"||t&&r.filter&&r.filter!=="none")return s;s=s.parentNode}return null}function at(e){for(var t=me(e),n=Qn(e);n&&xa(n)&&_e(n).position==="static";)n=Qn(n);return n&&(he(n)==="html"||he(n)==="body"&&_e(n).position==="static")?t:n||ja(e)||t}function an(e){return["top","bottom"].indexOf(e)>=0?"x":"y"}function Ze(e,t,n){return ke(e,Et(t,n))}function za(e,t,n){var o=Ze(e,t,n);return o>n?n:o}function Do(){return{top:0,right:0,bottom:0,left:0}}function xo(e){return Object.assign({},Do(),e)}function jo(e,t){return t.reduce(function(n,o){return n[o]=e,n},{})}var Ha=function(e,t){return e=typeof e=="function"?e(Object.assign({},t.rects,{placement:t.placement})):e,xo(typeof e!="number"?e:jo(e,rt))};function Ua(e){var t,n=e.state,o=e.name,s=e.options,r=n.elements.arrow,l=n.modifiersData.popperOffsets,f=ye(n.placement),i=an(f),c=[se,ue].indexOf(f)>=0,g=c?"height":"width";if(!(!r||!l)){var m=Ha(s.padding,n),y=rn(r),v=i==="y"?oe:se,d=i==="y"?ie:ue,u=n.rects.reference[g]+n.rects.reference[i]-l[i]-n.rects.popper[g],h=l[i]-n.rects.reference[i],p=at(r),w=p?i==="y"?p.clientHeight||0:p.clientWidth||0:0,b=u/2-h/2,E=m[v],T=w-y[g]-m[d],C=w/2-y[g]/2+b,S=Ze(E,C,T),L=i;n.modifiersData[o]=(t={},t[L]=S,t.centerOffset=S-C,t)}}function Ka(e){var t=e.state,n=e.options,o=n.element,s=o===void 0?"[data-popper-arrow]":o;s!=null&&(typeof s=="string"&&(s=t.elements.popper.querySelector(s),!s)||!Io(t.elements.popper,s)||(t.elements.arrow=s))}var Wa={name:"arrow",enabled:!0,phase:"main",fn:Ua,effect:Ka,requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function qe(e){return e.split("-")[1]}var qa={top:"auto",right:"auto",bottom:"auto",left:"auto"};function Ya(e){var t=e.x,n=e.y,o=window,s=o.devicePixelRatio||1;return{x:Ke(t*s)/s||0,y:Ke(n*s)/s||0}}function eo(e){var t,n=e.popper,o=e.popperRect,s=e.placement,r=e.variation,l=e.offsets,f=e.position,i=e.gpuAcceleration,c=e.adaptive,g=e.roundOffsets,m=e.isFixed,y=l.x,v=y===void 0?0:y,d=l.y,u=d===void 0?0:d,h=typeof g=="function"?g({x:v,y:u}):{x:v,y:u};v=h.x,u=h.y;var p=l.hasOwnProperty("x"),w=l.hasOwnProperty("y"),b=se,E=oe,T=window;if(c){var C=at(n),S="clientHeight",L="clientWidth";if(C===me(n)&&(C=Oe(n),_e(C).position!=="static"&&f==="absolute"&&(S="scrollHeight",L="scrollWidth")),C=C,s===oe||(s===se||s===ue)&&r===tt){E=ie;var D=m&&C===T&&T.visualViewport?T.visualViewport.height:C[S];u-=D-o.height,u*=i?1:-1}if(s===se||(s===oe||s===ie)&&r===tt){b=ue;var M=m&&C===T&&T.visualViewport?T.visualViewport.width:C[L];v-=M-o.width,v*=i?1:-1}}var $=Object.assign({position:f},c&&qa),x=g===!0?Ya({x:v,y:u}):{x:v,y:u};if(v=x.x,u=x.y,i){var j;return Object.assign({},$,(j={},j[E]=w?"0":"",j[b]=p?"0":"",j.transform=(T.devicePixelRatio||1)<=1?"translate("+v+"px, "+u+"px)":"translate3d("+v+"px, "+u+"px, 0)",j))}return Object.assign({},$,(t={},t[E]=w?u+"px":"",t[b]=p?v+"px":"",t.transform="",t))}function Ga(e){var t=e.state,n=e.options,o=n.gpuAcceleration,s=o===void 0?!0:o,r=n.adaptive,l=r===void 0?!0:r,f=n.roundOffsets,i=f===void 0?!0:f,c={placement:ye(t.placement),variation:qe(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:s,isFixed:t.options.strategy==="fixed"};t.modifiersData.popperOffsets!=null&&(t.styles.popper=Object.assign({},t.styles.popper,eo(Object.assign({},c,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:l,roundOffsets:i})))),t.modifiersData.arrow!=null&&(t.styles.arrow=Object.assign({},t.styles.arrow,eo(Object.assign({},c,{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:i})))),t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-placement":t.placement})}var zo={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:Ga,data:{}},gt={passive:!0};function Va(e){var t=e.state,n=e.instance,o=e.options,s=o.scroll,r=s===void 0?!0:s,l=o.resize,f=l===void 0?!0:l,i=me(t.elements.popper),c=[].concat(t.scrollParents.reference,t.scrollParents.popper);return r&&c.forEach(function(g){g.addEventListener("scroll",n.update,gt)}),f&&i.addEventListener("resize",n.update,gt),function(){r&&c.forEach(function(g){g.removeEventListener("scroll",n.update,gt)}),f&&i.removeEventListener("resize",n.update,gt)}}var Ho={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:Va,data:{}},Xa={left:"right",right:"left",bottom:"top",top:"bottom"};function yt(e){return e.replace(/left|right|bottom|top/g,function(t){return Xa[t]})}var Ja={start:"end",end:"start"};function to(e){return e.replace(/start|end/g,function(t){return Ja[t]})}function ln(e){var t=me(e),n=t.pageXOffset,o=t.pageYOffset;return{scrollLeft:n,scrollTop:o}}function un(e){return We(Oe(e)).left+ln(e).scrollLeft}function Za(e){var t=me(e),n=Oe(e),o=t.visualViewport,s=n.clientWidth,r=n.clientHeight,l=0,f=0;return o&&(s=o.width,r=o.height,/^((?!chrome|android).)*safari/i.test(navigator.userAgent)||(l=o.offsetLeft,f=o.offsetTop)),{width:s,height:r,x:l+un(e),y:f}}function Qa(e){var t,n=Oe(e),o=ln(e),s=(t=e.ownerDocument)==null?void 0:t.body,r=ke(n.scrollWidth,n.clientWidth,s?s.scrollWidth:0,s?s.clientWidth:0),l=ke(n.scrollHeight,n.clientHeight,s?s.scrollHeight:0,s?s.clientHeight:0),f=-o.scrollLeft+un(e),i=-o.scrollTop;return _e(s||n).direction==="rtl"&&(f+=ke(n.clientWidth,s?s.clientWidth:0)-r),{width:r,height:l,x:f,y:i}}function cn(e){var t=_e(e),n=t.overflow,o=t.overflowX,s=t.overflowY;return/auto|scroll|overlay|hidden/.test(n+s+o)}function Uo(e){return["html","body","#document"].indexOf(he(e))>=0?e.ownerDocument.body:le(e)&&cn(e)?e:Uo(Ot(e))}function Qe(e,t){var n;t===void 0&&(t=[]);var o=Uo(e),s=o===((n=e.ownerDocument)==null?void 0:n.body),r=me(o),l=s?[r].concat(r.visualViewport||[],cn(o)?o:[]):o,f=t.concat(l);return s?f:f.concat(Qe(Ot(l)))}function zt(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}function el(e){var t=We(e);return t.top=t.top+e.clientTop,t.left=t.left+e.clientLeft,t.bottom=t.top+e.clientHeight,t.right=t.left+e.clientWidth,t.width=e.clientWidth,t.height=e.clientHeight,t.x=t.left,t.y=t.top,t}function no(e,t){return t===Mo?zt(Za(e)):Ue(t)?el(t):zt(Qa(Oe(e)))}function tl(e){var t=Qe(Ot(e)),n=["absolute","fixed"].indexOf(_e(e).position)>=0,o=n&&le(e)?at(e):e;return Ue(o)?t.filter(function(s){return Ue(s)&&Io(s,o)&&he(s)!=="body"}):[]}function nl(e,t,n){var o=t==="clippingParents"?tl(e):[].concat(t),s=[].concat(o,[n]),r=s[0],l=s.reduce(function(f,i){var c=no(e,i);return f.top=ke(c.top,f.top),f.right=Et(c.right,f.right),f.bottom=Et(c.bottom,f.bottom),f.left=ke(c.left,f.left),f},no(e,r));return l.width=l.right-l.left,l.height=l.bottom-l.top,l.x=l.left,l.y=l.top,l}function Ko(e){var t=e.reference,n=e.element,o=e.placement,s=o?ye(o):null,r=o?qe(o):null,l=t.x+t.width/2-n.width/2,f=t.y+t.height/2-n.height/2,i;switch(s){case oe:i={x:l,y:t.y-n.height};break;case ie:i={x:l,y:t.y+t.height};break;case ue:i={x:t.x+t.width,y:f};break;case se:i={x:t.x-n.width,y:f};break;default:i={x:t.x,y:t.y}}var c=s?an(s):null;if(c!=null){var g=c==="y"?"height":"width";switch(r){case He:i[c]=i[c]-(t[g]/2-n[g]/2);break;case tt:i[c]=i[c]+(t[g]/2-n[g]/2);break}}return i}function nt(e,t){t===void 0&&(t={});var n=t,o=n.placement,s=o===void 0?e.placement:o,r=n.boundary,l=r===void 0?Sa:r,f=n.rootBoundary,i=f===void 0?Mo:f,c=n.elementContext,g=c===void 0?Xe:c,m=n.altBoundary,y=m===void 0?!1:m,v=n.padding,d=v===void 0?0:v,u=xo(typeof d!="number"?d:jo(d,rt)),h=g===Xe?Oa:Xe,p=e.rects.popper,w=e.elements[y?h:g],b=nl(Ue(w)?w:w.contextElement||Oe(e.elements.popper),l,i),E=We(e.elements.reference),T=Ko({reference:E,element:p,placement:s}),C=zt(Object.assign({},p,T)),S=g===Xe?C:E,L={top:b.top-S.top+u.top,bottom:S.bottom-b.bottom+u.bottom,left:b.left-S.left+u.left,right:S.right-b.right+u.right},D=e.modifiersData.offset;if(g===Xe&&D){var M=D[s];Object.keys(L).forEach(function($){var x=[ue,ie].indexOf($)>=0?1:-1,j=[oe,ie].indexOf($)>=0?"y":"x";L[$]+=M[j]*x})}return L}function ol(e,t){t===void 0&&(t={});var n=t,o=n.placement,s=n.boundary,r=n.rootBoundary,l=n.padding,f=n.flipVariations,i=n.allowedAutoPlacements,c=i===void 0?on:i,g=qe(o),m=g?f?Zn:Zn.filter(function(d){return qe(d)===g}):rt,y=m.filter(function(d){return c.indexOf(d)>=0});y.length===0&&(y=m);var v=y.reduce(function(d,u){return d[u]=nt(e,{placement:u,boundary:s,rootBoundary:r,padding:l})[ye(u)],d},{});return Object.keys(v).sort(function(d,u){return v[d]-v[u]})}function sl(e){if(ye(e)===nn)return[];var t=yt(e);return[to(e),t,to(t)]}function rl(e){var t=e.state,n=e.options,o=e.name;if(!t.modifiersData[o]._skip){for(var s=n.mainAxis,r=s===void 0?!0:s,l=n.altAxis,f=l===void 0?!0:l,i=n.fallbackPlacements,c=n.padding,g=n.boundary,m=n.rootBoundary,y=n.altBoundary,v=n.flipVariations,d=v===void 0?!0:v,u=n.allowedAutoPlacements,h=t.options.placement,p=ye(h),w=p===h,b=i||(w||!d?[yt(h)]:sl(h)),E=[h].concat(b).reduce(function(Ae,we){return Ae.concat(ye(we)===nn?ol(t,{placement:we,boundary:g,rootBoundary:m,padding:c,flipVariations:d,allowedAutoPlacements:u}):we)},[]),T=t.rects.reference,C=t.rects.popper,S=new Map,L=!0,D=E[0],M=0;M=0,W=X?"width":"height",q=nt(t,{placement:$,boundary:g,rootBoundary:m,altBoundary:y,padding:c}),O=X?j?ue:se:j?ie:oe;T[W]>C[W]&&(O=yt(O));var Z=yt(O),re=[];if(r&&re.push(q[x]<=0),f&&re.push(q[O]<=0,q[Z]<=0),re.every(function(Ae){return Ae})){D=$,L=!1;break}S.set($,re)}if(L)for(var Fe=d?3:1,At=function(Ae){var we=E.find(function(it){var Ve=S.get(it);if(Ve)return Ve.slice(0,Ae).every(function(Me){return Me})});if(we)return D=we,"break"},Ge=Fe;Ge>0;Ge--){var lt=At(Ge);if(lt==="break")break}t.placement!==D&&(t.modifiersData[o]._skip=!0,t.placement=D,t.reset=!0)}}var al={name:"flip",enabled:!0,phase:"main",fn:rl,requiresIfExists:["offset"],data:{_skip:!1}};function oo(e,t,n){return n===void 0&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function so(e){return[oe,ue,ie,se].some(function(t){return e[t]>=0})}function ll(e){var t=e.state,n=e.name,o=t.rects.reference,s=t.rects.popper,r=t.modifiersData.preventOverflow,l=nt(t,{elementContext:"reference"}),f=nt(t,{altBoundary:!0}),i=oo(l,o),c=oo(f,s,r),g=so(i),m=so(c);t.modifiersData[n]={referenceClippingOffsets:i,popperEscapeOffsets:c,isReferenceHidden:g,hasPopperEscaped:m},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":g,"data-popper-escaped":m})}var il={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:ll};function ul(e,t,n){var o=ye(e),s=[se,oe].indexOf(o)>=0?-1:1,r=typeof n=="function"?n(Object.assign({},t,{placement:e})):n,l=r[0],f=r[1];return l=l||0,f=(f||0)*s,[se,ue].indexOf(o)>=0?{x:f,y:l}:{x:l,y:f}}function cl(e){var t=e.state,n=e.options,o=e.name,s=n.offset,r=s===void 0?[0,0]:s,l=on.reduce(function(g,m){return g[m]=ul(m,t.rects,r),g},{}),f=l[t.placement],i=f.x,c=f.y;t.modifiersData.popperOffsets!=null&&(t.modifiersData.popperOffsets.x+=i,t.modifiersData.popperOffsets.y+=c),t.modifiersData[o]=l}var dl={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:cl};function fl(e){var t=e.state,n=e.name;t.modifiersData[n]=Ko({reference:t.rects.reference,element:t.rects.popper,placement:t.placement})}var Wo={name:"popperOffsets",enabled:!0,phase:"read",fn:fl,data:{}};function pl(e){return e==="x"?"y":"x"}function vl(e){var t=e.state,n=e.options,o=e.name,s=n.mainAxis,r=s===void 0?!0:s,l=n.altAxis,f=l===void 0?!1:l,i=n.boundary,c=n.rootBoundary,g=n.altBoundary,m=n.padding,y=n.tether,v=y===void 0?!0:y,d=n.tetherOffset,u=d===void 0?0:d,h=nt(t,{boundary:i,rootBoundary:c,padding:m,altBoundary:g}),p=ye(t.placement),w=qe(t.placement),b=!w,E=an(p),T=pl(E),C=t.modifiersData.popperOffsets,S=t.rects.reference,L=t.rects.popper,D=typeof u=="function"?u(Object.assign({},t.rects,{placement:t.placement})):u,M=typeof D=="number"?{mainAxis:D,altAxis:D}:Object.assign({mainAxis:0,altAxis:0},D),$=t.modifiersData.offset?t.modifiersData.offset[t.placement]:null,x={x:0,y:0};if(C){if(r){var j,X=E==="y"?oe:se,W=E==="y"?ie:ue,q=E==="y"?"height":"width",O=C[E],Z=O+h[X],re=O-h[W],Fe=v?-L[q]/2:0,At=w===He?S[q]:L[q],Ge=w===He?-L[q]:-S[q],lt=t.elements.arrow,Ae=v&<?rn(lt):{width:0,height:0},we=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:Do(),it=we[X],Ve=we[W],Me=Ze(0,S[q],Ae[q]),ss=b?S[q]/2-Fe-Me-it-M.mainAxis:At-Me-it-M.mainAxis,rs=b?-S[q]/2+Fe+Me+Ve+M.mainAxis:Ge+Me+Ve+M.mainAxis,Pt=t.elements.arrow&&at(t.elements.arrow),as=Pt?E==="y"?Pt.clientTop||0:Pt.clientLeft||0:0,pn=(j=$==null?void 0:$[E])!=null?j:0,ls=O+ss-pn-as,is=O+rs-pn,vn=Ze(v?Et(Z,ls):Z,O,v?ke(re,is):re);C[E]=vn,x[E]=vn-O}if(f){var mn,us=E==="x"?oe:se,cs=E==="x"?ie:ue,Pe=C[T],ut=T==="y"?"height":"width",gn=Pe+h[us],yn=Pe-h[cs],Rt=[oe,se].indexOf(p)!==-1,bn=(mn=$==null?void 0:$[T])!=null?mn:0,hn=Rt?gn:Pe-S[ut]-L[ut]-bn+M.altAxis,wn=Rt?Pe+S[ut]+L[ut]-bn-M.altAxis:yn,En=v&&Rt?za(hn,Pe,wn):Ze(v?hn:gn,Pe,v?wn:yn);C[T]=En,x[T]=En-Pe}t.modifiersData[o]=x}}var ml={name:"preventOverflow",enabled:!0,phase:"main",fn:vl,requiresIfExists:["offset"]};function gl(e){return{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}}function yl(e){return e===me(e)||!le(e)?ln(e):gl(e)}function bl(e){var t=e.getBoundingClientRect(),n=Ke(t.width)/e.offsetWidth||1,o=Ke(t.height)/e.offsetHeight||1;return n!==1||o!==1}function hl(e,t,n){n===void 0&&(n=!1);var o=le(t),s=le(t)&&bl(t),r=Oe(t),l=We(e,s),f={scrollLeft:0,scrollTop:0},i={x:0,y:0};return(o||!o&&!n)&&((he(t)!=="body"||cn(r))&&(f=yl(t)),le(t)?(i=We(t,!0),i.x+=t.clientLeft,i.y+=t.clientTop):r&&(i.x=un(r))),{x:l.left+f.scrollLeft-i.x,y:l.top+f.scrollTop-i.y,width:l.width,height:l.height}}function wl(e){var t=new Map,n=new Set,o=[];e.forEach(function(r){t.set(r.name,r)});function s(r){n.add(r.name);var l=[].concat(r.requires||[],r.requiresIfExists||[]);l.forEach(function(f){if(!n.has(f)){var i=t.get(f);i&&s(i)}}),o.push(r)}return e.forEach(function(r){n.has(r.name)||s(r)}),o}function El(e){var t=wl(e);return Na.reduce(function(n,o){return n.concat(t.filter(function(s){return s.phase===o}))},[])}function Tl(e){var t;return function(){return t||(t=new Promise(function(n){Promise.resolve().then(function(){t=void 0,n(e())})})),t}}function _l(e){var t=e.reduce(function(n,o){var s=n[o.name];return n[o.name]=s?Object.assign({},s,o,{options:Object.assign({},s.options,o.options),data:Object.assign({},s.data,o.data)}):o,n},{});return Object.keys(t).map(function(n){return t[n]})}var ro={placement:"bottom",modifiers:[],strategy:"absolute"};function ao(){for(var e=arguments.length,t=new Array(e),n=0;n({})},strategy:{type:String,values:Al,default:"absolute"}}),qo=Y({...Pl,id:String,style:{type:k([String,Array,Object])},className:{type:k([String,Array,Object])},effect:{type:k(String),default:"dark"},visible:Boolean,enterable:{type:Boolean,default:!0},pure:Boolean,focusOnShow:{type:Boolean,default:!1},trapping:{type:Boolean,default:!1},popperClass:{type:k([String,Array,Object])},popperStyle:{type:k([String,Array,Object])},referenceEl:{type:k(Object)},triggerTargetEl:{type:k(Object)},stopPopperMouseEvent:{type:Boolean,default:!0},virtualTriggering:Boolean,zIndex:Number,...Xt(["ariaLabel"])}),Rl={mouseenter:e=>e instanceof MouseEvent,mouseleave:e=>e instanceof MouseEvent,focus:()=>!0,blur:()=>!0,close:()=>!0},$l=(e,t)=>{const n=F(!1),o=F();return{focusStartRef:o,trapped:n,onFocusAfterReleased:c=>{var g;((g=c.detail)==null?void 0:g.focusReason)!=="pointer"&&(o.value="first",t("blur"))},onFocusAfterTrapped:()=>{t("focus")},onFocusInTrap:c=>{e.visible&&!n.value&&(c.target&&(o.value=c.target),n.value=!0)},onFocusoutPrevented:c=>{e.trapping||(c.detail.focusReason==="pointer"&&c.preventDefault(),n.value=!1)},onReleaseRequested:()=>{n.value=!1,t("close")}}},kl=(e,t=[])=>{const{placement:n,strategy:o,popperOptions:s}=e,r={placement:n,strategy:o,...s,modifiers:[...Bl(e),...t]};return Fl(r,s==null?void 0:s.modifiers),r},Ll=e=>{if(fe)return Eo(e)};function Bl(e){const{offset:t,gpuAcceleration:n,fallbackPlacements:o}=e;return[{name:"offset",options:{offset:[0,t??12]}},{name:"preventOverflow",options:{padding:{top:2,bottom:2,left:5,right:5}}},{name:"flip",options:{padding:5,fallbackPlacements:o}},{name:"computeStyles",options:{gpuAcceleration:n}}]}function Fl(e,t){t&&(e.modifiers=[...e.modifiers,...t??[]])}const Ml=(e,t,n={})=>{const o={name:"updateState",enabled:!0,phase:"write",fn:({state:i})=>{const c=Nl(i);Object.assign(l.value,c)},requires:["computeStyles"]},s=P(()=>{const{onFirstUpdate:i,placement:c,strategy:g,modifiers:m}=a(n);return{onFirstUpdate:i,placement:c||"bottom",strategy:g||"absolute",modifiers:[...m||[],o,{name:"applyStyles",enabled:!1}]}}),r=ht(),l=F({styles:{popper:{position:a(s).strategy,left:"0",top:"0"},arrow:{position:"absolute"}},attributes:{}}),f=()=>{r.value&&(r.value.destroy(),r.value=void 0)};return G(s,i=>{const c=a(r);c&&c.setOptions(i)},{deep:!0}),G([e,t],([i,c])=>{f(),!(!i||!c)&&(r.value=Ol(i,c,a(s)))}),pe(()=>{f()}),{state:P(()=>{var i;return{...((i=a(r))==null?void 0:i.state)||{}}}),styles:P(()=>a(l).styles),attributes:P(()=>a(l).attributes),update:()=>{var i;return(i=a(r))==null?void 0:i.update()},forceUpdate:()=>{var i;return(i=a(r))==null?void 0:i.forceUpdate()},instanceRef:P(()=>a(r))}};function Nl(e){const t=Object.keys(e.elements),n=Sn(t.map(s=>[s,e.styles[s]||{}])),o=Sn(t.map(s=>[s,e.attributes[s]]));return{styles:n,attributes:o}}const Il=0,Dl=e=>{const{popperInstanceRef:t,contentRef:n,triggerRef:o,role:s}=ae(Qt,void 0),r=F(),l=F(),f=P(()=>({name:"eventListeners",enabled:!!e.visible})),i=P(()=>{var p;const w=a(r),b=(p=a(l))!=null?p:Il;return{name:"arrow",enabled:!So(w),options:{element:w,padding:b}}}),c=P(()=>({onFirstUpdate:()=>{d()},...kl(e,[a(i),a(f)])})),g=P(()=>Ll(e.referenceEl)||a(o)),{attributes:m,state:y,styles:v,update:d,forceUpdate:u,instanceRef:h}=Ml(g,n,c);return G(h,p=>t.value=p),ve(()=>{G(()=>{var p;return(p=a(g))==null?void 0:p.getBoundingClientRect()},()=>{d()})}),{attributes:m,arrowRef:r,contentRef:n,instanceRef:h,state:y,styles:v,role:s,forceUpdate:u,update:d}},xl=(e,{attributes:t,styles:n,role:o})=>{const{nextZIndex:s}=vo(),r=Q("popper"),l=P(()=>a(t).popper),f=F(ge(e.zIndex)?e.zIndex:s()),i=P(()=>[r.b(),r.is("pure",e.pure),r.is(e.effect),e.popperClass]),c=P(()=>[{zIndex:a(f)},a(n).popper,e.popperStyle||{}]),g=P(()=>o.value==="dialog"?"false":void 0),m=P(()=>a(n).arrow||{});return{ariaModal:g,arrowStyle:m,contentAttrs:l,contentClass:i,contentStyle:c,contentZIndex:f,updateZIndex:()=>{f.value=ge(e.zIndex)?e.zIndex:s()}}},jl=N({name:"ElPopperContent"}),zl=N({...jl,props:qo,emits:Rl,setup(e,{expose:t,emit:n}){const o=e,{focusStartRef:s,trapped:r,onFocusAfterReleased:l,onFocusAfterTrapped:f,onFocusInTrap:i,onFocusoutPrevented:c,onReleaseRequested:g}=$l(o,n),{attributes:m,arrowRef:y,contentRef:v,styles:d,instanceRef:u,role:h,update:p}=Dl(o),{ariaModal:w,arrowStyle:b,contentAttrs:E,contentClass:T,contentStyle:C,updateZIndex:S}=xl(o,{styles:d,attributes:m,role:h}),L=ae(Fn,void 0),D=F();be(Oo,{arrowStyle:b,arrowRef:y,arrowOffset:D}),L&&be(Fn,{...L,addInputId:J,removeInputId:J});let M;const $=(j=!0)=>{p(),j&&S()},x=()=>{$(!1),o.visible&&o.focusOnShow?r.value=!0:o.visible===!1&&(r.value=!1)};return ve(()=>{G(()=>o.triggerTargetEl,(j,X)=>{M==null||M(),M=void 0;const W=a(j||v.value),q=a(X||v.value);$e(W)&&(M=G([h,()=>o.ariaLabel,w,()=>o.id],O=>{["role","aria-label","aria-modal","id"].forEach((Z,re)=>{st(O[re])?W.removeAttribute(Z):W.setAttribute(Z,O[re])})},{immediate:!0})),q!==W&&$e(q)&&["role","aria-label","aria-modal","id"].forEach(O=>{q.removeAttribute(O)})},{immediate:!0}),G(()=>o.visible,x,{immediate:!0})}),pe(()=>{M==null||M(),M=void 0}),t({popperContentRef:v,popperInstanceRef:u,updatePopper:$,contentStyle:C}),(j,X)=>(R(),U("div",Le({ref_key:"contentRef",ref:v},a(E),{style:a(C),class:a(T),tabindex:"-1",onMouseenter:W=>j.$emit("mouseenter",W),onMouseleave:W=>j.$emit("mouseleave",W)}),[A(a(Fo),{trapped:a(r),"trap-on-focus-in":!0,"focus-trap-el":a(v),"focus-start-el":a(s),onFocusAfterTrapped:a(f),onFocusAfterReleased:a(l),onFocusin:a(i),onFocusoutPrevented:a(c),onReleaseRequested:a(g)},{default:_(()=>[I(j.$slots,"default")]),_:3},8,["trapped","focus-trap-el","focus-start-el","onFocusAfterTrapped","onFocusAfterReleased","onFocusin","onFocusoutPrevented","onReleaseRequested"])],16,["onMouseenter","onMouseleave"]))}});var Hl=V(zl,[["__file","content.vue"]]);const Ul=ce(na),fn=Symbol("elTooltip");function lo(){let e;const t=(o,s)=>{n(),e=window.setTimeout(o,s)},n=()=>window.clearTimeout(e);return hs(()=>n()),{registerTimeout:t,cancelTimeout:n}}const Kl=Y({showAfter:{type:Number,default:0},hideAfter:{type:Number,default:200},autoClose:{type:Number,default:0}}),Wl=({showAfter:e,hideAfter:t,autoClose:n,open:o,close:s})=>{const{registerTimeout:r}=lo(),{registerTimeout:l,cancelTimeout:f}=lo();return{onOpen:g=>{r(()=>{o(g);const m=a(n);ge(m)&&m>0&&l(()=>{s(g)},m)},a(e))},onClose:g=>{f(),r(()=>{s(g)},a(t))}}},Tt=Y({...Kl,...qo,appendTo:{type:k([String,Object])},content:{type:String,default:""},rawContent:Boolean,persistent:Boolean,visible:{type:k(Boolean),default:null},transition:String,teleported:{type:Boolean,default:!0},disabled:Boolean,...Xt(["ariaLabel"])}),Yo=Y({...Ro,disabled:Boolean,trigger:{type:k([String,Array]),default:"hover"},triggerKeys:{type:k(Array),default:()=>[Je.enter,Je.numpadEnter,Je.space]}}),ql=mo({type:k(Boolean),default:null}),Yl=mo({type:k(Function)}),Gl=e=>{const t=`update:${e}`,n=`onUpdate:${e}`,o=[t],s={[e]:ql,[n]:Yl};return{useModelToggle:({indicator:l,toggleReason:f,shouldHideWhenRouteChanges:i,shouldProceed:c,onShow:g,onHide:m})=>{const y=go(),{emit:v}=y,d=y.props,u=P(()=>Re(d[n])),h=P(()=>d[e]===null),p=S=>{l.value!==!0&&(l.value=!0,f&&(f.value=S),Re(g)&&g(S))},w=S=>{l.value!==!1&&(l.value=!1,f&&(f.value=S),Re(m)&&m(S))},b=S=>{if(d.disabled===!0||Re(c)&&!c())return;const L=u.value&&fe;L&&v(t,!0),(h.value||!L)&&p(S)},E=S=>{if(d.disabled===!0||!fe)return;const L=u.value&&fe;L&&v(t,!1),(h.value||!L)&&w(S)},T=S=>{qt(S)&&(d.disabled&&S?u.value&&v(t,!1):l.value!==S&&(S?p():w()))},C=()=>{l.value?E():b()};return G(()=>d[e],T),i&&y.appContext.config.globalProperties.$route!==void 0&&G(()=>({...y.proxy.$route}),()=>{i.value&&l.value&&E()}),ve(()=>{T(d[e])}),{hide:E,show:b,toggle:C,hasUpdateHandler:u}},useModelToggleProps:s,useModelToggleEmits:o}},{useModelToggleProps:Vl,useModelToggleEmits:Xl,useModelToggle:Jl}=Gl("visible"),Zl=Y({...Ao,...Vl,...Tt,...Yo,...Po,showArrow:{type:Boolean,default:!0}}),Ql=[...Xl,"before-show","before-hide","show","hide","open","close"],ei=(e,t)=>Yt(e)?e.includes(t):e===t,Ie=(e,t,n)=>o=>{ei(a(e),t)&&n(o)},Te=(e,t,{checkForDefaultPrevented:n=!0}={})=>s=>{const r=e==null?void 0:e(s);if(n===!1||!r)return t==null?void 0:t(s)},ti=N({name:"ElTooltipTrigger"}),ni=N({...ti,props:Yo,setup(e,{expose:t}){const n=e,o=Q("tooltip"),{controlled:s,id:r,open:l,onOpen:f,onClose:i,onToggle:c}=ae(fn,void 0),g=F(null),m=()=>{if(a(s)||n.disabled)return!0},y=Se(n,"trigger"),v=Te(m,Ie(y,"hover",f)),d=Te(m,Ie(y,"hover",i)),u=Te(m,Ie(y,"click",E=>{E.button===0&&c(E)})),h=Te(m,Ie(y,"focus",f)),p=Te(m,Ie(y,"focus",i)),w=Te(m,Ie(y,"contextmenu",E=>{E.preventDefault(),c(E)})),b=Te(m,E=>{const{code:T}=E;n.triggerKeys.includes(T)&&(E.preventDefault(),c(E))});return t({triggerRef:g}),(E,T)=>(R(),K(a(fa),{id:a(r),"virtual-ref":E.virtualRef,open:a(l),"virtual-triggering":E.virtualTriggering,class:B(a(o).e("trigger")),onBlur:a(p),onClick:a(u),onContextmenu:a(w),onFocus:a(h),onMouseenter:a(v),onMouseleave:a(d),onKeydown:a(b)},{default:_(()=>[I(E.$slots,"default")]),_:3},8,["id","virtual-ref","open","virtual-triggering","class","onBlur","onClick","onContextmenu","onFocus","onMouseenter","onMouseleave","onKeydown"]))}});var oi=V(ni,[["__file","trigger.vue"]]);const si=Y({to:{type:k([String,Object]),required:!0},disabled:Boolean}),ri=N({__name:"teleport",props:si,setup(e){return(t,n)=>t.disabled?I(t.$slots,"default",{key:0}):(R(),K(ws,{key:1,to:t.to},[I(t.$slots,"default")],8,["to"]))}});var ai=V(ri,[["__file","teleport.vue"]]);const Go=ce(ai),Vo=()=>{const e=Ts(),t=Ks(),n=P(()=>`${e.value}-popper-container-${t.prefix}`),o=P(()=>`#${n.value}`);return{id:n,selector:o}},li=e=>{const t=document.createElement("div");return t.id=e,document.body.appendChild(t),t},ii=()=>{const{id:e,selector:t}=Vo();return Es(()=>{fe&&(document.body.querySelector(t.value)||li(e.value))}),{id:e,selector:t}},ui=N({name:"ElTooltipContent",inheritAttrs:!1}),ci=N({...ui,props:Tt,setup(e,{expose:t}){const n=e,{selector:o}=Vo(),s=Q("tooltip"),r=F();let l;const{controlled:f,id:i,open:c,trigger:g,onClose:m,onOpen:y,onShow:v,onHide:d,onBeforeShow:u,onBeforeHide:h}=ae(fn,void 0),p=P(()=>n.transition||`${s.namespace.value}-fade-in-linear`),w=P(()=>n.persistent);pe(()=>{l==null||l()});const b=P(()=>a(w)?!0:a(c)),E=P(()=>n.disabled?!1:a(c)),T=P(()=>n.appendTo||o.value),C=P(()=>{var O;return(O=n.style)!=null?O:{}}),S=F(!0),L=()=>{d(),q()&&Ee(document.body),S.value=!0},D=()=>{if(a(f))return!0},M=Te(D,()=>{n.enterable&&a(g)==="hover"&&y()}),$=Te(D,()=>{a(g)==="hover"&&m()}),x=()=>{var O,Z;(Z=(O=r.value)==null?void 0:O.updatePopper)==null||Z.call(O),u==null||u()},j=()=>{h==null||h()},X=()=>{v(),l=Ws(P(()=>{var O;return(O=r.value)==null?void 0:O.popperContentRef}),()=>{if(a(f))return;a(g)!=="hover"&&m()})},W=()=>{n.virtualTriggering||m()},q=O=>{var Z;const re=(Z=r.value)==null?void 0:Z.popperContentRef,Fe=(O==null?void 0:O.relatedTarget)||document.activeElement;return re==null?void 0:re.contains(Fe)};return G(()=>a(c),O=>{O?S.value=!1:l==null||l()},{flush:"post"}),G(()=>n.content,()=>{var O,Z;(Z=(O=r.value)==null?void 0:O.updatePopper)==null||Z.call(O)}),t({contentRef:r,isFocusInsideContent:q}),(O,Z)=>(R(),K(a(Go),{disabled:!O.teleported,to:a(T)},{default:_(()=>[A(Kt,{name:a(p),onAfterLeave:L,onBeforeEnter:x,onAfterEnter:X,onBeforeLeave:j},{default:_(()=>[a(b)?_t((R(),K(a(Hl),Le({key:0,id:a(i),ref_key:"contentRef",ref:r},O.$attrs,{"aria-label":O.ariaLabel,"aria-hidden":S.value,"boundaries-padding":O.boundariesPadding,"fallback-placements":O.fallbackPlacements,"gpu-acceleration":O.gpuAcceleration,offset:O.offset,placement:O.placement,"popper-options":O.popperOptions,strategy:O.strategy,effect:O.effect,enterable:O.enterable,pure:O.pure,"popper-class":O.popperClass,"popper-style":[O.popperStyle,a(C)],"reference-el":O.referenceEl,"trigger-target-el":O.triggerTargetEl,visible:a(E),"z-index":O.zIndex,onMouseenter:a(M),onMouseleave:a($),onBlur:W,onClose:a(m)}),{default:_(()=>[I(O.$slots,"default")]),_:3},16,["id","aria-label","aria-hidden","boundaries-padding","fallback-placements","gpu-acceleration","offset","placement","popper-options","strategy","effect","enterable","pure","popper-class","popper-style","reference-el","trigger-target-el","visible","z-index","onMouseenter","onMouseleave","onClose"])),[[Ut,a(E)]]):H("v-if",!0)]),_:3},8,["name"])]),_:3},8,["disabled","to"]))}});var di=V(ci,[["__file","content.vue"]]);const fi=N({name:"ElTooltip"}),pi=N({...fi,props:Zl,emits:Ql,setup(e,{expose:t,emit:n}){const o=e;ii();const s=Dt(),r=F(),l=F(),f=()=>{var p;const w=a(r);w&&((p=w.popperInstanceRef)==null||p.update())},i=F(!1),c=F(),{show:g,hide:m,hasUpdateHandler:y}=Jl({indicator:i,toggleReason:c}),{onOpen:v,onClose:d}=Wl({showAfter:Se(o,"showAfter"),hideAfter:Se(o,"hideAfter"),autoClose:Se(o,"autoClose"),open:g,close:m}),u=P(()=>qt(o.visible)&&!y.value);be(fn,{controlled:u,id:s,open:_s(i),trigger:Se(o,"trigger"),onOpen:p=>{v(p)},onClose:p=>{d(p)},onToggle:p=>{a(i)?d(p):v(p)},onShow:()=>{n("show",c.value)},onHide:()=>{n("hide",c.value)},onBeforeShow:()=>{n("before-show",c.value)},onBeforeHide:()=>{n("before-hide",c.value)},updatePopper:f}),G(()=>o.disabled,p=>{p&&i.value&&(i.value=!1)});const h=p=>{var w;return(w=l.value)==null?void 0:w.isFocusInsideContent(p)};return Cs(()=>i.value&&m()),t({popperRef:r,contentRef:l,isFocusInsideContent:h,updatePopper:f,onOpen:v,onClose:d,hide:m}),(p,w)=>(R(),K(a(Ul),{ref_key:"popperRef",ref:r,role:p.role},{default:_(()=>[A(oi,{disabled:p.disabled,trigger:p.trigger,"trigger-keys":p.triggerKeys,"virtual-ref":p.virtualRef,"virtual-triggering":p.virtualTriggering},{default:_(()=>[p.$slots.default?I(p.$slots,"default",{key:0}):H("v-if",!0)]),_:3},8,["disabled","trigger","trigger-keys","virtual-ref","virtual-triggering"]),A(di,{ref_key:"contentRef",ref:l,"aria-label":p.ariaLabel,"boundaries-padding":p.boundariesPadding,content:p.content,disabled:p.disabled,effect:p.effect,enterable:p.enterable,"fallback-placements":p.fallbackPlacements,"hide-after":p.hideAfter,"gpu-acceleration":p.gpuAcceleration,offset:p.offset,persistent:p.persistent,"popper-class":p.popperClass,"popper-style":p.popperStyle,placement:p.placement,"popper-options":p.popperOptions,pure:p.pure,"raw-content":p.rawContent,"reference-el":p.referenceEl,"trigger-target-el":p.triggerTargetEl,"show-after":p.showAfter,strategy:p.strategy,teleported:p.teleported,transition:p.transition,"virtual-triggering":p.virtualTriggering,"z-index":p.zIndex,"append-to":p.appendTo},{default:_(()=>[I(p.$slots,"content",{},()=>[p.rawContent?(R(),U("span",{key:0,innerHTML:p.content},null,8,["innerHTML"])):(R(),U("span",{key:1},ne(p.content),1))]),p.showArrow?(R(),K(a(ra),{key:0,"arrow-offset":p.arrowOffset},null,8,["arrow-offset"])):H("v-if",!0)]),_:3},8,["aria-label","boundaries-padding","content","disabled","effect","enterable","fallback-placements","hide-after","gpu-acceleration","offset","persistent","popper-class","popper-style","placement","popper-options","pure","raw-content","reference-el","trigger-target-el","show-after","strategy","teleported","transition","virtual-triggering","z-index","append-to"])]),_:3},8,["role"]))}});var vi=V(pi,[["__file","tooltip.vue"]]);const mi=ce(vi);var bt=(e=>(e[e.TEXT=1]="TEXT",e[e.CLASS=2]="CLASS",e[e.STYLE=4]="STYLE",e[e.PROPS=8]="PROPS",e[e.FULL_PROPS=16]="FULL_PROPS",e[e.HYDRATE_EVENTS=32]="HYDRATE_EVENTS",e[e.STABLE_FRAGMENT=64]="STABLE_FRAGMENT",e[e.KEYED_FRAGMENT=128]="KEYED_FRAGMENT",e[e.UNKEYED_FRAGMENT=256]="UNKEYED_FRAGMENT",e[e.NEED_PATCH=512]="NEED_PATCH",e[e.DYNAMIC_SLOTS=1024]="DYNAMIC_SLOTS",e[e.HOISTED=-1]="HOISTED",e[e.BAIL=-2]="BAIL",e))(bt||{});const gi=Y({tag:{type:String,default:"div"},span:{type:Number,default:24},offset:{type:Number,default:0},pull:{type:Number,default:0},push:{type:Number,default:0},xs:{type:k([Number,Object]),default:()=>Ce({})},sm:{type:k([Number,Object]),default:()=>Ce({})},md:{type:k([Number,Object]),default:()=>Ce({})},lg:{type:k([Number,Object]),default:()=>Ce({})},xl:{type:k([Number,Object]),default:()=>Ce({})}}),Xo=Symbol("rowContextKey"),yi=N({name:"ElCol"}),bi=N({...yi,props:gi,setup(e){const t=e,{gutter:n}=ae(Xo,{gutter:P(()=>0)}),o=Q("col"),s=P(()=>{const l={};return n.value&&(l.paddingLeft=l.paddingRight=`${n.value/2}px`),l}),r=P(()=>{const l=[];return["span","offset","pull","push"].forEach(c=>{const g=t[c];ge(g)&&(c==="span"?l.push(o.b(`${t[c]}`)):g>0&&l.push(o.b(`${c}-${t[c]}`)))}),["xs","sm","md","lg","xl"].forEach(c=>{ge(t[c])?l.push(o.b(`${c}-${t[c]}`)):Wt(t[c])&&Object.entries(t[c]).forEach(([g,m])=>{l.push(g!=="span"?o.b(`${c}-${g}-${m}`):o.b(`${c}-${m}`))})}),n.value&&l.push(o.is("guttered")),[o.b(),l]});return(l,f)=>(R(),K(Be(l.tag),{class:B(a(r)),style:te(a(s))},{default:_(()=>[I(l.$slots,"default")]),_:3},8,["class","style"]))}});var hi=V(bi,[["__file","col.vue"]]);const wi=ce(hi),Jo=e=>{if(!e)return{onClick:J,onMousedown:J,onMouseup:J};let t=!1,n=!1;return{onClick:l=>{t&&n&&e(l),t=n=!1},onMousedown:l=>{t=l.target===l.currentTarget},onMouseup:l=>{n=l.target===l.currentTarget}}},Ei=Y({mask:{type:Boolean,default:!0},customMaskEvent:Boolean,overlayClass:{type:k([String,Array,Object])},zIndex:{type:k([String,Number])}}),Ti={click:e=>e instanceof MouseEvent},_i="overlay";var Ci=N({name:"ElOverlay",props:Ei,emits:Ti,setup(e,{slots:t,emit:n}){const o=Q(_i),s=i=>{n("click",i)},{onClick:r,onMousedown:l,onMouseup:f}=Jo(e.customMaskEvent?void 0:s);return()=>e.mask?A("div",{class:[o.b(),e.overlayClass],style:{zIndex:e.zIndex},onClick:r,onMousedown:l,onMouseup:f},[I(t,"default")],bt.STYLE|bt.CLASS|bt.PROPS,["onClick","onMouseup","onMousedown"]):Ss("div",{class:e.overlayClass,style:{zIndex:e.zIndex,position:"fixed",top:"0px",right:"0px",bottom:"0px",left:"0px"}},[I(t,"default")])}});const Si=Ci,Zo=Symbol("dialogInjectionKey"),Qo=Y({center:Boolean,alignCenter:Boolean,closeIcon:{type:Jt},draggable:Boolean,overflow:Boolean,fullscreen:Boolean,headerClass:String,bodyClass:String,footerClass:String,showClose:{type:Boolean,default:!0},title:{type:String,default:""},ariaLevel:{type:String,default:"2"}}),Oi={close:()=>!0},Ai=(e,t,n,o)=>{let s={offsetX:0,offsetY:0};const r=c=>{const g=c.clientX,m=c.clientY,{offsetX:y,offsetY:v}=s,d=e.value.getBoundingClientRect(),u=d.left,h=d.top,p=d.width,w=d.height,b=document.documentElement.clientWidth,E=document.documentElement.clientHeight,T=-u+y,C=-h+v,S=b-u-p+y,L=E-h-w+v,D=$=>{let x=y+$.clientX-g,j=v+$.clientY-m;o!=null&&o.value||(x=Math.min(Math.max(x,T),S),j=Math.min(Math.max(j,C),L)),s={offsetX:x,offsetY:j},e.value&&(e.value.style.transform=`translate(${ze(x)}, ${ze(j)})`)},M=()=>{document.removeEventListener("mousemove",D),document.removeEventListener("mouseup",M)};document.addEventListener("mousemove",D),document.addEventListener("mouseup",M)},l=()=>{t.value&&e.value&&t.value.addEventListener("mousedown",r)},f=()=>{t.value&&e.value&&t.value.removeEventListener("mousedown",r)},i=()=>{s={offsetX:0,offsetY:0},e.value&&(e.value.style.transform="none")};return ve(()=>{Os(()=>{n.value?l():f()})}),pe(()=>{f()}),{resetPosition:i}},Pi=(...e)=>t=>{e.forEach(n=>{Re(n)?n(t):n.value=t})},Ri=N({name:"ElDialogContent"}),$i=N({...Ri,props:Qo,emits:Oi,setup(e,{expose:t}){const n=e,{t:o}=Gt(),{Close:s}=qs,{dialogRef:r,headerRef:l,bodyId:f,ns:i,style:c}=ae(Zo),{focusTrapRef:g}=ae(Lo),m=P(()=>[i.b(),i.is("fullscreen",n.fullscreen),i.is("draggable",n.draggable),i.is("align-center",n.alignCenter),{[i.m("center")]:n.center}]),y=Pi(g,r),v=P(()=>n.draggable),d=P(()=>n.overflow),{resetPosition:u}=Ai(r,l,v,d);return t({resetPosition:u}),(h,p)=>(R(),U("div",{ref:a(y),class:B(a(m)),style:te(a(c)),tabindex:"-1"},[z("header",{ref_key:"headerRef",ref:l,class:B([a(i).e("header"),h.headerClass,{"show-close":h.showClose}])},[I(h.$slots,"header",{},()=>[z("span",{role:"heading","aria-level":h.ariaLevel,class:B(a(i).e("title"))},ne(h.title),11,["aria-level"])]),h.showClose?(R(),U("button",{key:0,"aria-label":a(o)("el.dialog.close"),class:B(a(i).e("headerbtn")),type:"button",onClick:w=>h.$emit("close")},[A(a(de),{class:B(a(i).e("close"))},{default:_(()=>[(R(),K(Be(h.closeIcon||a(s))))]),_:1},8,["class"])],10,["aria-label","onClick"])):H("v-if",!0)],2),z("div",{id:a(f),class:B([a(i).e("body"),h.bodyClass])},[I(h.$slots,"default")],10,["id"]),h.$slots.footer?(R(),U("footer",{key:0,class:B([a(i).e("footer"),h.footerClass])},[I(h.$slots,"footer")],2)):H("v-if",!0)],6))}});var ki=V($i,[["__file","dialog-content.vue"]]);const Li=Y({...Qo,appendToBody:Boolean,appendTo:{type:k([String,Object]),default:"body"},beforeClose:{type:k(Function)},destroyOnClose:Boolean,closeOnClickModal:{type:Boolean,default:!0},closeOnPressEscape:{type:Boolean,default:!0},lockScroll:{type:Boolean,default:!0},modal:{type:Boolean,default:!0},openDelay:{type:Number,default:0},closeDelay:{type:Number,default:0},top:{type:String},modelValue:Boolean,modalClass:String,headerClass:String,bodyClass:String,footerClass:String,width:{type:[String,Number]},zIndex:{type:Number},trapFocus:Boolean,headerAriaLevel:{type:String,default:"2"}}),Bi={open:()=>!0,opened:()=>!0,close:()=>!0,closed:()=>!0,[To]:e=>qt(e),openAutoFocus:()=>!0,closeAutoFocus:()=>!0},Fi=(e,t={})=>{yo(e)||ot("[useLockscreen]","You need to pass a ref param to this function");const n=t.ns||Q("popup"),o=P(()=>n.bm("parent","hidden"));if(!fe||Mn(document.body,o.value))return;let s=0,r=!1,l="0";const f=()=>{setTimeout(()=>{typeof document>"u"||r&&document&&(document.body.style.width=l,Vs(document.body,o.value))},200)};G(e,i=>{if(!i){f();return}r=!Mn(document.body,o.value),r&&(l=document.body.style.width,Ys(document.body,o.value)),s=Ir(n.namespace.value);const c=document.documentElement.clientHeight0&&(c||g==="scroll")&&r&&(document.body.style.width=`calc(100% - ${s}px)`)}),As(()=>f())},Mi=(e,t)=>{var n;const s=go().emit,{nextZIndex:r}=vo();let l="";const f=Dt(),i=Dt(),c=F(!1),g=F(!1),m=F(!1),y=F((n=e.zIndex)!=null?n:r());let v,d;const u=Ps("namespace",Rs),h=P(()=>{const W={},q=`--${u.value}-dialog`;return e.fullscreen||(e.top&&(W[`${q}-margin-top`]=e.top),e.width&&(W[`${q}-width`]=ze(e.width))),W}),p=P(()=>e.alignCenter?{display:"flex"}:{});function w(){s("opened")}function b(){s("closed"),s(To,!1),e.destroyOnClose&&(m.value=!1)}function E(){s("close")}function T(){d==null||d(),v==null||v(),e.openDelay&&e.openDelay>0?{stop:v}=On(()=>D(),e.openDelay):D()}function C(){v==null||v(),d==null||d(),e.closeDelay&&e.closeDelay>0?{stop:d}=On(()=>M(),e.closeDelay):M()}function S(){function W(q){q||(g.value=!0,c.value=!1)}e.beforeClose?e.beforeClose(W):C()}function L(){e.closeOnClickModal&&S()}function D(){fe&&(c.value=!0)}function M(){c.value=!1}function $(){s("openAutoFocus")}function x(){s("closeAutoFocus")}function j(W){var q;((q=W.detail)==null?void 0:q.focusReason)==="pointer"&&W.preventDefault()}e.lockScroll&&Fi(c);function X(){e.closeOnPressEscape&&S()}return G(()=>e.modelValue,W=>{W?(g.value=!1,T(),m.value=!0,y.value=So(e.zIndex)?r():y.value++,et(()=>{s("open"),t.value&&(t.value.parentElement.scrollTop=0,t.value.parentElement.scrollLeft=0,t.value.scrollTop=0)})):c.value&&C()}),G(()=>e.fullscreen,W=>{t.value&&(W?(l=t.value.style.transform,t.value.style.transform=""):t.value.style.transform=l)}),ve(()=>{e.modelValue&&(c.value=!0,m.value=!0,T())}),{afterEnter:w,afterLeave:b,beforeLeave:E,handleClose:S,onModalClick:L,close:C,doClose:M,onOpenAutoFocus:$,onCloseAutoFocus:x,onCloseRequested:X,onFocusoutPrevented:j,titleId:f,bodyId:i,closed:g,style:h,overlayDialogStyle:p,rendered:m,visible:c,zIndex:y}},Ni=N({name:"ElDialog",inheritAttrs:!1}),Ii=N({...Ni,props:Li,emits:Bi,setup(e,{expose:t}){const n=e,o=$s();Xs({scope:"el-dialog",from:"the title slot",replacement:"the header slot",version:"3.0.0",ref:"https://element-plus.org/en-US/component/dialog.html#slots"},P(()=>!!o.title));const s=Q("dialog"),r=F(),l=F(),f=F(),{visible:i,titleId:c,bodyId:g,style:m,overlayDialogStyle:y,rendered:v,zIndex:d,afterEnter:u,afterLeave:h,beforeLeave:p,handleClose:w,onModalClick:b,onOpenAutoFocus:E,onCloseAutoFocus:T,onCloseRequested:C,onFocusoutPrevented:S}=Mi(n,r);be(Zo,{dialogRef:r,headerRef:l,bodyId:g,ns:s,rendered:v,style:m});const L=Jo(b),D=P(()=>n.draggable&&!n.fullscreen);return t({visible:i,dialogContentRef:f,resetPosition:()=>{var $;($=f.value)==null||$.resetPosition()}}),($,x)=>(R(),K(a(Go),{to:$.appendTo,disabled:$.appendTo!=="body"?!1:!$.appendToBody},{default:_(()=>[A(Kt,{name:"dialog-fade",onAfterEnter:a(u),onAfterLeave:a(h),onBeforeLeave:a(p),persisted:""},{default:_(()=>[_t(A(a(Si),{"custom-mask-event":"",mask:$.modal,"overlay-class":$.modalClass,"z-index":a(d)},{default:_(()=>[z("div",{role:"dialog","aria-modal":"true","aria-label":$.title||void 0,"aria-labelledby":$.title?void 0:a(c),"aria-describedby":a(g),class:B(`${a(s).namespace.value}-overlay-dialog`),style:te(a(y)),onClick:a(L).onClick,onMousedown:a(L).onMousedown,onMouseup:a(L).onMouseup},[A(a(Fo),{loop:"",trapped:a(i),"focus-start-el":"container",onFocusAfterTrapped:a(E),onFocusAfterReleased:a(T),onFocusoutPrevented:a(S),onReleaseRequested:a(C)},{default:_(()=>[a(v)?(R(),K(ki,Le({key:0,ref_key:"dialogContentRef",ref:f},$.$attrs,{center:$.center,"align-center":$.alignCenter,"close-icon":$.closeIcon,draggable:a(D),overflow:$.overflow,fullscreen:$.fullscreen,"header-class":$.headerClass,"body-class":$.bodyClass,"footer-class":$.footerClass,"show-close":$.showClose,title:$.title,"aria-level":$.headerAriaLevel,onClose:a(w)}),Mt({header:_(()=>[$.$slots.title?I($.$slots,"title",{key:1}):I($.$slots,"header",{key:0,close:a(w),titleId:a(c),titleClass:a(s).e("title")})]),default:_(()=>[I($.$slots,"default")]),_:2},[$.$slots.footer?{name:"footer",fn:_(()=>[I($.$slots,"footer")])}:void 0]),1040,["center","align-center","close-icon","draggable","overflow","fullscreen","header-class","body-class","footer-class","show-close","title","aria-level","onClose"])):H("v-if",!0)]),_:3},8,["trapped","onFocusAfterTrapped","onFocusAfterReleased","onFocusoutPrevented","onReleaseRequested"])],46,["aria-label","aria-labelledby","aria-describedby","onClick","onMousedown","onMouseup"])]),_:3},8,["mask","overlay-class","z-index"]),[[Ut,a(i)]])]),_:3},8,["onAfterEnter","onAfterLeave","onBeforeLeave"])]),_:3},8,["to","disabled"]))}});var Di=V(Ii,[["__file","dialog.vue"]]);const xi=ce(Di),ji=Y({direction:{type:String,values:["horizontal","vertical"],default:"horizontal"},contentPosition:{type:String,values:["left","center","right"],default:"center"},borderStyle:{type:k(String),default:"solid"}}),zi=N({name:"ElDivider"}),Hi=N({...zi,props:ji,setup(e){const t=e,n=Q("divider"),o=P(()=>n.cssVar({"border-style":t.borderStyle}));return(s,r)=>(R(),U("div",{class:B([a(n).b(),a(n).m(s.direction)]),style:te(a(o)),role:"separator"},[s.$slots.default&&s.direction!=="vertical"?(R(),U("div",{key:0,class:B([a(n).e("text"),a(n).is(s.contentPosition)])},[I(s.$slots,"default")],2)):H("v-if",!0)],6))}});var Ui=V(Hi,[["__file","divider.vue"]]);const Ki=ce(Ui),Wi=Y({type:{type:String,values:["primary","success","warning","info","danger","default"],default:"default"},underline:{type:Boolean,default:!0},disabled:Boolean,href:{type:String,default:""},target:{type:String,default:"_self"},icon:{type:Jt}}),qi={click:e=>e instanceof MouseEvent},Yi=N({name:"ElLink"}),Gi=N({...Yi,props:Wi,emits:qi,setup(e,{emit:t}){const n=e,o=Q("link"),s=P(()=>[o.b(),o.m(n.type),o.is("disabled",n.disabled),o.is("underline",n.underline&&!n.disabled)]);function r(l){n.disabled||t("click",l)}return(l,f)=>(R(),U("a",{class:B(a(s)),href:l.disabled||!l.href?void 0:l.href,target:l.disabled||!l.href?void 0:l.target,onClick:r},[l.icon?(R(),K(a(de),{key:0},{default:_(()=>[(R(),K(Be(l.icon)))]),_:1})):H("v-if",!0),l.$slots.default?(R(),U("span",{key:1,class:B(a(o).e("inner"))},[I(l.$slots,"default")],2)):H("v-if",!0),l.$slots.icon?I(l.$slots,"icon",{key:2}):H("v-if",!0)],10,["href","target"]))}});var Vi=V(Gi,[["__file","link.vue"]]);const Xi=ce(Vi),Ji=Y({title:String,confirmButtonText:String,cancelButtonText:String,confirmButtonType:{type:String,values:Nn,default:"primary"},cancelButtonType:{type:String,values:Nn,default:"text"},icon:{type:Jt,default:()=>ks},iconColor:{type:String,default:"#f90"},hideIcon:{type:Boolean,default:!1},hideAfter:{type:Number,default:200},teleported:Tt.teleported,persistent:Tt.persistent,width:{type:[String,Number],default:150}}),Zi={confirm:e=>e instanceof MouseEvent,cancel:e=>e instanceof MouseEvent},Qi=N({name:"ElPopconfirm"}),eu=N({...Qi,props:Ji,emits:Zi,setup(e,{emit:t}){const n=e,{t:o}=Gt(),s=Q("popconfirm"),r=F(),l=()=>{var y,v;(v=(y=r.value)==null?void 0:y.onClose)==null||v.call(y)},f=P(()=>({width:ze(n.width)})),i=y=>{t("confirm",y),l()},c=y=>{t("cancel",y),l()},g=P(()=>n.confirmButtonText||o("el.popconfirm.confirmButtonText")),m=P(()=>n.cancelButtonText||o("el.popconfirm.cancelButtonText"));return(y,v)=>(R(),K(a(mi),Le({ref_key:"tooltipRef",ref:r,trigger:"click",effect:"light"},y.$attrs,{"popper-class":`${a(s).namespace.value}-popover`,"popper-style":a(f),teleported:y.teleported,"fallback-placements":["bottom","top","right","left"],"hide-after":y.hideAfter,persistent:y.persistent}),{content:_(()=>[z("div",{class:B(a(s).b())},[z("div",{class:B(a(s).e("main"))},[!y.hideIcon&&y.icon?(R(),K(a(de),{key:0,class:B(a(s).e("icon")),style:te({color:y.iconColor})},{default:_(()=>[(R(),K(Be(y.icon)))]),_:1},8,["class","style"])):H("v-if",!0),ee(" "+ne(y.title),1)],2),z("div",{class:B(a(s).e("action"))},[I(y.$slots,"actions",{confirm:i,cancel:c},()=>[A(a(xt),{size:"small",type:y.cancelButtonType==="text"?"":y.cancelButtonType,text:y.cancelButtonType==="text",onClick:c},{default:_(()=>[ee(ne(a(m)),1)]),_:1},8,["type","text"]),A(a(xt),{size:"small",type:y.confirmButtonType==="text"?"":y.confirmButtonType,text:y.confirmButtonType==="text",onClick:i},{default:_(()=>[ee(ne(a(g)),1)]),_:1},8,["type","text"])])],2)],2)]),default:_(()=>[y.$slots.reference?I(y.$slots,"reference",{key:0}):H("v-if",!0)]),_:3},16,["popper-class","popper-style","teleported","hide-after","persistent"]))}});var tu=V(eu,[["__file","popconfirm.vue"]]);const nu=ce(tu),ou=Y({type:{type:String,default:"line",values:["line","circle","dashboard"]},percentage:{type:Number,default:0,validator:e=>e>=0&&e<=100},status:{type:String,default:"",values:["","success","exception","warning"]},indeterminate:Boolean,duration:{type:Number,default:3},strokeWidth:{type:Number,default:6},strokeLinecap:{type:k(String),default:"round"},textInside:Boolean,width:{type:Number,default:126},showText:{type:Boolean,default:!0},color:{type:k([String,Array,Function]),default:""},striped:Boolean,stripedFlow:Boolean,format:{type:k(Function),default:e=>`${e}%`}}),su=N({name:"ElProgress"}),ru=N({...su,props:ou,setup(e){const t=e,n={success:"#13ce66",exception:"#ff4949",warning:"#e6a23c",default:"#20a0ff"},o=Q("progress"),s=P(()=>{const b={width:`${t.percentage}%`,animationDuration:`${t.duration}s`},E=w(t.percentage);return E.includes("gradient")?b.background=E:b.backgroundColor=E,b}),r=P(()=>(t.strokeWidth/t.width*100).toFixed(1)),l=P(()=>["circle","dashboard"].includes(t.type)?Number.parseInt(`${50-Number.parseFloat(r.value)/2}`,10):0),f=P(()=>{const b=l.value,E=t.type==="dashboard";return` + M 50 50 + m 0 ${E?"":"-"}${b} + a ${b} ${b} 0 1 1 0 ${E?"-":""}${b*2} + a ${b} ${b} 0 1 1 0 ${E?"":"-"}${b*2} + `}),i=P(()=>2*Math.PI*l.value),c=P(()=>t.type==="dashboard"?.75:1),g=P(()=>`${-1*i.value*(1-c.value)/2}px`),m=P(()=>({strokeDasharray:`${i.value*c.value}px, ${i.value}px`,strokeDashoffset:g.value})),y=P(()=>({strokeDasharray:`${i.value*c.value*(t.percentage/100)}px, ${i.value}px`,strokeDashoffset:g.value,transition:"stroke-dasharray 0.6s ease 0s, stroke 0.6s ease, opacity ease 0.6s"})),v=P(()=>{let b;return t.color?b=w(t.percentage):b=n[t.status]||n.default,b}),d=P(()=>t.status==="warning"?Ls:t.type==="line"?t.status==="success"?bo:Bs:t.status==="success"?ho:wo),u=P(()=>t.type==="line"?12+t.strokeWidth*.4:t.width*.111111+2),h=P(()=>t.format(t.percentage));function p(b){const E=100/b.length;return b.map((C,S)=>Ft(C)?{color:C,percentage:(S+1)*E}:C).sort((C,S)=>C.percentage-S.percentage)}const w=b=>{var E;const{color:T}=t;if(Re(T))return T(b);if(Ft(T))return T;{const C=p(T);for(const S of C)if(S.percentage>b)return S.color;return(E=C[C.length-1])==null?void 0:E.color}};return(b,E)=>(R(),U("div",{class:B([a(o).b(),a(o).m(b.type),a(o).is(b.status),{[a(o).m("without-text")]:!b.showText,[a(o).m("text-inside")]:b.textInside}]),role:"progressbar","aria-valuenow":b.percentage,"aria-valuemin":"0","aria-valuemax":"100"},[b.type==="line"?(R(),U("div",{key:0,class:B(a(o).b("bar"))},[z("div",{class:B(a(o).be("bar","outer")),style:te({height:`${b.strokeWidth}px`})},[z("div",{class:B([a(o).be("bar","inner"),{[a(o).bem("bar","inner","indeterminate")]:b.indeterminate},{[a(o).bem("bar","inner","striped")]:b.striped},{[a(o).bem("bar","inner","striped-flow")]:b.stripedFlow}]),style:te(a(s))},[(b.showText||b.$slots.default)&&b.textInside?(R(),U("div",{key:0,class:B(a(o).be("bar","innerText"))},[I(b.$slots,"default",{percentage:b.percentage},()=>[z("span",null,ne(a(h)),1)])],2)):H("v-if",!0)],6)],6)],2)):(R(),U("div",{key:1,class:B(a(o).b("circle")),style:te({height:`${b.width}px`,width:`${b.width}px`})},[(R(),U("svg",{viewBox:"0 0 100 100"},[z("path",{class:B(a(o).be("circle","track")),d:a(f),stroke:`var(${a(o).cssVarName("fill-color-light")}, #e5e9f2)`,"stroke-linecap":b.strokeLinecap,"stroke-width":a(r),fill:"none",style:te(a(m))},null,14,["d","stroke","stroke-linecap","stroke-width"]),z("path",{class:B(a(o).be("circle","path")),d:a(f),stroke:a(v),fill:"none",opacity:b.percentage?1:0,"stroke-linecap":b.strokeLinecap,"stroke-width":a(r),style:te(a(y))},null,14,["d","stroke","opacity","stroke-linecap","stroke-width"])]))],6)),(b.showText||b.$slots.default)&&!b.textInside?(R(),U("div",{key:2,class:B(a(o).e("text")),style:te({fontSize:`${a(u)}px`})},[I(b.$slots,"default",{percentage:b.percentage},()=>[b.status?(R(),K(a(de),{key:1},{default:_(()=>[(R(),K(Be(a(d))))]),_:1})):(R(),U("span",{key:0},ne(a(h)),1))])],6)):H("v-if",!0)],10,["aria-valuenow"]))}});var au=V(ru,[["__file","progress.vue"]]);const lu=ce(au),iu=["start","center","end","space-around","space-between","space-evenly"],uu=["top","middle","bottom"],cu=Y({tag:{type:String,default:"div"},gutter:{type:Number,default:0},justify:{type:String,values:iu,default:"start"},align:{type:String,values:uu}}),du=N({name:"ElRow"}),fu=N({...du,props:cu,setup(e){const t=e,n=Q("row"),o=P(()=>t.gutter);be(Xo,{gutter:o});const s=P(()=>{const l={};return t.gutter&&(l.marginRight=l.marginLeft=`-${t.gutter/2}px`),l}),r=P(()=>[n.b(),n.is(`justify-${t.justify}`,t.justify!=="start"),n.is(`align-${t.align}`,!!t.align)]);return(l,f)=>(R(),K(Be(l.tag),{class:B(a(r)),style:te(a(s))},{default:_(()=>[I(l.$slots,"default")]),_:3},8,["class","style"]))}});var pu=V(fu,[["__file","row.vue"]]);const vu=ce(pu),es=Symbol("uploadContextKey"),mu="ElUpload";class gu extends Error{constructor(t,n,o,s){super(t),this.name="UploadAjaxError",this.status=n,this.method=o,this.url=s}}function io(e,t,n){let o;return n.response?o=`${n.response.error||n.response}`:n.responseText?o=`${n.responseText}`:o=`fail to ${t.method} ${e} ${n.status}`,new gu(o,n.status,t.method,e)}function yu(e){const t=e.responseText||e.response;if(!t)return t;try{return JSON.parse(t)}catch{return t}}const bu=e=>{typeof XMLHttpRequest>"u"&&ot(mu,"XMLHttpRequest is undefined");const t=new XMLHttpRequest,n=e.action;t.upload&&t.upload.addEventListener("progress",r=>{const l=r;l.percent=r.total>0?r.loaded/r.total*100:0,e.onProgress(l)});const o=new FormData;if(e.data)for(const[r,l]of Object.entries(e.data))Yt(l)&&l.length?o.append(r,...l):o.append(r,l);o.append(e.filename,e.file,e.file.name),t.addEventListener("error",()=>{e.onError(io(n,e,t))}),t.addEventListener("load",()=>{if(t.status<200||t.status>=300)return e.onError(io(n,e,t));e.onSuccess(yu(t))}),t.open(e.method,n,!0),e.withCredentials&&"withCredentials"in t&&(t.withCredentials=!0);const s=e.headers||{};if(s instanceof Headers)s.forEach((r,l)=>t.setRequestHeader(l,r));else for(const[r,l]of Object.entries(s))st(l)||t.setRequestHeader(r,String(l));return t.send(o),t},ts=["text","picture","picture-card"];let hu=1;const Ht=()=>Date.now()+hu++,ns=Y({action:{type:String,default:"#"},headers:{type:k(Object)},method:{type:String,default:"post"},data:{type:k([Object,Function,Promise]),default:()=>Ce({})},multiple:Boolean,name:{type:String,default:"file"},drag:Boolean,withCredentials:Boolean,showFileList:{type:Boolean,default:!0},accept:{type:String,default:""},fileList:{type:k(Array),default:()=>Ce([])},autoUpload:{type:Boolean,default:!0},listType:{type:String,values:ts,default:"text"},httpRequest:{type:k(Function),default:bu},disabled:Boolean,limit:Number}),wu=Y({...ns,beforeUpload:{type:k(Function),default:J},beforeRemove:{type:k(Function)},onRemove:{type:k(Function),default:J},onChange:{type:k(Function),default:J},onPreview:{type:k(Function),default:J},onSuccess:{type:k(Function),default:J},onProgress:{type:k(Function),default:J},onError:{type:k(Function),default:J},onExceed:{type:k(Function),default:J},crossorigin:{type:k(String)}}),Eu=Y({files:{type:k(Array),default:()=>Ce([])},disabled:{type:Boolean,default:!1},handlePreview:{type:k(Function),default:J},listType:{type:String,values:ts,default:"text"},crossorigin:{type:k(String)}}),Tu={remove:e=>!!e},_u=N({name:"ElUploadList"}),Cu=N({..._u,props:Eu,emits:Tu,setup(e,{emit:t}){const n=e,{t:o}=Gt(),s=Q("upload"),r=Q("icon"),l=Q("list"),f=Ct(),i=F(!1),c=P(()=>[s.b("list"),s.bm("list",n.listType),s.is("disabled",n.disabled)]),g=m=>{t("remove",m)};return(m,y)=>(R(),K(Is,{tag:"ul",class:B(a(c)),name:a(l).b()},{default:_(()=>[(R(!0),U(xe,null,Nt(m.files,(v,d)=>(R(),U("li",{key:v.uid||v.name,class:B([a(s).be("list","item"),a(s).is(v.status),{focusing:i.value}]),tabindex:"0",onKeydown:Vt(u=>!a(f)&&g(v),["delete"]),onFocus:u=>i.value=!0,onBlur:u=>i.value=!1,onClick:u=>i.value=!1},[I(m.$slots,"default",{file:v,index:d},()=>[m.listType==="picture"||v.status!=="uploading"&&m.listType==="picture-card"?(R(),U("img",{key:0,class:B(a(s).be("list","item-thumbnail")),src:v.url,crossorigin:m.crossorigin,alt:""},null,10,["src","crossorigin"])):H("v-if",!0),v.status==="uploading"||m.listType!=="picture-card"?(R(),U("div",{key:1,class:B(a(s).be("list","item-info"))},[z("a",{class:B(a(s).be("list","item-name")),onClick:je(u=>m.handlePreview(v),["prevent"])},[A(a(de),{class:B(a(r).m("document"))},{default:_(()=>[A(a(Fs))]),_:1},8,["class"]),z("span",{class:B(a(s).be("list","item-file-name")),title:v.name},ne(v.name),11,["title"])],10,["onClick"]),v.status==="uploading"?(R(),K(a(lu),{key:0,type:m.listType==="picture-card"?"circle":"line","stroke-width":m.listType==="picture-card"?6:2,percentage:Number(v.percentage),style:te(m.listType==="picture-card"?"":"margin-top: 0.5rem")},null,8,["type","stroke-width","percentage","style"])):H("v-if",!0)],2)):H("v-if",!0),z("label",{class:B(a(s).be("list","item-status-label"))},[m.listType==="text"?(R(),K(a(de),{key:0,class:B([a(r).m("upload-success"),a(r).m("circle-check")])},{default:_(()=>[A(a(bo))]),_:1},8,["class"])):["picture-card","picture"].includes(m.listType)?(R(),K(a(de),{key:1,class:B([a(r).m("upload-success"),a(r).m("check")])},{default:_(()=>[A(a(ho))]),_:1},8,["class"])):H("v-if",!0)],2),a(f)?H("v-if",!0):(R(),K(a(de),{key:2,class:B(a(r).m("close")),onClick:u=>g(v)},{default:_(()=>[A(a(wo))]),_:2},1032,["class","onClick"])),H(" Due to close btn only appears when li gets focused disappears after li gets blurred, thus keyboard navigation can never reach close btn"),H(" This is a bug which needs to be fixed "),H(" TODO: Fix the incorrect navigation interaction "),a(f)?H("v-if",!0):(R(),U("i",{key:3,class:B(a(r).m("close-tip"))},ne(a(o)("el.upload.deleteTip")),3)),m.listType==="picture-card"?(R(),U("span",{key:4,class:B(a(s).be("list","item-actions"))},[z("span",{class:B(a(s).be("list","item-preview")),onClick:u=>m.handlePreview(v)},[A(a(de),{class:B(a(r).m("zoom-in"))},{default:_(()=>[A(a(Ms))]),_:1},8,["class"])],10,["onClick"]),a(f)?H("v-if",!0):(R(),U("span",{key:0,class:B(a(s).be("list","item-delete")),onClick:u=>g(v)},[A(a(de),{class:B(a(r).m("delete"))},{default:_(()=>[A(a(Ns))]),_:1},8,["class"])],10,["onClick"]))],2)):H("v-if",!0)])],42,["onKeydown","onFocus","onBlur","onClick"]))),128)),I(m.$slots,"append")]),_:3},8,["class","name"]))}});var uo=V(Cu,[["__file","upload-list.vue"]]);const Su=Y({disabled:{type:Boolean,default:!1}}),Ou={file:e=>Yt(e)},os="ElUploadDrag",Au=N({name:os}),Pu=N({...Au,props:Su,emits:Ou,setup(e,{emit:t}){ae(es)||ot(os,"usage: ");const o=Q("upload"),s=F(!1),r=Ct(),l=i=>{if(r.value)return;s.value=!1,i.stopPropagation();const c=Array.from(i.dataTransfer.files);t("file",c)},f=()=>{r.value||(s.value=!0)};return(i,c)=>(R(),U("div",{class:B([a(o).b("dragger"),a(o).is("dragover",s.value)]),onDrop:je(l,["prevent"]),onDragover:je(f,["prevent"]),onDragleave:je(g=>s.value=!1,["prevent"])},[I(i.$slots,"default")],42,["onDrop","onDragover","onDragleave"]))}});var Ru=V(Pu,[["__file","upload-dragger.vue"]]);const $u=Y({...ns,beforeUpload:{type:k(Function),default:J},onRemove:{type:k(Function),default:J},onStart:{type:k(Function),default:J},onSuccess:{type:k(Function),default:J},onProgress:{type:k(Function),default:J},onError:{type:k(Function),default:J},onExceed:{type:k(Function),default:J}}),ku=N({name:"ElUploadContent",inheritAttrs:!1}),Lu=N({...ku,props:$u,setup(e,{expose:t}){const n=e,o=Q("upload"),s=Ct(),r=ht({}),l=ht(),f=u=>{if(u.length===0)return;const{autoUpload:h,limit:p,fileList:w,multiple:b,onStart:E,onExceed:T}=n;if(p&&w.length+u.length>p){T(u,w);return}b||(u=u.slice(0,1));for(const C of u){const S=C;S.uid=Ht(),E(S),h&&i(S)}},i=async u=>{if(l.value.value="",!n.beforeUpload)return g(u);let h,p={};try{const b=n.data,E=n.beforeUpload(u);p=An(n.data)?In(n.data):n.data,h=await E,An(n.data)&&Nr(b,p)&&(p=In(n.data))}catch{h=!1}if(h===!1){n.onRemove(u);return}let w=u;h instanceof Blob&&(h instanceof File?w=h:w=new File([h],u.name,{type:u.type})),g(Object.assign(w,{uid:u.uid}),p)},c=async(u,h)=>Re(u)?u(h):u,g=async(u,h)=>{const{headers:p,data:w,method:b,withCredentials:E,name:T,action:C,onProgress:S,onSuccess:L,onError:D,httpRequest:M}=n;try{h=await c(h??w,u)}catch{n.onRemove(u);return}const{uid:$}=u,x={headers:p||{},withCredentials:E,file:u,data:h,method:b,filename:T,action:C,onProgress:X=>{S(X,u)},onSuccess:X=>{L(X,u),delete r.value[$]},onError:X=>{D(X,u),delete r.value[$]}},j=M(x);r.value[$]=j,j instanceof Promise&&j.then(x.onSuccess,x.onError)},m=u=>{const h=u.target.files;h&&f(Array.from(h))},y=()=>{s.value||(l.value.value="",l.value.click())},v=()=>{y()};return t({abort:u=>{Ds(r.value).filter(u?([p])=>String(u.uid)===p:()=>!0).forEach(([p,w])=>{w instanceof XMLHttpRequest&&w.abort(),delete r.value[p]})},upload:i}),(u,h)=>(R(),U("div",{class:B([a(o).b(),a(o).m(u.listType),a(o).is("drag",u.drag),a(o).is("disabled",a(s))]),tabindex:a(s)?"-1":"0",onClick:y,onKeydown:Vt(je(v,["self"]),["enter","space"])},[u.drag?(R(),K(Ru,{key:0,disabled:a(s),onFile:f},{default:_(()=>[I(u.$slots,"default")]),_:3},8,["disabled"])):I(u.$slots,"default",{key:1}),z("input",{ref_key:"inputRef",ref:l,class:B(a(o).e("input")),name:u.name,disabled:a(s),multiple:u.multiple,accept:u.accept,type:"file",onChange:m,onClick:je(()=>{},["stop"])},null,42,["name","disabled","multiple","accept","onClick"])],42,["tabindex","onKeydown"]))}});var co=V(Lu,[["__file","upload-content.vue"]]);const fo="ElUpload",po=e=>{var t;(t=e.url)!=null&&t.startsWith("blob:")&&URL.revokeObjectURL(e.url)},Bu=(e,t)=>{const n=Js(e,"fileList",void 0,{passive:!0}),o=v=>n.value.find(d=>d.uid===v.uid);function s(v){var d;(d=t.value)==null||d.abort(v)}function r(v=["ready","uploading","success","fail"]){n.value=n.value.filter(d=>!v.includes(d.status))}function l(v){n.value=n.value.filter(d=>d.uid!==v.uid)}const f=(v,d)=>{const u=o(d);u&&(console.error(v),u.status="fail",l(u),e.onError(v,u,n.value),e.onChange(u,n.value))},i=(v,d)=>{const u=o(d);u&&(e.onProgress(v,u,n.value),u.status="uploading",u.percentage=Math.round(v.percent))},c=(v,d)=>{const u=o(d);u&&(u.status="success",u.response=v,e.onSuccess(v,u,n.value),e.onChange(u,n.value))},g=v=>{st(v.uid)&&(v.uid=Ht());const d={name:v.name,percentage:0,status:"ready",size:v.size,raw:v,uid:v.uid};if(e.listType==="picture-card"||e.listType==="picture")try{d.url=URL.createObjectURL(v)}catch(u){Zs(fo,u.message),e.onError(u,d,n.value)}n.value=[...n.value,d],e.onChange(d,n.value)},m=async v=>{const d=v instanceof File?o(v):v;d||ot(fo,"file to be removed not found");const u=h=>{s(h),l(h),e.onRemove(h,n.value),po(h)};e.beforeRemove?await e.beforeRemove(d,n.value)!==!1&&u(d):u(d)};function y(){n.value.filter(({status:v})=>v==="ready").forEach(({raw:v})=>{var d;return v&&((d=t.value)==null?void 0:d.upload(v))})}return G(()=>e.listType,v=>{v!=="picture-card"&&v!=="picture"||(n.value=n.value.map(d=>{const{raw:u,url:h}=d;if(!h&&u)try{d.url=URL.createObjectURL(u)}catch(p){e.onError(p,d,n.value)}return d}))}),G(n,v=>{for(const d of v)d.uid||(d.uid=Ht()),d.status||(d.status="success")},{immediate:!0,deep:!0}),{uploadFiles:n,abort:s,clearFiles:r,handleError:f,handleProgress:i,handleStart:g,handleSuccess:c,handleRemove:m,submit:y,revokeFileObjectURL:po}},Fu=N({name:"ElUpload"}),Mu=N({...Fu,props:wu,setup(e,{expose:t}){const n=e,o=Ct(),s=ht(),{abort:r,submit:l,clearFiles:f,uploadFiles:i,handleStart:c,handleError:g,handleRemove:m,handleSuccess:y,handleProgress:v,revokeFileObjectURL:d}=Bu(n,s),u=P(()=>n.listType==="picture-card"),h=P(()=>({...n,fileList:i.value,onStart:c,onProgress:v,onSuccess:y,onError:g,onRemove:m}));return pe(()=>{i.value.forEach(d)}),be(es,{accept:Se(n,"accept")}),t({abort:r,submit:l,clearFiles:f,handleStart:c,handleRemove:m}),(p,w)=>(R(),U("div",null,[a(u)&&p.showFileList?(R(),K(uo,{key:0,disabled:a(o),"list-type":p.listType,files:a(i),crossorigin:p.crossorigin,"handle-preview":p.onPreview,onRemove:a(m)},Mt({append:_(()=>[A(co,Le({ref_key:"uploadRef",ref:s},a(h)),{default:_(()=>[p.$slots.trigger?I(p.$slots,"trigger",{key:0}):H("v-if",!0),!p.$slots.trigger&&p.$slots.default?I(p.$slots,"default",{key:1}):H("v-if",!0)]),_:3},16)]),_:2},[p.$slots.file?{name:"default",fn:_(({file:b,index:E})=>[I(p.$slots,"file",{file:b,index:E})])}:void 0]),1032,["disabled","list-type","files","crossorigin","handle-preview","onRemove"])):H("v-if",!0),!a(u)||a(u)&&!p.showFileList?(R(),K(co,Le({key:1,ref_key:"uploadRef",ref:s},a(h)),{default:_(()=>[p.$slots.trigger?I(p.$slots,"trigger",{key:0}):H("v-if",!0),!p.$slots.trigger&&p.$slots.default?I(p.$slots,"default",{key:1}):H("v-if",!0)]),_:3},16)):H("v-if",!0),p.$slots.trigger?I(p.$slots,"default",{key:2}):H("v-if",!0),I(p.$slots,"tip"),!a(u)&&p.showFileList?(R(),K(uo,{key:3,disabled:a(o),"list-type":p.listType,files:a(i),crossorigin:p.crossorigin,"handle-preview":p.onPreview,onRemove:a(m)},Mt({_:2},[p.$slots.file?{name:"default",fn:_(({file:b,index:E})=>[I(p.$slots,"file",{file:b,index:E})])}:void 0]),1032,["disabled","list-type","files","crossorigin","handle-preview","onRemove"])):H("v-if",!0)]))}});var Nu=V(Mu,[["__file","upload.vue"]]);const Iu=ce(Nu),Du=e=>Ye.post("/note/addNote",e),xu=e=>Ye.post("/note/updateNote",e),ju=e=>Ye.post("/note/delNote",e),zu=e=>Ye.post("/note/getNoteList",e),Hu=e=>Ye.post("/file/getFileList",e),Uu=e=>Ye.post("/file/delFile",e),Ku={style:{display:"flex","justify-content":"space-between"}},Wu={style:{display:"flex","justify-content":"space-between"}},qu={style:{display:"flex","justify-content":"start"}},Yu={style:{width:"80px",height:"80px"},class:"icon","aria-hidden":"true"},Gu=["href"],Vu={style:{"margin-left":"15px"}},Xu={style:{"margin-top":"5px"}},Ju={style:{"margin-top":"5px"}},Zu={style:{display:"flex","justify-content":"space-between"}},Qu={style:{display:"flex","justify-content":"end"}},ec={__name:"Index",setup(e){const t=F([]),n=F(""),o=F([]),s=F({visible:!1,form:{id:"",content:""}}),r=()=>{s.value.form.id="",s.value.form.content="",s.value.visible=!0},l=w=>{s.value.form.id=w.id,s.value.form.content=w.content,s.value.visible=!0},f=w=>{ju({id:w.id}).then(()=>{ct({title:"成功",message:"删除成功",position:"top-right",type:"success"}),g()})},i=()=>{s.value.form.id="",s.value.form.content=""},c=()=>{s.value.form.id?xu({id:s.value.form.id,content:s.value.form.content}).then(()=>{ct({title:"成功",message:"修改成功",position:"top-right",type:"success"}),s.value.visible=!1,s.value.form.id="",s.value.form.content="",g()}):Du({content:s.value.form.content}).then(()=>{ct({title:"成功",message:"保存成功",position:"top-right",type:"success"}),s.value.visible=!1,s.value.form.id="",s.value.form.content="",g()})},g=()=>{zu({searchText:n.value}).then(w=>{o.value=w.data.data})},m=()=>{Hu().then(w=>{t.value=w.data.data})},y=[{type:[".html",".htm"],icon:"icon-HTML"},{type:[".css"],icon:"icon-CSS"},{type:[".mp3"],icon:"icon-MP"},{type:[".csv"],icon:"icon-CSV"},{type:[".json"],icon:"icon-JSON"},{type:[".js"],icon:"icon-JS"},{type:[".jar"],icon:"icon-JAR"},{type:[".pdf"],icon:"icon-PDF"},{type:[".txt"],icon:"icon-TXT"},{type:[".xls",".xlsx"],icon:"icon-XLS"},{type:[".doc",".docx"],icon:"icon-DOC"},{type:[".ppt",".pptx"],icon:"icon-PPT"},{type:[".gif"],icon:"icon-GIF"},{type:[".sql"],icon:"icon-SQL"},{type:[".exe"],icon:"icon-exe"},{type:[".png",".jpg",".jpeg"],icon:"icon-image"},{type:[".zip",".rar",".7z"],icon:"icon-zip"},{type:[".xml"],icon:"icon-xml"},{type:[".log"],icon:"icon-log"}],v=w=>{if(w===0)return"0 B";const b=["B","KB","MB","GB","TB","PB"],E=Math.floor(Math.log(w)/Math.log(1024));return`${(w/Math.pow(1024,E)).toFixed(2)} ${b[E]}`},d=w=>{for(let b=0;b{m()},h=w=>{window.open("/file/downloadFile?id="+w.id)},p=w=>{Uu({id:w.id}).then(b=>{ct({title:"成功",message:"删除成功",position:"top-right",type:"success"}),m()})};return ve(()=>{g(),m()}),(w,b)=>{const E=or,T=Xi,C=xt,S=nr,L=Ki,D=Zr,M=de,$=nu,x=tr,j=wi,X=vu,W=Iu,q=xi;return R(),U(xe,null,[b[12]||(b[12]=z("img",{alt:"",class:"back-img",src:er},null,-1)),A(X,{justify:"center"},{default:_(()=>[A(j,{span:12,style:{padding:"5px"}},{default:_(()=>[A(x,{class:"main-card"},{header:_(()=>[A(E,{size:"large"},{default:_(()=>b[3]||(b[3]=[ee(" 笔记 ")])),_:1})]),default:_(()=>[z("div",Ku,[A(T,{size:"small",type:"primary",underline:!1,plain:"",icon:"Plus",onClick:r},{default:_(()=>b[4]||(b[4]=[ee("新建笔记")])),_:1}),A(S,{size:"small",placeholder:"搜索...",clearable:"",onClear:g,onKeyup:Vt(g,["enter"]),modelValue:a(n),"onUpdate:modelValue":b[0]||(b[0]=O=>yo(n)?n.value=O:null),style:{width:"35%","min-width":"250px"}},{append:_(()=>[A(C,{onClick:g,icon:"Search"})]),_:1},8,["modelValue"])]),A(L,{style:{"margin-top":"20px","margin-bottom":"8px"}}),A(X,null,{default:_(()=>[A(D,{height:"calc(100vh - 190px)",style:{width:"100%"}},{default:_(()=>[(R(!0),U(xe,null,Nt(a(o),O=>(R(),K(j,{class:"note-col"},{default:_(()=>[A(x,null,{footer:_(()=>[z("div",Wu,[z("div",null,[A(E,{type:"info"},{default:_(()=>[A(M,null,{default:_(()=>[A(a(Pn))]),_:1}),ee(" "+ne(O.updateIp),1)]),_:2},1024),A(E,{type:"info",style:{"margin-left":"10px"}},{default:_(()=>[A(M,null,{default:_(()=>[A(a(Rn))]),_:1}),ee(" "+ne(O.updateTime),1)]),_:2},1024)]),z("div",null,[A(C,{size:"small",type:"primary",onClick:Z=>l(O),plain:""},{default:_(()=>b[5]||(b[5]=[ee("修改")])),_:2},1032,["onClick"]),A($,{title:"确认删除吗?",onConfirm:Z=>f(O)},{reference:_(()=>[A(C,{size:"small",type:"danger",plain:""},{default:_(()=>b[6]||(b[6]=[ee("删除")])),_:1})]),_:2},1032,["onConfirm"])])])]),default:_(()=>[A(D,{"max-height":"300px"},{default:_(()=>[A(E,null,{default:_(()=>[ee(ne(O.content),1)]),_:2},1024)]),_:2},1024)]),_:2},1024)]),_:2},1024))),256))]),_:1})]),_:1})]),_:1})]),_:1}),A(j,{span:12,style:{padding:"5px"}},{default:_(()=>[A(x,{class:"main-card"},{header:_(()=>[A(E,{size:"large"},{default:_(()=>b[7]||(b[7]=[ee(" 文件 ")])),_:1})]),default:_(()=>[A(W,{drag:"",action:"/file/upload",multiple:"","on-success":u},{default:_(()=>[A(M,{class:"el-icon--upload"},{default:_(()=>[A(a(xs))]),_:1}),b[8]||(b[8]=z("div",{class:"el-upload__text"},[ee(" 拖动文件到这里 或 "),z("em",null,"点击上传")],-1))]),_:1}),A(L,{style:{"margin-bottom":"8px","margin-top":"10px"}}),A(D,{height:"calc(100vh - 280px)",style:{width:"100%"}},{default:_(()=>[A(X,null,{default:_(()=>[(R(!0),U(xe,null,Nt(a(t),O=>(R(),K(j,{class:"note-col",span:12},{default:_(()=>[A(x,null,{footer:_(()=>[z("div",Zu,[z("div",null,[A(E,{type:"info"},{default:_(()=>[A(M,null,{default:_(()=>[A(a(Rn))]),_:1}),ee(" "+ne(O.uploadTime),1)]),_:2},1024)]),z("div",null,[A(C,{size:"small",type:"primary",onClick:Z=>h(O),plain:""},{default:_(()=>b[9]||(b[9]=[ee("下载")])),_:2},1032,["onClick"]),A($,{title:"确认删除吗?",onConfirm:Z=>p(O)},{reference:_(()=>[A(C,{size:"small",type:"danger",plain:""},{default:_(()=>b[10]||(b[10]=[ee("删除")])),_:1})]),_:2},1032,["onConfirm"])])])]),default:_(()=>[z("div",qu,[z("div",null,[(R(),U("svg",Yu,[z("use",{href:"#"+d(O)},null,8,Gu)]))]),z("div",Vu,[z("div",null,[A(E,{size:"large",tag:"b"},{default:_(()=>[ee(ne(O.fileName),1)]),_:2},1024)]),z("div",Xu,[A(E,{type:"info"},{default:_(()=>[A(M,null,{default:_(()=>[A(a(js))]),_:1}),ee(" "+ne(v(O.fileSize)),1)]),_:2},1024)]),z("div",Ju,[A(E,{type:"info"},{default:_(()=>[A(M,null,{default:_(()=>[A(a(Pn))]),_:1}),ee(" "+ne(O.uploadIp),1)]),_:2},1024)])])])]),_:2},1024)]),_:2},1024))),256))]),_:1})]),_:1})]),_:1})]),_:1})]),_:1}),A(q,{"close-on-click-modal":!1,modelValue:a(s).visible,"onUpdate:modelValue":b[2]||(b[2]=O=>a(s).visible=O),title:"笔记",onClosed:i,draggable:""},{footer:_(()=>[z("div",Qu,[A(C,{type:"primary",plain:"",onClick:c},{default:_(()=>b[11]||(b[11]=[ee("保存")])),_:1})])]),default:_(()=>[A(S,{modelValue:a(s).form.content,"onUpdate:modelValue":b[1]||(b[1]=O=>a(s).form.content=O),type:"textarea",placeholder:"请输入内容",rows:12},null,8,["modelValue"])]),_:1},8,["modelValue"])],64)}}},oc=Qs(ec,[["__scopeId","data-v-bd78cddd"]]);export{oc as default}; diff --git a/dev-assistant-service/src/main/resources/static/assets/Index-DqJ2Od91.css b/dev-assistant-service/src/main/resources/static/assets/Index-DqJ2Od91.css new file mode 100644 index 0000000..f1c543b --- /dev/null +++ b/dev-assistant-service/src/main/resources/static/assets/Index-DqJ2Od91.css @@ -0,0 +1 @@ +:root{--el-popup-modal-bg-color:var(--el-color-black);--el-popup-modal-opacity:.5}.v-modal-enter{animation:v-modal-in var(--el-transition-duration-fast) ease}.v-modal-leave{animation:v-modal-out var(--el-transition-duration-fast) ease forwards}@keyframes v-modal-in{0%{opacity:0}}@keyframes v-modal-out{to{opacity:0}}.v-modal{background:var(--el-popup-modal-bg-color);height:100%;left:0;opacity:var(--el-popup-modal-opacity);position:fixed;top:0;width:100%}.el-popup-parent--hidden{overflow:hidden}.el-dialog{--el-dialog-width:50%;--el-dialog-margin-top:15vh;--el-dialog-bg-color:var(--el-bg-color);--el-dialog-box-shadow:var(--el-box-shadow);--el-dialog-title-font-size:var(--el-font-size-large);--el-dialog-content-font-size:14px;--el-dialog-font-line-height:var(--el-font-line-height-primary);--el-dialog-padding-primary:16px;--el-dialog-border-radius:var(--el-border-radius-base);background:var(--el-dialog-bg-color);border-radius:var(--el-dialog-border-radius);box-shadow:var(--el-dialog-box-shadow);box-sizing:border-box;margin:var(--el-dialog-margin-top,15vh) auto 50px;overflow-wrap:break-word;padding:var(--el-dialog-padding-primary);position:relative;width:var(--el-dialog-width,50%)}.el-dialog:focus{outline:none!important}.el-dialog.is-align-center{margin:auto}.el-dialog.is-fullscreen{--el-dialog-width:100%;--el-dialog-margin-top:0;border-radius:0;height:100%;margin-bottom:0;overflow:auto}.el-dialog__wrapper{bottom:0;left:0;margin:0;overflow:auto;position:fixed;right:0;top:0}.el-dialog.is-draggable .el-dialog__header{cursor:move;-webkit-user-select:none;-moz-user-select:none;user-select:none}.el-dialog__header{padding-bottom:var(--el-dialog-padding-primary)}.el-dialog__header.show-close{padding-right:calc(var(--el-dialog-padding-primary) + var(--el-message-close-size, 16px))}.el-dialog__headerbtn{background:transparent;border:none;cursor:pointer;font-size:var(--el-message-close-size,16px);height:48px;outline:none;padding:0;position:absolute;right:0;top:0;width:48px}.el-dialog__headerbtn .el-dialog__close{color:var(--el-color-info);font-size:inherit}.el-dialog__headerbtn:focus .el-dialog__close,.el-dialog__headerbtn:hover .el-dialog__close{color:var(--el-color-primary)}.el-dialog__title{color:var(--el-text-color-primary);font-size:var(--el-dialog-title-font-size);line-height:var(--el-dialog-font-line-height)}.el-dialog__body{color:var(--el-text-color-regular);font-size:var(--el-dialog-content-font-size)}.el-dialog__footer{box-sizing:border-box;padding-top:var(--el-dialog-padding-primary);text-align:right}.el-dialog--center{text-align:center}.el-dialog--center .el-dialog__body{text-align:initial}.el-dialog--center .el-dialog__footer{text-align:inherit}.el-overlay-dialog{bottom:0;left:0;overflow:auto;position:fixed;right:0;top:0}.dialog-fade-enter-active{animation:modal-fade-in var(--el-transition-duration)}.dialog-fade-enter-active .el-overlay-dialog{animation:dialog-fade-in var(--el-transition-duration)}.dialog-fade-leave-active{animation:modal-fade-out var(--el-transition-duration)}.dialog-fade-leave-active .el-overlay-dialog{animation:dialog-fade-out var(--el-transition-duration)}@keyframes dialog-fade-in{0%{opacity:0;transform:translate3d(0,-20px,0)}to{opacity:1;transform:translateZ(0)}}@keyframes dialog-fade-out{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(0,-20px,0)}}@keyframes modal-fade-in{0%{opacity:0}to{opacity:1}}@keyframes modal-fade-out{0%{opacity:1}to{opacity:0}}.el-overlay{background-color:var(--el-overlay-color-lighter);bottom:0;height:100%;left:0;overflow:auto;position:fixed;right:0;top:0;z-index:2000}.el-overlay .el-overlay-root{height:0}.el-upload{--el-upload-dragger-padding-horizontal:40px;--el-upload-dragger-padding-vertical:10px;align-items:center;cursor:pointer;display:inline-flex;justify-content:center;outline:none}.el-upload.is-disabled{cursor:not-allowed}.el-upload.is-disabled:focus{color:inherit}.el-upload.is-disabled:focus,.el-upload.is-disabled:focus .el-upload-dragger{border-color:var(--el-border-color-darker)}.el-upload.is-disabled .el-upload-dragger{background-color:var(--el-disabled-bg-color);cursor:not-allowed}.el-upload.is-disabled .el-upload-dragger .el-upload__text{color:var(--el-text-color-placeholder)}.el-upload.is-disabled .el-upload-dragger .el-upload__text em{color:var(--el-disabled-text-color)}.el-upload.is-disabled .el-upload-dragger:hover{border-color:var(--el-border-color-darker)}.el-upload__input{display:none}.el-upload__tip{color:var(--el-text-color-regular);font-size:12px;margin-top:7px}.el-upload iframe{filter:alpha(opacity=0);left:0;opacity:0;position:absolute;top:0;z-index:-1}.el-upload--picture-card{--el-upload-picture-card-size:148px;align-items:center;background-color:var(--el-fill-color-lighter);border:1px dashed var(--el-border-color-darker);border-radius:6px;box-sizing:border-box;cursor:pointer;display:inline-flex;height:var(--el-upload-picture-card-size);justify-content:center;vertical-align:top;width:var(--el-upload-picture-card-size)}.el-upload--picture-card>i{color:var(--el-text-color-secondary);font-size:28px}.el-upload--picture-card:hover{border-color:var(--el-color-primary);color:var(--el-color-primary)}.el-upload.is-drag{display:block}.el-upload:focus{color:var(--el-color-primary)}.el-upload:focus,.el-upload:focus .el-upload-dragger{border-color:var(--el-color-primary)}.el-upload-dragger{background-color:var(--el-fill-color-blank);border:1px dashed var(--el-border-color);border-radius:6px;box-sizing:border-box;cursor:pointer;overflow:hidden;padding:var(--el-upload-dragger-padding-horizontal) var(--el-upload-dragger-padding-vertical);position:relative;text-align:center}.el-upload-dragger .el-icon--upload{color:var(--el-text-color-placeholder);font-size:67px;line-height:50px;margin-bottom:16px}.el-upload-dragger+.el-upload__tip{text-align:center}.el-upload-dragger~.el-upload__files{border-top:var(--el-border);margin-top:7px;padding-top:5px}.el-upload-dragger .el-upload__text{color:var(--el-text-color-regular);font-size:14px;text-align:center}.el-upload-dragger .el-upload__text em{color:var(--el-color-primary);font-style:normal}.el-upload-dragger:hover{border-color:var(--el-color-primary)}.el-upload-dragger.is-dragover{background-color:var(--el-color-primary-light-9);border:2px dashed var(--el-color-primary);padding:calc(var(--el-upload-dragger-padding-horizontal) - 1px) calc(var(--el-upload-dragger-padding-vertical) - 1px)}.el-upload-list{list-style:none;margin:10px 0 0;padding:0;position:relative}.el-upload-list__item{border-radius:4px;box-sizing:border-box;color:var(--el-text-color-regular);font-size:14px;margin-bottom:5px;position:relative;transition:all .5s cubic-bezier(.55,0,.1,1);width:100%}.el-upload-list__item .el-progress{position:absolute;top:20px;width:100%}.el-upload-list__item .el-progress__text{position:absolute;right:0;top:-13px}.el-upload-list__item .el-progress-bar{margin-right:0;padding-right:0}.el-upload-list__item .el-icon--upload-success{color:var(--el-color-success)}.el-upload-list__item .el-icon--close{color:var(--el-text-color-regular);cursor:pointer;display:none;opacity:.75;position:absolute;right:5px;top:50%;transform:translateY(-50%);transition:opacity var(--el-transition-duration)}.el-upload-list__item .el-icon--close:hover{color:var(--el-color-primary);opacity:1}.el-upload-list__item .el-icon--close-tip{color:var(--el-color-primary);cursor:pointer;display:none;font-size:12px;font-style:normal;opacity:1;position:absolute;right:5px;top:1px}.el-upload-list__item:hover{background-color:var(--el-fill-color-light)}.el-upload-list__item:hover .el-icon--close{display:inline-flex}.el-upload-list__item:hover .el-progress__text{display:none}.el-upload-list__item .el-upload-list__item-info{display:inline-flex;flex-direction:column;justify-content:center;margin-left:4px;width:calc(100% - 30px)}.el-upload-list__item.is-success .el-upload-list__item-status-label{display:inline-flex}.el-upload-list__item.is-success .el-upload-list__item-name:focus,.el-upload-list__item.is-success .el-upload-list__item-name:hover{color:var(--el-color-primary);cursor:pointer}.el-upload-list__item.is-success:focus:not(:hover) .el-icon--close-tip{display:inline-block}.el-upload-list__item.is-success:active,.el-upload-list__item.is-success:not(.focusing):focus{outline-width:0}.el-upload-list__item.is-success:active .el-icon--close-tip,.el-upload-list__item.is-success:not(.focusing):focus .el-icon--close-tip{display:none}.el-upload-list__item.is-success:focus .el-upload-list__item-status-label,.el-upload-list__item.is-success:hover .el-upload-list__item-status-label{display:none;opacity:0}.el-upload-list__item-name{align-items:center;color:var(--el-text-color-regular);display:inline-flex;font-size:var(--el-font-size-base);padding:0 4px;text-align:center;transition:color var(--el-transition-duration)}.el-upload-list__item-name .el-icon{color:var(--el-text-color-secondary);margin-right:6px}.el-upload-list__item-file-name{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.el-upload-list__item-status-label{align-items:center;display:none;height:100%;justify-content:center;line-height:inherit;position:absolute;right:5px;top:0;transition:opacity var(--el-transition-duration)}.el-upload-list__item-delete{color:var(--el-text-color-regular);display:none;font-size:12px;position:absolute;right:10px;top:0}.el-upload-list__item-delete:hover{color:var(--el-color-primary)}.el-upload-list--picture-card{--el-upload-list-picture-card-size:148px;display:inline-flex;flex-wrap:wrap;margin:0}.el-upload-list--picture-card .el-upload-list__item{background-color:var(--el-fill-color-blank);border:1px solid var(--el-border-color);border-radius:6px;box-sizing:border-box;display:inline-flex;height:var(--el-upload-list-picture-card-size);margin:0 8px 8px 0;overflow:hidden;padding:0;width:var(--el-upload-list-picture-card-size)}.el-upload-list--picture-card .el-upload-list__item .el-icon--check,.el-upload-list--picture-card .el-upload-list__item .el-icon--circle-check{color:#fff}.el-upload-list--picture-card .el-upload-list__item .el-icon--close{display:none}.el-upload-list--picture-card .el-upload-list__item:hover .el-upload-list__item-status-label{display:block;opacity:0}.el-upload-list--picture-card .el-upload-list__item:hover .el-progress__text{display:block}.el-upload-list--picture-card .el-upload-list__item .el-upload-list__item-name{display:none}.el-upload-list--picture-card .el-upload-list__item-thumbnail{height:100%;-o-object-fit:contain;object-fit:contain;width:100%}.el-upload-list--picture-card .el-upload-list__item-status-label{background:var(--el-color-success);height:24px;right:-15px;text-align:center;top:-6px;transform:rotate(45deg);width:40px}.el-upload-list--picture-card .el-upload-list__item-status-label i{font-size:12px;margin-top:11px;transform:rotate(-45deg)}.el-upload-list--picture-card .el-upload-list__item-actions{align-items:center;background-color:var(--el-overlay-color-lighter);color:#fff;cursor:default;display:inline-flex;font-size:20px;height:100%;justify-content:center;left:0;opacity:0;position:absolute;top:0;transition:opacity var(--el-transition-duration);width:100%}.el-upload-list--picture-card .el-upload-list__item-actions span{cursor:pointer;display:none}.el-upload-list--picture-card .el-upload-list__item-actions span+span{margin-left:16px}.el-upload-list--picture-card .el-upload-list__item-actions .el-upload-list__item-delete{color:inherit;font-size:inherit;position:static}.el-upload-list--picture-card .el-upload-list__item-actions:hover{opacity:1}.el-upload-list--picture-card .el-upload-list__item-actions:hover span{display:inline-flex}.el-upload-list--picture-card .el-progress{bottom:auto;left:50%;top:50%;transform:translate(-50%,-50%);width:126px}.el-upload-list--picture-card .el-progress .el-progress__text{top:50%}.el-upload-list--picture .el-upload-list__item{align-items:center;background-color:var(--el-fill-color-blank);border:1px solid var(--el-border-color);border-radius:6px;box-sizing:border-box;display:flex;margin-top:10px;overflow:hidden;padding:10px;z-index:0}.el-upload-list--picture .el-upload-list__item .el-icon--check,.el-upload-list--picture .el-upload-list__item .el-icon--circle-check{color:#fff}.el-upload-list--picture .el-upload-list__item:hover .el-upload-list__item-status-label{display:inline-flex;opacity:0}.el-upload-list--picture .el-upload-list__item:hover .el-progress__text{display:block}.el-upload-list--picture .el-upload-list__item.is-success .el-upload-list__item-name i{display:none}.el-upload-list--picture .el-upload-list__item .el-icon--close{top:5px;transform:translateY(0)}.el-upload-list--picture .el-upload-list__item-thumbnail{align-items:center;background-color:var(--el-color-white);display:inline-flex;height:70px;justify-content:center;-o-object-fit:contain;object-fit:contain;position:relative;width:70px;z-index:1}.el-upload-list--picture .el-upload-list__item-status-label{background:var(--el-color-success);height:26px;position:absolute;right:-17px;text-align:center;top:-7px;transform:rotate(45deg);width:46px}.el-upload-list--picture .el-upload-list__item-status-label i{font-size:12px;margin-top:12px;transform:rotate(-45deg)}.el-upload-list--picture .el-progress{position:relative;top:-7px}.el-upload-cover{cursor:default;height:100%;left:0;overflow:hidden;position:absolute;top:0;width:100%;z-index:10}.el-upload-cover:after{content:"";display:inline-block;height:100%;vertical-align:middle}.el-upload-cover img{display:block;height:100%;width:100%}.el-upload-cover__label{background:var(--el-color-success);height:24px;right:-15px;text-align:center;top:-6px;transform:rotate(45deg);width:40px}.el-upload-cover__label i{color:#fff;font-size:12px;margin-top:11px;transform:rotate(-45deg)}.el-upload-cover__progress{display:inline-block;position:static;vertical-align:middle;width:243px}.el-upload-cover__progress+.el-upload__inner{opacity:0}.el-upload-cover__content{height:100%;left:0;position:absolute;top:0;width:100%}.el-upload-cover__interact{background-color:var(--el-overlay-color-light);bottom:0;height:100%;left:0;position:absolute;text-align:center;width:100%}.el-upload-cover__interact .btn{color:#fff;cursor:pointer;display:inline-block;font-size:14px;margin-top:60px;transition:var(--el-transition-md-fade);vertical-align:middle}.el-upload-cover__interact .btn i{margin-top:0}.el-upload-cover__interact .btn span{opacity:0;transition:opacity .15s linear}.el-upload-cover__interact .btn:not(:first-child){margin-left:35px}.el-upload-cover__interact .btn:hover{transform:translateY(-13px)}.el-upload-cover__interact .btn:hover span{opacity:1}.el-upload-cover__interact .btn i{color:#fff;display:block;font-size:24px;line-height:inherit;margin:0 auto 5px}.el-upload-cover__title{background-color:#fff;bottom:0;color:var(--el-text-color-primary);font-size:14px;font-weight:400;height:36px;left:0;line-height:36px;margin:0;overflow:hidden;padding:0 10px;position:absolute;text-align:left;text-overflow:ellipsis;white-space:nowrap;width:100%}.el-upload-cover+.el-upload__inner{opacity:0;position:relative;z-index:1}.el-progress{align-items:center;display:flex;line-height:1;position:relative}.el-progress__text{color:var(--el-text-color-regular);font-size:14px;line-height:1;margin-left:5px;min-width:50px}.el-progress__text i{display:block;vertical-align:middle}.el-progress--circle,.el-progress--dashboard{display:inline-block}.el-progress--circle .el-progress__text,.el-progress--dashboard .el-progress__text{left:0;margin:0;position:absolute;text-align:center;top:50%;transform:translateY(-50%);width:100%}.el-progress--circle .el-progress__text i,.el-progress--dashboard .el-progress__text i{display:inline-block;vertical-align:middle}.el-progress--without-text .el-progress__text{display:none}.el-progress--without-text .el-progress-bar{display:block;margin-right:0;padding-right:0}.el-progress--text-inside .el-progress-bar{margin-right:0;padding-right:0}.el-progress.is-success .el-progress-bar__inner{background-color:var(--el-color-success)}.el-progress.is-success .el-progress__text{color:var(--el-color-success)}.el-progress.is-warning .el-progress-bar__inner{background-color:var(--el-color-warning)}.el-progress.is-warning .el-progress__text{color:var(--el-color-warning)}.el-progress.is-exception .el-progress-bar__inner{background-color:var(--el-color-danger)}.el-progress.is-exception .el-progress__text{color:var(--el-color-danger)}.el-progress-bar{box-sizing:border-box;flex-grow:1}.el-progress-bar__outer{background-color:var(--el-border-color-lighter);border-radius:100px;height:6px;overflow:hidden;position:relative;vertical-align:middle}.el-progress-bar__inner{background-color:var(--el-color-primary);border-radius:100px;height:100%;left:0;line-height:1;position:absolute;text-align:right;top:0;transition:width .6s ease;white-space:nowrap}.el-progress-bar__inner:after{content:"";display:inline-block;height:100%;vertical-align:middle}.el-progress-bar__inner--indeterminate{animation:indeterminate 3s infinite;transform:translateZ(0)}.el-progress-bar__inner--striped{background-image:linear-gradient(45deg,rgba(0,0,0,.1) 25%,transparent 0,transparent 50%,rgba(0,0,0,.1) 0,rgba(0,0,0,.1) 75%,transparent 0,transparent);background-size:1.25em 1.25em}.el-progress-bar__inner--striped.el-progress-bar__inner--striped-flow{animation:striped-flow 3s linear infinite}.el-progress-bar__innerText{color:#fff;display:inline-block;font-size:12px;margin:0 5px;vertical-align:middle}@keyframes progress{0%{background-position:0 0}to{background-position:32px 0}}@keyframes indeterminate{0%{left:-100%}to{left:100%}}@keyframes striped-flow{0%{background-position:-100%}to{background-position:100%}}.el-row{box-sizing:border-box;display:flex;flex-wrap:wrap;position:relative}.el-row.is-justify-center{justify-content:center}.el-row.is-justify-end{justify-content:flex-end}.el-row.is-justify-space-between{justify-content:space-between}.el-row.is-justify-space-around{justify-content:space-around}.el-row.is-justify-space-evenly{justify-content:space-evenly}.el-row.is-align-top{align-items:flex-start}.el-row.is-align-middle{align-items:center}.el-row.is-align-bottom{align-items:flex-end}[class*=el-col-]{box-sizing:border-box}[class*=el-col-].is-guttered{display:block;min-height:1px}.el-col-0{flex:0 0 0%;max-width:0}.el-col-0,.el-col-0.is-guttered{display:none}.el-col-offset-0{margin-left:0}.el-col-pull-0{position:relative;right:0}.el-col-push-0{left:0;position:relative}.el-col-1{flex:0 0 4.1666666667%;max-width:4.1666666667%}.el-col-1,.el-col-1.is-guttered{display:block}.el-col-offset-1{margin-left:4.1666666667%}.el-col-pull-1{position:relative;right:4.1666666667%}.el-col-push-1{left:4.1666666667%;position:relative}.el-col-2{flex:0 0 8.3333333333%;max-width:8.3333333333%}.el-col-2,.el-col-2.is-guttered{display:block}.el-col-offset-2{margin-left:8.3333333333%}.el-col-pull-2{position:relative;right:8.3333333333%}.el-col-push-2{left:8.3333333333%;position:relative}.el-col-3{flex:0 0 12.5%;max-width:12.5%}.el-col-3,.el-col-3.is-guttered{display:block}.el-col-offset-3{margin-left:12.5%}.el-col-pull-3{position:relative;right:12.5%}.el-col-push-3{left:12.5%;position:relative}.el-col-4{flex:0 0 16.6666666667%;max-width:16.6666666667%}.el-col-4,.el-col-4.is-guttered{display:block}.el-col-offset-4{margin-left:16.6666666667%}.el-col-pull-4{position:relative;right:16.6666666667%}.el-col-push-4{left:16.6666666667%;position:relative}.el-col-5{flex:0 0 20.8333333333%;max-width:20.8333333333%}.el-col-5,.el-col-5.is-guttered{display:block}.el-col-offset-5{margin-left:20.8333333333%}.el-col-pull-5{position:relative;right:20.8333333333%}.el-col-push-5{left:20.8333333333%;position:relative}.el-col-6{flex:0 0 25%;max-width:25%}.el-col-6,.el-col-6.is-guttered{display:block}.el-col-offset-6{margin-left:25%}.el-col-pull-6{position:relative;right:25%}.el-col-push-6{left:25%;position:relative}.el-col-7{flex:0 0 29.1666666667%;max-width:29.1666666667%}.el-col-7,.el-col-7.is-guttered{display:block}.el-col-offset-7{margin-left:29.1666666667%}.el-col-pull-7{position:relative;right:29.1666666667%}.el-col-push-7{left:29.1666666667%;position:relative}.el-col-8{flex:0 0 33.3333333333%;max-width:33.3333333333%}.el-col-8,.el-col-8.is-guttered{display:block}.el-col-offset-8{margin-left:33.3333333333%}.el-col-pull-8{position:relative;right:33.3333333333%}.el-col-push-8{left:33.3333333333%;position:relative}.el-col-9{flex:0 0 37.5%;max-width:37.5%}.el-col-9,.el-col-9.is-guttered{display:block}.el-col-offset-9{margin-left:37.5%}.el-col-pull-9{position:relative;right:37.5%}.el-col-push-9{left:37.5%;position:relative}.el-col-10{flex:0 0 41.6666666667%;max-width:41.6666666667%}.el-col-10,.el-col-10.is-guttered{display:block}.el-col-offset-10{margin-left:41.6666666667%}.el-col-pull-10{position:relative;right:41.6666666667%}.el-col-push-10{left:41.6666666667%;position:relative}.el-col-11{flex:0 0 45.8333333333%;max-width:45.8333333333%}.el-col-11,.el-col-11.is-guttered{display:block}.el-col-offset-11{margin-left:45.8333333333%}.el-col-pull-11{position:relative;right:45.8333333333%}.el-col-push-11{left:45.8333333333%;position:relative}.el-col-12{flex:0 0 50%;max-width:50%}.el-col-12,.el-col-12.is-guttered{display:block}.el-col-offset-12{margin-left:50%}.el-col-pull-12{position:relative;right:50%}.el-col-push-12{left:50%;position:relative}.el-col-13{flex:0 0 54.1666666667%;max-width:54.1666666667%}.el-col-13,.el-col-13.is-guttered{display:block}.el-col-offset-13{margin-left:54.1666666667%}.el-col-pull-13{position:relative;right:54.1666666667%}.el-col-push-13{left:54.1666666667%;position:relative}.el-col-14{flex:0 0 58.3333333333%;max-width:58.3333333333%}.el-col-14,.el-col-14.is-guttered{display:block}.el-col-offset-14{margin-left:58.3333333333%}.el-col-pull-14{position:relative;right:58.3333333333%}.el-col-push-14{left:58.3333333333%;position:relative}.el-col-15{flex:0 0 62.5%;max-width:62.5%}.el-col-15,.el-col-15.is-guttered{display:block}.el-col-offset-15{margin-left:62.5%}.el-col-pull-15{position:relative;right:62.5%}.el-col-push-15{left:62.5%;position:relative}.el-col-16{flex:0 0 66.6666666667%;max-width:66.6666666667%}.el-col-16,.el-col-16.is-guttered{display:block}.el-col-offset-16{margin-left:66.6666666667%}.el-col-pull-16{position:relative;right:66.6666666667%}.el-col-push-16{left:66.6666666667%;position:relative}.el-col-17{flex:0 0 70.8333333333%;max-width:70.8333333333%}.el-col-17,.el-col-17.is-guttered{display:block}.el-col-offset-17{margin-left:70.8333333333%}.el-col-pull-17{position:relative;right:70.8333333333%}.el-col-push-17{left:70.8333333333%;position:relative}.el-col-18{flex:0 0 75%;max-width:75%}.el-col-18,.el-col-18.is-guttered{display:block}.el-col-offset-18{margin-left:75%}.el-col-pull-18{position:relative;right:75%}.el-col-push-18{left:75%;position:relative}.el-col-19{flex:0 0 79.1666666667%;max-width:79.1666666667%}.el-col-19,.el-col-19.is-guttered{display:block}.el-col-offset-19{margin-left:79.1666666667%}.el-col-pull-19{position:relative;right:79.1666666667%}.el-col-push-19{left:79.1666666667%;position:relative}.el-col-20{flex:0 0 83.3333333333%;max-width:83.3333333333%}.el-col-20,.el-col-20.is-guttered{display:block}.el-col-offset-20{margin-left:83.3333333333%}.el-col-pull-20{position:relative;right:83.3333333333%}.el-col-push-20{left:83.3333333333%;position:relative}.el-col-21{flex:0 0 87.5%;max-width:87.5%}.el-col-21,.el-col-21.is-guttered{display:block}.el-col-offset-21{margin-left:87.5%}.el-col-pull-21{position:relative;right:87.5%}.el-col-push-21{left:87.5%;position:relative}.el-col-22{flex:0 0 91.6666666667%;max-width:91.6666666667%}.el-col-22,.el-col-22.is-guttered{display:block}.el-col-offset-22{margin-left:91.6666666667%}.el-col-pull-22{position:relative;right:91.6666666667%}.el-col-push-22{left:91.6666666667%;position:relative}.el-col-23{flex:0 0 95.8333333333%;max-width:95.8333333333%}.el-col-23,.el-col-23.is-guttered{display:block}.el-col-offset-23{margin-left:95.8333333333%}.el-col-pull-23{position:relative;right:95.8333333333%}.el-col-push-23{left:95.8333333333%;position:relative}.el-col-24{flex:0 0 100%;max-width:100%}.el-col-24,.el-col-24.is-guttered{display:block}.el-col-offset-24{margin-left:100%}.el-col-pull-24{position:relative;right:100%}.el-col-push-24{left:100%;position:relative}@media only screen and (max-width:767px){.el-col-xs-0{display:none;flex:0 0 0%;max-width:0}.el-col-xs-0.is-guttered{display:none}.el-col-xs-offset-0{margin-left:0}.el-col-xs-pull-0{position:relative;right:0}.el-col-xs-push-0{left:0;position:relative}.el-col-xs-1{flex:0 0 4.1666666667%;max-width:4.1666666667%}.el-col-xs-1,.el-col-xs-1.is-guttered{display:block}.el-col-xs-offset-1{margin-left:4.1666666667%}.el-col-xs-pull-1{position:relative;right:4.1666666667%}.el-col-xs-push-1{left:4.1666666667%;position:relative}.el-col-xs-2{flex:0 0 8.3333333333%;max-width:8.3333333333%}.el-col-xs-2,.el-col-xs-2.is-guttered{display:block}.el-col-xs-offset-2{margin-left:8.3333333333%}.el-col-xs-pull-2{position:relative;right:8.3333333333%}.el-col-xs-push-2{left:8.3333333333%;position:relative}.el-col-xs-3{flex:0 0 12.5%;max-width:12.5%}.el-col-xs-3,.el-col-xs-3.is-guttered{display:block}.el-col-xs-offset-3{margin-left:12.5%}.el-col-xs-pull-3{position:relative;right:12.5%}.el-col-xs-push-3{left:12.5%;position:relative}.el-col-xs-4{flex:0 0 16.6666666667%;max-width:16.6666666667%}.el-col-xs-4,.el-col-xs-4.is-guttered{display:block}.el-col-xs-offset-4{margin-left:16.6666666667%}.el-col-xs-pull-4{position:relative;right:16.6666666667%}.el-col-xs-push-4{left:16.6666666667%;position:relative}.el-col-xs-5{flex:0 0 20.8333333333%;max-width:20.8333333333%}.el-col-xs-5,.el-col-xs-5.is-guttered{display:block}.el-col-xs-offset-5{margin-left:20.8333333333%}.el-col-xs-pull-5{position:relative;right:20.8333333333%}.el-col-xs-push-5{left:20.8333333333%;position:relative}.el-col-xs-6{flex:0 0 25%;max-width:25%}.el-col-xs-6,.el-col-xs-6.is-guttered{display:block}.el-col-xs-offset-6{margin-left:25%}.el-col-xs-pull-6{position:relative;right:25%}.el-col-xs-push-6{left:25%;position:relative}.el-col-xs-7{flex:0 0 29.1666666667%;max-width:29.1666666667%}.el-col-xs-7,.el-col-xs-7.is-guttered{display:block}.el-col-xs-offset-7{margin-left:29.1666666667%}.el-col-xs-pull-7{position:relative;right:29.1666666667%}.el-col-xs-push-7{left:29.1666666667%;position:relative}.el-col-xs-8{flex:0 0 33.3333333333%;max-width:33.3333333333%}.el-col-xs-8,.el-col-xs-8.is-guttered{display:block}.el-col-xs-offset-8{margin-left:33.3333333333%}.el-col-xs-pull-8{position:relative;right:33.3333333333%}.el-col-xs-push-8{left:33.3333333333%;position:relative}.el-col-xs-9{flex:0 0 37.5%;max-width:37.5%}.el-col-xs-9,.el-col-xs-9.is-guttered{display:block}.el-col-xs-offset-9{margin-left:37.5%}.el-col-xs-pull-9{position:relative;right:37.5%}.el-col-xs-push-9{left:37.5%;position:relative}.el-col-xs-10{display:block;flex:0 0 41.6666666667%;max-width:41.6666666667%}.el-col-xs-10.is-guttered{display:block}.el-col-xs-offset-10{margin-left:41.6666666667%}.el-col-xs-pull-10{position:relative;right:41.6666666667%}.el-col-xs-push-10{left:41.6666666667%;position:relative}.el-col-xs-11{display:block;flex:0 0 45.8333333333%;max-width:45.8333333333%}.el-col-xs-11.is-guttered{display:block}.el-col-xs-offset-11{margin-left:45.8333333333%}.el-col-xs-pull-11{position:relative;right:45.8333333333%}.el-col-xs-push-11{left:45.8333333333%;position:relative}.el-col-xs-12{display:block;flex:0 0 50%;max-width:50%}.el-col-xs-12.is-guttered{display:block}.el-col-xs-offset-12{margin-left:50%}.el-col-xs-pull-12{position:relative;right:50%}.el-col-xs-push-12{left:50%;position:relative}.el-col-xs-13{display:block;flex:0 0 54.1666666667%;max-width:54.1666666667%}.el-col-xs-13.is-guttered{display:block}.el-col-xs-offset-13{margin-left:54.1666666667%}.el-col-xs-pull-13{position:relative;right:54.1666666667%}.el-col-xs-push-13{left:54.1666666667%;position:relative}.el-col-xs-14{display:block;flex:0 0 58.3333333333%;max-width:58.3333333333%}.el-col-xs-14.is-guttered{display:block}.el-col-xs-offset-14{margin-left:58.3333333333%}.el-col-xs-pull-14{position:relative;right:58.3333333333%}.el-col-xs-push-14{left:58.3333333333%;position:relative}.el-col-xs-15{display:block;flex:0 0 62.5%;max-width:62.5%}.el-col-xs-15.is-guttered{display:block}.el-col-xs-offset-15{margin-left:62.5%}.el-col-xs-pull-15{position:relative;right:62.5%}.el-col-xs-push-15{left:62.5%;position:relative}.el-col-xs-16{display:block;flex:0 0 66.6666666667%;max-width:66.6666666667%}.el-col-xs-16.is-guttered{display:block}.el-col-xs-offset-16{margin-left:66.6666666667%}.el-col-xs-pull-16{position:relative;right:66.6666666667%}.el-col-xs-push-16{left:66.6666666667%;position:relative}.el-col-xs-17{display:block;flex:0 0 70.8333333333%;max-width:70.8333333333%}.el-col-xs-17.is-guttered{display:block}.el-col-xs-offset-17{margin-left:70.8333333333%}.el-col-xs-pull-17{position:relative;right:70.8333333333%}.el-col-xs-push-17{left:70.8333333333%;position:relative}.el-col-xs-18{display:block;flex:0 0 75%;max-width:75%}.el-col-xs-18.is-guttered{display:block}.el-col-xs-offset-18{margin-left:75%}.el-col-xs-pull-18{position:relative;right:75%}.el-col-xs-push-18{left:75%;position:relative}.el-col-xs-19{display:block;flex:0 0 79.1666666667%;max-width:79.1666666667%}.el-col-xs-19.is-guttered{display:block}.el-col-xs-offset-19{margin-left:79.1666666667%}.el-col-xs-pull-19{position:relative;right:79.1666666667%}.el-col-xs-push-19{left:79.1666666667%;position:relative}.el-col-xs-20{display:block;flex:0 0 83.3333333333%;max-width:83.3333333333%}.el-col-xs-20.is-guttered{display:block}.el-col-xs-offset-20{margin-left:83.3333333333%}.el-col-xs-pull-20{position:relative;right:83.3333333333%}.el-col-xs-push-20{left:83.3333333333%;position:relative}.el-col-xs-21{display:block;flex:0 0 87.5%;max-width:87.5%}.el-col-xs-21.is-guttered{display:block}.el-col-xs-offset-21{margin-left:87.5%}.el-col-xs-pull-21{position:relative;right:87.5%}.el-col-xs-push-21{left:87.5%;position:relative}.el-col-xs-22{display:block;flex:0 0 91.6666666667%;max-width:91.6666666667%}.el-col-xs-22.is-guttered{display:block}.el-col-xs-offset-22{margin-left:91.6666666667%}.el-col-xs-pull-22{position:relative;right:91.6666666667%}.el-col-xs-push-22{left:91.6666666667%;position:relative}.el-col-xs-23{display:block;flex:0 0 95.8333333333%;max-width:95.8333333333%}.el-col-xs-23.is-guttered{display:block}.el-col-xs-offset-23{margin-left:95.8333333333%}.el-col-xs-pull-23{position:relative;right:95.8333333333%}.el-col-xs-push-23{left:95.8333333333%;position:relative}.el-col-xs-24{display:block;flex:0 0 100%;max-width:100%}.el-col-xs-24.is-guttered{display:block}.el-col-xs-offset-24{margin-left:100%}.el-col-xs-pull-24{position:relative;right:100%}.el-col-xs-push-24{left:100%;position:relative}}@media only screen and (min-width:768px){.el-col-sm-0{display:none;flex:0 0 0%;max-width:0}.el-col-sm-0.is-guttered{display:none}.el-col-sm-offset-0{margin-left:0}.el-col-sm-pull-0{position:relative;right:0}.el-col-sm-push-0{left:0;position:relative}.el-col-sm-1{flex:0 0 4.1666666667%;max-width:4.1666666667%}.el-col-sm-1,.el-col-sm-1.is-guttered{display:block}.el-col-sm-offset-1{margin-left:4.1666666667%}.el-col-sm-pull-1{position:relative;right:4.1666666667%}.el-col-sm-push-1{left:4.1666666667%;position:relative}.el-col-sm-2{flex:0 0 8.3333333333%;max-width:8.3333333333%}.el-col-sm-2,.el-col-sm-2.is-guttered{display:block}.el-col-sm-offset-2{margin-left:8.3333333333%}.el-col-sm-pull-2{position:relative;right:8.3333333333%}.el-col-sm-push-2{left:8.3333333333%;position:relative}.el-col-sm-3{flex:0 0 12.5%;max-width:12.5%}.el-col-sm-3,.el-col-sm-3.is-guttered{display:block}.el-col-sm-offset-3{margin-left:12.5%}.el-col-sm-pull-3{position:relative;right:12.5%}.el-col-sm-push-3{left:12.5%;position:relative}.el-col-sm-4{flex:0 0 16.6666666667%;max-width:16.6666666667%}.el-col-sm-4,.el-col-sm-4.is-guttered{display:block}.el-col-sm-offset-4{margin-left:16.6666666667%}.el-col-sm-pull-4{position:relative;right:16.6666666667%}.el-col-sm-push-4{left:16.6666666667%;position:relative}.el-col-sm-5{flex:0 0 20.8333333333%;max-width:20.8333333333%}.el-col-sm-5,.el-col-sm-5.is-guttered{display:block}.el-col-sm-offset-5{margin-left:20.8333333333%}.el-col-sm-pull-5{position:relative;right:20.8333333333%}.el-col-sm-push-5{left:20.8333333333%;position:relative}.el-col-sm-6{flex:0 0 25%;max-width:25%}.el-col-sm-6,.el-col-sm-6.is-guttered{display:block}.el-col-sm-offset-6{margin-left:25%}.el-col-sm-pull-6{position:relative;right:25%}.el-col-sm-push-6{left:25%;position:relative}.el-col-sm-7{flex:0 0 29.1666666667%;max-width:29.1666666667%}.el-col-sm-7,.el-col-sm-7.is-guttered{display:block}.el-col-sm-offset-7{margin-left:29.1666666667%}.el-col-sm-pull-7{position:relative;right:29.1666666667%}.el-col-sm-push-7{left:29.1666666667%;position:relative}.el-col-sm-8{flex:0 0 33.3333333333%;max-width:33.3333333333%}.el-col-sm-8,.el-col-sm-8.is-guttered{display:block}.el-col-sm-offset-8{margin-left:33.3333333333%}.el-col-sm-pull-8{position:relative;right:33.3333333333%}.el-col-sm-push-8{left:33.3333333333%;position:relative}.el-col-sm-9{flex:0 0 37.5%;max-width:37.5%}.el-col-sm-9,.el-col-sm-9.is-guttered{display:block}.el-col-sm-offset-9{margin-left:37.5%}.el-col-sm-pull-9{position:relative;right:37.5%}.el-col-sm-push-9{left:37.5%;position:relative}.el-col-sm-10{display:block;flex:0 0 41.6666666667%;max-width:41.6666666667%}.el-col-sm-10.is-guttered{display:block}.el-col-sm-offset-10{margin-left:41.6666666667%}.el-col-sm-pull-10{position:relative;right:41.6666666667%}.el-col-sm-push-10{left:41.6666666667%;position:relative}.el-col-sm-11{display:block;flex:0 0 45.8333333333%;max-width:45.8333333333%}.el-col-sm-11.is-guttered{display:block}.el-col-sm-offset-11{margin-left:45.8333333333%}.el-col-sm-pull-11{position:relative;right:45.8333333333%}.el-col-sm-push-11{left:45.8333333333%;position:relative}.el-col-sm-12{display:block;flex:0 0 50%;max-width:50%}.el-col-sm-12.is-guttered{display:block}.el-col-sm-offset-12{margin-left:50%}.el-col-sm-pull-12{position:relative;right:50%}.el-col-sm-push-12{left:50%;position:relative}.el-col-sm-13{display:block;flex:0 0 54.1666666667%;max-width:54.1666666667%}.el-col-sm-13.is-guttered{display:block}.el-col-sm-offset-13{margin-left:54.1666666667%}.el-col-sm-pull-13{position:relative;right:54.1666666667%}.el-col-sm-push-13{left:54.1666666667%;position:relative}.el-col-sm-14{display:block;flex:0 0 58.3333333333%;max-width:58.3333333333%}.el-col-sm-14.is-guttered{display:block}.el-col-sm-offset-14{margin-left:58.3333333333%}.el-col-sm-pull-14{position:relative;right:58.3333333333%}.el-col-sm-push-14{left:58.3333333333%;position:relative}.el-col-sm-15{display:block;flex:0 0 62.5%;max-width:62.5%}.el-col-sm-15.is-guttered{display:block}.el-col-sm-offset-15{margin-left:62.5%}.el-col-sm-pull-15{position:relative;right:62.5%}.el-col-sm-push-15{left:62.5%;position:relative}.el-col-sm-16{display:block;flex:0 0 66.6666666667%;max-width:66.6666666667%}.el-col-sm-16.is-guttered{display:block}.el-col-sm-offset-16{margin-left:66.6666666667%}.el-col-sm-pull-16{position:relative;right:66.6666666667%}.el-col-sm-push-16{left:66.6666666667%;position:relative}.el-col-sm-17{display:block;flex:0 0 70.8333333333%;max-width:70.8333333333%}.el-col-sm-17.is-guttered{display:block}.el-col-sm-offset-17{margin-left:70.8333333333%}.el-col-sm-pull-17{position:relative;right:70.8333333333%}.el-col-sm-push-17{left:70.8333333333%;position:relative}.el-col-sm-18{display:block;flex:0 0 75%;max-width:75%}.el-col-sm-18.is-guttered{display:block}.el-col-sm-offset-18{margin-left:75%}.el-col-sm-pull-18{position:relative;right:75%}.el-col-sm-push-18{left:75%;position:relative}.el-col-sm-19{display:block;flex:0 0 79.1666666667%;max-width:79.1666666667%}.el-col-sm-19.is-guttered{display:block}.el-col-sm-offset-19{margin-left:79.1666666667%}.el-col-sm-pull-19{position:relative;right:79.1666666667%}.el-col-sm-push-19{left:79.1666666667%;position:relative}.el-col-sm-20{display:block;flex:0 0 83.3333333333%;max-width:83.3333333333%}.el-col-sm-20.is-guttered{display:block}.el-col-sm-offset-20{margin-left:83.3333333333%}.el-col-sm-pull-20{position:relative;right:83.3333333333%}.el-col-sm-push-20{left:83.3333333333%;position:relative}.el-col-sm-21{display:block;flex:0 0 87.5%;max-width:87.5%}.el-col-sm-21.is-guttered{display:block}.el-col-sm-offset-21{margin-left:87.5%}.el-col-sm-pull-21{position:relative;right:87.5%}.el-col-sm-push-21{left:87.5%;position:relative}.el-col-sm-22{display:block;flex:0 0 91.6666666667%;max-width:91.6666666667%}.el-col-sm-22.is-guttered{display:block}.el-col-sm-offset-22{margin-left:91.6666666667%}.el-col-sm-pull-22{position:relative;right:91.6666666667%}.el-col-sm-push-22{left:91.6666666667%;position:relative}.el-col-sm-23{display:block;flex:0 0 95.8333333333%;max-width:95.8333333333%}.el-col-sm-23.is-guttered{display:block}.el-col-sm-offset-23{margin-left:95.8333333333%}.el-col-sm-pull-23{position:relative;right:95.8333333333%}.el-col-sm-push-23{left:95.8333333333%;position:relative}.el-col-sm-24{display:block;flex:0 0 100%;max-width:100%}.el-col-sm-24.is-guttered{display:block}.el-col-sm-offset-24{margin-left:100%}.el-col-sm-pull-24{position:relative;right:100%}.el-col-sm-push-24{left:100%;position:relative}}@media only screen and (min-width:992px){.el-col-md-0{display:none;flex:0 0 0%;max-width:0}.el-col-md-0.is-guttered{display:none}.el-col-md-offset-0{margin-left:0}.el-col-md-pull-0{position:relative;right:0}.el-col-md-push-0{left:0;position:relative}.el-col-md-1{flex:0 0 4.1666666667%;max-width:4.1666666667%}.el-col-md-1,.el-col-md-1.is-guttered{display:block}.el-col-md-offset-1{margin-left:4.1666666667%}.el-col-md-pull-1{position:relative;right:4.1666666667%}.el-col-md-push-1{left:4.1666666667%;position:relative}.el-col-md-2{flex:0 0 8.3333333333%;max-width:8.3333333333%}.el-col-md-2,.el-col-md-2.is-guttered{display:block}.el-col-md-offset-2{margin-left:8.3333333333%}.el-col-md-pull-2{position:relative;right:8.3333333333%}.el-col-md-push-2{left:8.3333333333%;position:relative}.el-col-md-3{flex:0 0 12.5%;max-width:12.5%}.el-col-md-3,.el-col-md-3.is-guttered{display:block}.el-col-md-offset-3{margin-left:12.5%}.el-col-md-pull-3{position:relative;right:12.5%}.el-col-md-push-3{left:12.5%;position:relative}.el-col-md-4{flex:0 0 16.6666666667%;max-width:16.6666666667%}.el-col-md-4,.el-col-md-4.is-guttered{display:block}.el-col-md-offset-4{margin-left:16.6666666667%}.el-col-md-pull-4{position:relative;right:16.6666666667%}.el-col-md-push-4{left:16.6666666667%;position:relative}.el-col-md-5{flex:0 0 20.8333333333%;max-width:20.8333333333%}.el-col-md-5,.el-col-md-5.is-guttered{display:block}.el-col-md-offset-5{margin-left:20.8333333333%}.el-col-md-pull-5{position:relative;right:20.8333333333%}.el-col-md-push-5{left:20.8333333333%;position:relative}.el-col-md-6{flex:0 0 25%;max-width:25%}.el-col-md-6,.el-col-md-6.is-guttered{display:block}.el-col-md-offset-6{margin-left:25%}.el-col-md-pull-6{position:relative;right:25%}.el-col-md-push-6{left:25%;position:relative}.el-col-md-7{flex:0 0 29.1666666667%;max-width:29.1666666667%}.el-col-md-7,.el-col-md-7.is-guttered{display:block}.el-col-md-offset-7{margin-left:29.1666666667%}.el-col-md-pull-7{position:relative;right:29.1666666667%}.el-col-md-push-7{left:29.1666666667%;position:relative}.el-col-md-8{flex:0 0 33.3333333333%;max-width:33.3333333333%}.el-col-md-8,.el-col-md-8.is-guttered{display:block}.el-col-md-offset-8{margin-left:33.3333333333%}.el-col-md-pull-8{position:relative;right:33.3333333333%}.el-col-md-push-8{left:33.3333333333%;position:relative}.el-col-md-9{flex:0 0 37.5%;max-width:37.5%}.el-col-md-9,.el-col-md-9.is-guttered{display:block}.el-col-md-offset-9{margin-left:37.5%}.el-col-md-pull-9{position:relative;right:37.5%}.el-col-md-push-9{left:37.5%;position:relative}.el-col-md-10{display:block;flex:0 0 41.6666666667%;max-width:41.6666666667%}.el-col-md-10.is-guttered{display:block}.el-col-md-offset-10{margin-left:41.6666666667%}.el-col-md-pull-10{position:relative;right:41.6666666667%}.el-col-md-push-10{left:41.6666666667%;position:relative}.el-col-md-11{display:block;flex:0 0 45.8333333333%;max-width:45.8333333333%}.el-col-md-11.is-guttered{display:block}.el-col-md-offset-11{margin-left:45.8333333333%}.el-col-md-pull-11{position:relative;right:45.8333333333%}.el-col-md-push-11{left:45.8333333333%;position:relative}.el-col-md-12{display:block;flex:0 0 50%;max-width:50%}.el-col-md-12.is-guttered{display:block}.el-col-md-offset-12{margin-left:50%}.el-col-md-pull-12{position:relative;right:50%}.el-col-md-push-12{left:50%;position:relative}.el-col-md-13{display:block;flex:0 0 54.1666666667%;max-width:54.1666666667%}.el-col-md-13.is-guttered{display:block}.el-col-md-offset-13{margin-left:54.1666666667%}.el-col-md-pull-13{position:relative;right:54.1666666667%}.el-col-md-push-13{left:54.1666666667%;position:relative}.el-col-md-14{display:block;flex:0 0 58.3333333333%;max-width:58.3333333333%}.el-col-md-14.is-guttered{display:block}.el-col-md-offset-14{margin-left:58.3333333333%}.el-col-md-pull-14{position:relative;right:58.3333333333%}.el-col-md-push-14{left:58.3333333333%;position:relative}.el-col-md-15{display:block;flex:0 0 62.5%;max-width:62.5%}.el-col-md-15.is-guttered{display:block}.el-col-md-offset-15{margin-left:62.5%}.el-col-md-pull-15{position:relative;right:62.5%}.el-col-md-push-15{left:62.5%;position:relative}.el-col-md-16{display:block;flex:0 0 66.6666666667%;max-width:66.6666666667%}.el-col-md-16.is-guttered{display:block}.el-col-md-offset-16{margin-left:66.6666666667%}.el-col-md-pull-16{position:relative;right:66.6666666667%}.el-col-md-push-16{left:66.6666666667%;position:relative}.el-col-md-17{display:block;flex:0 0 70.8333333333%;max-width:70.8333333333%}.el-col-md-17.is-guttered{display:block}.el-col-md-offset-17{margin-left:70.8333333333%}.el-col-md-pull-17{position:relative;right:70.8333333333%}.el-col-md-push-17{left:70.8333333333%;position:relative}.el-col-md-18{display:block;flex:0 0 75%;max-width:75%}.el-col-md-18.is-guttered{display:block}.el-col-md-offset-18{margin-left:75%}.el-col-md-pull-18{position:relative;right:75%}.el-col-md-push-18{left:75%;position:relative}.el-col-md-19{display:block;flex:0 0 79.1666666667%;max-width:79.1666666667%}.el-col-md-19.is-guttered{display:block}.el-col-md-offset-19{margin-left:79.1666666667%}.el-col-md-pull-19{position:relative;right:79.1666666667%}.el-col-md-push-19{left:79.1666666667%;position:relative}.el-col-md-20{display:block;flex:0 0 83.3333333333%;max-width:83.3333333333%}.el-col-md-20.is-guttered{display:block}.el-col-md-offset-20{margin-left:83.3333333333%}.el-col-md-pull-20{position:relative;right:83.3333333333%}.el-col-md-push-20{left:83.3333333333%;position:relative}.el-col-md-21{display:block;flex:0 0 87.5%;max-width:87.5%}.el-col-md-21.is-guttered{display:block}.el-col-md-offset-21{margin-left:87.5%}.el-col-md-pull-21{position:relative;right:87.5%}.el-col-md-push-21{left:87.5%;position:relative}.el-col-md-22{display:block;flex:0 0 91.6666666667%;max-width:91.6666666667%}.el-col-md-22.is-guttered{display:block}.el-col-md-offset-22{margin-left:91.6666666667%}.el-col-md-pull-22{position:relative;right:91.6666666667%}.el-col-md-push-22{left:91.6666666667%;position:relative}.el-col-md-23{display:block;flex:0 0 95.8333333333%;max-width:95.8333333333%}.el-col-md-23.is-guttered{display:block}.el-col-md-offset-23{margin-left:95.8333333333%}.el-col-md-pull-23{position:relative;right:95.8333333333%}.el-col-md-push-23{left:95.8333333333%;position:relative}.el-col-md-24{display:block;flex:0 0 100%;max-width:100%}.el-col-md-24.is-guttered{display:block}.el-col-md-offset-24{margin-left:100%}.el-col-md-pull-24{position:relative;right:100%}.el-col-md-push-24{left:100%;position:relative}}@media only screen and (min-width:1200px){.el-col-lg-0{display:none;flex:0 0 0%;max-width:0}.el-col-lg-0.is-guttered{display:none}.el-col-lg-offset-0{margin-left:0}.el-col-lg-pull-0{position:relative;right:0}.el-col-lg-push-0{left:0;position:relative}.el-col-lg-1{flex:0 0 4.1666666667%;max-width:4.1666666667%}.el-col-lg-1,.el-col-lg-1.is-guttered{display:block}.el-col-lg-offset-1{margin-left:4.1666666667%}.el-col-lg-pull-1{position:relative;right:4.1666666667%}.el-col-lg-push-1{left:4.1666666667%;position:relative}.el-col-lg-2{flex:0 0 8.3333333333%;max-width:8.3333333333%}.el-col-lg-2,.el-col-lg-2.is-guttered{display:block}.el-col-lg-offset-2{margin-left:8.3333333333%}.el-col-lg-pull-2{position:relative;right:8.3333333333%}.el-col-lg-push-2{left:8.3333333333%;position:relative}.el-col-lg-3{flex:0 0 12.5%;max-width:12.5%}.el-col-lg-3,.el-col-lg-3.is-guttered{display:block}.el-col-lg-offset-3{margin-left:12.5%}.el-col-lg-pull-3{position:relative;right:12.5%}.el-col-lg-push-3{left:12.5%;position:relative}.el-col-lg-4{flex:0 0 16.6666666667%;max-width:16.6666666667%}.el-col-lg-4,.el-col-lg-4.is-guttered{display:block}.el-col-lg-offset-4{margin-left:16.6666666667%}.el-col-lg-pull-4{position:relative;right:16.6666666667%}.el-col-lg-push-4{left:16.6666666667%;position:relative}.el-col-lg-5{flex:0 0 20.8333333333%;max-width:20.8333333333%}.el-col-lg-5,.el-col-lg-5.is-guttered{display:block}.el-col-lg-offset-5{margin-left:20.8333333333%}.el-col-lg-pull-5{position:relative;right:20.8333333333%}.el-col-lg-push-5{left:20.8333333333%;position:relative}.el-col-lg-6{flex:0 0 25%;max-width:25%}.el-col-lg-6,.el-col-lg-6.is-guttered{display:block}.el-col-lg-offset-6{margin-left:25%}.el-col-lg-pull-6{position:relative;right:25%}.el-col-lg-push-6{left:25%;position:relative}.el-col-lg-7{flex:0 0 29.1666666667%;max-width:29.1666666667%}.el-col-lg-7,.el-col-lg-7.is-guttered{display:block}.el-col-lg-offset-7{margin-left:29.1666666667%}.el-col-lg-pull-7{position:relative;right:29.1666666667%}.el-col-lg-push-7{left:29.1666666667%;position:relative}.el-col-lg-8{flex:0 0 33.3333333333%;max-width:33.3333333333%}.el-col-lg-8,.el-col-lg-8.is-guttered{display:block}.el-col-lg-offset-8{margin-left:33.3333333333%}.el-col-lg-pull-8{position:relative;right:33.3333333333%}.el-col-lg-push-8{left:33.3333333333%;position:relative}.el-col-lg-9{flex:0 0 37.5%;max-width:37.5%}.el-col-lg-9,.el-col-lg-9.is-guttered{display:block}.el-col-lg-offset-9{margin-left:37.5%}.el-col-lg-pull-9{position:relative;right:37.5%}.el-col-lg-push-9{left:37.5%;position:relative}.el-col-lg-10{display:block;flex:0 0 41.6666666667%;max-width:41.6666666667%}.el-col-lg-10.is-guttered{display:block}.el-col-lg-offset-10{margin-left:41.6666666667%}.el-col-lg-pull-10{position:relative;right:41.6666666667%}.el-col-lg-push-10{left:41.6666666667%;position:relative}.el-col-lg-11{display:block;flex:0 0 45.8333333333%;max-width:45.8333333333%}.el-col-lg-11.is-guttered{display:block}.el-col-lg-offset-11{margin-left:45.8333333333%}.el-col-lg-pull-11{position:relative;right:45.8333333333%}.el-col-lg-push-11{left:45.8333333333%;position:relative}.el-col-lg-12{display:block;flex:0 0 50%;max-width:50%}.el-col-lg-12.is-guttered{display:block}.el-col-lg-offset-12{margin-left:50%}.el-col-lg-pull-12{position:relative;right:50%}.el-col-lg-push-12{left:50%;position:relative}.el-col-lg-13{display:block;flex:0 0 54.1666666667%;max-width:54.1666666667%}.el-col-lg-13.is-guttered{display:block}.el-col-lg-offset-13{margin-left:54.1666666667%}.el-col-lg-pull-13{position:relative;right:54.1666666667%}.el-col-lg-push-13{left:54.1666666667%;position:relative}.el-col-lg-14{display:block;flex:0 0 58.3333333333%;max-width:58.3333333333%}.el-col-lg-14.is-guttered{display:block}.el-col-lg-offset-14{margin-left:58.3333333333%}.el-col-lg-pull-14{position:relative;right:58.3333333333%}.el-col-lg-push-14{left:58.3333333333%;position:relative}.el-col-lg-15{display:block;flex:0 0 62.5%;max-width:62.5%}.el-col-lg-15.is-guttered{display:block}.el-col-lg-offset-15{margin-left:62.5%}.el-col-lg-pull-15{position:relative;right:62.5%}.el-col-lg-push-15{left:62.5%;position:relative}.el-col-lg-16{display:block;flex:0 0 66.6666666667%;max-width:66.6666666667%}.el-col-lg-16.is-guttered{display:block}.el-col-lg-offset-16{margin-left:66.6666666667%}.el-col-lg-pull-16{position:relative;right:66.6666666667%}.el-col-lg-push-16{left:66.6666666667%;position:relative}.el-col-lg-17{display:block;flex:0 0 70.8333333333%;max-width:70.8333333333%}.el-col-lg-17.is-guttered{display:block}.el-col-lg-offset-17{margin-left:70.8333333333%}.el-col-lg-pull-17{position:relative;right:70.8333333333%}.el-col-lg-push-17{left:70.8333333333%;position:relative}.el-col-lg-18{display:block;flex:0 0 75%;max-width:75%}.el-col-lg-18.is-guttered{display:block}.el-col-lg-offset-18{margin-left:75%}.el-col-lg-pull-18{position:relative;right:75%}.el-col-lg-push-18{left:75%;position:relative}.el-col-lg-19{display:block;flex:0 0 79.1666666667%;max-width:79.1666666667%}.el-col-lg-19.is-guttered{display:block}.el-col-lg-offset-19{margin-left:79.1666666667%}.el-col-lg-pull-19{position:relative;right:79.1666666667%}.el-col-lg-push-19{left:79.1666666667%;position:relative}.el-col-lg-20{display:block;flex:0 0 83.3333333333%;max-width:83.3333333333%}.el-col-lg-20.is-guttered{display:block}.el-col-lg-offset-20{margin-left:83.3333333333%}.el-col-lg-pull-20{position:relative;right:83.3333333333%}.el-col-lg-push-20{left:83.3333333333%;position:relative}.el-col-lg-21{display:block;flex:0 0 87.5%;max-width:87.5%}.el-col-lg-21.is-guttered{display:block}.el-col-lg-offset-21{margin-left:87.5%}.el-col-lg-pull-21{position:relative;right:87.5%}.el-col-lg-push-21{left:87.5%;position:relative}.el-col-lg-22{display:block;flex:0 0 91.6666666667%;max-width:91.6666666667%}.el-col-lg-22.is-guttered{display:block}.el-col-lg-offset-22{margin-left:91.6666666667%}.el-col-lg-pull-22{position:relative;right:91.6666666667%}.el-col-lg-push-22{left:91.6666666667%;position:relative}.el-col-lg-23{display:block;flex:0 0 95.8333333333%;max-width:95.8333333333%}.el-col-lg-23.is-guttered{display:block}.el-col-lg-offset-23{margin-left:95.8333333333%}.el-col-lg-pull-23{position:relative;right:95.8333333333%}.el-col-lg-push-23{left:95.8333333333%;position:relative}.el-col-lg-24{display:block;flex:0 0 100%;max-width:100%}.el-col-lg-24.is-guttered{display:block}.el-col-lg-offset-24{margin-left:100%}.el-col-lg-pull-24{position:relative;right:100%}.el-col-lg-push-24{left:100%;position:relative}}@media only screen and (min-width:1920px){.el-col-xl-0{display:none;flex:0 0 0%;max-width:0}.el-col-xl-0.is-guttered{display:none}.el-col-xl-offset-0{margin-left:0}.el-col-xl-pull-0{position:relative;right:0}.el-col-xl-push-0{left:0;position:relative}.el-col-xl-1{flex:0 0 4.1666666667%;max-width:4.1666666667%}.el-col-xl-1,.el-col-xl-1.is-guttered{display:block}.el-col-xl-offset-1{margin-left:4.1666666667%}.el-col-xl-pull-1{position:relative;right:4.1666666667%}.el-col-xl-push-1{left:4.1666666667%;position:relative}.el-col-xl-2{flex:0 0 8.3333333333%;max-width:8.3333333333%}.el-col-xl-2,.el-col-xl-2.is-guttered{display:block}.el-col-xl-offset-2{margin-left:8.3333333333%}.el-col-xl-pull-2{position:relative;right:8.3333333333%}.el-col-xl-push-2{left:8.3333333333%;position:relative}.el-col-xl-3{flex:0 0 12.5%;max-width:12.5%}.el-col-xl-3,.el-col-xl-3.is-guttered{display:block}.el-col-xl-offset-3{margin-left:12.5%}.el-col-xl-pull-3{position:relative;right:12.5%}.el-col-xl-push-3{left:12.5%;position:relative}.el-col-xl-4{flex:0 0 16.6666666667%;max-width:16.6666666667%}.el-col-xl-4,.el-col-xl-4.is-guttered{display:block}.el-col-xl-offset-4{margin-left:16.6666666667%}.el-col-xl-pull-4{position:relative;right:16.6666666667%}.el-col-xl-push-4{left:16.6666666667%;position:relative}.el-col-xl-5{flex:0 0 20.8333333333%;max-width:20.8333333333%}.el-col-xl-5,.el-col-xl-5.is-guttered{display:block}.el-col-xl-offset-5{margin-left:20.8333333333%}.el-col-xl-pull-5{position:relative;right:20.8333333333%}.el-col-xl-push-5{left:20.8333333333%;position:relative}.el-col-xl-6{flex:0 0 25%;max-width:25%}.el-col-xl-6,.el-col-xl-6.is-guttered{display:block}.el-col-xl-offset-6{margin-left:25%}.el-col-xl-pull-6{position:relative;right:25%}.el-col-xl-push-6{left:25%;position:relative}.el-col-xl-7{flex:0 0 29.1666666667%;max-width:29.1666666667%}.el-col-xl-7,.el-col-xl-7.is-guttered{display:block}.el-col-xl-offset-7{margin-left:29.1666666667%}.el-col-xl-pull-7{position:relative;right:29.1666666667%}.el-col-xl-push-7{left:29.1666666667%;position:relative}.el-col-xl-8{flex:0 0 33.3333333333%;max-width:33.3333333333%}.el-col-xl-8,.el-col-xl-8.is-guttered{display:block}.el-col-xl-offset-8{margin-left:33.3333333333%}.el-col-xl-pull-8{position:relative;right:33.3333333333%}.el-col-xl-push-8{left:33.3333333333%;position:relative}.el-col-xl-9{flex:0 0 37.5%;max-width:37.5%}.el-col-xl-9,.el-col-xl-9.is-guttered{display:block}.el-col-xl-offset-9{margin-left:37.5%}.el-col-xl-pull-9{position:relative;right:37.5%}.el-col-xl-push-9{left:37.5%;position:relative}.el-col-xl-10{display:block;flex:0 0 41.6666666667%;max-width:41.6666666667%}.el-col-xl-10.is-guttered{display:block}.el-col-xl-offset-10{margin-left:41.6666666667%}.el-col-xl-pull-10{position:relative;right:41.6666666667%}.el-col-xl-push-10{left:41.6666666667%;position:relative}.el-col-xl-11{display:block;flex:0 0 45.8333333333%;max-width:45.8333333333%}.el-col-xl-11.is-guttered{display:block}.el-col-xl-offset-11{margin-left:45.8333333333%}.el-col-xl-pull-11{position:relative;right:45.8333333333%}.el-col-xl-push-11{left:45.8333333333%;position:relative}.el-col-xl-12{display:block;flex:0 0 50%;max-width:50%}.el-col-xl-12.is-guttered{display:block}.el-col-xl-offset-12{margin-left:50%}.el-col-xl-pull-12{position:relative;right:50%}.el-col-xl-push-12{left:50%;position:relative}.el-col-xl-13{display:block;flex:0 0 54.1666666667%;max-width:54.1666666667%}.el-col-xl-13.is-guttered{display:block}.el-col-xl-offset-13{margin-left:54.1666666667%}.el-col-xl-pull-13{position:relative;right:54.1666666667%}.el-col-xl-push-13{left:54.1666666667%;position:relative}.el-col-xl-14{display:block;flex:0 0 58.3333333333%;max-width:58.3333333333%}.el-col-xl-14.is-guttered{display:block}.el-col-xl-offset-14{margin-left:58.3333333333%}.el-col-xl-pull-14{position:relative;right:58.3333333333%}.el-col-xl-push-14{left:58.3333333333%;position:relative}.el-col-xl-15{display:block;flex:0 0 62.5%;max-width:62.5%}.el-col-xl-15.is-guttered{display:block}.el-col-xl-offset-15{margin-left:62.5%}.el-col-xl-pull-15{position:relative;right:62.5%}.el-col-xl-push-15{left:62.5%;position:relative}.el-col-xl-16{display:block;flex:0 0 66.6666666667%;max-width:66.6666666667%}.el-col-xl-16.is-guttered{display:block}.el-col-xl-offset-16{margin-left:66.6666666667%}.el-col-xl-pull-16{position:relative;right:66.6666666667%}.el-col-xl-push-16{left:66.6666666667%;position:relative}.el-col-xl-17{display:block;flex:0 0 70.8333333333%;max-width:70.8333333333%}.el-col-xl-17.is-guttered{display:block}.el-col-xl-offset-17{margin-left:70.8333333333%}.el-col-xl-pull-17{position:relative;right:70.8333333333%}.el-col-xl-push-17{left:70.8333333333%;position:relative}.el-col-xl-18{display:block;flex:0 0 75%;max-width:75%}.el-col-xl-18.is-guttered{display:block}.el-col-xl-offset-18{margin-left:75%}.el-col-xl-pull-18{position:relative;right:75%}.el-col-xl-push-18{left:75%;position:relative}.el-col-xl-19{display:block;flex:0 0 79.1666666667%;max-width:79.1666666667%}.el-col-xl-19.is-guttered{display:block}.el-col-xl-offset-19{margin-left:79.1666666667%}.el-col-xl-pull-19{position:relative;right:79.1666666667%}.el-col-xl-push-19{left:79.1666666667%;position:relative}.el-col-xl-20{display:block;flex:0 0 83.3333333333%;max-width:83.3333333333%}.el-col-xl-20.is-guttered{display:block}.el-col-xl-offset-20{margin-left:83.3333333333%}.el-col-xl-pull-20{position:relative;right:83.3333333333%}.el-col-xl-push-20{left:83.3333333333%;position:relative}.el-col-xl-21{display:block;flex:0 0 87.5%;max-width:87.5%}.el-col-xl-21.is-guttered{display:block}.el-col-xl-offset-21{margin-left:87.5%}.el-col-xl-pull-21{position:relative;right:87.5%}.el-col-xl-push-21{left:87.5%;position:relative}.el-col-xl-22{display:block;flex:0 0 91.6666666667%;max-width:91.6666666667%}.el-col-xl-22.is-guttered{display:block}.el-col-xl-offset-22{margin-left:91.6666666667%}.el-col-xl-pull-22{position:relative;right:91.6666666667%}.el-col-xl-push-22{left:91.6666666667%;position:relative}.el-col-xl-23{display:block;flex:0 0 95.8333333333%;max-width:95.8333333333%}.el-col-xl-23.is-guttered{display:block}.el-col-xl-offset-23{margin-left:95.8333333333%}.el-col-xl-pull-23{position:relative;right:95.8333333333%}.el-col-xl-push-23{left:95.8333333333%;position:relative}.el-col-xl-24{display:block;flex:0 0 100%;max-width:100%}.el-col-xl-24.is-guttered{display:block}.el-col-xl-offset-24{margin-left:100%}.el-col-xl-pull-24{position:relative;right:100%}.el-col-xl-push-24{left:100%;position:relative}}.el-popconfirm__main{align-items:center;display:flex}.el-popconfirm__icon{margin-right:5px}.el-popconfirm__action{margin-top:8px;text-align:right}.el-popper{--el-popper-border-radius:var(--el-popover-border-radius,4px);border-radius:var(--el-popper-border-radius);font-size:12px;line-height:20px;min-width:10px;overflow-wrap:break-word;padding:5px 11px;position:absolute;visibility:visible;z-index:2000}.el-popper.is-dark{color:var(--el-bg-color)}.el-popper.is-dark,.el-popper.is-dark>.el-popper__arrow:before{background:var(--el-text-color-primary);border:1px solid var(--el-text-color-primary)}.el-popper.is-dark>.el-popper__arrow:before{right:0}.el-popper.is-light,.el-popper.is-light>.el-popper__arrow:before{background:var(--el-bg-color-overlay);border:1px solid var(--el-border-color-light)}.el-popper.is-light>.el-popper__arrow:before{right:0}.el-popper.is-pure{padding:0}.el-popper__arrow,.el-popper__arrow:before{height:10px;position:absolute;width:10px;z-index:-1}.el-popper__arrow:before{background:var(--el-text-color-primary);box-sizing:border-box;content:" ";transform:rotate(45deg)}.el-popper[data-popper-placement^=top]>.el-popper__arrow{bottom:-5px}.el-popper[data-popper-placement^=top]>.el-popper__arrow:before{border-bottom-right-radius:2px}.el-popper[data-popper-placement^=bottom]>.el-popper__arrow{top:-5px}.el-popper[data-popper-placement^=bottom]>.el-popper__arrow:before{border-top-left-radius:2px}.el-popper[data-popper-placement^=left]>.el-popper__arrow{right:-5px}.el-popper[data-popper-placement^=left]>.el-popper__arrow:before{border-top-right-radius:2px}.el-popper[data-popper-placement^=right]>.el-popper__arrow{left:-5px}.el-popper[data-popper-placement^=right]>.el-popper__arrow:before{border-bottom-left-radius:2px}.el-popper[data-popper-placement^=top]>.el-popper__arrow:before{border-left-color:transparent!important;border-top-color:transparent!important}.el-popper[data-popper-placement^=bottom]>.el-popper__arrow:before{border-bottom-color:transparent!important;border-right-color:transparent!important}.el-popper[data-popper-placement^=left]>.el-popper__arrow:before{border-bottom-color:transparent!important;border-left-color:transparent!important}.el-popper[data-popper-placement^=right]>.el-popper__arrow:before{border-right-color:transparent!important;border-top-color:transparent!important}.el-popover{--el-popover-bg-color:var(--el-bg-color-overlay);--el-popover-font-size:var(--el-font-size-base);--el-popover-border-color:var(--el-border-color-lighter);--el-popover-padding:12px;--el-popover-padding-large:18px 20px;--el-popover-title-font-size:16px;--el-popover-title-text-color:var(--el-text-color-primary);--el-popover-border-radius:4px}.el-popover.el-popper{background:var(--el-popover-bg-color);border:1px solid var(--el-popover-border-color);border-radius:var(--el-popover-border-radius);box-shadow:var(--el-box-shadow-light);box-sizing:border-box;color:var(--el-text-color-regular);font-size:var(--el-popover-font-size);line-height:1.4;min-width:150px;overflow-wrap:break-word;padding:var(--el-popover-padding);z-index:var(--el-index-popper)}.el-popover.el-popper--plain{padding:var(--el-popover-padding-large)}.el-popover__title{color:var(--el-popover-title-text-color);font-size:var(--el-popover-title-font-size);line-height:1;margin-bottom:12px}.el-popover__reference:focus:hover,.el-popover__reference:focus:not(.focusing){outline-width:0}.el-popover.el-popper.is-dark{--el-popover-bg-color:var(--el-text-color-primary);--el-popover-border-color:var(--el-text-color-primary);--el-popover-title-text-color:var(--el-bg-color);color:var(--el-bg-color)}.el-popover.el-popper:focus,.el-popover.el-popper:focus:active{outline-width:0}.el-scrollbar{--el-scrollbar-opacity:.3;--el-scrollbar-bg-color:var(--el-text-color-secondary);--el-scrollbar-hover-opacity:.5;--el-scrollbar-hover-bg-color:var(--el-text-color-secondary);height:100%;overflow:hidden;position:relative}.el-scrollbar__wrap{height:100%;overflow:auto}.el-scrollbar__wrap--hidden-default{scrollbar-width:none}.el-scrollbar__wrap--hidden-default::-webkit-scrollbar{display:none}.el-scrollbar__thumb{background-color:var(--el-scrollbar-bg-color,var(--el-text-color-secondary));border-radius:inherit;cursor:pointer;display:block;height:0;opacity:var(--el-scrollbar-opacity,.3);position:relative;transition:var(--el-transition-duration) background-color;width:0}.el-scrollbar__thumb:hover{background-color:var(--el-scrollbar-hover-bg-color,var(--el-text-color-secondary));opacity:var(--el-scrollbar-hover-opacity,.5)}.el-scrollbar__bar{border-radius:4px;bottom:2px;position:absolute;right:2px;z-index:1}.el-scrollbar__bar.is-vertical{top:2px;width:6px}.el-scrollbar__bar.is-vertical>div{width:100%}.el-scrollbar__bar.is-horizontal{height:6px;left:2px}.el-scrollbar__bar.is-horizontal>div{height:100%}.el-scrollbar-fade-enter-active{transition:opacity .34s ease-out}.el-scrollbar-fade-leave-active{transition:opacity .12s ease-out}.el-scrollbar-fade-enter-from,.el-scrollbar-fade-leave-active{opacity:0}.el-divider{position:relative}.el-divider--horizontal{border-top:1px var(--el-border-color) var(--el-border-style);display:block;height:1px;margin:24px 0;width:100%}.el-divider--vertical{border-left:1px var(--el-border-color) var(--el-border-style);display:inline-block;height:1em;margin:0 8px;position:relative;vertical-align:middle;width:1px}.el-divider__text{background-color:var(--el-bg-color);color:var(--el-text-color-primary);font-size:14px;font-weight:500;padding:0 20px;position:absolute}.el-divider__text.is-left{left:20px;transform:translateY(-50%)}.el-divider__text.is-center{left:50%;transform:translate(-50%) translateY(-50%)}.el-divider__text.is-right{right:20px;transform:translateY(-50%)}.el-link{--el-link-font-size:var(--el-font-size-base);--el-link-font-weight:var(--el-font-weight-primary);--el-link-text-color:var(--el-text-color-regular);--el-link-hover-text-color:var(--el-color-primary);--el-link-disabled-text-color:var(--el-text-color-placeholder);align-items:center;color:var(--el-link-text-color);cursor:pointer;display:inline-flex;flex-direction:row;font-size:var(--el-link-font-size);font-weight:var(--el-link-font-weight);justify-content:center;outline:none;padding:0;position:relative;text-decoration:none;vertical-align:middle}.el-link:hover{color:var(--el-link-hover-text-color)}.el-link.is-underline:hover:after{border-bottom:1px solid var(--el-link-hover-text-color);bottom:0;content:"";height:0;left:0;position:absolute;right:0}.el-link.is-disabled{color:var(--el-link-disabled-text-color);cursor:not-allowed}.el-link [class*=el-icon-]+span{margin-left:5px}.el-link.el-link--default:after{border-color:var(--el-link-hover-text-color)}.el-link__inner{align-items:center;display:inline-flex;justify-content:center}.el-link.el-link--primary{--el-link-text-color:var(--el-color-primary);--el-link-hover-text-color:var(--el-color-primary-light-3);--el-link-disabled-text-color:var(--el-color-primary-light-5)}.el-link.el-link--primary.is-underline:hover:after,.el-link.el-link--primary:after{border-color:var(--el-link-text-color)}.el-link.el-link--success{--el-link-text-color:var(--el-color-success);--el-link-hover-text-color:var(--el-color-success-light-3);--el-link-disabled-text-color:var(--el-color-success-light-5)}.el-link.el-link--success.is-underline:hover:after,.el-link.el-link--success:after{border-color:var(--el-link-text-color)}.el-link.el-link--warning{--el-link-text-color:var(--el-color-warning);--el-link-hover-text-color:var(--el-color-warning-light-3);--el-link-disabled-text-color:var(--el-color-warning-light-5)}.el-link.el-link--warning.is-underline:hover:after,.el-link.el-link--warning:after{border-color:var(--el-link-text-color)}.el-link.el-link--danger{--el-link-text-color:var(--el-color-danger);--el-link-hover-text-color:var(--el-color-danger-light-3);--el-link-disabled-text-color:var(--el-color-danger-light-5)}.el-link.el-link--danger.is-underline:hover:after,.el-link.el-link--danger:after{border-color:var(--el-link-text-color)}.el-link.el-link--error{--el-link-text-color:var(--el-color-error);--el-link-hover-text-color:var(--el-color-error-light-3);--el-link-disabled-text-color:var(--el-color-error-light-5)}.el-link.el-link--error.is-underline:hover:after,.el-link.el-link--error:after{border-color:var(--el-link-text-color)}.el-link.el-link--info{--el-link-text-color:var(--el-color-info);--el-link-hover-text-color:var(--el-color-info-light-3);--el-link-disabled-text-color:var(--el-color-info-light-5)}.el-link.el-link--info.is-underline:hover:after,.el-link.el-link--info:after{border-color:var(--el-link-text-color)}.note-col[data-v-bd78cddd]{padding:10px;width:100%}[data-v-bd78cddd] .el-card__footer{padding:12px 16px}[data-v-bd78cddd] .el-upload-dragger{padding:16px 20px;background-color:#0000}.main-card[data-v-bd78cddd]{-webkit-backdrop-filter:blur(60px);backdrop-filter:blur(60px);background-color:#fff6} diff --git a/dev-assistant-service/src/main/resources/static/assets/Login-DDWLeKmv.css b/dev-assistant-service/src/main/resources/static/assets/Login-DDWLeKmv.css new file mode 100644 index 0000000..5f1556e --- /dev/null +++ b/dev-assistant-service/src/main/resources/static/assets/Login-DDWLeKmv.css @@ -0,0 +1 @@ +:root{--el-loading-spinner-size:42px;--el-loading-fullscreen-spinner-size:50px}.el-loading-parent--relative{position:relative!important}.el-loading-parent--hidden{overflow:hidden!important}.el-loading-mask{background-color:var(--el-mask-color);bottom:0;left:0;margin:0;position:absolute;right:0;top:0;transition:opacity var(--el-transition-duration);z-index:2000}.el-loading-mask.is-fullscreen{position:fixed}.el-loading-mask.is-fullscreen .el-loading-spinner{margin-top:calc((0px - var(--el-loading-fullscreen-spinner-size))/2)}.el-loading-mask.is-fullscreen .el-loading-spinner .circular{height:var(--el-loading-fullscreen-spinner-size);width:var(--el-loading-fullscreen-spinner-size)}.el-loading-spinner{margin-top:calc((0px - var(--el-loading-spinner-size))/2);position:absolute;text-align:center;top:50%;width:100%}.el-loading-spinner .el-loading-text{color:var(--el-color-primary);font-size:14px;margin:3px 0}.el-loading-spinner .circular{animation:loading-rotate 2s linear infinite;display:inline;height:var(--el-loading-spinner-size);width:var(--el-loading-spinner-size)}.el-loading-spinner .path{animation:loading-dash 1.5s ease-in-out infinite;stroke-dasharray:90,150;stroke-dashoffset:0;stroke-width:2;stroke:var(--el-color-primary);stroke-linecap:round}.el-loading-spinner i{color:var(--el-color-primary)}.el-loading-fade-enter-from,.el-loading-fade-leave-to{opacity:0}@keyframes loading-rotate{to{transform:rotate(1turn)}}@keyframes loading-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-40px}to{stroke-dasharray:90,150;stroke-dashoffset:-120px}}.el-form{--el-form-label-font-size:var(--el-font-size-base);--el-form-inline-content-width:220px}.el-form--inline .el-form-item{display:inline-flex;margin-right:32px;vertical-align:middle}.el-form--inline.el-form--label-top{display:flex;flex-wrap:wrap}.el-form--inline.el-form--label-top .el-form-item{display:block}.el-form-item{display:flex;--font-size:14px;margin-bottom:18px}.el-form-item .el-form-item{margin-bottom:0}.el-form-item .el-input__validateIcon{display:none}.el-form-item--large{--font-size:14px;--el-form-label-font-size:var(--font-size);margin-bottom:22px}.el-form-item--large .el-form-item__label{height:40px;line-height:40px}.el-form-item--large .el-form-item__content{line-height:40px}.el-form-item--large .el-form-item__error{padding-top:4px}.el-form-item--default{--font-size:14px;--el-form-label-font-size:var(--font-size);margin-bottom:18px}.el-form-item--default .el-form-item__label{height:32px;line-height:32px}.el-form-item--default .el-form-item__content{line-height:32px}.el-form-item--default .el-form-item__error{padding-top:2px}.el-form-item--small{--font-size:12px;--el-form-label-font-size:var(--font-size);margin-bottom:18px}.el-form-item--small .el-form-item__label{height:24px;line-height:24px}.el-form-item--small .el-form-item__content{line-height:24px}.el-form-item--small .el-form-item__error{padding-top:2px}.el-form-item--label-left .el-form-item__label{justify-content:flex-start}.el-form-item--label-top{display:block}.el-form-item--label-top .el-form-item__label{display:inline-block;height:auto;line-height:22px;margin-bottom:8px;text-align:left;vertical-align:middle}.el-form-item__label-wrap{display:flex}.el-form-item__label{align-items:flex-start;box-sizing:border-box;color:var(--el-text-color-regular);display:inline-flex;flex:0 0 auto;font-size:var(--el-form-label-font-size);height:32px;justify-content:flex-end;line-height:32px;padding:0 12px 0 0}.el-form-item__content{align-items:center;display:flex;flex:1;flex-wrap:wrap;font-size:var(--font-size);line-height:32px;min-width:0;position:relative}.el-form-item__content .el-input-group{vertical-align:top}.el-form-item__error{color:var(--el-color-danger);font-size:12px;left:0;line-height:1;padding-top:2px;position:absolute;top:100%}.el-form-item__error--inline{display:inline-block;left:auto;margin-left:10px;position:relative;top:auto}.el-form-item.is-required:not(.is-no-asterisk).asterisk-left>.el-form-item__label-wrap>.el-form-item__label:before,.el-form-item.is-required:not(.is-no-asterisk).asterisk-left>.el-form-item__label:before{color:var(--el-color-danger);content:"*";margin-right:4px}.el-form-item.is-required:not(.is-no-asterisk).asterisk-right>.el-form-item__label-wrap>.el-form-item__label:after,.el-form-item.is-required:not(.is-no-asterisk).asterisk-right>.el-form-item__label:after{color:var(--el-color-danger);content:"*";margin-left:4px}.el-form-item.is-error .el-input-tag__wrapper,.el-form-item.is-error .el-input-tag__wrapper.is-focus,.el-form-item.is-error .el-input-tag__wrapper:focus,.el-form-item.is-error .el-input-tag__wrapper:hover,.el-form-item.is-error .el-input__wrapper,.el-form-item.is-error .el-input__wrapper.is-focus,.el-form-item.is-error .el-input__wrapper:focus,.el-form-item.is-error .el-input__wrapper:hover,.el-form-item.is-error .el-select__wrapper,.el-form-item.is-error .el-select__wrapper.is-focus,.el-form-item.is-error .el-select__wrapper:focus,.el-form-item.is-error .el-select__wrapper:hover,.el-form-item.is-error .el-textarea__inner,.el-form-item.is-error .el-textarea__inner.is-focus,.el-form-item.is-error .el-textarea__inner:focus,.el-form-item.is-error .el-textarea__inner:hover{box-shadow:0 0 0 1px var(--el-color-danger) inset}.el-form-item.is-error .el-input-group__append .el-input__wrapper,.el-form-item.is-error .el-input-group__prepend .el-input__wrapper{box-shadow:inset 0 0 0 1px transparent}.el-form-item.is-error .el-input-group__append .el-input__validateIcon,.el-form-item.is-error .el-input-group__prepend .el-input__validateIcon{display:none}.el-form-item.is-error .el-input__validateIcon{color:var(--el-color-danger)}.el-form-item--feedback .el-input__validateIcon{display:inline-flex}.back-img[data-v-ef02966f]{width:100vw;height:100vh;position:fixed;background-color:#535bf266;top:0;left:0;z-index:-1}.login-container[data-v-ef02966f]{height:100vh;width:100vw;-webkit-backdrop-filter:blur(40px);backdrop-filter:blur(40px);display:flex;justify-content:center;align-content:center;flex-wrap:wrap}.login-card[data-v-ef02966f]{background-color:#fff;width:320px;height:260px;overflow:visible}.title[data-v-ef02966f]{padding:16px;background-color:#409eff;position:relative;margin-left:-40px;color:#fff;margin-top:15px;text-align:center}.title[data-v-ef02966f]:after{content:"";position:absolute;left:0;bottom:-10px;width:0;height:0;border-left:20px solid transparent;border-top:10px solid #555}.login-form[data-v-ef02966f]{margin-top:20px;padding:10px}.message[data-v-ef02966f]{margin-top:5px} diff --git a/dev-assistant-service/src/main/resources/static/assets/Login-DDlQxOJa.js b/dev-assistant-service/src/main/resources/static/assets/Login-DDlQxOJa.js new file mode 100644 index 0000000..cb31ca8 --- /dev/null +++ b/dev-assistant-service/src/main/resources/static/assets/Login-DDlQxOJa.js @@ -0,0 +1,12 @@ +import{i as bt,a2 as Ye,V as X,a1 as Qe,c as Le,y as we,aD as Xe,r as I,g as O,d as J,u as je,z as ue,A as et,B as ve,aE as Ce,q as Ve,j as ee,I as oe,n as Z,m as q,a0 as tt,f as de,D as rt,o as nt,G as wt,s as B,F as it,E as pe,ah as xt,aF as _t,aG as ye,l as G,w as T,h as at,H as Be,J as Ft,p as Me,ak as xe,a8 as _e,aw as qt,L as Et,aH as Ot,aI as At,aJ as Pt,a9 as K,k as st,v as St,T as Lt,b as jt,K as ot,ac as Ct,aK as Vt,aL as It}from"./index-km1bwIfZ.js";import{b as Rt,_ as lt,N as ft,O as Ie,F as $t,k as Fe,t as Nt,f as Bt,m as Mt,e as Te,x as ce,w as H,v as We,G as Tt,H as Wt,I as zt,J as kt,K as Dt,A as Ut,L as Gt}from"./_plugin-vue_export-helper-CwQuT6Sr.js";function qe(){if(!arguments.length)return[];var i=arguments[0];return bt(i)?i:[i]}var Jt=4;function ze(i){return Rt(i,Jt)}const Kt=Le({size:{type:String,values:Xe},disabled:Boolean}),Ht=Le({...Kt,model:Object,rules:{type:we(Object)},labelPosition:{type:String,values:["left","right","top"],default:"right"},requireAsteriskPosition:{type:String,values:["left","right"],default:"left"},labelWidth:{type:[String,Number],default:""},labelSuffix:{type:String,default:""},inline:Boolean,inlineMessage:Boolean,statusIcon:Boolean,showMessage:{type:Boolean,default:!0},validateOnRuleChange:{type:Boolean,default:!0},hideRequiredAsterisk:Boolean,scrollToError:Boolean,scrollIntoViewOptions:{type:[Object,Boolean]}}),Zt={validate:(i,e,t)=>(Ye(i)||X(i))&&Qe(e)&&X(t)};function Yt(){const i=I([]),e=O(()=>{if(!i.value.length)return"0";const a=Math.max(...i.value);return a?`${a}px`:""});function t(a){const s=i.value.indexOf(a);return s===-1&&e.value,s}function r(a,s){if(a&&s){const o=t(s);i.value.splice(o,1,a)}else a&&i.value.push(a)}function n(a){const s=t(a);s>-1&&i.value.splice(s,1)}return{autoLabelWidth:e,registerLabelWidth:r,deregisterLabelWidth:n}}const ie=(i,e)=>{const t=qe(e);return t.length>0?i.filter(r=>r.prop&&t.includes(r.prop)):i},Qt="ElForm",Xt=J({name:Qt}),er=J({...Xt,props:Ht,emits:Zt,setup(i,{expose:e,emit:t}){const r=i,n=[],a=ft(),s=je("form"),o=O(()=>{const{labelPosition:l,inline:m}=r;return[s.b(),s.m(a.value||"default"),{[s.m(`label-${l}`)]:l,[s.m("inline")]:m}]}),u=l=>n.find(m=>m.prop===l),p=l=>{n.push(l)},c=l=>{l.prop&&n.splice(n.indexOf(l),1)},g=(l=[])=>{r.model&&ie(n,l).forEach(m=>m.resetField())},d=(l=[])=>{ie(n,l).forEach(m=>m.clearValidate())},w=O(()=>!!r.model),x=l=>{if(n.length===0)return[];const m=ie(n,l);return m.length?m:[]},v=async l=>f(void 0,l),y=async(l=[])=>{if(!w.value)return!1;const m=x(l);if(m.length===0)return!0;let E={};for(const _ of m)try{await _.validate(""),_.validateState==="error"&&_.resetField()}catch(L){E={...E,...L}}return Object.keys(E).length===0?!0:Promise.reject(E)},f=async(l=[],m)=>{const E=!tt(m);try{const _=await y(l);return _===!0&&await(m==null?void 0:m(_)),_}catch(_){if(_ instanceof Error)throw _;const L=_;return r.scrollToError&&P(Object.keys(L)[0]),await(m==null?void 0:m(!1,L)),E&&Promise.reject(L)}},P=l=>{var m;const E=ie(n,l)[0];E&&((m=E.$el)==null||m.scrollIntoView(r.scrollIntoViewOptions))};return ue(()=>r.rules,()=>{r.validateOnRuleChange&&v().catch(l=>$t())},{deep:!0,flush:"post"}),et(Ie,ve({...Ce(r),emit:t,resetFields:g,clearValidate:d,validateField:f,getField:u,addField:p,removeField:c,...Yt()})),e({validate:v,validateField:f,resetFields:g,clearValidate:d,scrollToField:P,fields:n}),(l,m)=>(ee(),Ve("form",{class:Z(q(o))},[oe(l.$slots,"default")],2))}});var tr=lt(er,[["__file","form.vue"]]);function W(){return W=Object.assign?Object.assign.bind():function(i){for(var e=1;e"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}function le(i,e,t){return nr()?le=Reflect.construct.bind():le=function(n,a,s){var o=[null];o.push.apply(o,a);var u=Function.bind.apply(n,o),p=new u;return s&&te(p,s.prototype),p},le.apply(null,arguments)}function ir(i){return Function.toString.call(i).indexOf("[native code]")!==-1}function Oe(i){var e=typeof Map=="function"?new Map:void 0;return Oe=function(r){if(r===null||!ir(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof e<"u"){if(e.has(r))return e.get(r);e.set(r,n)}function n(){return le(r,arguments,Ee(this).constructor)}return n.prototype=Object.create(r.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),te(n,r)},Oe(i)}var ar=/%[sdj%]/g,sr=function(){};function Ae(i){if(!i||!i.length)return null;var e={};return i.forEach(function(t){var r=t.field;e[r]=e[r]||[],e[r].push(t)}),e}function R(i){for(var e=arguments.length,t=new Array(e>1?e-1:0),r=1;r=a)return o;switch(o){case"%s":return String(t[n++]);case"%d":return Number(t[n++]);case"%j":try{return JSON.stringify(t[n++])}catch{return"[Circular]"}break;default:return o}});return s}return i}function or(i){return i==="string"||i==="url"||i==="hex"||i==="email"||i==="date"||i==="pattern"}function A(i,e){return!!(i==null||e==="array"&&Array.isArray(i)&&!i.length||or(e)&&typeof i=="string"&&!i)}function lr(i,e,t){var r=[],n=0,a=i.length;function s(o){r.push.apply(r,o||[]),n++,n===a&&t(r)}i.forEach(function(o){e(o,s)})}function ke(i,e,t){var r=0,n=i.length;function a(s){if(s&&s.length){t(s);return}var o=r;r=r+1,o()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+\.)+[a-zA-Z\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]{2,}))$/,hex:/^#?([a-f0-9]{6}|[a-f0-9]{3})$/i},Y={integer:function(e){return Y.number(e)&&parseInt(e,10)===e},float:function(e){return Y.number(e)&&!Y.integer(e)},array:function(e){return Array.isArray(e)},regexp:function(e){if(e instanceof RegExp)return!0;try{return!!new RegExp(e)}catch{return!1}},date:function(e){return typeof e.getTime=="function"&&typeof e.getMonth=="function"&&typeof e.getYear=="function"&&!isNaN(e.getTime())},number:function(e){return isNaN(e)?!1:typeof e=="number"},object:function(e){return typeof e=="object"&&!Y.array(e)},method:function(e){return typeof e=="function"},email:function(e){return typeof e=="string"&&e.length<=320&&!!e.match(Je.email)},url:function(e){return typeof e=="string"&&e.length<=2048&&!!e.match(pr())},hex:function(e){return typeof e=="string"&&!!e.match(Je.hex)}},mr=function(e,t,r,n,a){if(e.required&&t===void 0){ut(e,t,r,n,a);return}var s=["integer","float","array","regexp","object","method","email","number","date","url","hex"],o=e.type;s.indexOf(o)>-1?Y[o](t)||n.push(R(a.messages.types[o],e.fullField,e.type)):o&&typeof t!==e.type&&n.push(R(a.messages.types[o],e.fullField,e.type))},gr=function(e,t,r,n,a){var s=typeof e.len=="number",o=typeof e.min=="number",u=typeof e.max=="number",p=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,c=t,g=null,d=typeof t=="number",w=typeof t=="string",x=Array.isArray(t);if(d?g="number":w?g="string":x&&(g="array"),!g)return!1;x&&(c=t.length),w&&(c=t.replace(p,"_").length),s?c!==e.len&&n.push(R(a.messages[g].len,e.fullField,e.len)):o&&!u&&ce.max?n.push(R(a.messages[g].max,e.fullField,e.max)):o&&u&&(ce.max)&&n.push(R(a.messages[g].range,e.fullField,e.min,e.max))},U="enum",hr=function(e,t,r,n,a){e[U]=Array.isArray(e[U])?e[U]:[],e[U].indexOf(t)===-1&&n.push(R(a.messages[U],e.fullField,e[U].join(", ")))},yr=function(e,t,r,n,a){if(e.pattern){if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(t)||n.push(R(a.messages.pattern.mismatch,e.fullField,t,e.pattern));else if(typeof e.pattern=="string"){var s=new RegExp(e.pattern);s.test(t)||n.push(R(a.messages.pattern.mismatch,e.fullField,t,e.pattern))}}},b={required:ut,whitespace:vr,type:mr,range:gr,enum:hr,pattern:yr},br=function(e,t,r,n,a){var s=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(A(t,"string")&&!e.required)return r();b.required(e,t,n,s,a,"string"),A(t,"string")||(b.type(e,t,n,s,a),b.range(e,t,n,s,a),b.pattern(e,t,n,s,a),e.whitespace===!0&&b.whitespace(e,t,n,s,a))}r(s)},wr=function(e,t,r,n,a){var s=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(A(t)&&!e.required)return r();b.required(e,t,n,s,a),t!==void 0&&b.type(e,t,n,s,a)}r(s)},xr=function(e,t,r,n,a){var s=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(t===""&&(t=void 0),A(t)&&!e.required)return r();b.required(e,t,n,s,a),t!==void 0&&(b.type(e,t,n,s,a),b.range(e,t,n,s,a))}r(s)},_r=function(e,t,r,n,a){var s=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(A(t)&&!e.required)return r();b.required(e,t,n,s,a),t!==void 0&&b.type(e,t,n,s,a)}r(s)},Fr=function(e,t,r,n,a){var s=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(A(t)&&!e.required)return r();b.required(e,t,n,s,a),A(t)||b.type(e,t,n,s,a)}r(s)},qr=function(e,t,r,n,a){var s=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(A(t)&&!e.required)return r();b.required(e,t,n,s,a),t!==void 0&&(b.type(e,t,n,s,a),b.range(e,t,n,s,a))}r(s)},Er=function(e,t,r,n,a){var s=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(A(t)&&!e.required)return r();b.required(e,t,n,s,a),t!==void 0&&(b.type(e,t,n,s,a),b.range(e,t,n,s,a))}r(s)},Or=function(e,t,r,n,a){var s=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(t==null&&!e.required)return r();b.required(e,t,n,s,a,"array"),t!=null&&(b.type(e,t,n,s,a),b.range(e,t,n,s,a))}r(s)},Ar=function(e,t,r,n,a){var s=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(A(t)&&!e.required)return r();b.required(e,t,n,s,a),t!==void 0&&b.type(e,t,n,s,a)}r(s)},Pr="enum",Sr=function(e,t,r,n,a){var s=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(A(t)&&!e.required)return r();b.required(e,t,n,s,a),t!==void 0&&b[Pr](e,t,n,s,a)}r(s)},Lr=function(e,t,r,n,a){var s=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(A(t,"string")&&!e.required)return r();b.required(e,t,n,s,a),A(t,"string")||b.pattern(e,t,n,s,a)}r(s)},jr=function(e,t,r,n,a){var s=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(A(t,"date")&&!e.required)return r();if(b.required(e,t,n,s,a),!A(t,"date")){var u;t instanceof Date?u=t:u=new Date(t),b.type(e,u,n,s,a),u&&b.range(e,u.getTime(),n,s,a)}}r(s)},Cr=function(e,t,r,n,a){var s=[],o=Array.isArray(t)?"array":typeof t;b.required(e,t,n,s,a,o),r(s)},be=function(e,t,r,n,a){var s=e.type,o=[],u=e.required||!e.required&&n.hasOwnProperty(e.field);if(u){if(A(t,s)&&!e.required)return r();b.required(e,t,n,o,a,s),A(t,s)||b.type(e,t,n,o,a)}r(o)},Vr=function(e,t,r,n,a){var s=[],o=e.required||!e.required&&n.hasOwnProperty(e.field);if(o){if(A(t)&&!e.required)return r();b.required(e,t,n,s,a)}r(s)},Q={string:br,method:wr,number:xr,boolean:_r,regexp:Fr,integer:qr,float:Er,array:Or,object:Ar,enum:Sr,pattern:Lr,date:jr,url:be,hex:be,email:be,required:Cr,any:Vr};function Pe(){return{default:"Validation error on field %s",required:"%s is required",enum:"%s must be one of %s",whitespace:"%s cannot be empty",date:{format:"%s date %s is invalid for format %s",parse:"%s date could not be parsed, %s is invalid ",invalid:"%s date %s is invalid"},types:{string:"%s is not a %s",method:"%s is not a %s (function)",array:"%s is not an %s",object:"%s is not an %s",number:"%s is not a %s",date:"%s is not a %s",boolean:"%s is not a %s",integer:"%s is not an %s",float:"%s is not a %s",regexp:"%s is not a valid %s",email:"%s is not a valid %s",url:"%s is not a valid %s",hex:"%s is not a valid %s"},string:{len:"%s must be exactly %s characters",min:"%s must be at least %s characters",max:"%s cannot be longer than %s characters",range:"%s must be between %s and %s characters"},number:{len:"%s must equal %s",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",range:"%s must be between %s and %s"},array:{len:"%s must be exactly %s in length",min:"%s cannot be less than %s in length",max:"%s cannot be greater than %s in length",range:"%s must be between %s and %s in length"},pattern:{mismatch:"%s value %s does not match pattern %s"},clone:function(){var e=JSON.parse(JSON.stringify(this));return e.clone=this.clone,e}}}var Se=Pe(),re=function(){function i(t){this.rules=null,this._messages=Se,this.define(t)}var e=i.prototype;return e.define=function(r){var n=this;if(!r)throw new Error("Cannot configure a schema with no rules");if(typeof r!="object"||Array.isArray(r))throw new Error("Rules must be an object");this.rules={},Object.keys(r).forEach(function(a){var s=r[a];n.rules[a]=Array.isArray(s)?s:[s]})},e.messages=function(r){return r&&(this._messages=Ge(Pe(),r)),this._messages},e.validate=function(r,n,a){var s=this;n===void 0&&(n={}),a===void 0&&(a=function(){});var o=r,u=n,p=a;if(typeof u=="function"&&(p=u,u={}),!this.rules||Object.keys(this.rules).length===0)return p&&p(null,o),Promise.resolve(o);function c(v){var y=[],f={};function P(m){if(Array.isArray(m)){var E;y=(E=y).concat.apply(E,m)}else y.push(m)}for(var l=0;l");const n=je("form"),a=I(),s=I(0),o=()=>{var c;if((c=a.value)!=null&&c.firstElementChild){const g=window.getComputedStyle(a.value.firstElementChild).width;return Math.ceil(Number.parseFloat(g))}else return 0},u=(c="update")=>{pe(()=>{e.default&&i.isAutoWidth&&(c==="update"?s.value=o():c==="remove"&&(t==null||t.deregisterLabelWidth(s.value)))})},p=()=>u("update");return rt(()=>{p()}),nt(()=>{u("remove")}),wt(()=>p()),ue(s,(c,g)=>{i.updateAll&&(t==null||t.registerLabelWidth(c,g))}),Bt(O(()=>{var c,g;return(g=(c=a.value)==null?void 0:c.firstElementChild)!=null?g:null}),p),()=>{var c,g;if(!e)return null;const{isAutoWidth:d}=i;if(d){const w=t==null?void 0:t.autoLabelWidth,x=r==null?void 0:r.hasLabel,v={};if(x&&w&&w!=="auto"){const y=Math.max(0,Number.parseInt(w,10)-s.value),P=(r.labelPosition||t.labelPosition)==="left"?"marginRight":"marginLeft";y&&(v[P]=`${y}px`)}return B("div",{ref:a,class:[n.be("item","label-wrap")],style:v},[(c=e.default)==null?void 0:c.call(e)])}else return B(it,{ref:a},[(g=e.default)==null?void 0:g.call(e)])}}});const Nr=J({name:"ElFormItem"}),Br=J({...Nr,props:Rr,setup(i,{expose:e}){const t=i,r=xt(),n=de(Ie,void 0),a=de(Fe,void 0),s=ft(void 0,{formItem:!1}),o=je("form-item"),u=Mt().value,p=I([]),c=I(""),g=_t(c,100),d=I(""),w=I();let x,v=!1;const y=O(()=>t.labelPosition||(n==null?void 0:n.labelPosition)),f=O(()=>{if(y.value==="top")return{};const h=Te(t.labelWidth||(n==null?void 0:n.labelWidth)||"");return h?{width:h}:{}}),P=O(()=>{if(y.value==="top"||n!=null&&n.inline)return{};if(!t.label&&!t.labelWidth&&ne)return{};const h=Te(t.labelWidth||(n==null?void 0:n.labelWidth)||"");return!t.label&&!r.label?{marginLeft:h}:{}}),l=O(()=>[o.b(),o.m(s.value),o.is("error",c.value==="error"),o.is("validating",c.value==="validating"),o.is("success",c.value==="success"),o.is("required",ct.value||t.required),o.is("no-asterisk",n==null?void 0:n.hideRequiredAsterisk),(n==null?void 0:n.requireAsteriskPosition)==="right"?"asterisk-right":"asterisk-left",{[o.m("feedback")]:n==null?void 0:n.statusIcon,[o.m(`label-${y.value}`)]:y.value}]),m=O(()=>Qe(t.inlineMessage)?t.inlineMessage:(n==null?void 0:n.inlineMessage)||!1),E=O(()=>[o.e("error"),{[o.em("error","inline")]:m.value}]),_=O(()=>t.prop?X(t.prop)?t.prop:t.prop.join("."):""),L=O(()=>!!(t.label||r.label)),C=O(()=>t.for||(p.value.length===1?p.value[0]:void 0)),M=O(()=>!C.value&&L.value),ne=!!a,z=O(()=>{const h=n==null?void 0:n.model;if(!(!h||!t.prop))return ye(h,t.prop).value}),V=O(()=>{const{required:h}=t,F=[];t.rules&&F.push(...qe(t.rules));const j=n==null?void 0:n.rules;if(j&&t.prop){const S=ye(j,t.prop).value;S&&F.push(...qe(S))}if(h!==void 0){const S=F.map((N,D)=>[N,D]).filter(([N])=>Object.keys(N).includes("required"));if(S.length>0)for(const[N,D]of S)N.required!==h&&(F[D]={...N,required:h});else F.push({required:h})}return F}),$=O(()=>V.value.length>0),me=h=>V.value.filter(j=>!j.trigger||!h?!0:Ye(j.trigger)?j.trigger.includes(h):j.trigger===h).map(({trigger:j,...S})=>S),ct=O(()=>V.value.some(h=>h.required)),vt=O(()=>{var h;return g.value==="error"&&t.showMessage&&((h=n==null?void 0:n.showMessage)!=null?h:!0)}),Re=O(()=>`${t.label||""}${(n==null?void 0:n.labelSuffix)||""}`),k=h=>{c.value=h},pt=h=>{var F,j;const{errors:S,fields:N}=h;(!S||!N)&&console.error(h),k("error"),d.value=S?(j=(F=S==null?void 0:S[0])==null?void 0:F.message)!=null?j:`${t.prop} is required`:"",n==null||n.emit("validate",t.prop,!1,d.value)},mt=()=>{k("success"),n==null||n.emit("validate",t.prop,!0,"")},gt=async h=>{const F=_.value;return new re({[F]:h}).validate({[F]:z.value},{firstFields:!0}).then(()=>(mt(),!0)).catch(S=>(pt(S),Promise.reject(S)))},$e=async(h,F)=>{if(v||!t.prop)return!1;const j=tt(F);if(!$.value)return F==null||F(!1),!1;const S=me(h);return S.length===0?(F==null||F(!0),!0):(k("validating"),gt(S).then(()=>(F==null||F(!0),!0)).catch(N=>{const{fields:D}=N;return F==null||F(!1,D),j?!1:Promise.reject(D)}))},ge=()=>{k(""),d.value="",v=!1},Ne=async()=>{const h=n==null?void 0:n.model;if(!h||!t.prop)return;const F=ye(h,t.prop);v=!0,F.value=ze(x),await pe(),ge(),v=!1},ht=h=>{p.value.includes(h)||p.value.push(h)},yt=h=>{p.value=p.value.filter(F=>F!==h)};ue(()=>t.error,h=>{d.value=h||"",k(h?"error":"")},{immediate:!0}),ue(()=>t.validateStatus,h=>k(h||""));const he=ve({...Ce(t),$el:w,size:s,validateState:c,labelId:u,inputIds:p,isGroup:M,hasLabel:L,fieldValue:z,addInputId:ht,removeInputId:yt,resetField:Ne,clearValidate:ge,validate:$e});return et(Fe,he),rt(()=>{t.prop&&(n==null||n.addField(he),x=ze(z.value))}),nt(()=>{n==null||n.removeField(he)}),e({size:s,validateMessage:d,validateState:c,validate:$e,clearValidate:ge,resetField:Ne}),(h,F)=>{var j;return ee(),Ve("div",{ref_key:"formItemRef",ref:w,class:Z(q(l)),role:q(M)?"group":void 0,"aria-labelledby":q(M)?q(u):void 0},[B(q($r),{"is-auto-width":q(f).width==="auto","update-all":((j=q(n))==null?void 0:j.labelWidth)==="auto"},{default:T(()=>[q(L)?(ee(),at(Ft(q(C)?"label":"div"),{key:0,id:q(u),for:q(C),class:Z(q(o).e("label")),style:Me(q(f))},{default:T(()=>[oe(h.$slots,"label",{label:q(Re)},()=>[xe(_e(q(Re)),1)])]),_:3},8,["id","for","class","style"])):Be("v-if",!0)]),_:3},8,["is-auto-width","update-all"]),G("div",{class:Z(q(o).e("content")),style:Me(q(P))},[oe(h.$slots,"default"),B(qt,{name:`${q(o).namespace.value}-zoom-in-top`},{default:T(()=>[q(vt)?oe(h.$slots,"error",{key:0,error:d.value},()=>[G("div",{class:Z(q(E))},_e(d.value),3)]):Be("v-if",!0)]),_:3},8,["name"])],6)],10,["role","aria-labelledby"])}}});var dt=lt(Br,[["__file","form-item.vue"]]);const Mr=Et(tr,{FormItem:dt}),Tr=Ot(dt);function Wr(i){let e;const t=I(!1),r=ve({...i,originalPosition:"",originalOverflow:"",visible:!1});function n(d){r.text=d}function a(){const d=r.parent,w=g.ns;if(!d.vLoadingAddClassList){let x=d.getAttribute("loading-number");x=Number.parseInt(x)-1,x?d.setAttribute("loading-number",x.toString()):(ce(d,w.bm("parent","relative")),d.removeAttribute("loading-number")),ce(d,w.bm("parent","hidden"))}s(),c.unmount()}function s(){var d,w;(w=(d=g.$el)==null?void 0:d.parentNode)==null||w.removeChild(g.$el)}function o(){var d;i.beforeClose&&!i.beforeClose()||(t.value=!0,clearTimeout(e),e=setTimeout(u,400),r.visible=!1,(d=i.closed)==null||d.call(i))}function u(){if(!t.value)return;const d=r.parent;t.value=!1,d.vLoadingAddClassList=void 0,a()}const p=J({name:"ElLoading",setup(d,{expose:w}){const{ns:x,zIndex:v}=Pt("loading");return w({ns:x,zIndex:v}),()=>{const y=r.spinner||r.svg,f=K("svg",{class:"circular",viewBox:r.svgViewBox?r.svgViewBox:"0 0 50 50",...y?{innerHTML:y}:{}},[K("circle",{class:"path",cx:"25",cy:"25",r:"20",fill:"none"})]),P=r.text?K("p",{class:x.b("text")},[r.text]):void 0;return K(Lt,{name:x.b("fade"),onAfterLeave:u},{default:T(()=>[st(B("div",{style:{backgroundColor:r.background||""},class:[x.b("mask"),r.customClass,r.fullscreen?"is-fullscreen":""]},[K("div",{class:x.b("spinner")},[f,P])]),[[St,r.visible]])])})}}}),c=At(p),g=c.mount(document.createElement("div"));return{...Ce(r),setText:n,removeElLoadingChild:s,close:o,handleAfterLeave:u,vm:g,get $el(){return g.$el}}}let se;const zr=function(i={}){if(!jt)return;const e=kr(i);if(e.fullscreen&&se)return se;const t=Wr({...e,closed:()=>{var n;(n=e.closed)==null||n.call(e),e.fullscreen&&(se=void 0)}});Dr(e,e.parent,t),He(e,e.parent,t),e.parent.vLoadingAddClassList=()=>He(e,e.parent,t);let r=e.parent.getAttribute("loading-number");return r?r=`${Number.parseInt(r)+1}`:r="1",e.parent.setAttribute("loading-number",r),e.parent.appendChild(t.$el),pe(()=>t.visible.value=e.visible),e.fullscreen&&(se=t),t},kr=i=>{var e,t,r,n;let a;return X(i.target)?a=(e=document.querySelector(i.target))!=null?e:document.body:a=i.target||document.body,{parent:a===document.body||i.body?document.body:a,background:i.background||"",svg:i.svg||"",svgViewBox:i.svgViewBox||"",spinner:i.spinner||!1,text:i.text||"",fullscreen:a===document.body&&((t=i.fullscreen)!=null?t:!0),lock:(r=i.lock)!=null?r:!1,customClass:i.customClass||"",visible:(n=i.visible)!=null?n:!0,beforeClose:i.beforeClose,closed:i.closed,target:a}},Dr=async(i,e,t)=>{const{nextZIndex:r}=t.vm.zIndex||t.vm._.exposed.zIndex,n={};if(i.fullscreen)t.originalPosition.value=H(document.body,"position"),t.originalOverflow.value=H(document.body,"overflow"),n.zIndex=r();else if(i.parent===document.body){t.originalPosition.value=H(document.body,"position"),await pe();for(const a of["top","left"]){const s=a==="top"?"scrollTop":"scrollLeft";n[a]=`${i.target.getBoundingClientRect()[a]+document.body[s]+document.documentElement[s]-Number.parseInt(H(document.body,`margin-${a}`),10)}px`}for(const a of["height","width"])n[a]=`${i.target.getBoundingClientRect()[a]}px`}else t.originalPosition.value=H(e,"position");for(const[a,s]of Object.entries(n))t.$el.style[a]=s},He=(i,e,t)=>{const r=t.vm.ns||t.vm._.exposed.ns;["absolute","fixed","sticky"].includes(t.originalPosition.value)?ce(e,r.bm("parent","relative")):We(e,r.bm("parent","relative")),i.fullscreen&&i.lock?We(e,r.bm("parent","hidden")):ce(e,r.bm("parent","hidden"))},fe=Symbol("ElLoading"),Ze=(i,e)=>{var t,r,n,a;const s=e.instance,o=d=>ot(e.value)?e.value[d]:void 0,u=d=>{const w=X(d)&&(s==null?void 0:s[d])||d;return w&&I(w)},p=d=>u(o(d)||i.getAttribute(`element-loading-${Vt(d)}`)),c=(t=o("fullscreen"))!=null?t:e.modifiers.fullscreen,g={text:p("text"),svg:p("svg"),svgViewBox:p("svgViewBox"),spinner:p("spinner"),background:p("background"),customClass:p("customClass"),fullscreen:c,target:(r=o("target"))!=null?r:c?void 0:i,body:(n=o("body"))!=null?n:e.modifiers.body,lock:(a=o("lock"))!=null?a:e.modifiers.lock};i[fe]={options:g,instance:zr(g)}},Ur=(i,e)=>{for(const t of Object.keys(e))Ct(e[t])&&(e[t].value=i[t])},Gr={mounted(i,e){e.value&&Ze(i,e)},updated(i,e){const t=i[fe];e.oldValue!==e.value&&(e.value&&!e.oldValue?Ze(i,e):e.value&&e.oldValue?ot(e.value)&&Ur(e.value,t.options):t==null||t.instance.close())},unmounted(i){var e;(e=i[fe])==null||e.instance.close(),i[fe]=null}},Jr=i=>Tt.post("/authentication/login",i),Kr={class:"login-container"},Hr={class:"message"},Zr={__name:"Login",setup(i){const e=I(),t=It(),r=I({password:""}),n=I(!1),a=I(""),s=ve({password:[{required:!0,message:"请输入口令",trigger:"blur"}]}),o=async u=>{await u.validate(async p=>{p&&(n.value=!0,Jr(r.value).then(c=>{let g=c.data;n.value=!1,g.code===200?t.push("/"):a.value=g.message}).catch(c=>{console.error(JSON.stringify(c)),n.value=!1,a.value="系统错误 请稍后再试"}))})};return(u,p)=>{const c=Dt,g=Tr,d=Ut,w=Gt,x=Mr,v=kt,y=Gr;return ee(),Ve(it,null,[p[4]||(p[4]=G("img",{alt:"",class:"back-img",src:zt},null,-1)),G("div",Kr,[st((ee(),at(v,{class:"login-card","element-loading-text":"正在登录..."},{default:T(()=>[p[3]||(p[3]=G("div",{class:"title"}," 通用登陆页 ",-1)),B(x,{ref_key:"loginFormRef",ref:e,model:q(r),rules:q(s),class:"login-form"},{default:T(()=>[B(g,{prop:"password"},{default:T(()=>[B(c,{modelValue:q(r).password,"onUpdate:modelValue":p[0]||(p[0]=f=>q(r).password=f),autocomplete:"new-password",clearable:"",type:"password",size:"large",placeholder:"请输入口令"},null,8,["modelValue"])]),_:1}),B(d,{type:"primary",size:"large",onClick:p[1]||(p[1]=f=>o(q(e))),style:{width:"100%"}},{default:T(()=>p[2]||(p[2]=[xe(" 登录 ")])),_:1}),G("div",Hr,[B(w,{type:"danger"},{default:T(()=>[xe(_e(q(a)),1)]),_:1})])]),_:1},8,["model","rules"])]),_:1})),[[y,q(n)]])])],64)}}},Xr=Wt(Zr,[["__scopeId","data-v-ef02966f"]]);export{Xr as default}; diff --git a/dev-assistant-service/src/main/resources/static/assets/_plugin-vue_export-helper-CwQuT6Sr.js b/dev-assistant-service/src/main/resources/static/assets/_plugin-vue_export-helper-CwQuT6Sr.js new file mode 100644 index 0000000..83537ec --- /dev/null +++ b/dev-assistant-service/src/main/resources/static/assets/_plugin-vue_export-helper-CwQuT6Sr.js @@ -0,0 +1,6 @@ +import{aM as ut,aN as be,aO as Jt,aP as Rn,aQ as Qo,aR as Pr,aS as Zo,a as Le,aT as ct,aU as Yo,aV as Ir,i as Ue,S as tt,aW as Xt,aX as nt,M as es,aY as Ce,aZ as Nr,a_ as ts,a$ as ns,b0 as rs,z as Q,Z as $r,b1 as os,b2 as Fr,b as He,r as U,b3 as ss,$ as De,g as E,b4 as as,b5 as is,b6 as ls,b7 as Mr,b8 as us,b9 as cs,x as It,ba as fs,V as de,c as ye,y as Z,d as D,u as ue,bb as rt,q as N,j as x,I as L,U as ot,m as h,L as ze,an as Br,am as ds,bc as jr,ap as ps,bd as hs,be as ms,al as gs,bf as bs,bg as Lr,X as ys,a5 as vs,bh as ws,f as me,D as ft,t as st,bi as Ss,bj as Ts,W as Qe,a0 as Nt,E as Te,bk as Ur,ah as Hr,bl as Es,bm as xs,H as _,F as Fe,l as W,n as A,h as $,w as K,J as oe,s as Qt,as as Dr,N as As,a8 as ie,p as xe,K as kn,ae as Os,P as Cs,A as _s,B as Rs,aH as ks,ak as Pn,aD as Ps,G as Is,aJ as Ns,k as In,v as Nn,T as $s,ag as Fs,bn as $t,R as $n,bo as Fn,bp as Ms,bq as Bs}from"./index-km1bwIfZ.js";function js(e){return e}var Ft=ut(be,"WeakMap"),Mn=Object.create,Ls=function(){function e(){}return function(t){if(!Jt(t))return{};if(Mn)return Mn(t);e.prototype=t;var n=new e;return e.prototype=void 0,n}}();function Us(e,t,n){switch(n.length){case 0:return e.call(t);case 1:return e.call(t,n[0]);case 2:return e.call(t,n[0],n[1]);case 3:return e.call(t,n[0],n[1],n[2])}return e.apply(t,n)}function Hs(e,t){var n=-1,r=e.length;for(t||(t=Array(r));++n0){if(++t>=Ds)return arguments[0]}else t=0;return e.apply(void 0,arguments)}}function Ws(e){return function(){return e}}var Ks=Rn?function(e,t){return Rn(e,"toString",{configurable:!0,enumerable:!1,value:Ws(t),writable:!0})}:js,Gs=qs(Ks);function Js(e,t){for(var n=-1,r=e==null?0:e.length;++n-1&&e%1==0&&e<=Qs}function zr(e){return e!=null&&Zt(e.length)&&!Zo(e)}var Zs=Object.prototype;function Yt(e){var t=e&&e.constructor,n=typeof t=="function"&&t.prototype||Zs;return e===n}function Ys(e,t){for(var n=-1,r=Array(e);++n{s.forEach(c=>c()),s.length=0},i=(c,p,m,y)=>(c.addEventListener(p,m,y),()=>c.removeEventListener(p,m,y)),l=Q(()=>[Ee(t),Mr(o)],([c,p])=>{a(),c&&s.push(...n.flatMap(m=>r.map(y=>i(c,m,y,p))))},{immediate:!0,flush:"post"}),u=()=>{l(),a()};return $r(u),u}let rr=!1;function Lf(e,t,n={}){const{window:r=ln,ignore:o=[],capture:s=!0,detectIframe:a=!1}=n;if(!r)return;ls&&!rr&&(rr=!0,Array.from(r.document.body.children).forEach(m=>m.addEventListener("click",Fr)));let i=!0;const l=m=>o.some(y=>{if(typeof y=="string")return Array.from(r.document.querySelectorAll(y)).some(d=>d===m.target||m.composedPath().includes(d));{const d=Ee(y);return d&&(m.target===d||m.composedPath().includes(d))}}),c=[pe(r,"click",m=>{const y=Ee(e);if(!(!y||y===m.target||m.composedPath().includes(y))){if(m.detail===0&&(i=!l(m)),!i){i=!0;return}t(m)}},{passive:!0,capture:s}),pe(r,"pointerdown",m=>{const y=Ee(e);y&&(i=!m.composedPath().includes(y)&&!l(m))},{passive:!0}),a&&pe(r,"blur",m=>{var y;const d=Ee(e);((y=r.document.activeElement)==null?void 0:y.tagName)==="IFRAME"&&!(d!=null&&d.contains(r.document.activeElement))&&t(m)})].filter(Boolean);return()=>c.forEach(m=>m())}function Pl(e,t=!1){const n=U(),r=()=>n.value=!!e();return r(),ss(r,t),n}function Il(e){return JSON.parse(JSON.stringify(e))}const or=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},sr="__vueuse_ssr_handlers__";or[sr]=or[sr]||{};var ar=Object.getOwnPropertySymbols,Nl=Object.prototype.hasOwnProperty,$l=Object.prototype.propertyIsEnumerable,Fl=(e,t)=>{var n={};for(var r in e)Nl.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(e!=null&&ar)for(var r of ar(e))t.indexOf(r)<0&&$l.call(e,r)&&(n[r]=e[r]);return n};function Ml(e,t,n={}){const r=n,{window:o=ln}=r,s=Fl(r,["window"]);let a;const i=Pl(()=>o&&"ResizeObserver"in o),l=()=>{a&&(a.disconnect(),a=void 0)},u=Q(()=>Ee(e),p=>{l(),i.value&&o&&p&&(a=new ResizeObserver(t),a.observe(p,s))},{immediate:!0,flush:"post"}),c=()=>{l(),u()};return $r(c),{isSupported:i,stop:c}}var ir;(function(e){e.UP="UP",e.RIGHT="RIGHT",e.DOWN="DOWN",e.LEFT="LEFT",e.NONE="NONE"})(ir||(ir={}));var Bl=Object.defineProperty,lr=Object.getOwnPropertySymbols,jl=Object.prototype.hasOwnProperty,Ll=Object.prototype.propertyIsEnumerable,ur=(e,t,n)=>t in e?Bl(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Ul=(e,t)=>{for(var n in t||(t={}))jl.call(t,n)&&ur(e,n,t[n]);if(lr)for(var n of lr(t))Ll.call(t,n)&&ur(e,n,t[n]);return e};const Hl={easeInSine:[.12,0,.39,0],easeOutSine:[.61,1,.88,1],easeInOutSine:[.37,0,.63,1],easeInQuad:[.11,0,.5,0],easeOutQuad:[.5,1,.89,1],easeInOutQuad:[.45,0,.55,1],easeInCubic:[.32,0,.67,0],easeOutCubic:[.33,1,.68,1],easeInOutCubic:[.65,0,.35,1],easeInQuart:[.5,0,.75,0],easeOutQuart:[.25,1,.5,1],easeInOutQuart:[.76,0,.24,1],easeInQuint:[.64,0,.78,0],easeOutQuint:[.22,1,.36,1],easeInOutQuint:[.83,0,.17,1],easeInExpo:[.7,0,.84,0],easeOutExpo:[.16,1,.3,1],easeInOutExpo:[.87,0,.13,1],easeInCirc:[.55,0,1,.45],easeOutCirc:[0,.55,.45,1],easeInOutCirc:[.85,0,.15,1],easeInBack:[.36,0,.66,-.56],easeOutBack:[.34,1.56,.64,1],easeInOutBack:[.68,-.6,.32,1.6]};Ul({linear:us},Hl);function Uf(e,t,n,r={}){var o,s,a;const{clone:i=!1,passive:l=!1,eventName:u,deep:c=!1,defaultValue:p}=r,m=De(),y=(m==null?void 0:m.emit)||((o=m==null?void 0:m.$emit)==null?void 0:o.bind(m))||((a=(s=m==null?void 0:m.proxy)==null?void 0:s.$emit)==null?void 0:a.bind(m==null?void 0:m.proxy));let d=u;d=u||d||`update:${t.toString()}`;const v=w=>i?is(i)?i(w):Il(w):w,g=()=>as(e[t])?v(e[t]):p;if(l){const w=g(),O=U(w);return Q(()=>e[t],S=>O.value=v(S)),Q(O,S=>{(S!==e[t]||c)&&y(d,S)},{deep:c}),O}else return E({get(){return g()},set(w){y(d,w)}})}class Dl extends Error{constructor(t){super(t),this.name="ElementPlusError"}}function Hf(e,t){throw new Dl(`[${e}] ${t}`)}function Df(e,t){}const Lt="update:modelValue";var ve=(e,t)=>{const n=e.__vccOpts||e;for(const[r,o]of t)n[r]=o;return n};const oo=(e="")=>e.split(" ").filter(t=>!!t.trim()),zf=(e,t)=>{if(!e||!t)return!1;if(t.includes(" "))throw new Error("className should not contain space.");return e.classList.contains(t)},Vf=(e,t)=>{!e||!t.trim()||e.classList.add(...oo(t))},qf=(e,t)=>{!e||!t.trim()||e.classList.remove(...oo(t))},Wf=(e,t)=>{var n;if(!He||!e||!t)return"";let r=cs(t);r==="float"&&(r="cssFloat");try{const o=e.style[r];if(o)return o;const s=(n=document.defaultView)==null?void 0:n.getComputedStyle(e,"");return s?s[r]:""}catch{return e.style[r]}};function zl(e,t="px"){if(!e)return"";if(It(e)||fs(e))return`${e}${t}`;if(de(e))return e}const Vl=ye({size:{type:Z([Number,String])},color:{type:String}}),ql=D({name:"ElIcon",inheritAttrs:!1}),Wl=D({...ql,props:Vl,setup(e){const t=e,n=ue("icon"),r=E(()=>{const{size:o,color:s}=t;return!o&&!s?{}:{fontSize:rt(o)?void 0:zl(o),"--color":s}});return(o,s)=>(x(),N("i",ot({class:h(n).b(),style:h(r)},o.$attrs),[L(o.$slots,"default")],16))}});var Kl=ve(Wl,[["__file","icon.vue"]]);const re=ze(Kl),Be=Z([String,Object,Function]),Gl={Close:ps},cr={success:bs,warning:gs,error:ms,info:hs},Jl={validating:jr,success:ds,error:Br},Xl=()=>He&&/firefox/i.test(window.navigator.userAgent);let j;const Ql={height:"0",visibility:"hidden",overflow:Xl()?"":"hidden",position:"absolute","z-index":"-1000",top:"0",right:"0"},Zl=["letter-spacing","line-height","padding-top","padding-bottom","font-family","font-weight","font-size","text-rendering","text-transform","width","text-indent","padding-left","padding-right","border-width","box-sizing"];function Yl(e){const t=window.getComputedStyle(e),n=t.getPropertyValue("box-sizing"),r=Number.parseFloat(t.getPropertyValue("padding-bottom"))+Number.parseFloat(t.getPropertyValue("padding-top")),o=Number.parseFloat(t.getPropertyValue("border-bottom-width"))+Number.parseFloat(t.getPropertyValue("border-top-width"));return{contextStyle:Zl.map(a=>[a,t.getPropertyValue(a)]),paddingSize:r,borderSize:o,boxSizing:n}}function fr(e,t=1,n){var r;j||(j=document.createElement("textarea"),document.body.appendChild(j));const{paddingSize:o,borderSize:s,boxSizing:a,contextStyle:i}=Yl(e);i.forEach(([p,m])=>j==null?void 0:j.style.setProperty(p,m)),Object.entries(Ql).forEach(([p,m])=>j==null?void 0:j.style.setProperty(p,m,"important")),j.value=e.value||e.placeholder||"";let l=j.scrollHeight;const u={};a==="border-box"?l=l+s:a==="content-box"&&(l=l-o),j.value="";const c=j.scrollHeight-o;if(It(t)){let p=c*t;a==="border-box"&&(p=p+o+s),l=Math.max(p,l),u.minHeight=`${p}px`}if(It(n)){let p=c*n;a==="border-box"&&(p=p+o+s),l=Math.min(p,l)}return u.height=`${l}px`,(r=j.parentNode)==null||r.removeChild(j),j=void 0,u}const eu=e=>e,tu=ye({ariaLabel:String,ariaOrientation:{type:String,values:["horizontal","vertical","undefined"]},ariaControls:String}),nu=e=>kl(tu,e),ru=ye({id:{type:String,default:void 0},size:Lr,disabled:Boolean,modelValue:{type:Z([String,Number,Object]),default:""},maxlength:{type:[String,Number]},minlength:{type:[String,Number]},type:{type:String,default:"text"},resize:{type:String,values:["none","both","horizontal","vertical"]},autosize:{type:Z([Boolean,Object]),default:!1},autocomplete:{type:String,default:"off"},formatter:{type:Function},parser:{type:Function},placeholder:{type:String},form:{type:String},readonly:Boolean,clearable:Boolean,showPassword:Boolean,showWordLimit:Boolean,suffixIcon:{type:Be},prefixIcon:{type:Be},containerRole:{type:String,default:void 0},tabindex:{type:[String,Number],default:0},validateEvent:{type:Boolean,default:!0},inputStyle:{type:Z([Object,Array,String]),default:()=>eu({})},autofocus:Boolean,rows:{type:Number,default:2},...nu(["ariaLabel"])}),ou={[Lt]:e=>de(e),input:e=>de(e),change:e=>de(e),focus:e=>e instanceof FocusEvent,blur:e=>e instanceof FocusEvent,clear:()=>!0,mouseleave:e=>e instanceof MouseEvent,mouseenter:e=>e instanceof MouseEvent,keydown:e=>e instanceof Event,compositionstart:e=>e instanceof CompositionEvent,compositionupdate:e=>e instanceof CompositionEvent,compositionend:e=>e instanceof CompositionEvent},su=["class","style"],au=/^on[A-Z]/,iu=(e={})=>{const{excludeListeners:t=!1,excludeKeys:n}=e,r=E(()=>((n==null?void 0:n.value)||[]).concat(su)),o=De();return o?E(()=>{var s;return ys(Object.entries((s=o.proxy)==null?void 0:s.$attrs).filter(([a])=>!r.value.includes(a)&&!(t&&au.test(a))))}):E(()=>({}))},un=Symbol("formContextKey"),so=Symbol("formItemContextKey"),dr={prefix:Math.floor(Math.random()*1e4),current:0},lu=Symbol("elIdInjection"),uu=()=>De()?me(lu,dr):dr,cu=e=>{const t=uu(),n=vs();return ws(()=>h(e)||`${n.value}-id-${t.prefix}-${t.current++}`)},ao=()=>{const e=me(un,void 0),t=me(so,void 0);return{form:e,formItem:t}},fu=(e,{formItemContext:t,disableIdGeneration:n,disableIdManagement:r})=>{n||(n=U(!1)),r||(r=U(!1));const o=U();let s;const a=E(()=>{var i;return!!(!(e.label||e.ariaLabel)&&t&&t.inputIds&&((i=t.inputIds)==null?void 0:i.length)<=1)});return ft(()=>{s=Q([st(e,"id"),n],([i,l])=>{const u=i??(l?void 0:cu().value);u!==o.value&&(t!=null&&t.removeInputId&&(o.value&&t.removeInputId(o.value),!(r!=null&&r.value)&&!l&&u&&t.addInputId(u)),o.value=u)},{immediate:!0})}),Ss(()=>{s&&s(),t!=null&&t.removeInputId&&o.value&&t.removeInputId(o.value)}),{isLabeledByFormItem:a,inputId:o}},io=e=>{const t=De();return E(()=>{var n,r;return(r=(n=t==null?void 0:t.proxy)==null?void 0:n.$props)==null?void 0:r[e]})},cn=(e,t={})=>{const n=U(void 0),r=t.prop?n:io("size"),o=t.global?n:Ts(),s=t.form?{size:void 0}:me(un,void 0),a=t.formItem?{size:void 0}:me(so,void 0);return E(()=>r.value||h(e)||(a==null?void 0:a.size)||(s==null?void 0:s.size)||o.value||"")},fn=e=>{const t=io("disabled"),n=me(un,void 0);return E(()=>t.value||h(e)||(n==null?void 0:n.disabled)||!1)};function du(e,{beforeFocus:t,afterFocus:n,beforeBlur:r,afterBlur:o}={}){const s=De(),{emit:a}=s,i=Qe(),l=U(!1),u=m=>{Nt(t)&&t(m)||l.value||(l.value=!0,a("focus",m),n==null||n())},c=m=>{var y;Nt(r)&&r(m)||m.relatedTarget&&((y=i.value)!=null&&y.contains(m.relatedTarget))||(l.value=!1,a("blur",m),o==null||o())},p=()=>{var m,y;(m=i.value)!=null&&m.contains(document.activeElement)&&i.value!==document.activeElement||(y=e.value)==null||y.focus()};return Q(i,m=>{m&&m.setAttribute("tabindex","-1")}),pe(i,"focus",u,!0),pe(i,"blur",c,!0),pe(i,"click",p,!0),{isFocused:l,wrapperRef:i,handleFocus:u,handleBlur:c}}const pu=e=>/([\uAC00-\uD7AF\u3130-\u318F])+/gi.test(e);function hu({afterComposition:e,emit:t}){const n=U(!1),r=i=>{t==null||t("compositionstart",i),n.value=!0},o=i=>{var l;t==null||t("compositionupdate",i);const u=(l=i.target)==null?void 0:l.value,c=u[u.length-1]||"";n.value=!pu(c)},s=i=>{t==null||t("compositionend",i),n.value&&(n.value=!1,Te(()=>e(i)))};return{isComposing:n,handleComposition:i=>{i.type==="compositionend"?s(i):o(i)},handleCompositionStart:r,handleCompositionUpdate:o,handleCompositionEnd:s}}function mu(e){let t;function n(){if(e.value==null)return;const{selectionStart:o,selectionEnd:s,value:a}=e.value;if(o==null||s==null)return;const i=a.slice(0,Math.max(0,o)),l=a.slice(Math.max(0,s));t={selectionStart:o,selectionEnd:s,value:a,beforeTxt:i,afterTxt:l}}function r(){if(e.value==null||t==null)return;const{value:o}=e.value,{beforeTxt:s,afterTxt:a,selectionStart:i}=t;if(s==null||a==null||i==null)return;let l=o.length;if(o.endsWith(a))l=o.length-a.length;else if(o.startsWith(s))l=s.length;else{const u=s[i-1],c=o.indexOf(u,i-1);c!==-1&&(l=c+1)}e.value.setSelectionRange(l,l)}return[n,r]}const gu=D({name:"ElInput",inheritAttrs:!1}),bu=D({...gu,props:ru,emits:ou,setup(e,{expose:t,emit:n}){const r=e,o=Ur(),s=iu(),a=Hr(),i=E(()=>[r.type==="textarea"?v.b():d.b(),d.m(m.value),d.is("disabled",y.value),d.is("exceed",Do.value),{[d.b("group")]:a.prepend||a.append,[d.m("prefix")]:a.prefix||r.prefixIcon,[d.m("suffix")]:a.suffix||r.suffixIcon||r.clearable||r.showPassword,[d.bm("suffix","password-clear")]:Ke.value&&vt.value,[d.b("hidden")]:r.type==="hidden"},o.class]),l=E(()=>[d.e("wrapper"),d.is("focus",ee.value)]),{form:u,formItem:c}=ao(),{inputId:p}=fu(r,{formItemContext:c}),m=cn(),y=fn(),d=ue("input"),v=ue("textarea"),g=Qe(),w=Qe(),O=U(!1),S=U(!1),z=U(),I=Qe(r.inputStyle),B=E(()=>g.value||w.value),{wrapperRef:Y,isFocused:ee,handleFocus:We,handleBlur:Lo}=du(B,{beforeFocus(){return y.value},afterBlur(){var b;r.validateEvent&&((b=c==null?void 0:c.validate)==null||b.call(c,"blur").catch(k=>void 0))}}),mn=E(()=>{var b;return(b=u==null?void 0:u.statusIcon)!=null?b:!1}),Pe=E(()=>(c==null?void 0:c.validateState)||""),gn=E(()=>Pe.value&&Jl[Pe.value]),Uo=E(()=>S.value?Es:xs),Ho=E(()=>[o.style]),bn=E(()=>[r.inputStyle,I.value,{resize:r.resize}]),se=E(()=>Cl(r.modelValue)?"":String(r.modelValue)),Ke=E(()=>r.clearable&&!y.value&&!r.readonly&&!!se.value&&(ee.value||O.value)),vt=E(()=>r.showPassword&&!y.value&&!!se.value&&(!!se.value||ee.value)),we=E(()=>r.showWordLimit&&!!r.maxlength&&(r.type==="text"||r.type==="textarea")&&!y.value&&!r.readonly&&!r.showPassword),wt=E(()=>se.value.length),Do=E(()=>!!we.value&&wt.value>Number(r.maxlength)),zo=E(()=>!!a.suffix||!!r.suffixIcon||Ke.value||r.showPassword||we.value||!!Pe.value&&mn.value),[yn,vn]=mu(g);Ml(w,b=>{if(Vo(),!we.value||r.resize!=="both")return;const k=b[0],{width:Se}=k.contentRect;z.value={right:`calc(100% - ${Se+15+6}px)`}});const Ie=()=>{const{type:b,autosize:k}=r;if(!(!He||b!=="textarea"||!w.value))if(k){const Se=kn(k)?k.minRows:void 0,Cn=kn(k)?k.maxRows:void 0,_n=fr(w.value,Se,Cn);I.value={overflowY:"hidden",..._n},Te(()=>{w.value.offsetHeight,I.value=_n})}else I.value={minHeight:fr(w.value).minHeight}},Vo=(b=>{let k=!1;return()=>{var Se;if(k||!r.autosize)return;((Se=w.value)==null?void 0:Se.offsetParent)===null||(b(),k=!0)}})(Ie),Ne=()=>{const b=B.value,k=r.formatter?r.formatter(se.value):se.value;!b||b.value===k||(b.value=k)},St=async b=>{yn();let{value:k}=b.target;if(r.formatter&&(k=r.parser?r.parser(k):k),!Sn.value){if(k===se.value){Ne();return}n(Lt,k),n("input",k),await Te(),Ne(),vn()}},wn=b=>{n("change",b.target.value)},{isComposing:Sn,handleCompositionStart:Tn,handleCompositionUpdate:En,handleCompositionEnd:xn}=hu({emit:n,afterComposition:St}),qo=()=>{yn(),S.value=!S.value,setTimeout(vn)},Wo=()=>{var b;return(b=B.value)==null?void 0:b.focus()},Ko=()=>{var b;return(b=B.value)==null?void 0:b.blur()},Go=b=>{O.value=!1,n("mouseleave",b)},Jo=b=>{O.value=!0,n("mouseenter",b)},An=b=>{n("keydown",b)},Xo=()=>{var b;(b=B.value)==null||b.select()},On=()=>{n(Lt,""),n("change",""),n("clear"),n("input","")};return Q(()=>r.modelValue,()=>{var b;Te(()=>Ie()),r.validateEvent&&((b=c==null?void 0:c.validate)==null||b.call(c,"change").catch(k=>void 0))}),Q(se,()=>Ne()),Q(()=>r.type,async()=>{await Te(),Ne(),Ie()}),ft(()=>{!r.formatter&&r.parser,Ne(),Te(Ie)}),t({input:g,textarea:w,ref:B,textareaStyle:bn,autosize:st(r,"autosize"),isComposing:Sn,focus:Wo,blur:Ko,select:Xo,clear:On,resizeTextarea:Ie}),(b,k)=>(x(),N("div",{class:A([h(i),{[h(d).bm("group","append")]:b.$slots.append,[h(d).bm("group","prepend")]:b.$slots.prepend}]),style:xe(h(Ho)),onMouseenter:Jo,onMouseleave:Go},[_(" input "),b.type!=="textarea"?(x(),N(Fe,{key:0},[_(" prepend slot "),b.$slots.prepend?(x(),N("div",{key:0,class:A(h(d).be("group","prepend"))},[L(b.$slots,"prepend")],2)):_("v-if",!0),W("div",{ref_key:"wrapperRef",ref:Y,class:A(h(l))},[_(" prefix slot "),b.$slots.prefix||b.prefixIcon?(x(),N("span",{key:0,class:A(h(d).e("prefix"))},[W("span",{class:A(h(d).e("prefix-inner"))},[L(b.$slots,"prefix"),b.prefixIcon?(x(),$(h(re),{key:0,class:A(h(d).e("icon"))},{default:K(()=>[(x(),$(oe(b.prefixIcon)))]),_:1},8,["class"])):_("v-if",!0)],2)],2)):_("v-if",!0),W("input",ot({id:h(p),ref_key:"input",ref:g,class:h(d).e("inner")},h(s),{minlength:b.minlength,maxlength:b.maxlength,type:b.showPassword?S.value?"text":"password":b.type,disabled:h(y),readonly:b.readonly,autocomplete:b.autocomplete,tabindex:b.tabindex,"aria-label":b.ariaLabel,placeholder:b.placeholder,style:b.inputStyle,form:b.form,autofocus:b.autofocus,role:b.containerRole,onCompositionstart:h(Tn),onCompositionupdate:h(En),onCompositionend:h(xn),onInput:St,onChange:wn,onKeydown:An}),null,16,["id","minlength","maxlength","type","disabled","readonly","autocomplete","tabindex","aria-label","placeholder","form","autofocus","role","onCompositionstart","onCompositionupdate","onCompositionend"]),_(" suffix slot "),h(zo)?(x(),N("span",{key:1,class:A(h(d).e("suffix"))},[W("span",{class:A(h(d).e("suffix-inner"))},[!h(Ke)||!h(vt)||!h(we)?(x(),N(Fe,{key:0},[L(b.$slots,"suffix"),b.suffixIcon?(x(),$(h(re),{key:0,class:A(h(d).e("icon"))},{default:K(()=>[(x(),$(oe(b.suffixIcon)))]),_:1},8,["class"])):_("v-if",!0)],64)):_("v-if",!0),h(Ke)?(x(),$(h(re),{key:1,class:A([h(d).e("icon"),h(d).e("clear")]),onMousedown:Dr(h(As),["prevent"]),onClick:On},{default:K(()=>[Qt(h(Br))]),_:1},8,["class","onMousedown"])):_("v-if",!0),h(vt)?(x(),$(h(re),{key:2,class:A([h(d).e("icon"),h(d).e("password")]),onClick:qo},{default:K(()=>[(x(),$(oe(h(Uo))))]),_:1},8,["class"])):_("v-if",!0),h(we)?(x(),N("span",{key:3,class:A(h(d).e("count"))},[W("span",{class:A(h(d).e("count-inner"))},ie(h(wt))+" / "+ie(b.maxlength),3)],2)):_("v-if",!0),h(Pe)&&h(gn)&&h(mn)?(x(),$(h(re),{key:4,class:A([h(d).e("icon"),h(d).e("validateIcon"),h(d).is("loading",h(Pe)==="validating")])},{default:K(()=>[(x(),$(oe(h(gn))))]),_:1},8,["class"])):_("v-if",!0)],2)],2)):_("v-if",!0)],2),_(" append slot "),b.$slots.append?(x(),N("div",{key:1,class:A(h(d).be("group","append"))},[L(b.$slots,"append")],2)):_("v-if",!0)],64)):(x(),N(Fe,{key:1},[_(" textarea "),W("textarea",ot({id:h(p),ref_key:"textarea",ref:w,class:[h(v).e("inner"),h(d).is("focus",h(ee))]},h(s),{minlength:b.minlength,maxlength:b.maxlength,tabindex:b.tabindex,disabled:h(y),readonly:b.readonly,autocomplete:b.autocomplete,style:h(bn),"aria-label":b.ariaLabel,placeholder:b.placeholder,form:b.form,autofocus:b.autofocus,rows:b.rows,role:b.containerRole,onCompositionstart:h(Tn),onCompositionupdate:h(En),onCompositionend:h(xn),onInput:St,onFocus:h(We),onBlur:h(Lo),onChange:wn,onKeydown:An}),null,16,["id","minlength","maxlength","tabindex","disabled","readonly","autocomplete","aria-label","placeholder","form","autofocus","rows","role","onCompositionstart","onCompositionupdate","onCompositionend","onFocus","onBlur"]),h(we)?(x(),N("span",{key:0,style:xe(z.value),class:A(h(d).e("count"))},ie(h(wt))+" / "+ie(b.maxlength),7)):_("v-if",!0)],64))],38))}});var yu=ve(bu,[["__file","input.vue"]]);const Kf=ze(yu),xt={tab:"Tab",enter:"Enter",space:"Space",esc:"Escape",delete:"Delete",backspace:"Backspace",numpadEnter:"NumpadEnter"},lo=Symbol("buttonGroupContextKey"),vu=({from:e,replacement:t,scope:n,version:r,ref:o,type:s="API"},a)=>{Q(()=>h(a),i=>{},{immediate:!0})},wu=(e,t)=>{vu({from:"type.text",replacement:"link",version:"3.0.0",scope:"props",ref:"https://element-plus.org/en-US/component/button.html#button-attributes"},E(()=>e.type==="text"));const n=me(lo,void 0),r=Os("button"),{form:o}=ao(),s=cn(E(()=>n==null?void 0:n.size)),a=fn(),i=U(),l=Hr(),u=E(()=>e.type||(n==null?void 0:n.type)||""),c=E(()=>{var d,v,g;return(g=(v=e.autoInsertSpace)!=null?v:(d=r.value)==null?void 0:d.autoInsertSpace)!=null?g:!1}),p=E(()=>e.tag==="button"?{ariaDisabled:a.value||e.loading,disabled:a.value||e.loading,autofocus:e.autofocus,type:e.nativeType}:{}),m=E(()=>{var d;const v=(d=l.default)==null?void 0:d.call(l);if(c.value&&(v==null?void 0:v.length)===1){const g=v[0];if((g==null?void 0:g.type)===Cs){const w=g.children;return new RegExp("^\\p{Unified_Ideograph}{2}$","u").test(w.trim())}}return!1});return{_disabled:a,_size:s,_type:u,_ref:i,_props:p,shouldAddSpace:m,handleClick:d=>{if(a.value||e.loading){d.stopPropagation();return}e.nativeType==="reset"&&(o==null||o.resetFields()),t("click",d)}}},Su=["default","primary","success","warning","info","danger","text",""],Tu=["button","submit","reset"],Ut=ye({size:Lr,disabled:Boolean,type:{type:String,values:Su,default:""},icon:{type:Be},nativeType:{type:String,values:Tu,default:"button"},loading:Boolean,loadingIcon:{type:Be,default:()=>jr},plain:Boolean,text:Boolean,link:Boolean,bg:Boolean,autofocus:Boolean,round:Boolean,circle:Boolean,color:String,dark:Boolean,autoInsertSpace:{type:Boolean,default:void 0},tag:{type:Z([String,Object]),default:"button"}}),Eu={click:e=>e instanceof MouseEvent};function F(e,t){xu(e)&&(e="100%");var n=Au(e);return e=t===360?e:Math.min(t,Math.max(0,parseFloat(e))),n&&(e=parseInt(String(e*t),10)/100),Math.abs(e-t)<1e-6?1:(t===360?e=(e<0?e%t+t:e%t)/parseFloat(String(t)):e=e%t/parseFloat(String(t)),e)}function Ge(e){return Math.min(1,Math.max(0,e))}function xu(e){return typeof e=="string"&&e.indexOf(".")!==-1&&parseFloat(e)===1}function Au(e){return typeof e=="string"&&e.indexOf("%")!==-1}function uo(e){return e=parseFloat(e),(isNaN(e)||e<0||e>1)&&(e=1),e}function Je(e){return e<=1?"".concat(Number(e)*100,"%"):e}function ce(e){return e.length===1?"0"+e:String(e)}function Ou(e,t,n){return{r:F(e,255)*255,g:F(t,255)*255,b:F(n,255)*255}}function pr(e,t,n){e=F(e,255),t=F(t,255),n=F(n,255);var r=Math.max(e,t,n),o=Math.min(e,t,n),s=0,a=0,i=(r+o)/2;if(r===o)a=0,s=0;else{var l=r-o;switch(a=i>.5?l/(2-r-o):l/(r+o),r){case e:s=(t-n)/l+(t1&&(n-=1),n<1/6?e+(t-e)*(6*n):n<1/2?t:n<2/3?e+(t-e)*(2/3-n)*6:e}function Cu(e,t,n){var r,o,s;if(e=F(e,360),t=F(t,100),n=F(n,100),t===0)o=n,s=n,r=n;else{var a=n<.5?n*(1+t):n+t-n*t,i=2*n-a;r=At(i,a,e+1/3),o=At(i,a,e),s=At(i,a,e-1/3)}return{r:r*255,g:o*255,b:s*255}}function hr(e,t,n){e=F(e,255),t=F(t,255),n=F(n,255);var r=Math.max(e,t,n),o=Math.min(e,t,n),s=0,a=r,i=r-o,l=r===0?0:i/r;if(r===o)s=0;else{switch(r){case e:s=(t-n)/i+(t>16,g:(e&65280)>>8,b:e&255}}var Ht={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",goldenrod:"#daa520",gold:"#ffd700",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavenderblush:"#fff0f5",lavender:"#e6e6fa",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"};function Iu(e){var t={r:0,g:0,b:0},n=1,r=null,o=null,s=null,a=!1,i=!1;return typeof e=="string"&&(e=Fu(e)),typeof e=="object"&&(te(e.r)&&te(e.g)&&te(e.b)?(t=Ou(e.r,e.g,e.b),a=!0,i=String(e.r).substr(-1)==="%"?"prgb":"rgb"):te(e.h)&&te(e.s)&&te(e.v)?(r=Je(e.s),o=Je(e.v),t=_u(e.h,r,o),a=!0,i="hsv"):te(e.h)&&te(e.s)&&te(e.l)&&(r=Je(e.s),s=Je(e.l),t=Cu(e.h,r,s),a=!0,i="hsl"),Object.prototype.hasOwnProperty.call(e,"a")&&(n=e.a)),n=uo(n),{ok:a,format:e.format||i,r:Math.min(255,Math.max(t.r,0)),g:Math.min(255,Math.max(t.g,0)),b:Math.min(255,Math.max(t.b,0)),a:n}}var Nu="[-\\+]?\\d+%?",$u="[-\\+]?\\d*\\.\\d+%?",le="(?:".concat($u,")|(?:").concat(Nu,")"),Ot="[\\s|\\(]+(".concat(le,")[,|\\s]+(").concat(le,")[,|\\s]+(").concat(le,")\\s*\\)?"),Ct="[\\s|\\(]+(".concat(le,")[,|\\s]+(").concat(le,")[,|\\s]+(").concat(le,")[,|\\s]+(").concat(le,")\\s*\\)?"),G={CSS_UNIT:new RegExp(le),rgb:new RegExp("rgb"+Ot),rgba:new RegExp("rgba"+Ct),hsl:new RegExp("hsl"+Ot),hsla:new RegExp("hsla"+Ct),hsv:new RegExp("hsv"+Ot),hsva:new RegExp("hsva"+Ct),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/};function Fu(e){if(e=e.trim().toLowerCase(),e.length===0)return!1;var t=!1;if(Ht[e])e=Ht[e],t=!0;else if(e==="transparent")return{r:0,g:0,b:0,a:0,format:"name"};var n=G.rgb.exec(e);return n?{r:n[1],g:n[2],b:n[3]}:(n=G.rgba.exec(e),n?{r:n[1],g:n[2],b:n[3],a:n[4]}:(n=G.hsl.exec(e),n?{h:n[1],s:n[2],l:n[3]}:(n=G.hsla.exec(e),n?{h:n[1],s:n[2],l:n[3],a:n[4]}:(n=G.hsv.exec(e),n?{h:n[1],s:n[2],v:n[3]}:(n=G.hsva.exec(e),n?{h:n[1],s:n[2],v:n[3],a:n[4]}:(n=G.hex8.exec(e),n?{r:V(n[1]),g:V(n[2]),b:V(n[3]),a:gr(n[4]),format:t?"name":"hex8"}:(n=G.hex6.exec(e),n?{r:V(n[1]),g:V(n[2]),b:V(n[3]),format:t?"name":"hex"}:(n=G.hex4.exec(e),n?{r:V(n[1]+n[1]),g:V(n[2]+n[2]),b:V(n[3]+n[3]),a:gr(n[4]+n[4]),format:t?"name":"hex8"}:(n=G.hex3.exec(e),n?{r:V(n[1]+n[1]),g:V(n[2]+n[2]),b:V(n[3]+n[3]),format:t?"name":"hex"}:!1)))))))))}function te(e){return!!G.CSS_UNIT.exec(String(e))}var Mu=function(){function e(t,n){t===void 0&&(t=""),n===void 0&&(n={});var r;if(t instanceof e)return t;typeof t=="number"&&(t=Pu(t)),this.originalInput=t;var o=Iu(t);this.originalInput=t,this.r=o.r,this.g=o.g,this.b=o.b,this.a=o.a,this.roundA=Math.round(100*this.a)/100,this.format=(r=n.format)!==null&&r!==void 0?r:o.format,this.gradientType=n.gradientType,this.r<1&&(this.r=Math.round(this.r)),this.g<1&&(this.g=Math.round(this.g)),this.b<1&&(this.b=Math.round(this.b)),this.isValid=o.ok}return e.prototype.isDark=function(){return this.getBrightness()<128},e.prototype.isLight=function(){return!this.isDark()},e.prototype.getBrightness=function(){var t=this.toRgb();return(t.r*299+t.g*587+t.b*114)/1e3},e.prototype.getLuminance=function(){var t=this.toRgb(),n,r,o,s=t.r/255,a=t.g/255,i=t.b/255;return s<=.03928?n=s/12.92:n=Math.pow((s+.055)/1.055,2.4),a<=.03928?r=a/12.92:r=Math.pow((a+.055)/1.055,2.4),i<=.03928?o=i/12.92:o=Math.pow((i+.055)/1.055,2.4),.2126*n+.7152*r+.0722*o},e.prototype.getAlpha=function(){return this.a},e.prototype.setAlpha=function(t){return this.a=uo(t),this.roundA=Math.round(100*this.a)/100,this},e.prototype.isMonochrome=function(){var t=this.toHsl().s;return t===0},e.prototype.toHsv=function(){var t=hr(this.r,this.g,this.b);return{h:t.h*360,s:t.s,v:t.v,a:this.a}},e.prototype.toHsvString=function(){var t=hr(this.r,this.g,this.b),n=Math.round(t.h*360),r=Math.round(t.s*100),o=Math.round(t.v*100);return this.a===1?"hsv(".concat(n,", ").concat(r,"%, ").concat(o,"%)"):"hsva(".concat(n,", ").concat(r,"%, ").concat(o,"%, ").concat(this.roundA,")")},e.prototype.toHsl=function(){var t=pr(this.r,this.g,this.b);return{h:t.h*360,s:t.s,l:t.l,a:this.a}},e.prototype.toHslString=function(){var t=pr(this.r,this.g,this.b),n=Math.round(t.h*360),r=Math.round(t.s*100),o=Math.round(t.l*100);return this.a===1?"hsl(".concat(n,", ").concat(r,"%, ").concat(o,"%)"):"hsla(".concat(n,", ").concat(r,"%, ").concat(o,"%, ").concat(this.roundA,")")},e.prototype.toHex=function(t){return t===void 0&&(t=!1),mr(this.r,this.g,this.b,t)},e.prototype.toHexString=function(t){return t===void 0&&(t=!1),"#"+this.toHex(t)},e.prototype.toHex8=function(t){return t===void 0&&(t=!1),Ru(this.r,this.g,this.b,this.a,t)},e.prototype.toHex8String=function(t){return t===void 0&&(t=!1),"#"+this.toHex8(t)},e.prototype.toHexShortString=function(t){return t===void 0&&(t=!1),this.a===1?this.toHexString(t):this.toHex8String(t)},e.prototype.toRgb=function(){return{r:Math.round(this.r),g:Math.round(this.g),b:Math.round(this.b),a:this.a}},e.prototype.toRgbString=function(){var t=Math.round(this.r),n=Math.round(this.g),r=Math.round(this.b);return this.a===1?"rgb(".concat(t,", ").concat(n,", ").concat(r,")"):"rgba(".concat(t,", ").concat(n,", ").concat(r,", ").concat(this.roundA,")")},e.prototype.toPercentageRgb=function(){var t=function(n){return"".concat(Math.round(F(n,255)*100),"%")};return{r:t(this.r),g:t(this.g),b:t(this.b),a:this.a}},e.prototype.toPercentageRgbString=function(){var t=function(n){return Math.round(F(n,255)*100)};return this.a===1?"rgb(".concat(t(this.r),"%, ").concat(t(this.g),"%, ").concat(t(this.b),"%)"):"rgba(".concat(t(this.r),"%, ").concat(t(this.g),"%, ").concat(t(this.b),"%, ").concat(this.roundA,")")},e.prototype.toName=function(){if(this.a===0)return"transparent";if(this.a<1)return!1;for(var t="#"+mr(this.r,this.g,this.b,!1),n=0,r=Object.entries(Ht);n=0,s=!n&&o&&(t.startsWith("hex")||t==="name");return s?t==="name"&&this.a===0?this.toName():this.toRgbString():(t==="rgb"&&(r=this.toRgbString()),t==="prgb"&&(r=this.toPercentageRgbString()),(t==="hex"||t==="hex6")&&(r=this.toHexString()),t==="hex3"&&(r=this.toHexString(!0)),t==="hex4"&&(r=this.toHex8String(!0)),t==="hex8"&&(r=this.toHex8String()),t==="name"&&(r=this.toName()),t==="hsl"&&(r=this.toHslString()),t==="hsv"&&(r=this.toHsvString()),r||this.toHexString())},e.prototype.toNumber=function(){return(Math.round(this.r)<<16)+(Math.round(this.g)<<8)+Math.round(this.b)},e.prototype.clone=function(){return new e(this.toString())},e.prototype.lighten=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.l+=t/100,n.l=Ge(n.l),new e(n)},e.prototype.brighten=function(t){t===void 0&&(t=10);var n=this.toRgb();return n.r=Math.max(0,Math.min(255,n.r-Math.round(255*-(t/100)))),n.g=Math.max(0,Math.min(255,n.g-Math.round(255*-(t/100)))),n.b=Math.max(0,Math.min(255,n.b-Math.round(255*-(t/100)))),new e(n)},e.prototype.darken=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.l-=t/100,n.l=Ge(n.l),new e(n)},e.prototype.tint=function(t){return t===void 0&&(t=10),this.mix("white",t)},e.prototype.shade=function(t){return t===void 0&&(t=10),this.mix("black",t)},e.prototype.desaturate=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.s-=t/100,n.s=Ge(n.s),new e(n)},e.prototype.saturate=function(t){t===void 0&&(t=10);var n=this.toHsl();return n.s+=t/100,n.s=Ge(n.s),new e(n)},e.prototype.greyscale=function(){return this.desaturate(100)},e.prototype.spin=function(t){var n=this.toHsl(),r=(n.h+t)%360;return n.h=r<0?360+r:r,new e(n)},e.prototype.mix=function(t,n){n===void 0&&(n=50);var r=this.toRgb(),o=new e(t).toRgb(),s=n/100,a={r:(o.r-r.r)*s+r.r,g:(o.g-r.g)*s+r.g,b:(o.b-r.b)*s+r.b,a:(o.a-r.a)*s+r.a};return new e(a)},e.prototype.analogous=function(t,n){t===void 0&&(t=6),n===void 0&&(n=30);var r=this.toHsl(),o=360/n,s=[this];for(r.h=(r.h-(o*t>>1)+720)%360;--t;)r.h=(r.h+o)%360,s.push(new e(r));return s},e.prototype.complement=function(){var t=this.toHsl();return t.h=(t.h+180)%360,new e(t)},e.prototype.monochromatic=function(t){t===void 0&&(t=6);for(var n=this.toHsv(),r=n.h,o=n.s,s=n.v,a=[],i=1/t;t--;)a.push(new e({h:r,s:o,v:s})),s=(s+i)%1;return a},e.prototype.splitcomplement=function(){var t=this.toHsl(),n=t.h;return[this,new e({h:(n+72)%360,s:t.s,l:t.l}),new e({h:(n+216)%360,s:t.s,l:t.l})]},e.prototype.onBackground=function(t){var n=this.toRgb(),r=new e(t).toRgb(),o=n.a+r.a*(1-n.a);return new e({r:(n.r*n.a+r.r*r.a*(1-n.a))/o,g:(n.g*n.a+r.g*r.a*(1-n.a))/o,b:(n.b*n.a+r.b*r.a*(1-n.a))/o,a:o})},e.prototype.triad=function(){return this.polyad(3)},e.prototype.tetrad=function(){return this.polyad(4)},e.prototype.polyad=function(t){for(var n=this.toHsl(),r=n.h,o=[this],s=360/t,a=1;a{let r={},o=e.color;if(o){const s=o.match(/var\((.*?)\)/);s&&(o=window.getComputedStyle(window.document.documentElement).getPropertyValue(s[1]));const a=new Mu(o),i=e.dark?a.tint(20).toString():ae(a,20);if(e.plain)r=n.cssVarBlock({"bg-color":e.dark?ae(a,90):a.tint(90).toString(),"text-color":o,"border-color":e.dark?ae(a,50):a.tint(50).toString(),"hover-text-color":`var(${n.cssVarName("color-white")})`,"hover-bg-color":o,"hover-border-color":o,"active-bg-color":i,"active-text-color":`var(${n.cssVarName("color-white")})`,"active-border-color":i}),t.value&&(r[n.cssVarBlockName("disabled-bg-color")]=e.dark?ae(a,90):a.tint(90).toString(),r[n.cssVarBlockName("disabled-text-color")]=e.dark?ae(a,50):a.tint(50).toString(),r[n.cssVarBlockName("disabled-border-color")]=e.dark?ae(a,80):a.tint(80).toString());else{const l=e.dark?ae(a,30):a.tint(30).toString(),u=a.isDark()?`var(${n.cssVarName("color-white")})`:`var(${n.cssVarName("color-black")})`;if(r=n.cssVarBlock({"bg-color":o,"text-color":u,"border-color":o,"hover-bg-color":l,"hover-text-color":u,"hover-border-color":l,"active-bg-color":i,"active-border-color":i}),t.value){const c=e.dark?ae(a,50):a.tint(50).toString();r[n.cssVarBlockName("disabled-bg-color")]=c,r[n.cssVarBlockName("disabled-text-color")]=e.dark?"rgba(255, 255, 255, 0.5)":`var(${n.cssVarName("color-white")})`,r[n.cssVarBlockName("disabled-border-color")]=c}}}return r})}const ju=D({name:"ElButton"}),Lu=D({...ju,props:Ut,emits:Eu,setup(e,{expose:t,emit:n}){const r=e,o=Bu(r),s=ue("button"),{_ref:a,_size:i,_type:l,_disabled:u,_props:c,shouldAddSpace:p,handleClick:m}=wu(r,n),y=E(()=>[s.b(),s.m(l.value),s.m(i.value),s.is("disabled",u.value),s.is("loading",r.loading),s.is("plain",r.plain),s.is("round",r.round),s.is("circle",r.circle),s.is("text",r.text),s.is("link",r.link),s.is("has-bg",r.bg)]);return t({ref:a,size:i,type:l,disabled:u,shouldAddSpace:p}),(d,v)=>(x(),$(oe(d.tag),ot({ref_key:"_ref",ref:a},h(c),{class:h(y),style:h(o),onClick:h(m)}),{default:K(()=>[d.loading?(x(),N(Fe,{key:0},[d.$slots.loading?L(d.$slots,"loading",{key:0}):(x(),$(h(re),{key:1,class:A(h(s).is("loading"))},{default:K(()=>[(x(),$(oe(d.loadingIcon)))]),_:1},8,["class"]))],64)):d.icon||d.$slots.icon?(x(),$(h(re),{key:1},{default:K(()=>[d.icon?(x(),$(oe(d.icon),{key:0})):L(d.$slots,"icon",{key:1})]),_:3})):_("v-if",!0),d.$slots.default?(x(),N("span",{key:2,class:A({[h(s).em("text","expand")]:h(p)})},[L(d.$slots,"default")],2)):_("v-if",!0)]),_:3},16,["class","style","onClick"]))}});var Uu=ve(Lu,[["__file","button.vue"]]);const Hu={size:Ut.size,type:Ut.type},Du=D({name:"ElButtonGroup"}),zu=D({...Du,props:Hu,setup(e){const t=e;_s(lo,Rs({size:st(t,"size"),type:st(t,"type")}));const n=ue("button");return(r,o)=>(x(),N("div",{class:A(h(n).b("group"))},[L(r.$slots,"default")],2))}});var co=ve(zu,[["__file","button-group.vue"]]);const Gf=ze(Uu,{ButtonGroup:co});ks(co);const Vu=ye({header:{type:String,default:""},footer:{type:String,default:""},bodyStyle:{type:Z([String,Object,Array]),default:""},bodyClass:String,shadow:{type:String,values:["always","hover","never"],default:"always"}}),qu=D({name:"ElCard"}),Wu=D({...qu,props:Vu,setup(e){const t=ue("card");return(n,r)=>(x(),N("div",{class:A([h(t).b(),h(t).is(`${n.shadow}-shadow`)])},[n.$slots.header||n.header?(x(),N("div",{key:0,class:A(h(t).e("header"))},[L(n.$slots,"header",{},()=>[Pn(ie(n.header),1)])],2)):_("v-if",!0),W("div",{class:A([h(t).e("body"),n.bodyClass]),style:xe(n.bodyStyle)},[L(n.$slots,"default")],6),n.$slots.footer||n.footer?(x(),N("div",{key:1,class:A(h(t).e("footer"))},[L(n.$slots,"footer",{},()=>[Pn(ie(n.footer),1)])],2)):_("v-if",!0)],2))}});var Ku=ve(Wu,[["__file","card.vue"]]);const Jf=ze(Ku),Gu=ye({type:{type:String,values:["primary","success","info","warning","danger",""],default:""},size:{type:String,values:Ps,default:""},truncated:Boolean,lineClamp:{type:[String,Number]},tag:{type:String,default:"span"}}),Ju=D({name:"ElText"}),Xu=D({...Ju,props:Gu,setup(e){const t=e,n=U(),r=cn(),o=ue("text"),s=E(()=>[o.b(),o.m(t.type),o.m(r.value),o.is("truncated",t.truncated),o.is("line-clamp",!rt(t.lineClamp))]),a=Ur().title,i=()=>{var l,u,c,p,m;if(a)return;let y=!1;const d=((l=n.value)==null?void 0:l.textContent)||"";if(t.truncated){const v=(u=n.value)==null?void 0:u.offsetWidth,g=(c=n.value)==null?void 0:c.scrollWidth;v&&g&&g>v&&(y=!0)}else if(!rt(t.lineClamp)){const v=(p=n.value)==null?void 0:p.offsetHeight,g=(m=n.value)==null?void 0:m.scrollHeight;v&&g&&g>v&&(y=!0)}y?n.value.setAttribute("title",d):n.value.removeAttribute("title")};return ft(i),Is(i),(l,u)=>(x(),$(oe(l.tag),{ref_key:"textRef",ref:n,class:A(h(s)),style:xe({"-webkit-line-clamp":l.lineClamp})},{default:K(()=>[L(l.$slots,"default")]),_:3},8,["class","style"]))}});var Qu=ve(Xu,[["__file","text.vue"]]);const Xf=ze(Qu),fo=["success","info","warning","error"],Zu=ye({customClass:{type:String,default:""},dangerouslyUseHTMLString:Boolean,duration:{type:Number,default:4500},icon:{type:Be},id:{type:String,default:""},message:{type:Z([String,Object,Function]),default:""},offset:{type:Number,default:0},onClick:{type:Z(Function),default:()=>{}},onClose:{type:Z(Function),required:!0},position:{type:String,values:["top-right","top-left","bottom-right","bottom-left"],default:"top-right"},showClose:{type:Boolean,default:!0},title:{type:String,default:""},type:{type:String,values:[...fo,""],default:""},zIndex:Number}),Yu={destroy:()=>!0},ec=D({name:"ElNotification"}),tc=D({...ec,props:Zu,emits:Yu,setup(e,{expose:t}){const n=e,{ns:r,zIndex:o}=Ns("notification"),{nextZIndex:s,currentZIndex:a}=o,{Close:i}=Gl,l=U(!1);let u;const c=E(()=>{const S=n.type;return S&&cr[n.type]?r.m(S):""}),p=E(()=>n.type&&cr[n.type]||n.icon),m=E(()=>n.position.endsWith("right")?"right":"left"),y=E(()=>n.position.startsWith("top")?"top":"bottom"),d=E(()=>{var S;return{[y.value]:`${n.offset}px`,zIndex:(S=n.zIndex)!=null?S:a.value}});function v(){n.duration>0&&({stop:u}=Fs(()=>{l.value&&w()},n.duration))}function g(){u==null||u()}function w(){l.value=!1}function O({code:S}){S===xt.delete||S===xt.backspace?g():S===xt.esc?l.value&&w():v()}return ft(()=>{v(),s(),l.value=!0}),pe(document,"keydown",O),t({visible:l,close:w}),(S,z)=>(x(),$($s,{name:h(r).b("fade"),onBeforeLeave:S.onClose,onAfterLeave:I=>S.$emit("destroy"),persisted:""},{default:K(()=>[In(W("div",{id:S.id,class:A([h(r).b(),S.customClass,h(m)]),style:xe(h(d)),role:"alert",onMouseenter:g,onMouseleave:v,onClick:S.onClick},[h(p)?(x(),$(h(re),{key:0,class:A([h(r).e("icon"),h(c)])},{default:K(()=>[(x(),$(oe(h(p))))]),_:1},8,["class"])):_("v-if",!0),W("div",{class:A(h(r).e("group"))},[W("h2",{class:A(h(r).e("title")),textContent:ie(S.title)},null,10,["textContent"]),In(W("div",{class:A(h(r).e("content")),style:xe(S.title?void 0:{margin:0})},[L(S.$slots,"default",{},()=>[S.dangerouslyUseHTMLString?(x(),N(Fe,{key:1},[_(" Caution here, message could've been compromised, never use user's input as message "),W("p",{innerHTML:S.message},null,8,["innerHTML"])],2112)):(x(),N("p",{key:0},ie(S.message),1))])],6),[[Nn,S.message]]),S.showClose?(x(),$(h(re),{key:0,class:A(h(r).e("closeBtn")),onClick:Dr(w,["stop"])},{default:K(()=>[Qt(h(i))]),_:1},8,["class","onClick"])):_("v-if",!0)],2)],46,["id","onClick"]),[[Nn,l.value]])]),_:3},8,["name","onBeforeLeave","onAfterLeave"]))}});var nc=ve(tc,[["__file","notification.vue"]]);const at={"top-left":[],"top-right":[],"bottom-left":[],"bottom-right":[]},Dt=16;let rc=1;const Oe=function(e={},t){if(!He)return{close:()=>{}};(de(e)||$t(e))&&(e={message:e});const n=e.position||"top-right";let r=e.offset||0;at[n].forEach(({vm:c})=>{var p;r+=(((p=c.el)==null?void 0:p.offsetHeight)||0)+Dt}),r+=Dt;const o=`notification_${rc++}`,s=e.onClose,a={...e,offset:r,id:o,onClose:()=>{oc(o,n,s)}};let i=document.body;$n(e.appendTo)?i=e.appendTo:de(e.appendTo)&&(i=document.querySelector(e.appendTo)),$n(i)||(i=document.body);const l=document.createElement("div"),u=Qt(nc,a,Nt(a.message)?a.message:$t(a.message)?()=>a.message:null);return u.appContext=rt(t)?Oe._context:t,u.props.onDestroy=()=>{Fn(null,l)},Fn(u,l),at[n].push({vm:u}),i.appendChild(l.firstElementChild),{close:()=>{u.component.exposed.visible.value=!1}}};fo.forEach(e=>{Oe[e]=(t={},n)=>((de(t)||$t(t))&&(t={message:t}),Oe({...t,type:e},n))});function oc(e,t,n){const r=at[t],o=r.findIndex(({vm:u})=>{var c;return((c=u.component)==null?void 0:c.props.id)===e});if(o===-1)return;const{vm:s}=r[o];if(!s)return;n==null||n(s);const a=s.el.offsetHeight,i=t.split("-")[0];r.splice(o,1);const l=r.length;if(!(l<1))for(let u=o;u{t.component.exposed.visible.value=!1})}Oe.closeAll=sc;Oe._context=null;const Xe=Ms(Oe,"$notify"),Qf="data:image/svg+xml,%3csvg%20version='1.1'%20baseProfile='full'%20width='100%25'%20height='100%25'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201400%20800'%20%3e%3crect%20x='1300'%20y='400'%20rx='40'%20ry='40'%20width='300'%20height='300'%20stroke='rgb(129,%20201,%20149)'%20fill='rgb(129,%20201,%20149)'%3e%3canimateTransform%20attributeType='XML'%20attributeName='transform'%20begin='0s'%20dur='35s'%20type='rotate'%20from='0%201450%20550'%20to='360%201450%20550'%20repeatCount='indefinite'%20/%3e%3c/rect%3e%3cpath%20d='M%20100%20350%20A%20150%20150%200%201%201%20400%20350%20Q400%20370%20380%20370%20L%20250%20370%20L%20120%20370%20Q100%20370%20100%20350'%20stroke='rgb(253,%20214,%2099)'%20fill='rgb(253,%20214,%2099)'%3e%3canimateMotion%20path='M%20800%20-200%20L%20800%20-300%20L%20800%20-200'%20dur='20s'%20begin='0s'%20repeatCount='indefinite'%20/%3e%3canimateTransform%20attributeType='XML'%20attributeName='transform'%20begin='0s'%20dur='30s'%20type='rotate'%20values='0%20210%20530%20;%20-30%20210%20530%20;%200%20210%20530'%20keyTimes='0%20;%200.5%20;%201'%20repeatCount='indefinite'%20/%3e%3c/path%3e%3ccircle%20cx='200'%20cy='150'%20r='20'%20stroke='%231a73e8'%20fill='%231a73e8'%3e%3canimateMotion%20path='M%200%200%20L%2040%2020%20Z'%20dur='5s'%20repeatCount='indefinite'%20/%3e%3c/circle%3e%3c!--%20三角形%20--%3e%3cpath%20d='M%20165%20580%20L%20270%20580%20Q275%20578%20270%20570%20L%20223%20483%20Q220%20480%20217%20483%20L%20165%20570%20Q160%20578%20165%20580'%20stroke='rgb(238,%20103,%2092)'%20fill='rgb(238,%20103,%2092)'%3e%3canimateTransform%20attributeType='XML'%20attributeName='transform'%20begin='0s'%20dur='35s'%20type='rotate'%20from='0%20210%20530'%20to='360%20210%20530'%20repeatCount='indefinite'%20/%3e%3c/path%3e%3ccircle%20cx='1200'%20cy='600'%20r='30'%20stroke='rgb(241,%20243,%20244)'%20fill='rgb(241,%20243,%20244)'%3e%3canimateMotion%20path='M%200%200%20L%20-20%2040%20Z'%20dur='9s'%20repeatCount='indefinite'%20/%3e%3c/circle%3e%3cpath%20d='M%20100%20350%20A%2040%2040%200%201%201%20180%20350%20L%20180%20430%20A%2040%2040%200%201%201%20100%20430%20Z'%20stroke='rgb(241,%20243,%20244)'%20fill='rgb(241,%20243,%20244)'%3e%3canimateMotion%20path='M%20140%20390%20L%20180%20360%20L%20140%20390'%20dur='20s'%20begin='0s'%20repeatCount='indefinite'%20/%3e%3canimateTransform%20attributeType='XML'%20attributeName='transform'%20begin='0s'%20dur='30s'%20type='rotate'%20values='0%20140%20390;%20-60%20140%20390;%200%20140%20390'%20keyTimes='0%20;%200.5%20;%201'%20repeatCount='indefinite'%20/%3e%3c/path%3e%3crect%20x='900'%20y='600'%20rx='30'%20ry='30'%20width='90'%20height='90'%20stroke='rgb(129,%20201,%20149)'%20fill='rgb(129,%20201,%20149)'%3e%3canimateTransform%20attributeType='XML'%20attributeName='transform'%20begin='0s'%20dur='50s'%20type='rotate'%20from='0%20900%20550'%20to='360%20900%20550'%20repeatCount='indefinite'%20/%3e%3c/rect%3e%3c/svg%3e";function po(e,t){return function(){return e.apply(t,arguments)}}const{toString:ac}=Object.prototype,{getPrototypeOf:dn}=Object,pt=(e=>t=>{const n=ac.call(t);return e[n]||(e[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),J=e=>(e=e.toLowerCase(),t=>pt(t)===e),ht=e=>t=>typeof t===e,{isArray:Re}=Array,je=ht("undefined");function ic(e){return e!==null&&!je(e)&&e.constructor!==null&&!je(e.constructor)&&q(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const ho=J("ArrayBuffer");function lc(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&ho(e.buffer),t}const uc=ht("string"),q=ht("function"),mo=ht("number"),mt=e=>e!==null&&typeof e=="object",cc=e=>e===!0||e===!1,Ze=e=>{if(pt(e)!=="object")return!1;const t=dn(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(Symbol.toStringTag in e)&&!(Symbol.iterator in e)},fc=J("Date"),dc=J("File"),pc=J("Blob"),hc=J("FileList"),mc=e=>mt(e)&&q(e.pipe),gc=e=>{let t;return e&&(typeof FormData=="function"&&e instanceof FormData||q(e.append)&&((t=pt(e))==="formdata"||t==="object"&&q(e.toString)&&e.toString()==="[object FormData]"))},bc=J("URLSearchParams"),[yc,vc,wc,Sc]=["ReadableStream","Request","Response","Headers"].map(J),Tc=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function Ve(e,t,{allOwnKeys:n=!1}={}){if(e===null||typeof e>"u")return;let r,o;if(typeof e!="object"&&(e=[e]),Re(e))for(r=0,o=e.length;r0;)if(o=n[r],t===o.toLowerCase())return o;return null}const fe=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,bo=e=>!je(e)&&e!==fe;function zt(){const{caseless:e}=bo(this)&&this||{},t={},n=(r,o)=>{const s=e&&go(t,o)||o;Ze(t[s])&&Ze(r)?t[s]=zt(t[s],r):Ze(r)?t[s]=zt({},r):Re(r)?t[s]=r.slice():t[s]=r};for(let r=0,o=arguments.length;r(Ve(t,(o,s)=>{n&&q(o)?e[s]=po(o,n):e[s]=o},{allOwnKeys:r}),e),xc=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),Ac=(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},Oc=(e,t,n,r)=>{let o,s,a;const i={};if(t=t||{},e==null)return t;do{for(o=Object.getOwnPropertyNames(e),s=o.length;s-- >0;)a=o[s],(!r||r(a,e,t))&&!i[a]&&(t[a]=e[a],i[a]=!0);e=n!==!1&&dn(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},Cc=(e,t,n)=>{e=String(e),(n===void 0||n>e.length)&&(n=e.length),n-=t.length;const r=e.indexOf(t,n);return r!==-1&&r===n},_c=e=>{if(!e)return null;if(Re(e))return e;let t=e.length;if(!mo(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},Rc=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&dn(Uint8Array)),kc=(e,t)=>{const r=(e&&e[Symbol.iterator]).call(e);let o;for(;(o=r.next())&&!o.done;){const s=o.value;t.call(e,s[0],s[1])}},Pc=(e,t)=>{let n;const r=[];for(;(n=e.exec(t))!==null;)r.push(n);return r},Ic=J("HTMLFormElement"),Nc=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,o){return r.toUpperCase()+o}),br=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),$c=J("RegExp"),yo=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};Ve(n,(o,s)=>{let a;(a=t(o,s,e))!==!1&&(r[s]=a||o)}),Object.defineProperties(e,r)},Fc=e=>{yo(e,(t,n)=>{if(q(e)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=e[n];if(q(r)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},Mc=(e,t)=>{const n={},r=o=>{o.forEach(s=>{n[s]=!0})};return Re(e)?r(e):r(String(e).split(t)),n},Bc=()=>{},jc=(e,t)=>e!=null&&Number.isFinite(e=+e)?e:t,_t="abcdefghijklmnopqrstuvwxyz",yr="0123456789",vo={DIGIT:yr,ALPHA:_t,ALPHA_DIGIT:_t+_t.toUpperCase()+yr},Lc=(e=16,t=vo.ALPHA_DIGIT)=>{let n="";const{length:r}=t;for(;e--;)n+=t[Math.random()*r|0];return n};function Uc(e){return!!(e&&q(e.append)&&e[Symbol.toStringTag]==="FormData"&&e[Symbol.iterator])}const Hc=e=>{const t=new Array(10),n=(r,o)=>{if(mt(r)){if(t.indexOf(r)>=0)return;if(!("toJSON"in r)){t[o]=r;const s=Re(r)?[]:{};return Ve(r,(a,i)=>{const l=n(a,o+1);!je(l)&&(s[i]=l)}),t[o]=void 0,s}}return r};return n(e,0)},Dc=J("AsyncFunction"),zc=e=>e&&(mt(e)||q(e))&&q(e.then)&&q(e.catch),wo=((e,t)=>e?setImmediate:t?((n,r)=>(fe.addEventListener("message",({source:o,data:s})=>{o===fe&&s===n&&r.length&&r.shift()()},!1),o=>{r.push(o),fe.postMessage(n,"*")}))(`axios@${Math.random()}`,[]):n=>setTimeout(n))(typeof setImmediate=="function",q(fe.postMessage)),Vc=typeof queueMicrotask<"u"?queueMicrotask.bind(fe):typeof process<"u"&&process.nextTick||wo,f={isArray:Re,isArrayBuffer:ho,isBuffer:ic,isFormData:gc,isArrayBufferView:lc,isString:uc,isNumber:mo,isBoolean:cc,isObject:mt,isPlainObject:Ze,isReadableStream:yc,isRequest:vc,isResponse:wc,isHeaders:Sc,isUndefined:je,isDate:fc,isFile:dc,isBlob:pc,isRegExp:$c,isFunction:q,isStream:mc,isURLSearchParams:bc,isTypedArray:Rc,isFileList:hc,forEach:Ve,merge:zt,extend:Ec,trim:Tc,stripBOM:xc,inherits:Ac,toFlatObject:Oc,kindOf:pt,kindOfTest:J,endsWith:Cc,toArray:_c,forEachEntry:kc,matchAll:Pc,isHTMLForm:Ic,hasOwnProperty:br,hasOwnProp:br,reduceDescriptors:yo,freezeMethods:Fc,toObjectSet:Mc,toCamelCase:Nc,noop:Bc,toFiniteNumber:jc,findKey:go,global:fe,isContextDefined:bo,ALPHABET:vo,generateString:Lc,isSpecCompliantForm:Uc,toJSONObject:Hc,isAsyncFn:Dc,isThenable:zc,setImmediate:wo,asap:Vc};function T(e,t,n,r,o){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),o&&(this.response=o,this.status=o.status?o.status:null)}f.inherits(T,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:f.toJSONObject(this.config),code:this.code,status:this.status}}});const So=T.prototype,To={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(e=>{To[e]={value:e}});Object.defineProperties(T,To);Object.defineProperty(So,"isAxiosError",{value:!0});T.from=(e,t,n,r,o,s)=>{const a=Object.create(So);return f.toFlatObject(e,a,function(l){return l!==Error.prototype},i=>i!=="isAxiosError"),T.call(a,e.message,t,n,r,o),a.cause=e,a.name=e.name,s&&Object.assign(a,s),a};const qc=null;function Vt(e){return f.isPlainObject(e)||f.isArray(e)}function Eo(e){return f.endsWith(e,"[]")?e.slice(0,-2):e}function vr(e,t,n){return e?e.concat(t).map(function(o,s){return o=Eo(o),!n&&s?"["+o+"]":o}).join(n?".":""):t}function Wc(e){return f.isArray(e)&&!e.some(Vt)}const Kc=f.toFlatObject(f,{},null,function(t){return/^is[A-Z]/.test(t)});function gt(e,t,n){if(!f.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,n=f.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(v,g){return!f.isUndefined(g[v])});const r=n.metaTokens,o=n.visitor||c,s=n.dots,a=n.indexes,l=(n.Blob||typeof Blob<"u"&&Blob)&&f.isSpecCompliantForm(t);if(!f.isFunction(o))throw new TypeError("visitor must be a function");function u(d){if(d===null)return"";if(f.isDate(d))return d.toISOString();if(!l&&f.isBlob(d))throw new T("Blob is not supported. Use a Buffer instead.");return f.isArrayBuffer(d)||f.isTypedArray(d)?l&&typeof Blob=="function"?new Blob([d]):Buffer.from(d):d}function c(d,v,g){let w=d;if(d&&!g&&typeof d=="object"){if(f.endsWith(v,"{}"))v=r?v:v.slice(0,-2),d=JSON.stringify(d);else if(f.isArray(d)&&Wc(d)||(f.isFileList(d)||f.endsWith(v,"[]"))&&(w=f.toArray(d)))return v=Eo(v),w.forEach(function(S,z){!(f.isUndefined(S)||S===null)&&t.append(a===!0?vr([v],z,s):a===null?v:v+"[]",u(S))}),!1}return Vt(d)?!0:(t.append(vr(g,v,s),u(d)),!1)}const p=[],m=Object.assign(Kc,{defaultVisitor:c,convertValue:u,isVisitable:Vt});function y(d,v){if(!f.isUndefined(d)){if(p.indexOf(d)!==-1)throw Error("Circular reference detected in "+v.join("."));p.push(d),f.forEach(d,function(w,O){(!(f.isUndefined(w)||w===null)&&o.call(t,w,f.isString(O)?O.trim():O,v,m))===!0&&y(w,v?v.concat(O):[O])}),p.pop()}}if(!f.isObject(e))throw new TypeError("data must be an object");return y(e),t}function wr(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(r){return t[r]})}function pn(e,t){this._pairs=[],e&>(e,this,t)}const xo=pn.prototype;xo.append=function(t,n){this._pairs.push([t,n])};xo.toString=function(t){const n=t?function(r){return t.call(this,r,wr)}:wr;return this._pairs.map(function(o){return n(o[0])+"="+n(o[1])},"").join("&")};function Gc(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function Ao(e,t,n){if(!t)return e;const r=n&&n.encode||Gc;f.isFunction(n)&&(n={serialize:n});const o=n&&n.serialize;let s;if(o?s=o(t,n):s=f.isURLSearchParams(t)?t.toString():new pn(t,n).toString(r),s){const a=e.indexOf("#");a!==-1&&(e=e.slice(0,a)),e+=(e.indexOf("?")===-1?"?":"&")+s}return e}class Sr{constructor(){this.handlers=[]}use(t,n,r){return this.handlers.push({fulfilled:t,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){f.forEach(this.handlers,function(r){r!==null&&t(r)})}}const Oo={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},Jc=typeof URLSearchParams<"u"?URLSearchParams:pn,Xc=typeof FormData<"u"?FormData:null,Qc=typeof Blob<"u"?Blob:null,Zc={isBrowser:!0,classes:{URLSearchParams:Jc,FormData:Xc,Blob:Qc},protocols:["http","https","file","blob","url","data"]},hn=typeof window<"u"&&typeof document<"u",qt=typeof navigator=="object"&&navigator||void 0,Yc=hn&&(!qt||["ReactNative","NativeScript","NS"].indexOf(qt.product)<0),ef=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",tf=hn&&window.location.href||"http://localhost",nf=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:hn,hasStandardBrowserEnv:Yc,hasStandardBrowserWebWorkerEnv:ef,navigator:qt,origin:tf},Symbol.toStringTag,{value:"Module"})),M={...nf,...Zc};function rf(e,t){return gt(e,new M.classes.URLSearchParams,Object.assign({visitor:function(n,r,o,s){return M.isNode&&f.isBuffer(n)?(this.append(r,n.toString("base64")),!1):s.defaultVisitor.apply(this,arguments)}},t))}function of(e){return f.matchAll(/\w+|\[(\w*)]/g,e).map(t=>t[0]==="[]"?"":t[1]||t[0])}function sf(e){const t={},n=Object.keys(e);let r;const o=n.length;let s;for(r=0;r=n.length;return a=!a&&f.isArray(o)?o.length:a,l?(f.hasOwnProp(o,a)?o[a]=[o[a],r]:o[a]=r,!i):((!o[a]||!f.isObject(o[a]))&&(o[a]=[]),t(n,r,o[a],s)&&f.isArray(o[a])&&(o[a]=sf(o[a])),!i)}if(f.isFormData(e)&&f.isFunction(e.entries)){const n={};return f.forEachEntry(e,(r,o)=>{t(of(r),o,n,0)}),n}return null}function af(e,t,n){if(f.isString(e))try{return(t||JSON.parse)(e),f.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(e)}const qe={transitional:Oo,adapter:["xhr","http","fetch"],transformRequest:[function(t,n){const r=n.getContentType()||"",o=r.indexOf("application/json")>-1,s=f.isObject(t);if(s&&f.isHTMLForm(t)&&(t=new FormData(t)),f.isFormData(t))return o?JSON.stringify(Co(t)):t;if(f.isArrayBuffer(t)||f.isBuffer(t)||f.isStream(t)||f.isFile(t)||f.isBlob(t)||f.isReadableStream(t))return t;if(f.isArrayBufferView(t))return t.buffer;if(f.isURLSearchParams(t))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let i;if(s){if(r.indexOf("application/x-www-form-urlencoded")>-1)return rf(t,this.formSerializer).toString();if((i=f.isFileList(t))||r.indexOf("multipart/form-data")>-1){const l=this.env&&this.env.FormData;return gt(i?{"files[]":t}:t,l&&new l,this.formSerializer)}}return s||o?(n.setContentType("application/json",!1),af(t)):t}],transformResponse:[function(t){const n=this.transitional||qe.transitional,r=n&&n.forcedJSONParsing,o=this.responseType==="json";if(f.isResponse(t)||f.isReadableStream(t))return t;if(t&&f.isString(t)&&(r&&!this.responseType||o)){const a=!(n&&n.silentJSONParsing)&&o;try{return JSON.parse(t)}catch(i){if(a)throw i.name==="SyntaxError"?T.from(i,T.ERR_BAD_RESPONSE,this,null,this.response):i}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:M.classes.FormData,Blob:M.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};f.forEach(["delete","get","head","post","put","patch"],e=>{qe.headers[e]={}});const lf=f.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),uf=e=>{const t={};let n,r,o;return e&&e.split(` +`).forEach(function(a){o=a.indexOf(":"),n=a.substring(0,o).trim().toLowerCase(),r=a.substring(o+1).trim(),!(!n||t[n]&&lf[n])&&(n==="set-cookie"?t[n]?t[n].push(r):t[n]=[r]:t[n]=t[n]?t[n]+", "+r:r)}),t},Tr=Symbol("internals");function $e(e){return e&&String(e).trim().toLowerCase()}function Ye(e){return e===!1||e==null?e:f.isArray(e)?e.map(Ye):String(e)}function cf(e){const t=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(e);)t[r[1]]=r[2];return t}const ff=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function Rt(e,t,n,r,o){if(f.isFunction(r))return r.call(this,t,n);if(o&&(t=n),!!f.isString(t)){if(f.isString(r))return t.indexOf(r)!==-1;if(f.isRegExp(r))return r.test(t)}}function df(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,n,r)=>n.toUpperCase()+r)}function pf(e,t){const n=f.toCamelCase(" "+t);["get","set","has"].forEach(r=>{Object.defineProperty(e,r+n,{value:function(o,s,a){return this[r].call(this,t,o,s,a)},configurable:!0})})}let H=class{constructor(t){t&&this.set(t)}set(t,n,r){const o=this;function s(i,l,u){const c=$e(l);if(!c)throw new Error("header name must be a non-empty string");const p=f.findKey(o,c);(!p||o[p]===void 0||u===!0||u===void 0&&o[p]!==!1)&&(o[p||l]=Ye(i))}const a=(i,l)=>f.forEach(i,(u,c)=>s(u,c,l));if(f.isPlainObject(t)||t instanceof this.constructor)a(t,n);else if(f.isString(t)&&(t=t.trim())&&!ff(t))a(uf(t),n);else if(f.isHeaders(t))for(const[i,l]of t.entries())s(l,i,r);else t!=null&&s(n,t,r);return this}get(t,n){if(t=$e(t),t){const r=f.findKey(this,t);if(r){const o=this[r];if(!n)return o;if(n===!0)return cf(o);if(f.isFunction(n))return n.call(this,o,r);if(f.isRegExp(n))return n.exec(o);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,n){if(t=$e(t),t){const r=f.findKey(this,t);return!!(r&&this[r]!==void 0&&(!n||Rt(this,this[r],r,n)))}return!1}delete(t,n){const r=this;let o=!1;function s(a){if(a=$e(a),a){const i=f.findKey(r,a);i&&(!n||Rt(r,r[i],i,n))&&(delete r[i],o=!0)}}return f.isArray(t)?t.forEach(s):s(t),o}clear(t){const n=Object.keys(this);let r=n.length,o=!1;for(;r--;){const s=n[r];(!t||Rt(this,this[s],s,t,!0))&&(delete this[s],o=!0)}return o}normalize(t){const n=this,r={};return f.forEach(this,(o,s)=>{const a=f.findKey(r,s);if(a){n[a]=Ye(o),delete n[s];return}const i=t?df(s):String(s).trim();i!==s&&delete n[s],n[i]=Ye(o),r[i]=!0}),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const n=Object.create(null);return f.forEach(this,(r,o)=>{r!=null&&r!==!1&&(n[o]=t&&f.isArray(r)?r.join(", "):r)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([t,n])=>t+": "+n).join(` +`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...n){const r=new this(t);return n.forEach(o=>r.set(o)),r}static accessor(t){const r=(this[Tr]=this[Tr]={accessors:{}}).accessors,o=this.prototype;function s(a){const i=$e(a);r[i]||(pf(o,a),r[i]=!0)}return f.isArray(t)?t.forEach(s):s(t),this}};H.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);f.reduceDescriptors(H.prototype,({value:e},t)=>{let n=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(r){this[n]=r}}});f.freezeMethods(H);function kt(e,t){const n=this||qe,r=t||n,o=H.from(r.headers);let s=r.data;return f.forEach(e,function(i){s=i.call(n,s,o.normalize(),t?t.status:void 0)}),o.normalize(),s}function _o(e){return!!(e&&e.__CANCEL__)}function ke(e,t,n){T.call(this,e??"canceled",T.ERR_CANCELED,t,n),this.name="CanceledError"}f.inherits(ke,T,{__CANCEL__:!0});function Ro(e,t,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?e(n):t(new T("Request failed with status code "+n.status,[T.ERR_BAD_REQUEST,T.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}function hf(e){const t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}function mf(e,t){e=e||10;const n=new Array(e),r=new Array(e);let o=0,s=0,a;return t=t!==void 0?t:1e3,function(l){const u=Date.now(),c=r[s];a||(a=u),n[o]=l,r[o]=u;let p=s,m=0;for(;p!==o;)m+=n[p++],p=p%e;if(o=(o+1)%e,o===s&&(s=(s+1)%e),u-a{n=c,o=null,s&&(clearTimeout(s),s=null),e.apply(null,u)};return[(...u)=>{const c=Date.now(),p=c-n;p>=r?a(u,c):(o=u,s||(s=setTimeout(()=>{s=null,a(o)},r-p)))},()=>o&&a(o)]}const it=(e,t,n=3)=>{let r=0;const o=mf(50,250);return gf(s=>{const a=s.loaded,i=s.lengthComputable?s.total:void 0,l=a-r,u=o(l),c=a<=i;r=a;const p={loaded:a,total:i,progress:i?a/i:void 0,bytes:l,rate:u||void 0,estimated:u&&i&&c?(i-a)/u:void 0,event:s,lengthComputable:i!=null,[t?"download":"upload"]:!0};e(p)},n)},Er=(e,t)=>{const n=e!=null;return[r=>t[0]({lengthComputable:n,total:e,loaded:r}),t[1]]},xr=e=>(...t)=>f.asap(()=>e(...t)),bf=M.hasStandardBrowserEnv?((e,t)=>n=>(n=new URL(n,M.origin),e.protocol===n.protocol&&e.host===n.host&&(t||e.port===n.port)))(new URL(M.origin),M.navigator&&/(msie|trident)/i.test(M.navigator.userAgent)):()=>!0,yf=M.hasStandardBrowserEnv?{write(e,t,n,r,o,s){const a=[e+"="+encodeURIComponent(t)];f.isNumber(n)&&a.push("expires="+new Date(n).toGMTString()),f.isString(r)&&a.push("path="+r),f.isString(o)&&a.push("domain="+o),s===!0&&a.push("secure"),document.cookie=a.join("; ")},read(e){const t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove(e){this.write(e,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function vf(e){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function wf(e,t){return t?e.replace(/\/?\/$/,"")+"/"+t.replace(/^\/+/,""):e}function ko(e,t){return e&&!vf(t)?wf(e,t):t}const Ar=e=>e instanceof H?{...e}:e;function ge(e,t){t=t||{};const n={};function r(u,c,p,m){return f.isPlainObject(u)&&f.isPlainObject(c)?f.merge.call({caseless:m},u,c):f.isPlainObject(c)?f.merge({},c):f.isArray(c)?c.slice():c}function o(u,c,p,m){if(f.isUndefined(c)){if(!f.isUndefined(u))return r(void 0,u,p,m)}else return r(u,c,p,m)}function s(u,c){if(!f.isUndefined(c))return r(void 0,c)}function a(u,c){if(f.isUndefined(c)){if(!f.isUndefined(u))return r(void 0,u)}else return r(void 0,c)}function i(u,c,p){if(p in t)return r(u,c);if(p in e)return r(void 0,u)}const l={url:s,method:s,data:s,baseURL:a,transformRequest:a,transformResponse:a,paramsSerializer:a,timeout:a,timeoutMessage:a,withCredentials:a,withXSRFToken:a,adapter:a,responseType:a,xsrfCookieName:a,xsrfHeaderName:a,onUploadProgress:a,onDownloadProgress:a,decompress:a,maxContentLength:a,maxBodyLength:a,beforeRedirect:a,transport:a,httpAgent:a,httpsAgent:a,cancelToken:a,socketPath:a,responseEncoding:a,validateStatus:i,headers:(u,c,p)=>o(Ar(u),Ar(c),p,!0)};return f.forEach(Object.keys(Object.assign({},e,t)),function(c){const p=l[c]||o,m=p(e[c],t[c],c);f.isUndefined(m)&&p!==i||(n[c]=m)}),n}const Po=e=>{const t=ge({},e);let{data:n,withXSRFToken:r,xsrfHeaderName:o,xsrfCookieName:s,headers:a,auth:i}=t;t.headers=a=H.from(a),t.url=Ao(ko(t.baseURL,t.url),e.params,e.paramsSerializer),i&&a.set("Authorization","Basic "+btoa((i.username||"")+":"+(i.password?unescape(encodeURIComponent(i.password)):"")));let l;if(f.isFormData(n)){if(M.hasStandardBrowserEnv||M.hasStandardBrowserWebWorkerEnv)a.setContentType(void 0);else if((l=a.getContentType())!==!1){const[u,...c]=l?l.split(";").map(p=>p.trim()).filter(Boolean):[];a.setContentType([u||"multipart/form-data",...c].join("; "))}}if(M.hasStandardBrowserEnv&&(r&&f.isFunction(r)&&(r=r(t)),r||r!==!1&&bf(t.url))){const u=o&&s&&yf.read(s);u&&a.set(o,u)}return t},Sf=typeof XMLHttpRequest<"u",Tf=Sf&&function(e){return new Promise(function(n,r){const o=Po(e);let s=o.data;const a=H.from(o.headers).normalize();let{responseType:i,onUploadProgress:l,onDownloadProgress:u}=o,c,p,m,y,d;function v(){y&&y(),d&&d(),o.cancelToken&&o.cancelToken.unsubscribe(c),o.signal&&o.signal.removeEventListener("abort",c)}let g=new XMLHttpRequest;g.open(o.method.toUpperCase(),o.url,!0),g.timeout=o.timeout;function w(){if(!g)return;const S=H.from("getAllResponseHeaders"in g&&g.getAllResponseHeaders()),I={data:!i||i==="text"||i==="json"?g.responseText:g.response,status:g.status,statusText:g.statusText,headers:S,config:e,request:g};Ro(function(Y){n(Y),v()},function(Y){r(Y),v()},I),g=null}"onloadend"in g?g.onloadend=w:g.onreadystatechange=function(){!g||g.readyState!==4||g.status===0&&!(g.responseURL&&g.responseURL.indexOf("file:")===0)||setTimeout(w)},g.onabort=function(){g&&(r(new T("Request aborted",T.ECONNABORTED,e,g)),g=null)},g.onerror=function(){r(new T("Network Error",T.ERR_NETWORK,e,g)),g=null},g.ontimeout=function(){let z=o.timeout?"timeout of "+o.timeout+"ms exceeded":"timeout exceeded";const I=o.transitional||Oo;o.timeoutErrorMessage&&(z=o.timeoutErrorMessage),r(new T(z,I.clarifyTimeoutError?T.ETIMEDOUT:T.ECONNABORTED,e,g)),g=null},s===void 0&&a.setContentType(null),"setRequestHeader"in g&&f.forEach(a.toJSON(),function(z,I){g.setRequestHeader(I,z)}),f.isUndefined(o.withCredentials)||(g.withCredentials=!!o.withCredentials),i&&i!=="json"&&(g.responseType=o.responseType),u&&([m,d]=it(u,!0),g.addEventListener("progress",m)),l&&g.upload&&([p,y]=it(l),g.upload.addEventListener("progress",p),g.upload.addEventListener("loadend",y)),(o.cancelToken||o.signal)&&(c=S=>{g&&(r(!S||S.type?new ke(null,e,g):S),g.abort(),g=null)},o.cancelToken&&o.cancelToken.subscribe(c),o.signal&&(o.signal.aborted?c():o.signal.addEventListener("abort",c)));const O=hf(o.url);if(O&&M.protocols.indexOf(O)===-1){r(new T("Unsupported protocol "+O+":",T.ERR_BAD_REQUEST,e));return}g.send(s||null)})},Ef=(e,t)=>{const{length:n}=e=e?e.filter(Boolean):[];if(t||n){let r=new AbortController,o;const s=function(u){if(!o){o=!0,i();const c=u instanceof Error?u:this.reason;r.abort(c instanceof T?c:new ke(c instanceof Error?c.message:c))}};let a=t&&setTimeout(()=>{a=null,s(new T(`timeout ${t} of ms exceeded`,T.ETIMEDOUT))},t);const i=()=>{e&&(a&&clearTimeout(a),a=null,e.forEach(u=>{u.unsubscribe?u.unsubscribe(s):u.removeEventListener("abort",s)}),e=null)};e.forEach(u=>u.addEventListener("abort",s));const{signal:l}=r;return l.unsubscribe=()=>f.asap(i),l}},xf=function*(e,t){let n=e.byteLength;if(n{const o=Af(e,t);let s=0,a,i=l=>{a||(a=!0,r&&r(l))};return new ReadableStream({async pull(l){try{const{done:u,value:c}=await o.next();if(u){i(),l.close();return}let p=c.byteLength;if(n){let m=s+=p;n(m)}l.enqueue(new Uint8Array(c))}catch(u){throw i(u),u}},cancel(l){return i(l),o.return()}},{highWaterMark:2})},bt=typeof fetch=="function"&&typeof Request=="function"&&typeof Response=="function",Io=bt&&typeof ReadableStream=="function",Cf=bt&&(typeof TextEncoder=="function"?(e=>t=>e.encode(t))(new TextEncoder):async e=>new Uint8Array(await new Response(e).arrayBuffer())),No=(e,...t)=>{try{return!!e(...t)}catch{return!1}},_f=Io&&No(()=>{let e=!1;const t=new Request(M.origin,{body:new ReadableStream,method:"POST",get duplex(){return e=!0,"half"}}).headers.has("Content-Type");return e&&!t}),Cr=64*1024,Wt=Io&&No(()=>f.isReadableStream(new Response("").body)),lt={stream:Wt&&(e=>e.body)};bt&&(e=>{["text","arrayBuffer","blob","formData","stream"].forEach(t=>{!lt[t]&&(lt[t]=f.isFunction(e[t])?n=>n[t]():(n,r)=>{throw new T(`Response type '${t}' is not supported`,T.ERR_NOT_SUPPORT,r)})})})(new Response);const Rf=async e=>{if(e==null)return 0;if(f.isBlob(e))return e.size;if(f.isSpecCompliantForm(e))return(await new Request(M.origin,{method:"POST",body:e}).arrayBuffer()).byteLength;if(f.isArrayBufferView(e)||f.isArrayBuffer(e))return e.byteLength;if(f.isURLSearchParams(e)&&(e=e+""),f.isString(e))return(await Cf(e)).byteLength},kf=async(e,t)=>{const n=f.toFiniteNumber(e.getContentLength());return n??Rf(t)},Pf=bt&&(async e=>{let{url:t,method:n,data:r,signal:o,cancelToken:s,timeout:a,onDownloadProgress:i,onUploadProgress:l,responseType:u,headers:c,withCredentials:p="same-origin",fetchOptions:m}=Po(e);u=u?(u+"").toLowerCase():"text";let y=Ef([o,s&&s.toAbortSignal()],a),d;const v=y&&y.unsubscribe&&(()=>{y.unsubscribe()});let g;try{if(l&&_f&&n!=="get"&&n!=="head"&&(g=await kf(c,r))!==0){let I=new Request(t,{method:"POST",body:r,duplex:"half"}),B;if(f.isFormData(r)&&(B=I.headers.get("content-type"))&&c.setContentType(B),I.body){const[Y,ee]=Er(g,it(xr(l)));r=Or(I.body,Cr,Y,ee)}}f.isString(p)||(p=p?"include":"omit");const w="credentials"in Request.prototype;d=new Request(t,{...m,signal:y,method:n.toUpperCase(),headers:c.normalize().toJSON(),body:r,duplex:"half",credentials:w?p:void 0});let O=await fetch(d);const S=Wt&&(u==="stream"||u==="response");if(Wt&&(i||S&&v)){const I={};["status","statusText","headers"].forEach(We=>{I[We]=O[We]});const B=f.toFiniteNumber(O.headers.get("content-length")),[Y,ee]=i&&Er(B,it(xr(i),!0))||[];O=new Response(Or(O.body,Cr,Y,()=>{ee&&ee(),v&&v()}),I)}u=u||"text";let z=await lt[f.findKey(lt,u)||"text"](O,e);return!S&&v&&v(),await new Promise((I,B)=>{Ro(I,B,{data:z,headers:H.from(O.headers),status:O.status,statusText:O.statusText,config:e,request:d})})}catch(w){throw v&&v(),w&&w.name==="TypeError"&&/fetch/i.test(w.message)?Object.assign(new T("Network Error",T.ERR_NETWORK,e,d),{cause:w.cause||w}):T.from(w,w&&w.code,e,d)}}),Kt={http:qc,xhr:Tf,fetch:Pf};f.forEach(Kt,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{value:t})}catch{}Object.defineProperty(e,"adapterName",{value:t})}});const _r=e=>`- ${e}`,If=e=>f.isFunction(e)||e===null||e===!1,$o={getAdapter:e=>{e=f.isArray(e)?e:[e];const{length:t}=e;let n,r;const o={};for(let s=0;s`adapter ${i} `+(l===!1?"is not supported by the environment":"is not available in the build"));let a=t?s.length>1?`since : +`+s.map(_r).join(` +`):" "+_r(s[0]):"as no adapter specified";throw new T("There is no suitable adapter to dispatch the request "+a,"ERR_NOT_SUPPORT")}return r},adapters:Kt};function Pt(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new ke(null,e)}function Rr(e){return Pt(e),e.headers=H.from(e.headers),e.data=kt.call(e,e.transformRequest),["post","put","patch"].indexOf(e.method)!==-1&&e.headers.setContentType("application/x-www-form-urlencoded",!1),$o.getAdapter(e.adapter||qe.adapter)(e).then(function(r){return Pt(e),r.data=kt.call(e,e.transformResponse,r),r.headers=H.from(r.headers),r},function(r){return _o(r)||(Pt(e),r&&r.response&&(r.response.data=kt.call(e,e.transformResponse,r.response),r.response.headers=H.from(r.response.headers))),Promise.reject(r)})}const Fo="1.7.9",yt={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{yt[e]=function(r){return typeof r===e||"a"+(t<1?"n ":" ")+e}});const kr={};yt.transitional=function(t,n,r){function o(s,a){return"[Axios v"+Fo+"] Transitional option '"+s+"'"+a+(r?". "+r:"")}return(s,a,i)=>{if(t===!1)throw new T(o(a," has been removed"+(n?" in "+n:"")),T.ERR_DEPRECATED);return n&&!kr[a]&&(kr[a]=!0,console.warn(o(a," has been deprecated since v"+n+" and will be removed in the near future"))),t?t(s,a,i):!0}};yt.spelling=function(t){return(n,r)=>(console.warn(`${r} is likely a misspelling of ${t}`),!0)};function Nf(e,t,n){if(typeof e!="object")throw new T("options must be an object",T.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let o=r.length;for(;o-- >0;){const s=r[o],a=t[s];if(a){const i=e[s],l=i===void 0||a(i,s,e);if(l!==!0)throw new T("option "+s+" must be "+l,T.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new T("Unknown option "+s,T.ERR_BAD_OPTION)}}const et={assertOptions:Nf,validators:yt},X=et.validators;let he=class{constructor(t){this.defaults=t,this.interceptors={request:new Sr,response:new Sr}}async request(t,n){try{return await this._request(t,n)}catch(r){if(r instanceof Error){let o={};Error.captureStackTrace?Error.captureStackTrace(o):o=new Error;const s=o.stack?o.stack.replace(/^.+\n/,""):"";try{r.stack?s&&!String(r.stack).endsWith(s.replace(/^.+\n.+\n/,""))&&(r.stack+=` +`+s):r.stack=s}catch{}}throw r}}_request(t,n){typeof t=="string"?(n=n||{},n.url=t):n=t||{},n=ge(this.defaults,n);const{transitional:r,paramsSerializer:o,headers:s}=n;r!==void 0&&et.assertOptions(r,{silentJSONParsing:X.transitional(X.boolean),forcedJSONParsing:X.transitional(X.boolean),clarifyTimeoutError:X.transitional(X.boolean)},!1),o!=null&&(f.isFunction(o)?n.paramsSerializer={serialize:o}:et.assertOptions(o,{encode:X.function,serialize:X.function},!0)),et.assertOptions(n,{baseUrl:X.spelling("baseURL"),withXsrfToken:X.spelling("withXSRFToken")},!0),n.method=(n.method||this.defaults.method||"get").toLowerCase();let a=s&&f.merge(s.common,s[n.method]);s&&f.forEach(["delete","get","head","post","put","patch","common"],d=>{delete s[d]}),n.headers=H.concat(a,s);const i=[];let l=!0;this.interceptors.request.forEach(function(v){typeof v.runWhen=="function"&&v.runWhen(n)===!1||(l=l&&v.synchronous,i.unshift(v.fulfilled,v.rejected))});const u=[];this.interceptors.response.forEach(function(v){u.push(v.fulfilled,v.rejected)});let c,p=0,m;if(!l){const d=[Rr.bind(this),void 0];for(d.unshift.apply(d,i),d.push.apply(d,u),m=d.length,c=Promise.resolve(n);p{if(!r._listeners)return;let s=r._listeners.length;for(;s-- >0;)r._listeners[s](o);r._listeners=null}),this.promise.then=o=>{let s;const a=new Promise(i=>{r.subscribe(i),s=i}).then(o);return a.cancel=function(){r.unsubscribe(s)},a},t(function(s,a,i){r.reason||(r.reason=new ke(s,a,i),n(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){if(this.reason){t(this.reason);return}this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const n=this._listeners.indexOf(t);n!==-1&&this._listeners.splice(n,1)}toAbortSignal(){const t=new AbortController,n=r=>{t.abort(r)};return this.subscribe(n),t.signal.unsubscribe=()=>this.unsubscribe(n),t.signal}static source(){let t;return{token:new Mo(function(o){t=o}),cancel:t}}};function Ff(e){return function(n){return e.apply(null,n)}}function Mf(e){return f.isObject(e)&&e.isAxiosError===!0}const Gt={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(Gt).forEach(([e,t])=>{Gt[t]=e});function Bo(e){const t=new he(e),n=po(he.prototype.request,t);return f.extend(n,he.prototype,t,{allOwnKeys:!0}),f.extend(n,t,null,{allOwnKeys:!0}),n.create=function(o){return Bo(ge(e,o))},n}const P=Bo(qe);P.Axios=he;P.CanceledError=ke;P.CancelToken=$f;P.isCancel=_o;P.VERSION=Fo;P.toFormData=gt;P.AxiosError=T;P.Cancel=P.CanceledError;P.all=function(t){return Promise.all(t)};P.spread=Ff;P.isAxiosError=Mf;P.mergeConfig=ge;P.AxiosHeaders=H;P.formToJSON=e=>Co(f.isHTMLForm(e)?new FormData(e):e);P.getAdapter=$o.getAdapter;P.HttpStatusCode=Gt;P.default=P;const{Axios:ed,AxiosError:td,CanceledError:nd,isCancel:rd,CancelToken:od,VERSION:sd,all:ad,Cancel:id,isAxiosError:ld,spread:ud,toFormData:cd,AxiosHeaders:fd,HttpStatusCode:dd,formToJSON:pd,getAdapter:hd,mergeConfig:md}=P,jo=P.create();jo.interceptors.request.use(function(e){return e},function(e){return console.log("error.response1",e.response),Promise.reject(e)});jo.interceptors.response.use(function(e){if(e.data.code===400){let t=e.data.message;Xe({title:"请求参数错误",message:t,position:"top-right",type:"error"})}return e},function(e){if(e.response.status===401)Xe({title:"请重新登陆",message:"请重新登陆",position:"top-right",type:"error"}),Bs.push({path:"/login"});else if(e.response.status===403){let t=e.response.data.message;Xe({title:"操作错误",message:t,position:"top-right",type:"error"})}else if(e.response.status===500){let t=e.response.data.message;Xe({title:"系统错误",message:t,position:"top-right",type:"error"})}return Promise.reject(e)});const gd=(e,t)=>{const n=e.__vccOpts||e;for(const[r,o]of t)n[r]=o;return n};export{Gf as A,fn as B,Gl as C,Uf as D,xt as E,Df as F,jo as G,gd as H,Qf as I,Jf as J,Kf as K,Xf as L,Xe as M,cn as N,un as O,_e as S,Zn as U,ve as _,ne as a,Et as b,Ia as c,nu as d,zl as e,Ml as f,ui as g,Ee as h,Wr as i,Cl as j,so as k,uu as l,cu as m,eu as n,Lf as o,Be as p,re as q,Lt as r,zf as s,Hf as t,pe as u,Vf as v,Wf as w,qf as x,vu as y,Su as z}; diff --git a/dev-assistant-service/src/main/resources/static/assets/_plugin-vue_export-helper-ljiJ2Biw.css b/dev-assistant-service/src/main/resources/static/assets/_plugin-vue_export-helper-ljiJ2Biw.css new file mode 100644 index 0000000..4136b2d --- /dev/null +++ b/dev-assistant-service/src/main/resources/static/assets/_plugin-vue_export-helper-ljiJ2Biw.css @@ -0,0 +1 @@ +.el-card{--el-card-border-color:var(--el-border-color-light);--el-card-border-radius:4px;--el-card-padding:20px;--el-card-bg-color:var(--el-fill-color-blank);background-color:var(--el-card-bg-color);border:1px solid var(--el-card-border-color);border-radius:var(--el-card-border-radius);color:var(--el-text-color-primary);overflow:hidden;transition:var(--el-transition-duration)}.el-card.is-always-shadow,.el-card.is-hover-shadow:focus,.el-card.is-hover-shadow:hover{box-shadow:var(--el-box-shadow-light)}.el-card__header{border-bottom:1px solid var(--el-card-border-color);box-sizing:border-box;padding:calc(var(--el-card-padding) - 2px) var(--el-card-padding)}.el-card__body{padding:var(--el-card-padding)}.el-card__footer{border-top:1px solid var(--el-card-border-color);box-sizing:border-box;padding:calc(var(--el-card-padding) - 2px) var(--el-card-padding)}.el-button{--el-button-font-weight:var(--el-font-weight-primary);--el-button-border-color:var(--el-border-color);--el-button-bg-color:var(--el-fill-color-blank);--el-button-text-color:var(--el-text-color-regular);--el-button-disabled-text-color:var(--el-disabled-text-color);--el-button-disabled-bg-color:var(--el-fill-color-blank);--el-button-disabled-border-color:var(--el-border-color-light);--el-button-divide-border-color:rgba(255,255,255,.5);--el-button-hover-text-color:var(--el-color-primary);--el-button-hover-bg-color:var(--el-color-primary-light-9);--el-button-hover-border-color:var(--el-color-primary-light-7);--el-button-active-text-color:var(--el-button-hover-text-color);--el-button-active-border-color:var(--el-color-primary);--el-button-active-bg-color:var(--el-button-hover-bg-color);--el-button-outline-color:var(--el-color-primary-light-5);--el-button-hover-link-text-color:var(--el-text-color-secondary);--el-button-active-color:var(--el-text-color-primary);align-items:center;-webkit-appearance:none;background-color:var(--el-button-bg-color);border:var(--el-border);border-color:var(--el-button-border-color);box-sizing:border-box;color:var(--el-button-text-color);cursor:pointer;display:inline-flex;font-weight:var(--el-button-font-weight);height:32px;justify-content:center;line-height:1;outline:none;text-align:center;transition:.1s;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;white-space:nowrap}.el-button:hover{background-color:var(--el-button-hover-bg-color);border-color:var(--el-button-hover-border-color);color:var(--el-button-hover-text-color);outline:none}.el-button:active{background-color:var(--el-button-active-bg-color);border-color:var(--el-button-active-border-color);color:var(--el-button-active-text-color);outline:none}.el-button:focus-visible{outline:2px solid var(--el-button-outline-color);outline-offset:1px;transition:outline-offset 0s,outline 0s}.el-button>span{align-items:center;display:inline-flex}.el-button+.el-button{margin-left:12px}.el-button{border-radius:var(--el-border-radius-base);font-size:var(--el-font-size-base)}.el-button,.el-button.is-round{padding:8px 15px}.el-button::-moz-focus-inner{border:0}.el-button [class*=el-icon]+span{margin-left:6px}.el-button [class*=el-icon] svg{vertical-align:bottom}.el-button.is-plain{--el-button-hover-text-color:var(--el-color-primary);--el-button-hover-bg-color:var(--el-fill-color-blank);--el-button-hover-border-color:var(--el-color-primary)}.el-button.is-active{background-color:var(--el-button-active-bg-color);border-color:var(--el-button-active-border-color);color:var(--el-button-active-text-color);outline:none}.el-button.is-disabled,.el-button.is-disabled:hover{background-color:var(--el-button-disabled-bg-color);background-image:none;border-color:var(--el-button-disabled-border-color);color:var(--el-button-disabled-text-color);cursor:not-allowed}.el-button.is-loading{pointer-events:none;position:relative}.el-button.is-loading:before{background-color:var(--el-mask-color-extra-light);border-radius:inherit;bottom:-1px;content:"";left:-1px;pointer-events:none;position:absolute;right:-1px;top:-1px;z-index:1}.el-button.is-round{border-radius:var(--el-border-radius-round)}.el-button.is-circle{border-radius:50%;padding:8px;width:32px}.el-button.is-text{background-color:transparent;border:0 solid transparent;color:var(--el-button-text-color)}.el-button.is-text.is-disabled{background-color:transparent!important;color:var(--el-button-disabled-text-color)}.el-button.is-text:not(.is-disabled):hover{background-color:var(--el-fill-color-light)}.el-button.is-text:not(.is-disabled):focus-visible{outline:2px solid var(--el-button-outline-color);outline-offset:1px;transition:outline-offset 0s,outline 0s}.el-button.is-text:not(.is-disabled):active{background-color:var(--el-fill-color)}.el-button.is-text:not(.is-disabled).is-has-bg{background-color:var(--el-fill-color-light)}.el-button.is-text:not(.is-disabled).is-has-bg:hover{background-color:var(--el-fill-color)}.el-button.is-text:not(.is-disabled).is-has-bg:active{background-color:var(--el-fill-color-dark)}.el-button__text--expand{letter-spacing:.3em;margin-right:-.3em}.el-button.is-link{background:transparent;border-color:transparent;color:var(--el-button-text-color);height:auto;padding:2px}.el-button.is-link:hover{color:var(--el-button-hover-link-text-color)}.el-button.is-link.is-disabled{background-color:transparent!important;border-color:transparent!important;color:var(--el-button-disabled-text-color)}.el-button.is-link:not(.is-disabled):active,.el-button.is-link:not(.is-disabled):hover{background-color:transparent;border-color:transparent}.el-button.is-link:not(.is-disabled):active{color:var(--el-button-active-color)}.el-button--text{background:transparent;border-color:transparent;color:var(--el-color-primary);padding-left:0;padding-right:0}.el-button--text.is-disabled{background-color:transparent!important;border-color:transparent!important;color:var(--el-button-disabled-text-color)}.el-button--text:not(.is-disabled):hover{background-color:transparent;border-color:transparent;color:var(--el-color-primary-light-3)}.el-button--text:not(.is-disabled):active{background-color:transparent;border-color:transparent;color:var(--el-color-primary-dark-2)}.el-button__link--expand{letter-spacing:.3em;margin-right:-.3em}.el-button--primary{--el-button-text-color:var(--el-color-white);--el-button-bg-color:var(--el-color-primary);--el-button-border-color:var(--el-color-primary);--el-button-outline-color:var(--el-color-primary-light-5);--el-button-active-color:var(--el-color-primary-dark-2);--el-button-hover-text-color:var(--el-color-white);--el-button-hover-link-text-color:var(--el-color-primary-light-5);--el-button-hover-bg-color:var(--el-color-primary-light-3);--el-button-hover-border-color:var(--el-color-primary-light-3);--el-button-active-bg-color:var(--el-color-primary-dark-2);--el-button-active-border-color:var(--el-color-primary-dark-2);--el-button-disabled-text-color:var(--el-color-white);--el-button-disabled-bg-color:var(--el-color-primary-light-5);--el-button-disabled-border-color:var(--el-color-primary-light-5)}.el-button--primary.is-link,.el-button--primary.is-plain,.el-button--primary.is-text{--el-button-text-color:var(--el-color-primary);--el-button-bg-color:var(--el-color-primary-light-9);--el-button-border-color:var(--el-color-primary-light-5);--el-button-hover-text-color:var(--el-color-white);--el-button-hover-bg-color:var(--el-color-primary);--el-button-hover-border-color:var(--el-color-primary);--el-button-active-text-color:var(--el-color-white)}.el-button--primary.is-link.is-disabled,.el-button--primary.is-link.is-disabled:active,.el-button--primary.is-link.is-disabled:focus,.el-button--primary.is-link.is-disabled:hover,.el-button--primary.is-plain.is-disabled,.el-button--primary.is-plain.is-disabled:active,.el-button--primary.is-plain.is-disabled:focus,.el-button--primary.is-plain.is-disabled:hover,.el-button--primary.is-text.is-disabled,.el-button--primary.is-text.is-disabled:active,.el-button--primary.is-text.is-disabled:focus,.el-button--primary.is-text.is-disabled:hover{background-color:var(--el-color-primary-light-9);border-color:var(--el-color-primary-light-8);color:var(--el-color-primary-light-5)}.el-button--success{--el-button-text-color:var(--el-color-white);--el-button-bg-color:var(--el-color-success);--el-button-border-color:var(--el-color-success);--el-button-outline-color:var(--el-color-success-light-5);--el-button-active-color:var(--el-color-success-dark-2);--el-button-hover-text-color:var(--el-color-white);--el-button-hover-link-text-color:var(--el-color-success-light-5);--el-button-hover-bg-color:var(--el-color-success-light-3);--el-button-hover-border-color:var(--el-color-success-light-3);--el-button-active-bg-color:var(--el-color-success-dark-2);--el-button-active-border-color:var(--el-color-success-dark-2);--el-button-disabled-text-color:var(--el-color-white);--el-button-disabled-bg-color:var(--el-color-success-light-5);--el-button-disabled-border-color:var(--el-color-success-light-5)}.el-button--success.is-link,.el-button--success.is-plain,.el-button--success.is-text{--el-button-text-color:var(--el-color-success);--el-button-bg-color:var(--el-color-success-light-9);--el-button-border-color:var(--el-color-success-light-5);--el-button-hover-text-color:var(--el-color-white);--el-button-hover-bg-color:var(--el-color-success);--el-button-hover-border-color:var(--el-color-success);--el-button-active-text-color:var(--el-color-white)}.el-button--success.is-link.is-disabled,.el-button--success.is-link.is-disabled:active,.el-button--success.is-link.is-disabled:focus,.el-button--success.is-link.is-disabled:hover,.el-button--success.is-plain.is-disabled,.el-button--success.is-plain.is-disabled:active,.el-button--success.is-plain.is-disabled:focus,.el-button--success.is-plain.is-disabled:hover,.el-button--success.is-text.is-disabled,.el-button--success.is-text.is-disabled:active,.el-button--success.is-text.is-disabled:focus,.el-button--success.is-text.is-disabled:hover{background-color:var(--el-color-success-light-9);border-color:var(--el-color-success-light-8);color:var(--el-color-success-light-5)}.el-button--warning{--el-button-text-color:var(--el-color-white);--el-button-bg-color:var(--el-color-warning);--el-button-border-color:var(--el-color-warning);--el-button-outline-color:var(--el-color-warning-light-5);--el-button-active-color:var(--el-color-warning-dark-2);--el-button-hover-text-color:var(--el-color-white);--el-button-hover-link-text-color:var(--el-color-warning-light-5);--el-button-hover-bg-color:var(--el-color-warning-light-3);--el-button-hover-border-color:var(--el-color-warning-light-3);--el-button-active-bg-color:var(--el-color-warning-dark-2);--el-button-active-border-color:var(--el-color-warning-dark-2);--el-button-disabled-text-color:var(--el-color-white);--el-button-disabled-bg-color:var(--el-color-warning-light-5);--el-button-disabled-border-color:var(--el-color-warning-light-5)}.el-button--warning.is-link,.el-button--warning.is-plain,.el-button--warning.is-text{--el-button-text-color:var(--el-color-warning);--el-button-bg-color:var(--el-color-warning-light-9);--el-button-border-color:var(--el-color-warning-light-5);--el-button-hover-text-color:var(--el-color-white);--el-button-hover-bg-color:var(--el-color-warning);--el-button-hover-border-color:var(--el-color-warning);--el-button-active-text-color:var(--el-color-white)}.el-button--warning.is-link.is-disabled,.el-button--warning.is-link.is-disabled:active,.el-button--warning.is-link.is-disabled:focus,.el-button--warning.is-link.is-disabled:hover,.el-button--warning.is-plain.is-disabled,.el-button--warning.is-plain.is-disabled:active,.el-button--warning.is-plain.is-disabled:focus,.el-button--warning.is-plain.is-disabled:hover,.el-button--warning.is-text.is-disabled,.el-button--warning.is-text.is-disabled:active,.el-button--warning.is-text.is-disabled:focus,.el-button--warning.is-text.is-disabled:hover{background-color:var(--el-color-warning-light-9);border-color:var(--el-color-warning-light-8);color:var(--el-color-warning-light-5)}.el-button--danger{--el-button-text-color:var(--el-color-white);--el-button-bg-color:var(--el-color-danger);--el-button-border-color:var(--el-color-danger);--el-button-outline-color:var(--el-color-danger-light-5);--el-button-active-color:var(--el-color-danger-dark-2);--el-button-hover-text-color:var(--el-color-white);--el-button-hover-link-text-color:var(--el-color-danger-light-5);--el-button-hover-bg-color:var(--el-color-danger-light-3);--el-button-hover-border-color:var(--el-color-danger-light-3);--el-button-active-bg-color:var(--el-color-danger-dark-2);--el-button-active-border-color:var(--el-color-danger-dark-2);--el-button-disabled-text-color:var(--el-color-white);--el-button-disabled-bg-color:var(--el-color-danger-light-5);--el-button-disabled-border-color:var(--el-color-danger-light-5)}.el-button--danger.is-link,.el-button--danger.is-plain,.el-button--danger.is-text{--el-button-text-color:var(--el-color-danger);--el-button-bg-color:var(--el-color-danger-light-9);--el-button-border-color:var(--el-color-danger-light-5);--el-button-hover-text-color:var(--el-color-white);--el-button-hover-bg-color:var(--el-color-danger);--el-button-hover-border-color:var(--el-color-danger);--el-button-active-text-color:var(--el-color-white)}.el-button--danger.is-link.is-disabled,.el-button--danger.is-link.is-disabled:active,.el-button--danger.is-link.is-disabled:focus,.el-button--danger.is-link.is-disabled:hover,.el-button--danger.is-plain.is-disabled,.el-button--danger.is-plain.is-disabled:active,.el-button--danger.is-plain.is-disabled:focus,.el-button--danger.is-plain.is-disabled:hover,.el-button--danger.is-text.is-disabled,.el-button--danger.is-text.is-disabled:active,.el-button--danger.is-text.is-disabled:focus,.el-button--danger.is-text.is-disabled:hover{background-color:var(--el-color-danger-light-9);border-color:var(--el-color-danger-light-8);color:var(--el-color-danger-light-5)}.el-button--info{--el-button-text-color:var(--el-color-white);--el-button-bg-color:var(--el-color-info);--el-button-border-color:var(--el-color-info);--el-button-outline-color:var(--el-color-info-light-5);--el-button-active-color:var(--el-color-info-dark-2);--el-button-hover-text-color:var(--el-color-white);--el-button-hover-link-text-color:var(--el-color-info-light-5);--el-button-hover-bg-color:var(--el-color-info-light-3);--el-button-hover-border-color:var(--el-color-info-light-3);--el-button-active-bg-color:var(--el-color-info-dark-2);--el-button-active-border-color:var(--el-color-info-dark-2);--el-button-disabled-text-color:var(--el-color-white);--el-button-disabled-bg-color:var(--el-color-info-light-5);--el-button-disabled-border-color:var(--el-color-info-light-5)}.el-button--info.is-link,.el-button--info.is-plain,.el-button--info.is-text{--el-button-text-color:var(--el-color-info);--el-button-bg-color:var(--el-color-info-light-9);--el-button-border-color:var(--el-color-info-light-5);--el-button-hover-text-color:var(--el-color-white);--el-button-hover-bg-color:var(--el-color-info);--el-button-hover-border-color:var(--el-color-info);--el-button-active-text-color:var(--el-color-white)}.el-button--info.is-link.is-disabled,.el-button--info.is-link.is-disabled:active,.el-button--info.is-link.is-disabled:focus,.el-button--info.is-link.is-disabled:hover,.el-button--info.is-plain.is-disabled,.el-button--info.is-plain.is-disabled:active,.el-button--info.is-plain.is-disabled:focus,.el-button--info.is-plain.is-disabled:hover,.el-button--info.is-text.is-disabled,.el-button--info.is-text.is-disabled:active,.el-button--info.is-text.is-disabled:focus,.el-button--info.is-text.is-disabled:hover{background-color:var(--el-color-info-light-9);border-color:var(--el-color-info-light-8);color:var(--el-color-info-light-5)}.el-button--large{--el-button-size:40px;height:var(--el-button-size)}.el-button--large [class*=el-icon]+span{margin-left:8px}.el-button--large{border-radius:var(--el-border-radius-base);font-size:var(--el-font-size-base);padding:12px 19px}.el-button--large.is-round{padding:12px 19px}.el-button--large.is-circle{padding:12px;width:var(--el-button-size)}.el-button--small{--el-button-size:24px;height:var(--el-button-size)}.el-button--small [class*=el-icon]+span{margin-left:4px}.el-button--small{border-radius:calc(var(--el-border-radius-base) - 1px);font-size:12px;padding:5px 11px}.el-button--small.is-round{padding:5px 11px}.el-button--small.is-circle{padding:5px;width:var(--el-button-size)}.el-textarea{--el-input-text-color:var(--el-text-color-regular);--el-input-border:var(--el-border);--el-input-hover-border:var(--el-border-color-hover);--el-input-focus-border:var(--el-color-primary);--el-input-transparent-border:0 0 0 1px transparent inset;--el-input-border-color:var(--el-border-color);--el-input-border-radius:var(--el-border-radius-base);--el-input-bg-color:var(--el-fill-color-blank);--el-input-icon-color:var(--el-text-color-placeholder);--el-input-placeholder-color:var(--el-text-color-placeholder);--el-input-hover-border-color:var(--el-border-color-hover);--el-input-clear-hover-color:var(--el-text-color-secondary);--el-input-focus-border-color:var(--el-color-primary);--el-input-width:100%;display:inline-block;font-size:var(--el-font-size-base);position:relative;vertical-align:bottom;width:100%}.el-textarea__inner{-webkit-appearance:none;background-color:var(--el-input-bg-color,var(--el-fill-color-blank));background-image:none;border:none;border-radius:var(--el-input-border-radius,var(--el-border-radius-base));box-shadow:0 0 0 1px var(--el-input-border-color,var(--el-border-color)) inset;box-sizing:border-box;color:var(--el-input-text-color,var(--el-text-color-regular));display:block;font-family:inherit;font-size:inherit;line-height:1.5;padding:5px 11px;position:relative;resize:vertical;transition:var(--el-transition-box-shadow);width:100%}.el-textarea__inner::-moz-placeholder{color:var(--el-input-placeholder-color,var(--el-text-color-placeholder))}.el-textarea__inner::placeholder{color:var(--el-input-placeholder-color,var(--el-text-color-placeholder))}.el-textarea__inner:hover{box-shadow:0 0 0 1px var(--el-input-hover-border-color) inset}.el-textarea__inner:focus{box-shadow:0 0 0 1px var(--el-input-focus-border-color) inset;outline:none}.el-textarea .el-input__count{background:var(--el-fill-color-blank);bottom:5px;color:var(--el-color-info);font-size:12px;line-height:14px;position:absolute;right:10px}.el-textarea.is-disabled .el-textarea__inner{background-color:var(--el-disabled-bg-color);box-shadow:0 0 0 1px var(--el-disabled-border-color) inset;color:var(--el-disabled-text-color);cursor:not-allowed}.el-textarea.is-disabled .el-textarea__inner::-moz-placeholder{color:var(--el-text-color-placeholder)}.el-textarea.is-disabled .el-textarea__inner::placeholder{color:var(--el-text-color-placeholder)}.el-textarea.is-exceed .el-textarea__inner{box-shadow:0 0 0 1px var(--el-color-danger) inset}.el-textarea.is-exceed .el-input__count{color:var(--el-color-danger)}.el-input{--el-input-text-color:var(--el-text-color-regular);--el-input-border:var(--el-border);--el-input-hover-border:var(--el-border-color-hover);--el-input-focus-border:var(--el-color-primary);--el-input-transparent-border:0 0 0 1px transparent inset;--el-input-border-color:var(--el-border-color);--el-input-border-radius:var(--el-border-radius-base);--el-input-bg-color:var(--el-fill-color-blank);--el-input-icon-color:var(--el-text-color-placeholder);--el-input-placeholder-color:var(--el-text-color-placeholder);--el-input-hover-border-color:var(--el-border-color-hover);--el-input-clear-hover-color:var(--el-text-color-secondary);--el-input-focus-border-color:var(--el-color-primary);--el-input-width:100%;--el-input-height:var(--el-component-size);box-sizing:border-box;display:inline-flex;font-size:var(--el-font-size-base);line-height:var(--el-input-height);position:relative;vertical-align:middle;width:var(--el-input-width)}.el-input::-webkit-scrollbar{width:6px;z-index:11}.el-input::-webkit-scrollbar:horizontal{height:6px}.el-input::-webkit-scrollbar-thumb{background:var(--el-text-color-disabled);border-radius:5px;width:6px}.el-input::-webkit-scrollbar-corner,.el-input::-webkit-scrollbar-track{background:var(--el-fill-color-blank)}.el-input::-webkit-scrollbar-track-piece{background:var(--el-fill-color-blank);width:6px}.el-input .el-input__clear,.el-input .el-input__password{color:var(--el-input-icon-color);cursor:pointer;font-size:14px}.el-input .el-input__clear:hover,.el-input .el-input__password:hover{color:var(--el-input-clear-hover-color)}.el-input .el-input__count{align-items:center;color:var(--el-color-info);display:inline-flex;font-size:12px;height:100%}.el-input .el-input__count .el-input__count-inner{background:var(--el-fill-color-blank);display:inline-block;line-height:normal;padding-left:8px}.el-input__wrapper{align-items:center;background-color:var(--el-input-bg-color,var(--el-fill-color-blank));background-image:none;border-radius:var(--el-input-border-radius,var(--el-border-radius-base));box-shadow:0 0 0 1px var(--el-input-border-color,var(--el-border-color)) inset;cursor:text;display:inline-flex;flex-grow:1;justify-content:center;padding:1px 11px;transform:translateZ(0);transition:var(--el-transition-box-shadow)}.el-input__wrapper:hover{box-shadow:0 0 0 1px var(--el-input-hover-border-color) inset}.el-input__wrapper.is-focus{box-shadow:0 0 0 1px var(--el-input-focus-border-color) inset}.el-input{--el-input-inner-height:calc(var(--el-input-height, 32px) - 2px)}.el-input__inner{-webkit-appearance:none;background:none;border:none;box-sizing:border-box;color:var(--el-input-text-color,var(--el-text-color-regular));flex-grow:1;font-size:inherit;height:var(--el-input-inner-height);line-height:var(--el-input-inner-height);outline:none;padding:0;width:100%}.el-input__inner:focus{outline:none}.el-input__inner::-moz-placeholder{color:var(--el-input-placeholder-color,var(--el-text-color-placeholder))}.el-input__inner::placeholder{color:var(--el-input-placeholder-color,var(--el-text-color-placeholder))}.el-input__inner[type=password]::-ms-reveal{display:none}.el-input__inner[type=number]{line-height:1}.el-input__prefix{color:var(--el-input-icon-color,var(--el-text-color-placeholder));display:inline-flex;flex-shrink:0;flex-wrap:nowrap;height:100%;line-height:var(--el-input-inner-height);pointer-events:none;text-align:center;transition:all var(--el-transition-duration);white-space:nowrap}.el-input__prefix-inner{align-items:center;display:inline-flex;justify-content:center;pointer-events:all}.el-input__prefix-inner>:last-child{margin-right:8px}.el-input__prefix-inner>:first-child,.el-input__prefix-inner>:first-child.el-input__icon{margin-left:0}.el-input__suffix{color:var(--el-input-icon-color,var(--el-text-color-placeholder));display:inline-flex;flex-shrink:0;flex-wrap:nowrap;height:100%;line-height:var(--el-input-inner-height);pointer-events:none;text-align:center;transition:all var(--el-transition-duration);white-space:nowrap}.el-input__suffix-inner{align-items:center;display:inline-flex;justify-content:center;pointer-events:all}.el-input__suffix-inner>:first-child{margin-left:8px}.el-input .el-input__icon{align-items:center;display:flex;height:inherit;justify-content:center;line-height:inherit;margin-left:8px;transition:all var(--el-transition-duration)}.el-input__validateIcon{pointer-events:none}.el-input.is-active .el-input__wrapper{box-shadow:0 0 0 1px var(--el-input-focus-color, ) inset}.el-input.is-disabled{cursor:not-allowed}.el-input.is-disabled .el-input__wrapper{background-color:var(--el-disabled-bg-color);box-shadow:0 0 0 1px var(--el-disabled-border-color) inset;cursor:not-allowed;pointer-events:none}.el-input.is-disabled .el-input__inner{color:var(--el-disabled-text-color);-webkit-text-fill-color:var(--el-disabled-text-color);cursor:not-allowed}.el-input.is-disabled .el-input__inner::-moz-placeholder{color:var(--el-text-color-placeholder)}.el-input.is-disabled .el-input__inner::placeholder{color:var(--el-text-color-placeholder)}.el-input.is-disabled .el-input__icon{cursor:not-allowed}.el-input.is-exceed .el-input__wrapper{box-shadow:0 0 0 1px var(--el-color-danger) inset}.el-input.is-exceed .el-input__suffix .el-input__count{color:var(--el-color-danger)}.el-input--large{--el-input-height:var(--el-component-size-large);font-size:14px}.el-input--large .el-input__wrapper{padding:1px 15px}.el-input--large{--el-input-inner-height:calc(var(--el-input-height, 40px) - 2px)}.el-input--small{--el-input-height:var(--el-component-size-small);font-size:12px}.el-input--small .el-input__wrapper{padding:1px 7px}.el-input--small{--el-input-inner-height:calc(var(--el-input-height, 24px) - 2px)}.el-input-group{align-items:stretch;display:inline-flex;width:100%}.el-input-group__append,.el-input-group__prepend{align-items:center;background-color:var(--el-fill-color-light);border-radius:var(--el-input-border-radius);color:var(--el-color-info);display:inline-flex;justify-content:center;min-height:100%;padding:0 20px;position:relative;white-space:nowrap}.el-input-group__append:focus,.el-input-group__prepend:focus{outline:none}.el-input-group__append .el-button,.el-input-group__append .el-select,.el-input-group__prepend .el-button,.el-input-group__prepend .el-select{display:inline-block;margin:0 -20px}.el-input-group__append button.el-button,.el-input-group__append button.el-button:hover,.el-input-group__append div.el-select .el-select__wrapper,.el-input-group__append div.el-select:hover .el-select__wrapper,.el-input-group__prepend button.el-button,.el-input-group__prepend button.el-button:hover,.el-input-group__prepend div.el-select .el-select__wrapper,.el-input-group__prepend div.el-select:hover .el-select__wrapper{background-color:transparent;border-color:transparent;color:inherit}.el-input-group__append .el-button,.el-input-group__append .el-input,.el-input-group__prepend .el-button,.el-input-group__prepend .el-input{font-size:inherit}.el-input-group__prepend{border-bottom-right-radius:0;border-right:0;border-top-right-radius:0;box-shadow:1px 0 0 0 var(--el-input-border-color) inset,0 1px 0 0 var(--el-input-border-color) inset,0 -1px 0 0 var(--el-input-border-color) inset}.el-input-group__append{border-left:0;box-shadow:0 1px 0 0 var(--el-input-border-color) inset,0 -1px 0 0 var(--el-input-border-color) inset,-1px 0 0 0 var(--el-input-border-color) inset}.el-input-group--prepend>.el-input__wrapper,.el-input-group__append{border-bottom-left-radius:0;border-top-left-radius:0}.el-input-group--prepend .el-input-group__prepend .el-select .el-select__wrapper{border-bottom-right-radius:0;border-top-right-radius:0;box-shadow:1px 0 0 0 var(--el-input-border-color) inset,0 1px 0 0 var(--el-input-border-color) inset,0 -1px 0 0 var(--el-input-border-color) inset}.el-input-group--append>.el-input__wrapper{border-bottom-right-radius:0;border-top-right-radius:0}.el-input-group--append .el-input-group__append .el-select .el-select__wrapper{border-bottom-left-radius:0;border-top-left-radius:0;box-shadow:0 1px 0 0 var(--el-input-border-color) inset,0 -1px 0 0 var(--el-input-border-color) inset,-1px 0 0 0 var(--el-input-border-color) inset}.el-input-hidden{display:none!important}.el-text{--el-text-font-size:var(--el-font-size-base);--el-text-color:var(--el-text-color-regular);align-self:center;color:var(--el-text-color);font-size:var(--el-text-font-size);margin:0;overflow-wrap:break-word;padding:0}.el-text.is-truncated{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.el-text.is-line-clamp{display:-webkit-inline-box;-webkit-box-orient:vertical;overflow:hidden}.el-text--large{--el-text-font-size:var(--el-font-size-medium)}.el-text--default{--el-text-font-size:var(--el-font-size-base)}.el-text--small{--el-text-font-size:var(--el-font-size-extra-small)}.el-text.el-text--primary{--el-text-color:var(--el-color-primary)}.el-text.el-text--success{--el-text-color:var(--el-color-success)}.el-text.el-text--warning{--el-text-color:var(--el-color-warning)}.el-text.el-text--danger{--el-text-color:var(--el-color-danger)}.el-text.el-text--error{--el-text-color:var(--el-color-error)}.el-text.el-text--info{--el-text-color:var(--el-color-info)}.el-text>.el-icon{vertical-align:-2px}.el-notification{--el-notification-width:330px;--el-notification-padding:14px 26px 14px 13px;--el-notification-radius:8px;--el-notification-shadow:var(--el-box-shadow-light);--el-notification-border-color:var(--el-border-color-lighter);--el-notification-icon-size:24px;--el-notification-close-font-size:var(--el-message-close-size,16px);--el-notification-group-margin-left:13px;--el-notification-group-margin-right:8px;--el-notification-content-font-size:var(--el-font-size-base);--el-notification-content-color:var(--el-text-color-regular);--el-notification-title-font-size:16px;--el-notification-title-color:var(--el-text-color-primary);--el-notification-close-color:var(--el-text-color-secondary);--el-notification-close-hover-color:var(--el-text-color-regular);background-color:var(--el-bg-color-overlay);border:1px solid var(--el-notification-border-color);border-radius:var(--el-notification-radius);box-shadow:var(--el-notification-shadow);box-sizing:border-box;display:flex;overflow:hidden;overflow-wrap:break-word;padding:var(--el-notification-padding);position:fixed;transition:opacity var(--el-transition-duration),transform var(--el-transition-duration),left var(--el-transition-duration),right var(--el-transition-duration),top .4s,bottom var(--el-transition-duration);width:var(--el-notification-width);z-index:9999}.el-notification.right{right:16px}.el-notification.left{left:16px}.el-notification__group{flex:1;margin-left:var(--el-notification-group-margin-left);margin-right:var(--el-notification-group-margin-right);min-width:0}.el-notification__title{color:var(--el-notification-title-color);font-size:var(--el-notification-title-font-size);font-weight:700;line-height:var(--el-notification-icon-size);margin:0}.el-notification__content{color:var(--el-notification-content-color);font-size:var(--el-notification-content-font-size);line-height:24px;margin:6px 0 0}.el-notification__content p{margin:0}.el-notification .el-notification__icon{flex-shrink:0;font-size:var(--el-notification-icon-size);height:var(--el-notification-icon-size);width:var(--el-notification-icon-size)}.el-notification .el-notification__closeBtn{color:var(--el-notification-close-color);cursor:pointer;font-size:var(--el-notification-close-font-size);position:absolute;right:15px;top:18px}.el-notification .el-notification__closeBtn:hover{color:var(--el-notification-close-hover-color)}.el-notification .el-notification--success{--el-notification-icon-color:var(--el-color-success);color:var(--el-notification-icon-color)}.el-notification .el-notification--info{--el-notification-icon-color:var(--el-color-info);color:var(--el-notification-icon-color)}.el-notification .el-notification--warning{--el-notification-icon-color:var(--el-color-warning);color:var(--el-notification-icon-color)}.el-notification .el-notification--error{--el-notification-icon-color:var(--el-color-error);color:var(--el-notification-icon-color)}.el-notification-fade-enter-from.right{right:0;transform:translate(100%)}.el-notification-fade-enter-from.left{left:0;transform:translate(-100%)}.el-notification-fade-leave-to{opacity:0} diff --git a/dev-assistant-service/src/main/resources/static/assets/iconfont-BA0J7sCj.woff b/dev-assistant-service/src/main/resources/static/assets/iconfont-BA0J7sCj.woff new file mode 100644 index 0000000..d419947 Binary files /dev/null and b/dev-assistant-service/src/main/resources/static/assets/iconfont-BA0J7sCj.woff differ diff --git a/dev-assistant-service/src/main/resources/static/assets/iconfont-BOnbbNzJ.woff2 b/dev-assistant-service/src/main/resources/static/assets/iconfont-BOnbbNzJ.woff2 new file mode 100644 index 0000000..343564c Binary files /dev/null and b/dev-assistant-service/src/main/resources/static/assets/iconfont-BOnbbNzJ.woff2 differ diff --git a/dev-assistant-service/src/main/resources/static/assets/iconfont-CxIKrsCL.ttf b/dev-assistant-service/src/main/resources/static/assets/iconfont-CxIKrsCL.ttf new file mode 100644 index 0000000..5893739 Binary files /dev/null and b/dev-assistant-service/src/main/resources/static/assets/iconfont-CxIKrsCL.ttf differ diff --git a/dev-assistant-service/src/main/resources/static/assets/index-F-bWWWv-.css b/dev-assistant-service/src/main/resources/static/assets/index-F-bWWWv-.css new file mode 100644 index 0000000..0faf2e5 --- /dev/null +++ b/dev-assistant-service/src/main/resources/static/assets/index-F-bWWWv-.css @@ -0,0 +1 @@ +@charset "UTF-8";:root{--el-color-white:#ffffff;--el-color-black:#000000;--el-color-primary-rgb:64,158,255;--el-color-success-rgb:103,194,58;--el-color-warning-rgb:230,162,60;--el-color-danger-rgb:245,108,108;--el-color-error-rgb:245,108,108;--el-color-info-rgb:144,147,153;--el-font-size-extra-large:20px;--el-font-size-large:18px;--el-font-size-medium:16px;--el-font-size-base:14px;--el-font-size-small:13px;--el-font-size-extra-small:12px;--el-font-family:"Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif;--el-font-weight-primary:500;--el-font-line-height-primary:24px;--el-index-normal:1;--el-index-top:1000;--el-index-popper:2000;--el-border-radius-base:4px;--el-border-radius-small:2px;--el-border-radius-round:20px;--el-border-radius-circle:100%;--el-transition-duration:.3s;--el-transition-duration-fast:.2s;--el-transition-function-ease-in-out-bezier:cubic-bezier(.645,.045,.355,1);--el-transition-function-fast-bezier:cubic-bezier(.23,1,.32,1);--el-transition-all:all var(--el-transition-duration) var(--el-transition-function-ease-in-out-bezier);--el-transition-fade:opacity var(--el-transition-duration) var(--el-transition-function-fast-bezier);--el-transition-md-fade:transform var(--el-transition-duration) var(--el-transition-function-fast-bezier),opacity var(--el-transition-duration) var(--el-transition-function-fast-bezier);--el-transition-fade-linear:opacity var(--el-transition-duration-fast) linear;--el-transition-border:border-color var(--el-transition-duration-fast) var(--el-transition-function-ease-in-out-bezier);--el-transition-box-shadow:box-shadow var(--el-transition-duration-fast) var(--el-transition-function-ease-in-out-bezier);--el-transition-color:color var(--el-transition-duration-fast) var(--el-transition-function-ease-in-out-bezier);--el-component-size-large:40px;--el-component-size:32px;--el-component-size-small:24px;color-scheme:light;--el-color-primary:#409eff;--el-color-primary-light-3:rgb(121.3,187.1,255);--el-color-primary-light-5:rgb(159.5,206.5,255);--el-color-primary-light-7:rgb(197.7,225.9,255);--el-color-primary-light-8:rgb(216.8,235.6,255);--el-color-primary-light-9:rgb(235.9,245.3,255);--el-color-primary-dark-2:rgb(51.2,126.4,204);--el-color-success:#67c23a;--el-color-success-light-3:rgb(148.6,212.3,117.1);--el-color-success-light-5:rgb(179,224.5,156.5);--el-color-success-light-7:rgb(209.4,236.7,195.9);--el-color-success-light-8:rgb(224.6,242.8,215.6);--el-color-success-light-9:rgb(239.8,248.9,235.3);--el-color-success-dark-2:rgb(82.4,155.2,46.4);--el-color-warning:#e6a23c;--el-color-warning-light-3:rgb(237.5,189.9,118.5);--el-color-warning-light-5:rgb(242.5,208.5,157.5);--el-color-warning-light-7:rgb(247.5,227.1,196.5);--el-color-warning-light-8:rgb(250,236.4,216);--el-color-warning-light-9:rgb(252.5,245.7,235.5);--el-color-warning-dark-2:rgb(184,129.6,48);--el-color-danger:#f56c6c;--el-color-danger-light-3:rgb(248,152.1,152.1);--el-color-danger-light-5:rgb(250,181.5,181.5);--el-color-danger-light-7:rgb(252,210.9,210.9);--el-color-danger-light-8:rgb(253,225.6,225.6);--el-color-danger-light-9:rgb(254,240.3,240.3);--el-color-danger-dark-2:rgb(196,86.4,86.4);--el-color-error:#f56c6c;--el-color-error-light-3:rgb(248,152.1,152.1);--el-color-error-light-5:rgb(250,181.5,181.5);--el-color-error-light-7:rgb(252,210.9,210.9);--el-color-error-light-8:rgb(253,225.6,225.6);--el-color-error-light-9:rgb(254,240.3,240.3);--el-color-error-dark-2:rgb(196,86.4,86.4);--el-color-info:#909399;--el-color-info-light-3:rgb(177.3,179.4,183.6);--el-color-info-light-5:rgb(199.5,201,204);--el-color-info-light-7:rgb(221.7,222.6,224.4);--el-color-info-light-8:rgb(232.8,233.4,234.6);--el-color-info-light-9:rgb(243.9,244.2,244.8);--el-color-info-dark-2:rgb(115.2,117.6,122.4);--el-bg-color:#ffffff;--el-bg-color-page:#f2f3f5;--el-bg-color-overlay:#ffffff;--el-text-color-primary:#303133;--el-text-color-regular:#606266;--el-text-color-secondary:#909399;--el-text-color-placeholder:#a8abb2;--el-text-color-disabled:#c0c4cc;--el-border-color:#dcdfe6;--el-border-color-light:#e4e7ed;--el-border-color-lighter:#ebeef5;--el-border-color-extra-light:#f2f6fc;--el-border-color-dark:#d4d7de;--el-border-color-darker:#cdd0d6;--el-fill-color:#f0f2f5;--el-fill-color-light:#f5f7fa;--el-fill-color-lighter:#fafafa;--el-fill-color-extra-light:#fafcff;--el-fill-color-dark:#ebedf0;--el-fill-color-darker:#e6e8eb;--el-fill-color-blank:#ffffff;--el-box-shadow:0px 12px 32px 4px rgba(0,0,0,.04),0px 8px 20px rgba(0,0,0,.08);--el-box-shadow-light:0px 0px 12px rgba(0,0,0,.12);--el-box-shadow-lighter:0px 0px 6px rgba(0,0,0,.12);--el-box-shadow-dark:0px 16px 48px 16px rgba(0,0,0,.08),0px 12px 32px rgba(0,0,0,.12),0px 8px 16px -8px rgba(0,0,0,.16);--el-disabled-bg-color:var(--el-fill-color-light);--el-disabled-text-color:var(--el-text-color-placeholder);--el-disabled-border-color:var(--el-border-color-light);--el-overlay-color:rgba(0,0,0,.8);--el-overlay-color-light:rgba(0,0,0,.7);--el-overlay-color-lighter:rgba(0,0,0,.5);--el-mask-color:rgba(255,255,255,.9);--el-mask-color-extra-light:rgba(255,255,255,.3);--el-border-width:1px;--el-border-style:solid;--el-border-color-hover:var(--el-text-color-disabled);--el-border:var(--el-border-width) var(--el-border-style) var(--el-border-color);--el-svg-monochrome-grey:var(--el-border-color)}.fade-in-linear-enter-active,.fade-in-linear-leave-active{transition:var(--el-transition-fade-linear)}.fade-in-linear-enter-from,.fade-in-linear-leave-to{opacity:0}.el-fade-in-linear-enter-active,.el-fade-in-linear-leave-active{transition:var(--el-transition-fade-linear)}.el-fade-in-linear-enter-from,.el-fade-in-linear-leave-to{opacity:0}.el-fade-in-enter-active,.el-fade-in-leave-active{transition:all var(--el-transition-duration) cubic-bezier(.55,0,.1,1)}.el-fade-in-enter-from,.el-fade-in-leave-active{opacity:0}.el-zoom-in-center-enter-active,.el-zoom-in-center-leave-active{transition:all var(--el-transition-duration) cubic-bezier(.55,0,.1,1)}.el-zoom-in-center-enter-from,.el-zoom-in-center-leave-active{opacity:0;transform:scaleX(0)}.el-zoom-in-top-enter-active,.el-zoom-in-top-leave-active{opacity:1;transform:scaleY(1);transform-origin:center top;transition:var(--el-transition-md-fade)}.el-zoom-in-top-enter-active[data-popper-placement^=top],.el-zoom-in-top-leave-active[data-popper-placement^=top]{transform-origin:center bottom}.el-zoom-in-top-enter-from,.el-zoom-in-top-leave-active{opacity:0;transform:scaleY(0)}.el-zoom-in-bottom-enter-active,.el-zoom-in-bottom-leave-active{opacity:1;transform:scaleY(1);transform-origin:center bottom;transition:var(--el-transition-md-fade)}.el-zoom-in-bottom-enter-from,.el-zoom-in-bottom-leave-active{opacity:0;transform:scaleY(0)}.el-zoom-in-left-enter-active,.el-zoom-in-left-leave-active{opacity:1;transform:scale(1);transform-origin:top left;transition:var(--el-transition-md-fade)}.el-zoom-in-left-enter-from,.el-zoom-in-left-leave-active{opacity:0;transform:scale(.45)}.collapse-transition{transition:var(--el-transition-duration) height ease-in-out,var(--el-transition-duration) padding-top ease-in-out,var(--el-transition-duration) padding-bottom ease-in-out}.el-collapse-transition-enter-active,.el-collapse-transition-leave-active{transition:var(--el-transition-duration) max-height ease-in-out,var(--el-transition-duration) padding-top ease-in-out,var(--el-transition-duration) padding-bottom ease-in-out}.horizontal-collapse-transition{transition:var(--el-transition-duration) width ease-in-out,var(--el-transition-duration) padding-left ease-in-out,var(--el-transition-duration) padding-right ease-in-out}.el-list-enter-active,.el-list-leave-active{transition:all 1s}.el-list-enter-from,.el-list-leave-to{opacity:0;transform:translateY(-30px)}.el-list-leave-active{position:absolute!important}.el-opacity-transition{transition:opacity var(--el-transition-duration) cubic-bezier(.55,0,.1,1)}.el-icon-loading{animation:rotating 2s linear infinite}.el-icon--right{margin-left:5px}.el-icon--left{margin-right:5px}@keyframes rotating{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.el-icon{--color:inherit;align-items:center;display:inline-flex;height:1em;justify-content:center;line-height:1em;position:relative;width:1em;fill:currentColor;color:var(--color);font-size:inherit}.el-icon.is-loading{animation:rotating 2s linear infinite}.el-icon svg{height:1em;width:1em}html,body{color:#444;padding:0;margin:0}.back-img{width:100vw;height:100vh;position:fixed;top:0;left:0;z-index:-2}.icon{width:1em;height:1em;vertical-align:-.15em;fill:currentColor;overflow:hidden}@font-face{font-family:iconfont;src:url(./iconfont-BOnbbNzJ.woff2?t=1739426535222) format("woff2"),url(./iconfont-BA0J7sCj.woff?t=1739426535222) format("woff"),url(./iconfont-CxIKrsCL.ttf?t=1739426535222) format("truetype")}.iconfont{font-family:iconfont!important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-weizhiwenjian:before{content:""}.icon-exe:before{content:""}.icon-image:before{content:""}.icon-zip:before{content:""}.icon-xml:before{content:""}.icon-log:before{content:""}.icon-HTML:before{content:""}.icon-CSS:before{content:""}.icon-MP:before{content:""}.icon-CSV:before{content:""}.icon-JSON:before{content:""}.icon-JS:before{content:""}.icon-JAR:before{content:""}.icon-PDF:before{content:""}.icon-TXT:before{content:""}.icon-XLS:before{content:""}.icon-DOC:before{content:""}.icon-PPT:before{content:""}.icon-GIF:before{content:""}.icon-HTML1:before{content:""}.icon-SQL:before{content:""} diff --git a/dev-assistant-service/src/main/resources/static/assets/index-km1bwIfZ.js b/dev-assistant-service/src/main/resources/static/assets/index-km1bwIfZ.js new file mode 100644 index 0000000..a04f9cc --- /dev/null +++ b/dev-assistant-service/src/main/resources/static/assets/index-km1bwIfZ.js @@ -0,0 +1,22 @@ +const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["./Index-BkCaaeQ1.js","./_plugin-vue_export-helper-CwQuT6Sr.js","./_plugin-vue_export-helper-ljiJ2Biw.css","./Index-DqJ2Od91.css","./Login-DDlQxOJa.js","./Login-DDWLeKmv.css"])))=>i.map(i=>d[i]); +(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const n of document.querySelectorAll('link[rel="modulepreload"]'))a(n);new MutationObserver(n=>{for(const l of n)if(l.type==="childList")for(const s of l.addedNodes)s.tagName==="LINK"&&s.rel==="modulepreload"&&a(s)}).observe(document,{childList:!0,subtree:!0});function r(n){const l={};return n.integrity&&(l.integrity=n.integrity),n.referrerPolicy&&(l.referrerPolicy=n.referrerPolicy),n.crossOrigin==="use-credentials"?l.credentials="include":n.crossOrigin==="anonymous"?l.credentials="omit":l.credentials="same-origin",l}function a(n){if(n.ep)return;n.ep=!0;const l=r(n);fetch(n.href,l)}})();/** +* @vue/shared v3.5.13 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**//*! #__NO_SIDE_EFFECTS__ */function je(e){const t=Object.create(null);for(const r of e.split(","))t[r]=1;return r=>r in t}const c0={},O2=[],k0=()=>{},j3=()=>!1,W1=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),Ke=e=>e.startsWith("onUpdate:"),d0=Object.assign,Ue=(e,t)=>{const r=e.indexOf(t);r>-1&&e.splice(r,1)},K3=Object.prototype.hasOwnProperty,X=(e,t)=>K3.call(e,t),j=Array.isArray,k2=e=>G1(e)==="[object Map]",Rt=e=>G1(e)==="[object Set]",K=e=>typeof e=="function",h0=e=>typeof e=="string",o2=e=>typeof e=="symbol",o0=e=>e!==null&&typeof e=="object",Ot=e=>(o0(e)||K(e))&&K(e.then)&&K(e.catch),kt=Object.prototype.toString,G1=e=>kt.call(e),U3=e=>G1(e).slice(8,-1),It=e=>G1(e)==="[object Object]",We=e=>h0(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,a1=je(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),J1=e=>{const t=Object.create(null);return r=>t[r]||(t[r]=e(r))},W3=/-(\w)/g,N0=J1(e=>e.replace(W3,(t,r)=>r?r.toUpperCase():"")),G3=/\B([A-Z])/g,w2=J1(e=>e.replace(G3,"-$1").toLowerCase()),Z1=J1(e=>e.charAt(0).toUpperCase()+e.slice(1)),_e=J1(e=>e?`on${Z1(e)}`:""),m2=(e,t)=>!Object.is(e,t),pe=(e,...t)=>{for(let r=0;r{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:a,value:r})},J3=e=>{const t=parseFloat(e);return isNaN(t)?e:t},Z3=e=>{const t=h0(e)?Number(e):NaN;return isNaN(t)?e:t};let C6;const Y1=()=>C6||(C6=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function Ge(e){if(j(e)){const t={};for(let r=0;r{if(r){const a=r.split(Q3);a.length>1&&(t[a[0].trim()]=a[1].trim())}}),t}function Je(e){let t="";if(h0(e))t=e;else if(j(e))for(let r=0;r!!(e&&e.__v_isRef===!0),a8=e=>h0(e)?e:e==null?"":j(e)||o0(e)&&(e.toString===kt||!K(e.toString))?qt(e)?a8(e.value):JSON.stringify(e,jt,2):String(e),jt=(e,t)=>qt(t)?jt(e,t.value):k2(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((r,[a,n],l)=>(r[he(a,l)+" =>"]=n,r),{})}:Rt(t)?{[`Set(${t.size})`]:[...t.values()].map(r=>he(r))}:o2(t)?he(t):o0(t)&&!j(t)&&!It(t)?String(t):t,he=(e,t="")=>{var r;return o2(e)?`Symbol(${(r=e.description)!=null?r:t})`:e};/** +* @vue/reactivity v3.5.13 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/let E0;class n8{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this._isPaused=!1,this.parent=E0,!t&&E0&&(this.index=(E0.scopes||(E0.scopes=[])).push(this)-1)}get active(){return this._active}pause(){if(this._active){this._isPaused=!0;let t,r;if(this.scopes)for(t=0,r=this.scopes.length;t0)return;if(l1){let t=l1;for(l1=void 0;t;){const r=t.next;t.next=void 0,t.flags&=-9,t=r}}let e;for(;n1;){let t=n1;for(n1=void 0;t;){const r=t.next;if(t.next=void 0,t.flags&=-9,t.flags&1)try{t.trigger()}catch(a){e||(e=a)}t=r}}if(e)throw e}function Jt(e){for(let t=e.deps;t;t=t.nextDep)t.version=-1,t.prevActiveLink=t.dep.activeLink,t.dep.activeLink=t}function Zt(e){let t,r=e.depsTail,a=r;for(;a;){const n=a.prevDep;a.version===-1?(a===r&&(r=n),Qe(a),s8(a)):t=a,a.dep.activeLink=a.prevActiveLink,a.prevActiveLink=void 0,a=n}e.deps=t,e.depsTail=r}function Ve(e){for(let t=e.deps;t;t=t.nextDep)if(t.dep.version!==t.version||t.dep.computed&&(Yt(t.dep.computed)||t.dep.version!==t.version))return!0;return!!e._dirty}function Yt(e){if(e.flags&4&&!(e.flags&16)||(e.flags&=-17,e.globalVersion===p1))return;e.globalVersion=p1;const t=e.dep;if(e.flags|=2,t.version>0&&!e.isSSR&&e.deps&&!Ve(e)){e.flags&=-3;return}const r=_0,a=$0;_0=e,$0=!0;try{Jt(e);const n=e.fn(e._value);(t.version===0||m2(n,e._value))&&(e._value=n,t.version++)}catch(n){throw t.version++,n}finally{_0=r,$0=a,Zt(e),e.flags&=-3}}function Qe(e,t=!1){const{dep:r,prevSub:a,nextSub:n}=e;if(a&&(a.nextSub=n,e.prevSub=void 0),n&&(n.prevSub=a,e.nextSub=void 0),r.subs===e&&(r.subs=a,!a&&r.computed)){r.computed.flags&=-5;for(let l=r.computed.deps;l;l=l.nextDep)Qe(l,!0)}!t&&!--r.sc&&r.map&&r.map.delete(r.key)}function s8(e){const{prevDep:t,nextDep:r}=e;t&&(t.nextDep=r,e.prevDep=void 0),r&&(r.prevDep=t,e.nextDep=void 0)}let $0=!0;const Qt=[];function x2(){Qt.push($0),$0=!1}function y2(){const e=Qt.pop();$0=e===void 0?!0:e}function z6(e){const{cleanup:t}=e;if(e.cleanup=void 0,t){const r=_0;_0=void 0;try{t()}finally{_0=r}}}let p1=0;class o8{constructor(t,r){this.sub=t,this.dep=r,this.version=r.version,this.nextDep=this.prevDep=this.nextSub=this.prevSub=this.prevActiveLink=void 0}}class Xe{constructor(t){this.computed=t,this.version=0,this.activeLink=void 0,this.subs=void 0,this.map=void 0,this.key=void 0,this.sc=0}track(t){if(!_0||!$0||_0===this.computed)return;let r=this.activeLink;if(r===void 0||r.sub!==_0)r=this.activeLink=new o8(_0,this),_0.deps?(r.prevDep=_0.depsTail,_0.depsTail.nextDep=r,_0.depsTail=r):_0.deps=_0.depsTail=r,Xt(r);else if(r.version===-1&&(r.version=this.version,r.nextDep)){const a=r.nextDep;a.prevDep=r.prevDep,r.prevDep&&(r.prevDep.nextDep=a),r.prevDep=_0.depsTail,r.nextDep=void 0,_0.depsTail.nextDep=r,_0.depsTail=r,_0.deps===r&&(_0.deps=a)}return r}trigger(t){this.version++,p1++,this.notify(t)}notify(t){Ze();try{for(let r=this.subs;r;r=r.prevSub)r.sub.notify()&&r.sub.dep.notify()}finally{Ye()}}}function Xt(e){if(e.dep.sc++,e.sub.flags&4){const t=e.dep.computed;if(t&&!e.dep.subs){t.flags|=20;for(let a=t.deps;a;a=a.nextDep)Xt(a)}const r=e.dep.subs;r!==e&&(e.prevSub=r,r&&(r.nextSub=e)),e.dep.subs=e}}const D1=new WeakMap,V2=Symbol(""),Be=Symbol(""),h1=Symbol("");function y0(e,t,r){if($0&&_0){let a=D1.get(e);a||D1.set(e,a=new Map);let n=a.get(r);n||(a.set(r,n=new Xe),n.map=a,n.key=r),n.track()}}function n2(e,t,r,a,n,l){const s=D1.get(e);if(!s){p1++;return}const u=c=>{c&&c.trigger()};if(Ze(),t==="clear")s.forEach(u);else{const c=j(e),f=c&&We(r);if(c&&r==="length"){const _=Number(a);s.forEach((v,g)=>{(g==="length"||g===h1||!o2(g)&&g>=_)&&u(v)})}else switch((r!==void 0||s.has(void 0))&&u(s.get(r)),f&&u(s.get(h1)),t){case"add":c?f&&u(s.get("length")):(u(s.get(V2)),k2(e)&&u(s.get(Be)));break;case"delete":c||(u(s.get(V2)),k2(e)&&u(s.get(Be)));break;case"set":k2(e)&&u(s.get(V2));break}}Ye()}function u8(e,t){const r=D1.get(e);return r&&r.get(t)}function D2(e){const t=Q(e);return t===e?t:(y0(t,"iterate",h1),I0(e)?t:t.map(C0))}function Q1(e){return y0(e=Q(e),"iterate",h1),e}const c8={__proto__:null,[Symbol.iterator](){return ve(this,Symbol.iterator,C0)},concat(...e){return D2(this).concat(...e.map(t=>j(t)?D2(t):t))},entries(){return ve(this,"entries",e=>(e[1]=C0(e[1]),e))},every(e,t){return t2(this,"every",e,t,void 0,arguments)},filter(e,t){return t2(this,"filter",e,t,r=>r.map(C0),arguments)},find(e,t){return t2(this,"find",e,t,C0,arguments)},findIndex(e,t){return t2(this,"findIndex",e,t,void 0,arguments)},findLast(e,t){return t2(this,"findLast",e,t,C0,arguments)},findLastIndex(e,t){return t2(this,"findLastIndex",e,t,void 0,arguments)},forEach(e,t){return t2(this,"forEach",e,t,void 0,arguments)},includes(...e){return de(this,"includes",e)},indexOf(...e){return de(this,"indexOf",e)},join(e){return D2(this).join(e)},lastIndexOf(...e){return de(this,"lastIndexOf",e)},map(e,t){return t2(this,"map",e,t,void 0,arguments)},pop(){return Y2(this,"pop")},push(...e){return Y2(this,"push",e)},reduce(e,...t){return M6(this,"reduce",e,t)},reduceRight(e,...t){return M6(this,"reduceRight",e,t)},shift(){return Y2(this,"shift")},some(e,t){return t2(this,"some",e,t,void 0,arguments)},splice(...e){return Y2(this,"splice",e)},toReversed(){return D2(this).toReversed()},toSorted(e){return D2(this).toSorted(e)},toSpliced(...e){return D2(this).toSpliced(...e)},unshift(...e){return Y2(this,"unshift",e)},values(){return ve(this,"values",C0)}};function ve(e,t,r){const a=Q1(e),n=a[t]();return a!==e&&!I0(e)&&(n._next=n.next,n.next=()=>{const l=n._next();return l.value&&(l.value=r(l.value)),l}),n}const i8=Array.prototype;function t2(e,t,r,a,n,l){const s=Q1(e),u=s!==e&&!I0(e),c=s[t];if(c!==i8[t]){const v=c.apply(e,l);return u?C0(v):v}let f=r;s!==e&&(u?f=function(v,g){return r.call(this,C0(v),g,e)}:r.length>2&&(f=function(v,g){return r.call(this,v,g,e)}));const _=c.call(s,f,a);return u&&n?n(_):_}function M6(e,t,r,a){const n=Q1(e);let l=r;return n!==e&&(I0(e)?r.length>3&&(l=function(s,u,c){return r.call(this,s,u,c,e)}):l=function(s,u,c){return r.call(this,s,C0(u),c,e)}),n[t](l,...a)}function de(e,t,r){const a=Q(e);y0(a,"iterate",h1);const n=a[t](...r);return(n===-1||n===!1)&&r6(r[0])?(r[0]=Q(r[0]),a[t](...r)):n}function Y2(e,t,r=[]){x2(),Ze();const a=Q(e)[t].apply(e,r);return Ye(),y2(),a}const _8=je("__proto__,__v_isRef,__isVue"),e4=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(o2));function p8(e){o2(e)||(e=String(e));const t=Q(this);return y0(t,"has",e),t.hasOwnProperty(e)}class t4{constructor(t=!1,r=!1){this._isReadonly=t,this._isShallow=r}get(t,r,a){if(r==="__v_skip")return t.__v_skip;const n=this._isReadonly,l=this._isShallow;if(r==="__v_isReactive")return!n;if(r==="__v_isReadonly")return n;if(r==="__v_isShallow")return l;if(r==="__v_raw")return a===(n?l?C8:l4:l?n4:a4).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(a)?t:void 0;const s=j(t);if(!n){let c;if(s&&(c=c8[r]))return c;if(r==="hasOwnProperty")return p8}const u=Reflect.get(t,r,v0(t)?t:a);return(o2(r)?e4.has(r):_8(r))||(n||y0(t,"get",r),l)?u:v0(u)?s&&We(r)?u:u.value:o0(u)?n?ee(u):X1(u):u}}class r4 extends t4{constructor(t=!1){super(!1,t)}set(t,r,a,n){let l=t[r];if(!this._isShallow){const c=B2(l);if(!I0(a)&&!B2(a)&&(l=Q(l),a=Q(a)),!j(t)&&v0(l)&&!v0(a))return c?!1:(l.value=a,!0)}const s=j(t)&&We(r)?Number(r)e,b1=e=>Reflect.getPrototypeOf(e);function m8(e,t,r){return function(...a){const n=this.__v_raw,l=Q(n),s=k2(l),u=e==="entries"||e===Symbol.iterator&&s,c=e==="keys"&&s,f=n[e](...a),_=r?Ae:t?Le:C0;return!t&&y0(l,"iterate",c?Be:V2),{next(){const{value:v,done:g}=f.next();return g?{value:v,done:g}:{value:u?[_(v[0]),_(v[1])]:_(v),done:g}},[Symbol.iterator](){return this}}}}function H1(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function g8(e,t){const r={get(n){const l=this.__v_raw,s=Q(l),u=Q(n);e||(m2(n,u)&&y0(s,"get",n),y0(s,"get",u));const{has:c}=b1(s),f=t?Ae:e?Le:C0;if(c.call(s,n))return f(l.get(n));if(c.call(s,u))return f(l.get(u));l!==s&&l.get(n)},get size(){const n=this.__v_raw;return!e&&y0(Q(n),"iterate",V2),Reflect.get(n,"size",n)},has(n){const l=this.__v_raw,s=Q(l),u=Q(n);return e||(m2(n,u)&&y0(s,"has",n),y0(s,"has",u)),n===u?l.has(n):l.has(n)||l.has(u)},forEach(n,l){const s=this,u=s.__v_raw,c=Q(u),f=t?Ae:e?Le:C0;return!e&&y0(c,"iterate",V2),u.forEach((_,v)=>n.call(l,f(_),f(v),s))}};return d0(r,e?{add:H1("add"),set:H1("set"),delete:H1("delete"),clear:H1("clear")}:{add(n){!t&&!I0(n)&&!B2(n)&&(n=Q(n));const l=Q(this);return b1(l).has.call(l,n)||(l.add(n),n2(l,"add",n,n)),this},set(n,l){!t&&!I0(l)&&!B2(l)&&(l=Q(l));const s=Q(this),{has:u,get:c}=b1(s);let f=u.call(s,n);f||(n=Q(n),f=u.call(s,n));const _=c.call(s,n);return s.set(n,l),f?m2(l,_)&&n2(s,"set",n,l):n2(s,"add",n,l),this},delete(n){const l=Q(this),{has:s,get:u}=b1(l);let c=s.call(l,n);c||(n=Q(n),c=s.call(l,n)),u&&u.call(l,n);const f=l.delete(n);return c&&n2(l,"delete",n,void 0),f},clear(){const n=Q(this),l=n.size!==0,s=n.clear();return l&&n2(n,"clear",void 0,void 0),s}}),["keys","values","entries",Symbol.iterator].forEach(n=>{r[n]=m8(n,e,t)}),r}function e6(e,t){const r=g8(e,t);return(a,n,l)=>n==="__v_isReactive"?!e:n==="__v_isReadonly"?e:n==="__v_raw"?a:Reflect.get(X(r,n)&&n in a?r:a,n,l)}const w8={get:e6(!1,!1)},x8={get:e6(!1,!0)},y8={get:e6(!0,!1)};const a4=new WeakMap,n4=new WeakMap,l4=new WeakMap,C8=new WeakMap;function z8(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function M8(e){return e.__v_skip||!Object.isExtensible(e)?0:z8(U3(e))}function X1(e){return B2(e)?e:t6(e,!1,f8,w8,a4)}function s4(e){return t6(e,!1,d8,x8,n4)}function ee(e){return t6(e,!0,v8,y8,l4)}function t6(e,t,r,a,n){if(!o0(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const l=n.get(e);if(l)return l;const s=M8(e);if(s===0)return e;const u=new Proxy(e,s===2?a:r);return n.set(e,u),u}function I2(e){return B2(e)?I2(e.__v_raw):!!(e&&e.__v_isReactive)}function B2(e){return!!(e&&e.__v_isReadonly)}function I0(e){return!!(e&&e.__v_isShallow)}function r6(e){return e?!!e.__v_raw:!1}function Q(e){const t=e&&e.__v_raw;return t?Q(t):e}function b8(e){return!X(e,"__v_skip")&&Object.isExtensible(e)&&Nt(e,"__v_skip",!0),e}const C0=e=>o0(e)?X1(e):e,Le=e=>o0(e)?ee(e):e;function v0(e){return e?e.__v_isRef===!0:!1}function X0(e){return u4(e,!1)}function o4(e){return u4(e,!0)}function u4(e,t){return v0(e)?e:new H8(e,t)}class H8{constructor(t,r){this.dep=new Xe,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=r?t:Q(t),this._value=r?t:C0(t),this.__v_isShallow=r}get value(){return this.dep.track(),this._value}set value(t){const r=this._rawValue,a=this.__v_isShallow||I0(t)||B2(t);t=a?t:Q(t),m2(t,r)&&(this._rawValue=t,this._value=a?t:C0(t),this.dep.trigger())}}function M0(e){return v0(e)?e.value:e}const E8={get:(e,t,r)=>t==="__v_raw"?e:M0(Reflect.get(e,t,r)),set:(e,t,r,a)=>{const n=e[t];return v0(n)&&!v0(r)?(n.value=r,!0):Reflect.set(e,t,r,a)}};function c4(e){return I2(e)?e:new Proxy(e,E8)}function Ef(e){const t=j(e)?new Array(e.length):{};for(const r in e)t[r]=i4(e,r);return t}class V8{constructor(t,r,a){this._object=t,this._key=r,this._defaultValue=a,this.__v_isRef=!0,this._value=void 0}get value(){const t=this._object[this._key];return this._value=t===void 0?this._defaultValue:t}set value(t){this._object[this._key]=t}get dep(){return u8(Q(this._object),this._key)}}class B8{constructor(t){this._getter=t,this.__v_isRef=!0,this.__v_isReadonly=!0,this._value=void 0}get value(){return this._value=this._getter()}}function Vf(e,t,r){return v0(e)?e:K(e)?new B8(e):o0(e)&&arguments.length>1?i4(e,t,r):X0(e)}function i4(e,t,r){const a=e[t];return v0(a)?a:new V8(e,t,r)}class A8{constructor(t,r,a){this.fn=t,this.setter=r,this._value=void 0,this.dep=new Xe(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=p1-1,this.next=void 0,this.effect=this,this.__v_isReadonly=!r,this.isSSR=a}notify(){if(this.flags|=16,!(this.flags&8)&&_0!==this)return Gt(this,!0),!0}get value(){const t=this.dep.track();return Yt(this),t&&(t.version=this.dep.version),this._value}set value(t){this.setter&&this.setter(t)}}function L8(e,t,r=!1){let a,n;return K(e)?a=e:(a=e.get,n=e.set),new A8(a,n,r)}const E1={},T1=new WeakMap;let H2;function S8(e,t=!1,r=H2){if(r){let a=T1.get(r);a||T1.set(r,a=[]),a.push(e)}}function F8(e,t,r=c0){const{immediate:a,deep:n,once:l,scheduler:s,augmentJob:u,call:c}=r,f=T=>n?T:I0(T)||n===!1||n===0?l2(T,1):l2(T);let _,v,g,w,H=!1,y=!1;if(v0(e)?(v=()=>e.value,H=I0(e)):I2(e)?(v=()=>f(e),H=!0):j(e)?(y=!0,H=e.some(T=>I2(T)||I0(T)),v=()=>e.map(T=>{if(v0(T))return T.value;if(I2(T))return f(T);if(K(T))return c?c(T,2):T()})):K(e)?t?v=c?()=>c(e,2):e:v=()=>{if(g){x2();try{g()}finally{y2()}}const T=H2;H2=_;try{return c?c(e,3,[w]):e(w)}finally{H2=T}}:v=k0,t&&n){const T=v,W=n===!0?1/0:n;v=()=>l2(T(),W)}const P=Kt(),A=()=>{_.stop(),P&&P.active&&Ue(P.effects,_)};if(l&&t){const T=t;t=(...W)=>{T(...W),A()}}let R=y?new Array(e.length).fill(E1):E1;const k=T=>{if(!(!(_.flags&1)||!_.dirty&&!T))if(t){const W=_.run();if(n||H||(y?W.some((J,Z)=>m2(J,R[Z])):m2(W,R))){g&&g();const J=H2;H2=_;try{const Z=[W,R===E1?void 0:y&&R[0]===E1?[]:R,w];c?c(t,3,Z):t(...Z),R=W}finally{H2=J}}}else _.run()};return u&&u(k),_=new Ut(v),_.scheduler=s?()=>s(k,!1):k,w=T=>S8(T,!1,_),g=_.onStop=()=>{const T=T1.get(_);if(T){if(c)c(T,4);else for(const W of T)W();T1.delete(_)}},t?a?k(!0):R=_.run():s?s(k.bind(null,!0),!0):_.run(),A.pause=_.pause.bind(_),A.resume=_.resume.bind(_),A.stop=A,A}function l2(e,t=1/0,r){if(t<=0||!o0(e)||e.__v_skip||(r=r||new Set,r.has(e)))return e;if(r.add(e),t--,v0(e))l2(e.value,t,r);else if(j(e))for(let a=0;a{l2(a,t,r)});else if(It(e)){for(const a in e)l2(e[a],t,r);for(const a of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,a)&&l2(e[a],t,r)}return e}/** +* @vue/runtime-core v3.5.13 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/function C1(e,t,r,a){try{return a?e(...a):e()}catch(n){te(n,t,r)}}function q0(e,t,r,a){if(K(e)){const n=C1(e,t,r,a);return n&&Ot(n)&&n.catch(l=>{te(l,t,r)}),n}if(j(e)){const n=[];for(let l=0;l>>1,n=V0[a],l=f1(n);l=f1(r)?V0.push(e):V0.splice(D8(t),0,e),e.flags|=1,p4()}}function p4(){R1||(R1=_4.then(f4))}function T8(e){j(e)?N2.push(...e):h2&&e.id===-1?h2.splice(T2+1,0,e):e.flags&1||(N2.push(e),e.flags|=1),p4()}function b6(e,t,r=Y0+1){for(;rf1(r)-f1(a));if(N2.length=0,h2){h2.push(...t);return}for(h2=t,T2=0;T2e.id==null?e.flags&2?-1:1/0:e.id;function f4(e){try{for(Y0=0;Y0{a._d&&k6(-1);const l=O1(t);let s;try{s=e(...n)}finally{O1(l),a._d&&k6(1)}return s};return a._n=!0,a._c=!0,a._d=!0,a}function Bf(e,t){if(g0===null)return e;const r=se(g0),a=e.dirs||(e.dirs=[]);for(let n=0;ne.__isTeleport,s1=e=>e&&(e.disabled||e.disabled===""),H6=e=>e&&(e.defer||e.defer===""),E6=e=>typeof SVGElement<"u"&&e instanceof SVGElement,V6=e=>typeof MathMLElement=="function"&&e instanceof MathMLElement,Se=(e,t)=>{const r=e&&e.to;return h0(r)?t?t(r):null:r},w4={name:"Teleport",__isTeleport:!0,process(e,t,r,a,n,l,s,u,c,f){const{mc:_,pc:v,pbc:g,o:{insert:w,querySelector:H,createText:y,createComment:P}}=f,A=s1(t.props);let{shapeFlag:R,children:k,dynamicChildren:T}=t;if(e==null){const W=t.el=y(""),J=t.anchor=y("");w(W,r,a),w(J,r,a);const Z=(N,G)=>{R&16&&(n&&n.isCE&&(n.ce._teleportTarget=N),_(k,N,G,n,l,s,u,c))},p0=()=>{const N=t.target=Se(t.props,H),G=x4(N,t,y,w);N&&(s!=="svg"&&E6(N)?s="svg":s!=="mathml"&&V6(N)&&(s="mathml"),A||(Z(N,G),L1(t,!1)))};A&&(Z(r,J),L1(t,!0)),H6(t.props)?H0(()=>{p0(),t.el.__isMounted=!0},l):p0()}else{if(H6(t.props)&&!e.el.__isMounted){H0(()=>{w4.process(e,t,r,a,n,l,s,u,c,f),delete e.el.__isMounted},l);return}t.el=e.el,t.targetStart=e.targetStart;const W=t.anchor=e.anchor,J=t.target=e.target,Z=t.targetAnchor=e.targetAnchor,p0=s1(e.props),N=p0?r:J,G=p0?W:Z;if(s==="svg"||E6(J)?s="svg":(s==="mathml"||V6(J))&&(s="mathml"),T?(g(e.dynamicChildren,T,N,n,l,s,u),u6(e,t,!0)):c||v(e,t,N,G,n,l,s,u,!1),A)p0?t.props&&e.props&&t.props.to!==e.props.to&&(t.props.to=e.props.to):V1(t,r,W,f,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const a0=t.target=Se(t.props,H);a0&&V1(t,a0,null,f,0)}else p0&&V1(t,J,Z,f,1);L1(t,A)}},remove(e,t,r,{um:a,o:{remove:n}},l){const{shapeFlag:s,children:u,anchor:c,targetStart:f,targetAnchor:_,target:v,props:g}=e;if(v&&(n(f),n(_)),l&&n(c),s&16){const w=l||!s1(g);for(let H=0;H{e.isMounted=!0}),B4(()=>{e.isUnmounting=!0}),e}const O0=[Function,Array],C4={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:O0,onEnter:O0,onAfterEnter:O0,onEnterCancelled:O0,onBeforeLeave:O0,onLeave:O0,onAfterLeave:O0,onLeaveCancelled:O0,onBeforeAppear:O0,onAppear:O0,onAfterAppear:O0,onAppearCancelled:O0},z4=e=>{const t=e.subTree;return t.component?z4(t.component):t},O8={name:"BaseTransition",props:C4,setup(e,{slots:t}){const r=s2(),a=y4();return()=>{const n=t.default&&l6(t.default(),!0);if(!n||!n.length)return;const l=M4(n),s=Q(e),{mode:u}=s;if(a.isLeaving)return me(l);const c=B6(l);if(!c)return me(l);let f=v1(c,s,a,r,v=>f=v);c.type!==B0&&A2(c,f);let _=r.subTree&&B6(r.subTree);if(_&&_.type!==B0&&!E2(c,_)&&z4(r).type!==B0){let v=v1(_,s,a,r);if(A2(_,v),u==="out-in"&&c.type!==B0)return a.isLeaving=!0,v.afterLeave=()=>{a.isLeaving=!1,r.job.flags&8||r.update(),delete v.afterLeave,_=void 0},me(l);u==="in-out"&&c.type!==B0?v.delayLeave=(g,w,H)=>{const y=b4(a,_);y[String(_.key)]=_,g[f2]=()=>{w(),g[f2]=void 0,delete f.delayedLeave,_=void 0},f.delayedLeave=()=>{H(),delete f.delayedLeave,_=void 0}}:_=void 0}else _&&(_=void 0);return l}}};function M4(e){let t=e[0];if(e.length>1){for(const r of e)if(r.type!==B0){t=r;break}}return t}const k8=O8;function b4(e,t){const{leavingVNodes:r}=e;let a=r.get(t.type);return a||(a=Object.create(null),r.set(t.type,a)),a}function v1(e,t,r,a,n){const{appear:l,mode:s,persisted:u=!1,onBeforeEnter:c,onEnter:f,onAfterEnter:_,onEnterCancelled:v,onBeforeLeave:g,onLeave:w,onAfterLeave:H,onLeaveCancelled:y,onBeforeAppear:P,onAppear:A,onAfterAppear:R,onAppearCancelled:k}=t,T=String(e.key),W=b4(r,e),J=(N,G)=>{N&&q0(N,a,9,G)},Z=(N,G)=>{const a0=G[1];J(N,G),j(N)?N.every(O=>O.length<=1)&&a0():N.length<=1&&a0()},p0={mode:s,persisted:u,beforeEnter(N){let G=c;if(!r.isMounted)if(l)G=P||c;else return;N[f2]&&N[f2](!0);const a0=W[T];a0&&E2(e,a0)&&a0.el[f2]&&a0.el[f2](),J(G,[N])},enter(N){let G=f,a0=_,O=v;if(!r.isMounted)if(l)G=A||f,a0=R||_,O=k||v;else return;let e0=!1;const m0=N[B1]=F0=>{e0||(e0=!0,F0?J(O,[N]):J(a0,[N]),p0.delayedLeave&&p0.delayedLeave(),N[B1]=void 0)};G?Z(G,[N,m0]):m0()},leave(N,G){const a0=String(e.key);if(N[B1]&&N[B1](!0),r.isUnmounting)return G();J(g,[N]);let O=!1;const e0=N[f2]=m0=>{O||(O=!0,G(),m0?J(y,[N]):J(H,[N]),N[f2]=void 0,W[a0]===e&&delete W[a0])};W[a0]=e,w?Z(w,[N,e0]):e0()},clone(N){const G=v1(N,t,r,a,n);return n&&n(G),G}};return p0}function me(e){if(re(e))return e=g2(e),e.children=null,e}function B6(e){if(!re(e))return g4(e.type)&&e.children?M4(e.children):e;const{shapeFlag:t,children:r}=e;if(r){if(t&16)return r[0];if(t&32&&K(r.default))return r.default()}}function A2(e,t){e.shapeFlag&6&&e.component?(e.transition=t,A2(e.component.subTree,t)):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function l6(e,t=!1,r){let a=[],n=0;for(let l=0;l1)for(let l=0;lk1(H,t&&(j(t)?t[y]:t),r,a,n));return}if($2(a)&&!n){a.shapeFlag&512&&a.type.__asyncResolved&&a.component.subTree.component&&k1(e,t,r,a.component.subTree);return}const l=a.shapeFlag&4?se(a.component):a.el,s=n?null:l,{i:u,r:c}=e,f=t&&t.r,_=u.refs===c0?u.refs={}:u.refs,v=u.setupState,g=Q(v),w=v===c0?()=>!1:H=>X(g,H);if(f!=null&&f!==c&&(h0(f)?(_[f]=null,w(f)&&(v[f]=null)):v0(f)&&(f.value=null)),K(c))C1(c,u,12,[s,_]);else{const H=h0(c),y=v0(c);if(H||y){const P=()=>{if(e.f){const A=H?w(c)?v[c]:_[c]:c.value;n?j(A)&&Ue(A,l):j(A)?A.includes(l)||A.push(l):H?(_[c]=[l],w(c)&&(v[c]=_[c])):(c.value=[l],e.k&&(_[e.k]=c.value))}else H?(_[c]=s,w(c)&&(v[c]=s)):y&&(c.value=s,e.k&&(_[e.k]=s))};s?(P.id=-1,H0(P,r)):P()}}}Y1().requestIdleCallback;Y1().cancelIdleCallback;const $2=e=>!!e.type.__asyncLoader,re=e=>e.type.__isKeepAlive;function I8(e,t){E4(e,"a",t)}function N8(e,t){E4(e,"da",t)}function E4(e,t,r=w0){const a=e.__wdc||(e.__wdc=()=>{let n=r;for(;n;){if(n.isDeactivated)return;n=n.parent}return e()});if(ae(t,a,r),r){let n=r.parent;for(;n&&n.parent;)re(n.parent.vnode)&&$8(a,t,r,n),n=n.parent}}function $8(e,t,r,a){const n=ae(t,e,a,!0);A4(()=>{Ue(a[t],n)},r)}function ae(e,t,r=w0,a=!1){if(r){const n=r[e]||(r[e]=[]),l=t.__weh||(t.__weh=(...s)=>{x2();const u=z1(r),c=q0(t,r,e,s);return u(),y2(),c});return a?n.unshift(l):n.push(l),l}}const u2=e=>(t,r=w0)=>{(!g1||e==="sp")&&ae(e,(...a)=>t(...a),r)},q8=u2("bm"),s6=u2("m"),j8=u2("bu"),V4=u2("u"),B4=u2("bum"),A4=u2("um"),K8=u2("sp"),U8=u2("rtg"),W8=u2("rtc");function G8(e,t=w0){ae("ec",e,t)}const L4="components";function J8(e,t){return F4(L4,e,!0,t)||e}const S4=Symbol.for("v-ndc");function Lf(e){return h0(e)?F4(L4,e,!1)||e:e||S4}function F4(e,t,r=!0,a=!1){const n=g0||w0;if(n){const l=n.type;{const u=Rr(l,!1);if(u&&(u===t||u===N0(t)||u===Z1(N0(t))))return l}const s=A6(n[e]||l[e],t)||A6(n.appContext[e],t);return!s&&a?l:s}}function A6(e,t){return e&&(e[t]||e[N0(t)]||e[Z1(N0(t))])}function Sf(e,t,r,a){let n;const l=r,s=j(e);if(s||h0(e)){const u=s&&I2(e);let c=!1;u&&(c=!I0(e),e=Q1(e)),n=new Array(e.length);for(let f=0,_=e.length;f<_;f++)n[f]=t(c?C0(e[f]):e[f],f,void 0,l)}else if(typeof e=="number"){n=new Array(e);for(let u=0;ut(u,c,void 0,l));else{const u=Object.keys(e);n=new Array(u.length);for(let c=0,f=u.length;c{const l=a.fn(...n);return l&&(l.key=a.key),l}:a.fn)}return e}function Z8(e,t,r={},a,n){if(g0.ce||g0.parent&&$2(g0.parent)&&g0.parent.ce)return t!=="default"&&(r.name=t),i(),N1(S0,null,[z0("slot",r,a&&a())],64);let l=e[t];l&&l._c&&(l._d=!1),i();const s=l&&P4(l(r)),u=r.key||s&&s.key,c=N1(S0,{key:(u&&!o2(u)?u:`_${t}`)+(!s&&a?"_fb":"")},s||(a?a():[]),s&&e._===1?64:-2);return c.scopeId&&(c.slotScopeIds=[c.scopeId+"-s"]),l&&l._c&&(l._d=!0),c}function P4(e){return e.some(t=>m1(t)?!(t.type===B0||t.type===S0&&!P4(t.children)):!0)?e:null}const Fe=e=>e?e3(e)?se(e):Fe(e.parent):null,o1=d0(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>Fe(e.parent),$root:e=>Fe(e.root),$host:e=>e.ce,$emit:e=>e.emit,$options:e=>R4(e),$forceUpdate:e=>e.f||(e.f=()=>{n6(e.update)}),$nextTick:e=>e.n||(e.n=a6.bind(e.proxy)),$watch:e=>gr.bind(e)}),ge=(e,t)=>e!==c0&&!e.__isScriptSetup&&X(e,t),Y8={get({_:e},t){if(t==="__v_skip")return!0;const{ctx:r,setupState:a,data:n,props:l,accessCache:s,type:u,appContext:c}=e;let f;if(t[0]!=="$"){const w=s[t];if(w!==void 0)switch(w){case 1:return a[t];case 2:return n[t];case 4:return r[t];case 3:return l[t]}else{if(ge(a,t))return s[t]=1,a[t];if(n!==c0&&X(n,t))return s[t]=2,n[t];if((f=e.propsOptions[0])&&X(f,t))return s[t]=3,l[t];if(r!==c0&&X(r,t))return s[t]=4,r[t];Pe&&(s[t]=0)}}const _=o1[t];let v,g;if(_)return t==="$attrs"&&y0(e.attrs,"get",""),_(e);if((v=u.__cssModules)&&(v=v[t]))return v;if(r!==c0&&X(r,t))return s[t]=4,r[t];if(g=c.config.globalProperties,X(g,t))return g[t]},set({_:e},t,r){const{data:a,setupState:n,ctx:l}=e;return ge(n,t)?(n[t]=r,!0):a!==c0&&X(a,t)?(a[t]=r,!0):X(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(l[t]=r,!0)},has({_:{data:e,setupState:t,accessCache:r,ctx:a,appContext:n,propsOptions:l}},s){let u;return!!r[s]||e!==c0&&X(e,s)||ge(t,s)||(u=l[0])&&X(u,s)||X(a,s)||X(o1,s)||X(n.config.globalProperties,s)},defineProperty(e,t,r){return r.get!=null?e._.accessCache[t]=0:X(r,"value")&&this.set(e,t,r.value,null),Reflect.defineProperty(e,t,r)}};function Pf(){return D4().slots}function Df(){return D4().attrs}function D4(){const e=s2();return e.setupContext||(e.setupContext=r3(e))}function L6(e){return j(e)?e.reduce((t,r)=>(t[r]=null,t),{}):e}let Pe=!0;function Q8(e){const t=R4(e),r=e.proxy,a=e.ctx;Pe=!1,t.beforeCreate&&S6(t.beforeCreate,e,"bc");const{data:n,computed:l,methods:s,watch:u,provide:c,inject:f,created:_,beforeMount:v,mounted:g,beforeUpdate:w,updated:H,activated:y,deactivated:P,beforeDestroy:A,beforeUnmount:R,destroyed:k,unmounted:T,render:W,renderTracked:J,renderTriggered:Z,errorCaptured:p0,serverPrefetch:N,expose:G,inheritAttrs:a0,components:O,directives:e0,filters:m0}=t;if(f&&X8(f,a,null),s)for(const s0 in s){const t0=s[s0];K(t0)&&(a[s0]=t0.bind(r))}if(n){const s0=n.call(r,r);o0(s0)&&(e.data=X1(s0))}if(Pe=!0,l)for(const s0 in l){const t0=l[s0],e2=K(t0)?t0.bind(r,r):K(t0.get)?t0.get.bind(r,r):k0,c2=!K(t0)&&K(t0.set)?t0.set.bind(r):k0,K0=l0({get:e2,set:c2});Object.defineProperty(a,s0,{enumerable:!0,configurable:!0,get:()=>K0.value,set:A0=>K0.value=A0})}if(u)for(const s0 in u)T4(u[s0],a,r,s0);if(c){const s0=K(c)?c.call(r):c;Reflect.ownKeys(s0).forEach(t0=>{u1(t0,s0[t0])})}_&&S6(_,e,"c");function f0(s0,t0){j(t0)?t0.forEach(e2=>s0(e2.bind(r))):t0&&s0(t0.bind(r))}if(f0(q8,v),f0(s6,g),f0(j8,w),f0(V4,H),f0(I8,y),f0(N8,P),f0(G8,p0),f0(W8,J),f0(U8,Z),f0(B4,R),f0(A4,T),f0(K8,N),j(G))if(G.length){const s0=e.exposed||(e.exposed={});G.forEach(t0=>{Object.defineProperty(s0,t0,{get:()=>r[t0],set:e2=>r[t0]=e2})})}else e.exposed||(e.exposed={});W&&e.render===k0&&(e.render=W),a0!=null&&(e.inheritAttrs=a0),O&&(e.components=O),e0&&(e.directives=e0),N&&H4(e)}function X8(e,t,r=k0){j(e)&&(e=De(e));for(const a in e){const n=e[a];let l;o0(n)?"default"in n?l=x0(n.from||a,n.default,!0):l=x0(n.from||a):l=x0(n),v0(l)?Object.defineProperty(t,a,{enumerable:!0,configurable:!0,get:()=>l.value,set:s=>l.value=s}):t[a]=l}}function S6(e,t,r){q0(j(e)?e.map(a=>a.bind(t.proxy)):e.bind(t.proxy),t,r)}function T4(e,t,r,a){let n=a.includes(".")?J4(r,a):()=>r[a];if(h0(e)){const l=t[e];K(l)&&j2(n,l)}else if(K(e))j2(n,e.bind(r));else if(o0(e))if(j(e))e.forEach(l=>T4(l,t,r,a));else{const l=K(e.handler)?e.handler.bind(r):t[e.handler];K(l)&&j2(n,l,e)}}function R4(e){const t=e.type,{mixins:r,extends:a}=t,{mixins:n,optionsCache:l,config:{optionMergeStrategies:s}}=e.appContext,u=l.get(t);let c;return u?c=u:!n.length&&!r&&!a?c=t:(c={},n.length&&n.forEach(f=>I1(c,f,s,!0)),I1(c,t,s)),o0(t)&&l.set(t,c),c}function I1(e,t,r,a=!1){const{mixins:n,extends:l}=t;l&&I1(e,l,r,!0),n&&n.forEach(s=>I1(e,s,r,!0));for(const s in t)if(!(a&&s==="expose")){const u=er[s]||r&&r[s];e[s]=u?u(e[s],t[s]):t[s]}return e}const er={data:F6,props:P6,emits:P6,methods:r1,computed:r1,beforeCreate:b0,created:b0,beforeMount:b0,mounted:b0,beforeUpdate:b0,updated:b0,beforeDestroy:b0,beforeUnmount:b0,destroyed:b0,unmounted:b0,activated:b0,deactivated:b0,errorCaptured:b0,serverPrefetch:b0,components:r1,directives:r1,watch:rr,provide:F6,inject:tr};function F6(e,t){return t?e?function(){return d0(K(e)?e.call(this,this):e,K(t)?t.call(this,this):t)}:t:e}function tr(e,t){return r1(De(e),De(t))}function De(e){if(j(e)){const t={};for(let r=0;r1)return r&&K(t)?t.call(a&&a.proxy):t}}const k4={},I4=()=>Object.create(k4),N4=e=>Object.getPrototypeOf(e)===k4;function lr(e,t,r,a=!1){const n={},l=I4();e.propsDefaults=Object.create(null),$4(e,t,n,l);for(const s in e.propsOptions[0])s in n||(n[s]=void 0);r?e.props=a?n:s4(n):e.type.props?e.props=n:e.props=l,e.attrs=l}function sr(e,t,r,a){const{props:n,attrs:l,vnode:{patchFlag:s}}=e,u=Q(n),[c]=e.propsOptions;let f=!1;if((a||s>0)&&!(s&16)){if(s&8){const _=e.vnode.dynamicProps;for(let v=0;v<_.length;v++){let g=_[v];if(ne(e.emitsOptions,g))continue;const w=t[g];if(c)if(X(l,g))w!==l[g]&&(l[g]=w,f=!0);else{const H=N0(g);n[H]=Te(c,u,H,w,e,!1)}else w!==l[g]&&(l[g]=w,f=!0)}}}else{$4(e,t,n,l)&&(f=!0);let _;for(const v in u)(!t||!X(t,v)&&((_=w2(v))===v||!X(t,_)))&&(c?r&&(r[v]!==void 0||r[_]!==void 0)&&(n[v]=Te(c,u,v,void 0,e,!0)):delete n[v]);if(l!==u)for(const v in l)(!t||!X(t,v))&&(delete l[v],f=!0)}f&&n2(e.attrs,"set","")}function $4(e,t,r,a){const[n,l]=e.propsOptions;let s=!1,u;if(t)for(let c in t){if(a1(c))continue;const f=t[c];let _;n&&X(n,_=N0(c))?!l||!l.includes(_)?r[_]=f:(u||(u={}))[_]=f:ne(e.emitsOptions,c)||(!(c in a)||f!==a[c])&&(a[c]=f,s=!0)}if(l){const c=Q(r),f=u||c0;for(let _=0;_{c=!0;const[g,w]=q4(v,t,!0);d0(s,g),w&&u.push(...w)};!r&&t.mixins.length&&t.mixins.forEach(_),e.extends&&_(e.extends),e.mixins&&e.mixins.forEach(_)}if(!l&&!c)return o0(e)&&a.set(e,O2),O2;if(j(l))for(let _=0;_e[0]==="_"||e==="$stable",o6=e=>j(e)?e.map(Q0):[Q0(e)],ur=(e,t,r)=>{if(t._n)return t;const a=d4((...n)=>o6(t(...n)),r);return a._c=!1,a},K4=(e,t,r)=>{const a=e._ctx;for(const n in e){if(j4(n))continue;const l=e[n];if(K(l))t[n]=ur(n,l,a);else if(l!=null){const s=o6(l);t[n]=()=>s}}},U4=(e,t)=>{const r=o6(t);e.slots.default=()=>r},W4=(e,t,r)=>{for(const a in t)(r||a!=="_")&&(e[a]=t[a])},cr=(e,t,r)=>{const a=e.slots=I4();if(e.vnode.shapeFlag&32){const n=t._;n?(W4(a,t,r),r&&Nt(a,"_",n,!0)):K4(t,a)}else t&&U4(e,t)},ir=(e,t,r)=>{const{vnode:a,slots:n}=e;let l=!0,s=c0;if(a.shapeFlag&32){const u=t._;u?r&&u===1?l=!1:W4(n,t,r):(l=!t.$stable,K4(t,n)),s=t}else t&&(U4(e,t),s={default:1});if(l)for(const u in n)!j4(u)&&s[u]==null&&delete n[u]},H0=br;function _r(e){return pr(e)}function pr(e,t){const r=Y1();r.__VUE__=!0;const{insert:a,remove:n,patchProp:l,createElement:s,createText:u,createComment:c,setText:f,setElementText:_,parentNode:v,nextSibling:g,setScopeId:w=k0,insertStaticContent:H}=e,y=(d,m,x,C=null,b=null,M=null,L=void 0,B=null,V=!!m.dynamicChildren)=>{if(d===m)return;d&&!E2(d,m)&&(C=z(d),A0(d,b,M,!0),d=null),m.patchFlag===-2&&(V=!1,m.dynamicChildren=null);const{type:E,ref:q,shapeFlag:F}=m;switch(E){case le:P(d,m,x,C);break;case B0:A(d,m,x,C);break;case xe:d==null&&R(m,x,C,L);break;case S0:O(d,m,x,C,b,M,L,B,V);break;default:F&1?W(d,m,x,C,b,M,L,B,V):F&6?e0(d,m,x,C,b,M,L,B,V):(F&64||F&128)&&E.process(d,m,x,C,b,M,L,B,V,I)}q!=null&&b&&k1(q,d&&d.ref,M,m||d,!m)},P=(d,m,x,C)=>{if(d==null)a(m.el=u(m.children),x,C);else{const b=m.el=d.el;m.children!==d.children&&f(b,m.children)}},A=(d,m,x,C)=>{d==null?a(m.el=c(m.children||""),x,C):m.el=d.el},R=(d,m,x,C)=>{[d.el,d.anchor]=H(d.children,m,x,C,d.el,d.anchor)},k=({el:d,anchor:m},x,C)=>{let b;for(;d&&d!==m;)b=g(d),a(d,x,C),d=b;a(m,x,C)},T=({el:d,anchor:m})=>{let x;for(;d&&d!==m;)x=g(d),n(d),d=x;n(m)},W=(d,m,x,C,b,M,L,B,V)=>{m.type==="svg"?L="svg":m.type==="math"&&(L="mathml"),d==null?J(m,x,C,b,M,L,B,V):N(d,m,b,M,L,B,V)},J=(d,m,x,C,b,M,L,B)=>{let V,E;const{props:q,shapeFlag:F,transition:$,dirs:U}=d;if(V=d.el=s(d.type,M,q&&q.is,q),F&8?_(V,d.children):F&16&&p0(d.children,V,null,C,b,we(d,M),L,B),U&&C2(d,null,C,"created"),Z(V,d,d.scopeId,L,C),q){for(const i0 in q)i0!=="value"&&!a1(i0)&&l(V,i0,null,q[i0],M,C);"value"in q&&l(V,"value",null,q.value,M),(E=q.onVnodeBeforeMount)&&J0(E,C,d)}U&&C2(d,null,C,"beforeMount");const Y=hr(b,$);Y&&$.beforeEnter(V),a(V,m,x),((E=q&&q.onVnodeMounted)||Y||U)&&H0(()=>{E&&J0(E,C,d),Y&&$.enter(V),U&&C2(d,null,C,"mounted")},b)},Z=(d,m,x,C,b)=>{if(x&&w(d,x),C)for(let M=0;M{for(let E=V;E{const B=m.el=d.el;let{patchFlag:V,dynamicChildren:E,dirs:q}=m;V|=d.patchFlag&16;const F=d.props||c0,$=m.props||c0;let U;if(x&&z2(x,!1),(U=$.onVnodeBeforeUpdate)&&J0(U,x,m,d),q&&C2(m,d,x,"beforeUpdate"),x&&z2(x,!0),(F.innerHTML&&$.innerHTML==null||F.textContent&&$.textContent==null)&&_(B,""),E?G(d.dynamicChildren,E,B,x,C,we(m,b),M):L||t0(d,m,B,null,x,C,we(m,b),M,!1),V>0){if(V&16)a0(B,F,$,x,b);else if(V&2&&F.class!==$.class&&l(B,"class",null,$.class,b),V&4&&l(B,"style",F.style,$.style,b),V&8){const Y=m.dynamicProps;for(let i0=0;i0{U&&J0(U,x,m,d),q&&C2(m,d,x,"updated")},C)},G=(d,m,x,C,b,M,L)=>{for(let B=0;B{if(m!==x){if(m!==c0)for(const M in m)!a1(M)&&!(M in x)&&l(d,M,m[M],null,b,C);for(const M in x){if(a1(M))continue;const L=x[M],B=m[M];L!==B&&M!=="value"&&l(d,M,B,L,b,C)}"value"in x&&l(d,"value",m.value,x.value,b)}},O=(d,m,x,C,b,M,L,B,V)=>{const E=m.el=d?d.el:u(""),q=m.anchor=d?d.anchor:u("");let{patchFlag:F,dynamicChildren:$,slotScopeIds:U}=m;U&&(B=B?B.concat(U):U),d==null?(a(E,x,C),a(q,x,C),p0(m.children||[],x,q,b,M,L,B,V)):F>0&&F&64&&$&&d.dynamicChildren?(G(d.dynamicChildren,$,x,b,M,L,B),(m.key!=null||b&&m===b.subTree)&&u6(d,m,!0)):t0(d,m,x,q,b,M,L,B,V)},e0=(d,m,x,C,b,M,L,B,V)=>{m.slotScopeIds=B,d==null?m.shapeFlag&512?b.ctx.activate(m,x,C,L,V):m0(m,x,C,b,M,L,V):F0(d,m,V)},m0=(d,m,x,C,b,M,L)=>{const B=d.component=Fr(d,C,b);if(re(d)&&(B.ctx.renderer=I),Pr(B,!1,L),B.asyncDep){if(b&&b.registerDep(B,f0,L),!d.el){const V=B.subTree=z0(B0);A(null,V,m,x)}}else f0(B,d,m,x,b,M,L)},F0=(d,m,x)=>{const C=m.component=d.component;if(zr(d,m,x))if(C.asyncDep&&!C.asyncResolved){s0(C,m,x);return}else C.next=m,C.update();else m.el=d.el,C.vnode=m},f0=(d,m,x,C,b,M,L)=>{const B=()=>{if(d.isMounted){let{next:F,bu:$,u:U,parent:Y,vnode:i0}=d;{const W0=G4(d);if(W0){F&&(F.el=i0.el,s0(d,F,L)),W0.asyncDep.then(()=>{d.isUnmounted||B()});return}}let n0=F,P0;z2(d,!1),F?(F.el=i0.el,s0(d,F,L)):F=i0,$&&pe($),(P0=F.props&&F.props.onVnodeBeforeUpdate)&&J0(P0,Y,F,i0),z2(d,!0);const L0=R6(d),U0=d.subTree;d.subTree=L0,y(U0,L0,v(U0.el),z(U0),d,b,M),F.el=L0.el,n0===null&&Mr(d,L0.el),U&&H0(U,b),(P0=F.props&&F.props.onVnodeUpdated)&&H0(()=>J0(P0,Y,F,i0),b)}else{let F;const{el:$,props:U}=m,{bm:Y,m:i0,parent:n0,root:P0,type:L0}=d,U0=$2(m);z2(d,!1),Y&&pe(Y),!U0&&(F=U&&U.onVnodeBeforeMount)&&J0(F,n0,m),z2(d,!0);{P0.ce&&P0.ce._injectChildStyle(L0);const W0=d.subTree=R6(d);y(null,W0,x,C,d,b,M),m.el=W0.el}if(i0&&H0(i0,b),!U0&&(F=U&&U.onVnodeMounted)){const W0=m;H0(()=>J0(F,n0,W0),b)}(m.shapeFlag&256||n0&&$2(n0.vnode)&&n0.vnode.shapeFlag&256)&&d.a&&H0(d.a,b),d.isMounted=!0,m=x=C=null}};d.scope.on();const V=d.effect=new Ut(B);d.scope.off();const E=d.update=V.run.bind(V),q=d.job=V.runIfDirty.bind(V);q.i=d,q.id=d.uid,V.scheduler=()=>n6(q),z2(d,!0),E()},s0=(d,m,x)=>{m.component=d;const C=d.vnode.props;d.vnode=m,d.next=null,sr(d,m.props,C,x),ir(d,m.children,x),x2(),b6(d),y2()},t0=(d,m,x,C,b,M,L,B,V=!1)=>{const E=d&&d.children,q=d?d.shapeFlag:0,F=m.children,{patchFlag:$,shapeFlag:U}=m;if($>0){if($&128){c2(E,F,x,C,b,M,L,B,V);return}else if($&256){e2(E,F,x,C,b,M,L,B,V);return}}U&8?(q&16&&R0(E,b,M),F!==E&&_(x,F)):q&16?U&16?c2(E,F,x,C,b,M,L,B,V):R0(E,b,M,!0):(q&8&&_(x,""),U&16&&p0(F,x,C,b,M,L,B,V))},e2=(d,m,x,C,b,M,L,B,V)=>{d=d||O2,m=m||O2;const E=d.length,q=m.length,F=Math.min(E,q);let $;for($=0;$q?R0(d,b,M,!0,!1,F):p0(m,x,C,b,M,L,B,V,F)},c2=(d,m,x,C,b,M,L,B,V)=>{let E=0;const q=m.length;let F=d.length-1,$=q-1;for(;E<=F&&E<=$;){const U=d[E],Y=m[E]=V?v2(m[E]):Q0(m[E]);if(E2(U,Y))y(U,Y,x,null,b,M,L,B,V);else break;E++}for(;E<=F&&E<=$;){const U=d[F],Y=m[$]=V?v2(m[$]):Q0(m[$]);if(E2(U,Y))y(U,Y,x,null,b,M,L,B,V);else break;F--,$--}if(E>F){if(E<=$){const U=$+1,Y=U$)for(;E<=F;)A0(d[E],b,M,!0),E++;else{const U=E,Y=E,i0=new Map;for(E=Y;E<=$;E++){const D0=m[E]=V?v2(m[E]):Q0(m[E]);D0.key!=null&&i0.set(D0.key,E)}let n0,P0=0;const L0=$-Y+1;let U0=!1,W0=0;const Z2=new Array(L0);for(E=0;E=L0){A0(D0,b,M,!0);continue}let G0;if(D0.key!=null)G0=i0.get(D0.key);else for(n0=Y;n0<=$;n0++)if(Z2[n0-Y]===0&&E2(D0,m[n0])){G0=n0;break}G0===void 0?A0(D0,b,M,!0):(Z2[G0-Y]=E+1,G0>=W0?W0=G0:U0=!0,y(D0,m[G0],x,null,b,M,L,B,V),P0++)}const x6=U0?fr(Z2):O2;for(n0=x6.length-1,E=L0-1;E>=0;E--){const D0=Y+E,G0=m[D0],y6=D0+1{const{el:M,type:L,transition:B,children:V,shapeFlag:E}=d;if(E&6){K0(d.component.subTree,m,x,C);return}if(E&128){d.suspense.move(m,x,C);return}if(E&64){L.move(d,m,x,I);return}if(L===S0){a(M,m,x);for(let F=0;FB.enter(M),b);else{const{leave:F,delayLeave:$,afterLeave:U}=B,Y=()=>a(M,m,x),i0=()=>{F(M,()=>{Y(),U&&U()})};$?$(M,Y,i0):i0()}else a(M,m,x)},A0=(d,m,x,C=!1,b=!1)=>{const{type:M,props:L,ref:B,children:V,dynamicChildren:E,shapeFlag:q,patchFlag:F,dirs:$,cacheIndex:U}=d;if(F===-2&&(b=!1),B!=null&&k1(B,null,x,d,!0),U!=null&&(m.renderCache[U]=void 0),q&256){m.ctx.deactivate(d);return}const Y=q&1&&$,i0=!$2(d);let n0;if(i0&&(n0=L&&L.onVnodeBeforeUnmount)&&J0(n0,m,d),q&6)M1(d.component,x,C);else{if(q&128){d.suspense.unmount(x,C);return}Y&&C2(d,null,m,"beforeUnmount"),q&64?d.type.remove(d,m,x,I,C):E&&!E.hasOnce&&(M!==S0||F>0&&F&64)?R0(E,m,x,!1,!0):(M===S0&&F&384||!b&&q&16)&&R0(V,m,x),C&&F2(d)}(i0&&(n0=L&&L.onVnodeUnmounted)||Y)&&H0(()=>{n0&&J0(n0,m,d),Y&&C2(d,null,m,"unmounted")},x)},F2=d=>{const{type:m,el:x,anchor:C,transition:b}=d;if(m===S0){P2(x,C);return}if(m===xe){T(d);return}const M=()=>{n(x),b&&!b.persisted&&b.afterLeave&&b.afterLeave()};if(d.shapeFlag&1&&b&&!b.persisted){const{leave:L,delayLeave:B}=b,V=()=>L(x,M);B?B(d.el,M,V):V()}else M()},P2=(d,m)=>{let x;for(;d!==m;)x=g(d),n(d),d=x;n(m)},M1=(d,m,x)=>{const{bum:C,scope:b,job:M,subTree:L,um:B,m:V,a:E}=d;T6(V),T6(E),C&&pe(C),b.stop(),M&&(M.flags|=8,A0(L,d,m,x)),B&&H0(B,m),H0(()=>{d.isUnmounted=!0},m),m&&m.pendingBranch&&!m.isUnmounted&&d.asyncDep&&!d.asyncResolved&&d.suspenseId===m.pendingId&&(m.deps--,m.deps===0&&m.resolve())},R0=(d,m,x,C=!1,b=!1,M=0)=>{for(let L=M;L{if(d.shapeFlag&6)return z(d.component.subTree);if(d.shapeFlag&128)return d.suspense.next();const m=g(d.anchor||d.el),x=m&&m[m4];return x?g(x):m};let D=!1;const S=(d,m,x)=>{d==null?m._vnode&&A0(m._vnode,null,null,!0):y(m._vnode||null,d,m,null,null,null,x),m._vnode=d,D||(D=!0,b6(),h4(),D=!1)},I={p:y,um:A0,m:K0,r:F2,mt:m0,mc:p0,pc:t0,pbc:G,n:z,o:e};return{render:S,hydrate:void 0,createApp:nr(S)}}function we({type:e,props:t},r){return r==="svg"&&e==="foreignObject"||r==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:r}function z2({effect:e,job:t},r){r?(e.flags|=32,t.flags|=4):(e.flags&=-33,t.flags&=-5)}function hr(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function u6(e,t,r=!1){const a=e.children,n=t.children;if(j(a)&&j(n))for(let l=0;l>1,e[r[u]]0&&(t[a]=r[l-1]),r[l]=a)}}for(l=r.length,s=r[l-1];l-- >0;)r[l]=s,s=t[s];return r}function G4(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:G4(t)}function T6(e){if(e)for(let t=0;tx0(vr);function mr(e,t){return c6(e,null,t)}function j2(e,t,r){return c6(e,t,r)}function c6(e,t,r=c0){const{immediate:a,deep:n,flush:l,once:s}=r,u=d0({},r),c=t&&a||!t&&l!=="post";let f;if(g1){if(l==="sync"){const w=dr();f=w.__watcherHandles||(w.__watcherHandles=[])}else if(!c){const w=()=>{};return w.stop=k0,w.resume=k0,w.pause=k0,w}}const _=w0;u.call=(w,H,y)=>q0(w,_,H,y);let v=!1;l==="post"?u.scheduler=w=>{H0(w,_&&_.suspense)}:l!=="sync"&&(v=!0,u.scheduler=(w,H)=>{H?w():n6(w)}),u.augmentJob=w=>{t&&(w.flags|=4),v&&(w.flags|=2,_&&(w.id=_.uid,w.i=_))};const g=F8(e,t,u);return g1&&(f?f.push(g):c&&g()),g}function gr(e,t,r){const a=this.proxy,n=h0(e)?e.includes(".")?J4(a,e):()=>a[e]:e.bind(a,a);let l;K(t)?l=t:(l=t.handler,r=t);const s=z1(this),u=c6(n,l.bind(a),r);return s(),u}function J4(e,t){const r=t.split(".");return()=>{let a=e;for(let n=0;nt==="modelValue"||t==="model-value"?e.modelModifiers:e[`${t}Modifiers`]||e[`${N0(t)}Modifiers`]||e[`${w2(t)}Modifiers`];function xr(e,t,...r){if(e.isUnmounted)return;const a=e.vnode.props||c0;let n=r;const l=t.startsWith("update:"),s=l&&wr(a,t.slice(7));s&&(s.trim&&(n=r.map(_=>h0(_)?_.trim():_)),s.number&&(n=r.map(J3)));let u,c=a[u=_e(t)]||a[u=_e(N0(t))];!c&&l&&(c=a[u=_e(w2(t))]),c&&q0(c,e,6,n);const f=a[u+"Once"];if(f){if(!e.emitted)e.emitted={};else if(e.emitted[u])return;e.emitted[u]=!0,q0(f,e,6,n)}}function Z4(e,t,r=!1){const a=t.emitsCache,n=a.get(e);if(n!==void 0)return n;const l=e.emits;let s={},u=!1;if(!K(e)){const c=f=>{const _=Z4(f,t,!0);_&&(u=!0,d0(s,_))};!r&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}return!l&&!u?(o0(e)&&a.set(e,null),null):(j(l)?l.forEach(c=>s[c]=null):d0(s,l),o0(e)&&a.set(e,s),s)}function ne(e,t){return!e||!W1(t)?!1:(t=t.slice(2).replace(/Once$/,""),X(e,t[0].toLowerCase()+t.slice(1))||X(e,w2(t))||X(e,t))}function R6(e){const{type:t,vnode:r,proxy:a,withProxy:n,propsOptions:[l],slots:s,attrs:u,emit:c,render:f,renderCache:_,props:v,data:g,setupState:w,ctx:H,inheritAttrs:y}=e,P=O1(e);let A,R;try{if(r.shapeFlag&4){const T=n||a,W=T;A=Q0(f.call(W,T,_,v,w,g,H)),R=u}else{const T=t;A=Q0(T.length>1?T(v,{attrs:u,slots:s,emit:c}):T(v,null)),R=t.props?u:yr(u)}}catch(T){c1.length=0,te(T,e,1),A=z0(B0)}let k=A;if(R&&y!==!1){const T=Object.keys(R),{shapeFlag:W}=k;T.length&&W&7&&(l&&T.some(Ke)&&(R=Cr(R,l)),k=g2(k,R,!1,!0))}return r.dirs&&(k=g2(k,null,!1,!0),k.dirs=k.dirs?k.dirs.concat(r.dirs):r.dirs),r.transition&&A2(k,r.transition),A=k,O1(P),A}const yr=e=>{let t;for(const r in e)(r==="class"||r==="style"||W1(r))&&((t||(t={}))[r]=e[r]);return t},Cr=(e,t)=>{const r={};for(const a in e)(!Ke(a)||!(a.slice(9)in t))&&(r[a]=e[a]);return r};function zr(e,t,r){const{props:a,children:n,component:l}=e,{props:s,children:u,patchFlag:c}=t,f=l.emitsOptions;if(t.dirs||t.transition)return!0;if(r&&c>=0){if(c&1024)return!0;if(c&16)return a?O6(a,s,f):!!s;if(c&8){const _=t.dynamicProps;for(let v=0;v<_.length;v++){const g=_[v];if(s[g]!==a[g]&&!ne(f,g))return!0}}}else return(n||u)&&(!u||!u.$stable)?!0:a===s?!1:a?s?O6(a,s,f):!0:!!s;return!1}function O6(e,t,r){const a=Object.keys(t);if(a.length!==Object.keys(e).length)return!0;for(let n=0;ne.__isSuspense;function br(e,t){t&&t.pendingBranch?j(e)?t.effects.push(...e):t.effects.push(e):T8(e)}const S0=Symbol.for("v-fgt"),le=Symbol.for("v-txt"),B0=Symbol.for("v-cmt"),xe=Symbol.for("v-stc"),c1=[];let T0=null;function i(e=!1){c1.push(T0=e?null:[])}function Hr(){c1.pop(),T0=c1[c1.length-1]||null}let d1=1;function k6(e,t=!1){d1+=e,e<0&&T0&&t&&(T0.hasOnce=!0)}function Q4(e){return e.dynamicChildren=d1>0?T0||O2:null,Hr(),d1>0&&T0&&T0.push(e),e}function h(e,t,r,a,n,l){return Q4(o(e,t,r,a,n,l,!0))}function N1(e,t,r,a,n){return Q4(z0(e,t,r,a,n,!0))}function m1(e){return e?e.__v_isVNode===!0:!1}function E2(e,t){return e.type===t.type&&e.key===t.key}const X4=({key:e})=>e??null,S1=({ref:e,ref_key:t,ref_for:r})=>(typeof e=="number"&&(e=""+e),e!=null?h0(e)||v0(e)||K(e)?{i:g0,r:e,k:t,f:!!r}:e:null);function o(e,t=null,r=null,a=0,n=null,l=e===S0?0:1,s=!1,u=!1){const c={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&X4(t),ref:t&&S1(t),scopeId:v4,slotScopeIds:null,children:r,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetStart:null,targetAnchor:null,staticCount:0,shapeFlag:l,patchFlag:a,dynamicProps:n,dynamicChildren:null,appContext:null,ctx:g0};return u?(i6(c,r),l&128&&e.normalize(c)):r&&(c.shapeFlag|=h0(r)?8:16),d1>0&&!s&&T0&&(c.patchFlag>0||l&6)&&c.patchFlag!==32&&T0.push(c),c}const z0=Er;function Er(e,t=null,r=null,a=0,n=null,l=!1){if((!e||e===S4)&&(e=B0),m1(e)){const u=g2(e,t,!0);return r&&i6(u,r),d1>0&&!l&&T0&&(u.shapeFlag&6?T0[T0.indexOf(e)]=u:T0.push(u)),u.patchFlag=-2,u}if(Or(e)&&(e=e.__vccOpts),t){t=Vr(t);let{class:u,style:c}=t;u&&!h0(u)&&(t.class=Je(u)),o0(c)&&(r6(c)&&!j(c)&&(c=d0({},c)),t.style=Ge(c))}const s=h0(e)?1:Y4(e)?128:g4(e)?64:o0(e)?4:K(e)?2:0;return o(e,t,r,a,n,s,l,!0)}function Vr(e){return e?r6(e)||N4(e)?d0({},e):e:null}function g2(e,t,r=!1,a=!1){const{props:n,ref:l,patchFlag:s,children:u,transition:c}=e,f=t?Ar(n||{},t):n,_={__v_isVNode:!0,__v_skip:!0,type:e.type,props:f,key:f&&X4(f),ref:t&&t.ref?r&&l?j(l)?l.concat(S1(t)):[l,S1(t)]:S1(t):l,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:u,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==S0?s===-1?16:s|16:s,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:c,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&g2(e.ssContent),ssFallback:e.ssFallback&&g2(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return c&&a&&A2(_,c.clone(_)),_}function Br(e=" ",t=0){return z0(le,null,e,t)}function Tf(e="",t=!1){return t?(i(),N1(B0,null,e)):z0(B0,null,e)}function Q0(e){return e==null||typeof e=="boolean"?z0(B0):j(e)?z0(S0,null,e.slice()):m1(e)?v2(e):z0(le,null,String(e))}function v2(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:g2(e)}function i6(e,t){let r=0;const{shapeFlag:a}=e;if(t==null)t=null;else if(j(t))r=16;else if(typeof t=="object")if(a&65){const n=t.default;n&&(n._c&&(n._d=!1),i6(e,n()),n._c&&(n._d=!0));return}else{r=32;const n=t._;!n&&!N4(t)?t._ctx=g0:n===3&&g0&&(g0.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else K(t)?(t={default:t,_ctx:g0},r=32):(t=String(t),a&64?(r=16,t=[Br(t)]):r=8);e.children=t,e.shapeFlag|=r}function Ar(...e){const t={};for(let r=0;rw0||g0;let $1,Re;{const e=Y1(),t=(r,a)=>{let n;return(n=e[r])||(n=e[r]=[]),n.push(a),l=>{n.length>1?n.forEach(s=>s(l)):n[0](l)}};$1=t("__VUE_INSTANCE_SETTERS__",r=>w0=r),Re=t("__VUE_SSR_SETTERS__",r=>g1=r)}const z1=e=>{const t=w0;return $1(e),e.scope.on(),()=>{e.scope.off(),$1(t)}},I6=()=>{w0&&w0.scope.off(),$1(null)};function e3(e){return e.vnode.shapeFlag&4}let g1=!1;function Pr(e,t=!1,r=!1){t&&Re(t);const{props:a,children:n}=e.vnode,l=e3(e);lr(e,a,l,t),cr(e,n,r);const s=l?Dr(e,t):void 0;return t&&Re(!1),s}function Dr(e,t){const r=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,Y8);const{setup:a}=r;if(a){x2();const n=e.setupContext=a.length>1?r3(e):null,l=z1(e),s=C1(a,e,0,[e.props,n]),u=Ot(s);if(y2(),l(),(u||e.sp)&&!$2(e)&&H4(e),u){if(s.then(I6,I6),t)return s.then(c=>{N6(e,c)}).catch(c=>{te(c,e,0)});e.asyncDep=s}else N6(e,s)}else t3(e)}function N6(e,t,r){K(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:o0(t)&&(e.setupState=c4(t)),t3(e)}function t3(e,t,r){const a=e.type;e.render||(e.render=a.render||k0);{const n=z1(e);x2();try{Q8(e)}finally{y2(),n()}}}const Tr={get(e,t){return y0(e,"get",""),e[t]}};function r3(e){const t=r=>{e.exposed=r||{}};return{attrs:new Proxy(e.attrs,Tr),slots:e.slots,emit:e.emit,expose:t}}function se(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(c4(b8(e.exposed)),{get(t,r){if(r in t)return t[r];if(r in o1)return o1[r](e)},has(t,r){return r in t||r in o1}})):e.proxy}function Rr(e,t=!0){return K(e)?e.displayName||e.name:e.name||t&&e.__name}function Or(e){return K(e)&&"__vccOpts"in e}const l0=(e,t)=>L8(e,t,g1);function _6(e,t,r){const a=arguments.length;return a===2?o0(t)&&!j(t)?m1(t)?z0(e,null,[t]):z0(e,t):z0(e,null,t):(a>3?r=Array.prototype.slice.call(arguments,2):a===3&&m1(r)&&(r=[r]),z0(e,t,r))}const kr="3.5.13",Ir=k0;/** +* @vue/runtime-dom v3.5.13 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/let Oe;const $6=typeof window<"u"&&window.trustedTypes;if($6)try{Oe=$6.createPolicy("vue",{createHTML:e=>e})}catch{}const a3=Oe?e=>Oe.createHTML(e):e=>e,Nr="http://www.w3.org/2000/svg",$r="http://www.w3.org/1998/Math/MathML",a2=typeof document<"u"?document:null,q6=a2&&a2.createElement("template"),qr={insert:(e,t,r)=>{t.insertBefore(e,r||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,r,a)=>{const n=t==="svg"?a2.createElementNS(Nr,e):t==="mathml"?a2.createElementNS($r,e):r?a2.createElement(e,{is:r}):a2.createElement(e);return e==="select"&&a&&a.multiple!=null&&n.setAttribute("multiple",a.multiple),n},createText:e=>a2.createTextNode(e),createComment:e=>a2.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>a2.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,r,a,n,l){const s=r?r.previousSibling:t.lastChild;if(n&&(n===l||n.nextSibling))for(;t.insertBefore(n.cloneNode(!0),r),!(n===l||!(n=n.nextSibling)););else{q6.innerHTML=a3(a==="svg"?`${e}`:a==="mathml"?`${e}`:e);const u=q6.content;if(a==="svg"||a==="mathml"){const c=u.firstChild;for(;c.firstChild;)u.appendChild(c.firstChild);u.removeChild(c)}t.insertBefore(u,r)}return[s?s.nextSibling:t.firstChild,r?r.previousSibling:t.lastChild]}},i2="transition",Q2="animation",K2=Symbol("_vtc"),n3={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},l3=d0({},C4,n3),jr=e=>(e.displayName="Transition",e.props=l3,e),Rf=jr((e,{slots:t})=>_6(k8,s3(e),t)),M2=(e,t=[])=>{j(e)?e.forEach(r=>r(...t)):e&&e(...t)},j6=e=>e?j(e)?e.some(t=>t.length>1):e.length>1:!1;function s3(e){const t={};for(const O in e)O in n3||(t[O]=e[O]);if(e.css===!1)return t;const{name:r="v",type:a,duration:n,enterFromClass:l=`${r}-enter-from`,enterActiveClass:s=`${r}-enter-active`,enterToClass:u=`${r}-enter-to`,appearFromClass:c=l,appearActiveClass:f=s,appearToClass:_=u,leaveFromClass:v=`${r}-leave-from`,leaveActiveClass:g=`${r}-leave-active`,leaveToClass:w=`${r}-leave-to`}=e,H=Kr(n),y=H&&H[0],P=H&&H[1],{onBeforeEnter:A,onEnter:R,onEnterCancelled:k,onLeave:T,onLeaveCancelled:W,onBeforeAppear:J=A,onAppear:Z=R,onAppearCancelled:p0=k}=t,N=(O,e0,m0,F0)=>{O._enterCancelled=F0,p2(O,e0?_:u),p2(O,e0?f:s),m0&&m0()},G=(O,e0)=>{O._isLeaving=!1,p2(O,v),p2(O,w),p2(O,g),e0&&e0()},a0=O=>(e0,m0)=>{const F0=O?Z:R,f0=()=>N(e0,O,m0);M2(F0,[e0,f0]),K6(()=>{p2(e0,O?c:l),Z0(e0,O?_:u),j6(F0)||U6(e0,a,y,f0)})};return d0(t,{onBeforeEnter(O){M2(A,[O]),Z0(O,l),Z0(O,s)},onBeforeAppear(O){M2(J,[O]),Z0(O,c),Z0(O,f)},onEnter:a0(!1),onAppear:a0(!0),onLeave(O,e0){O._isLeaving=!0;const m0=()=>G(O,e0);Z0(O,v),O._enterCancelled?(Z0(O,g),ke()):(ke(),Z0(O,g)),K6(()=>{O._isLeaving&&(p2(O,v),Z0(O,w),j6(T)||U6(O,a,P,m0))}),M2(T,[O,m0])},onEnterCancelled(O){N(O,!1,void 0,!0),M2(k,[O])},onAppearCancelled(O){N(O,!0,void 0,!0),M2(p0,[O])},onLeaveCancelled(O){G(O),M2(W,[O])}})}function Kr(e){if(e==null)return null;if(o0(e))return[ye(e.enter),ye(e.leave)];{const t=ye(e);return[t,t]}}function ye(e){return Z3(e)}function Z0(e,t){t.split(/\s+/).forEach(r=>r&&e.classList.add(r)),(e[K2]||(e[K2]=new Set)).add(t)}function p2(e,t){t.split(/\s+/).forEach(a=>a&&e.classList.remove(a));const r=e[K2];r&&(r.delete(t),r.size||(e[K2]=void 0))}function K6(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let Ur=0;function U6(e,t,r,a){const n=e._endId=++Ur,l=()=>{n===e._endId&&a()};if(r!=null)return setTimeout(l,r);const{type:s,timeout:u,propCount:c}=o3(e,t);if(!s)return a();const f=s+"end";let _=0;const v=()=>{e.removeEventListener(f,g),l()},g=w=>{w.target===e&&++_>=c&&v()};setTimeout(()=>{_(r[H]||"").split(", "),n=a(`${i2}Delay`),l=a(`${i2}Duration`),s=W6(n,l),u=a(`${Q2}Delay`),c=a(`${Q2}Duration`),f=W6(u,c);let _=null,v=0,g=0;t===i2?s>0&&(_=i2,v=s,g=l.length):t===Q2?f>0&&(_=Q2,v=f,g=c.length):(v=Math.max(s,f),_=v>0?s>f?i2:Q2:null,g=_?_===i2?l.length:c.length:0);const w=_===i2&&/\b(transform|all)(,|$)/.test(a(`${i2}Property`).toString());return{type:_,timeout:v,propCount:g,hasTransform:w}}function W6(e,t){for(;e.lengthG6(r)+G6(e[a])))}function G6(e){return e==="auto"?0:Number(e.slice(0,-1).replace(",","."))*1e3}function ke(){return document.body.offsetHeight}function Wr(e,t,r){const a=e[K2];a&&(t=(t?[t,...a]:[...a]).join(" ")),t==null?e.removeAttribute("class"):r?e.setAttribute("class",t):e.className=t}const q1=Symbol("_vod"),u3=Symbol("_vsh"),Of={beforeMount(e,{value:t},{transition:r}){e[q1]=e.style.display==="none"?"":e.style.display,r&&t?r.beforeEnter(e):X2(e,t)},mounted(e,{value:t},{transition:r}){r&&t&&r.enter(e)},updated(e,{value:t,oldValue:r},{transition:a}){!t!=!r&&(a?t?(a.beforeEnter(e),X2(e,!0),a.enter(e)):a.leave(e,()=>{X2(e,!1)}):X2(e,t))},beforeUnmount(e,{value:t}){X2(e,t)}};function X2(e,t){e.style.display=t?e[q1]:"none",e[u3]=!t}const Gr=Symbol(""),Jr=/(^|;)\s*display\s*:/;function Zr(e,t,r){const a=e.style,n=h0(r);let l=!1;if(r&&!n){if(t)if(h0(t))for(const s of t.split(";")){const u=s.slice(0,s.indexOf(":")).trim();r[u]==null&&F1(a,u,"")}else for(const s in t)r[s]==null&&F1(a,s,"");for(const s in r)s==="display"&&(l=!0),F1(a,s,r[s])}else if(n){if(t!==r){const s=a[Gr];s&&(r+=";"+s),a.cssText=r,l=Jr.test(r)}}else t&&e.removeAttribute("style");q1 in e&&(e[q1]=l?a.display:"",e[u3]&&(a.display="none"))}const J6=/\s*!important$/;function F1(e,t,r){if(j(r))r.forEach(a=>F1(e,t,a));else if(r==null&&(r=""),t.startsWith("--"))e.setProperty(t,r);else{const a=Yr(e,t);J6.test(r)?e.setProperty(w2(a),r.replace(J6,""),"important"):e[a]=r}}const Z6=["Webkit","Moz","ms"],Ce={};function Yr(e,t){const r=Ce[t];if(r)return r;let a=N0(t);if(a!=="filter"&&a in e)return Ce[t]=a;a=Z1(a);for(let n=0;nze||(ra.then(()=>ze=0),ze=Date.now());function na(e,t){const r=a=>{if(!a._vts)a._vts=Date.now();else if(a._vts<=r.attached)return;q0(la(a,r.value),t,5,[a])};return r.value=e,r.attached=aa(),r}function la(e,t){if(j(t)){const r=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{r.call(e),e._stopped=!0},t.map(a=>n=>!n._stopped&&a&&a(n))}else return t}const rt=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,sa=(e,t,r,a,n,l)=>{const s=n==="svg";t==="class"?Wr(e,a,s):t==="style"?Zr(e,r,a):W1(t)?Ke(t)||ea(e,t,r,a,l):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):oa(e,t,a,s))?(X6(e,t,a),!e.tagName.includes("-")&&(t==="value"||t==="checked"||t==="selected")&&Q6(e,t,a,s,l,t!=="value")):e._isVueCE&&(/[A-Z]/.test(t)||!h0(a))?X6(e,N0(t),a,l,t):(t==="true-value"?e._trueValue=a:t==="false-value"&&(e._falseValue=a),Q6(e,t,a,s))};function oa(e,t,r,a){if(a)return!!(t==="innerHTML"||t==="textContent"||t in e&&rt(t)&&K(r));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const n=e.tagName;if(n==="IMG"||n==="VIDEO"||n==="CANVAS"||n==="SOURCE")return!1}return rt(t)&&h0(r)?!1:t in e}const c3=new WeakMap,i3=new WeakMap,j1=Symbol("_moveCb"),at=Symbol("_enterCb"),ua=e=>(delete e.props.mode,e),ca=ua({name:"TransitionGroup",props:d0({},l3,{tag:String,moveClass:String}),setup(e,{slots:t}){const r=s2(),a=y4();let n,l;return V4(()=>{if(!n.length)return;const s=e.moveClass||`${e.name||"v"}-move`;if(!ha(n[0].el,r.vnode.el,s))return;n.forEach(ia),n.forEach(_a);const u=n.filter(pa);ke(),u.forEach(c=>{const f=c.el,_=f.style;Z0(f,s),_.transform=_.webkitTransform=_.transitionDuration="";const v=f[j1]=g=>{g&&g.target!==f||(!g||/transform$/.test(g.propertyName))&&(f.removeEventListener("transitionend",v),f[j1]=null,p2(f,s))};f.addEventListener("transitionend",v)})}),()=>{const s=Q(e),u=s3(s);let c=s.tag||S0;if(n=[],l)for(let f=0;f{u.split(/\s+/).forEach(c=>c&&a.classList.remove(c))}),r.split(/\s+/).forEach(u=>u&&a.classList.add(u)),a.style.display="none";const l=t.nodeType===1?t:t.parentNode;l.appendChild(a);const{hasTransform:s}=o3(a);return l.removeChild(a),s}const fa=["ctrl","shift","alt","meta"],va={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,t)=>fa.some(r=>e[`${r}Key`]&&!t.includes(r))},If=(e,t)=>{const r=e._withMods||(e._withMods={}),a=t.join(".");return r[a]||(r[a]=(n,...l)=>{for(let s=0;s{const r=e._withKeys||(e._withKeys={}),a=t.join(".");return r[a]||(r[a]=n=>{if(!("key"in n))return;const l=w2(n.key);if(t.some(s=>s===l||da[s]===l))return e(n)})},ma=d0({patchProp:sa},qr);let nt;function _3(){return nt||(nt=_r(ma))}const $f=(...e)=>{_3().render(...e)},ga=(...e)=>{const t=_3().createApp(...e),{mount:r}=t;return t.mount=a=>{const n=xa(a);if(!n)return;const l=t._component;!K(l)&&!l.render&&!l.template&&(l.template=n.innerHTML),n.nodeType===1&&(n.textContent="");const s=r(n,!1,wa(n));return n instanceof Element&&(n.removeAttribute("v-cloak"),n.setAttribute("data-v-app","")),s},t};function wa(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function xa(e){return h0(e)?document.querySelector(e):e}/*! + * vue-router v4.5.0 + * (c) 2024 Eduardo San Martin Morote + * @license MIT + */const R2=typeof document<"u";function p3(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function ya(e){return e.__esModule||e[Symbol.toStringTag]==="Module"||e.default&&p3(e.default)}const r0=Object.assign;function Me(e,t){const r={};for(const a in t){const n=t[a];r[a]=j0(n)?n.map(e):e(n)}return r}const i1=()=>{},j0=Array.isArray,h3=/#/g,Ca=/&/g,za=/\//g,Ma=/=/g,ba=/\?/g,f3=/\+/g,Ha=/%5B/g,Ea=/%5D/g,v3=/%5E/g,Va=/%60/g,d3=/%7B/g,Ba=/%7C/g,m3=/%7D/g,Aa=/%20/g;function p6(e){return encodeURI(""+e).replace(Ba,"|").replace(Ha,"[").replace(Ea,"]")}function La(e){return p6(e).replace(d3,"{").replace(m3,"}").replace(v3,"^")}function Ie(e){return p6(e).replace(f3,"%2B").replace(Aa,"+").replace(h3,"%23").replace(Ca,"%26").replace(Va,"`").replace(d3,"{").replace(m3,"}").replace(v3,"^")}function Sa(e){return Ie(e).replace(Ma,"%3D")}function Fa(e){return p6(e).replace(h3,"%23").replace(ba,"%3F")}function Pa(e){return e==null?"":Fa(e).replace(za,"%2F")}function w1(e){try{return decodeURIComponent(""+e)}catch{}return""+e}const Da=/\/$/,Ta=e=>e.replace(Da,"");function be(e,t,r="/"){let a,n={},l="",s="";const u=t.indexOf("#");let c=t.indexOf("?");return u=0&&(c=-1),c>-1&&(a=t.slice(0,c),l=t.slice(c+1,u>-1?u:t.length),n=e(l)),u>-1&&(a=a||t.slice(0,u),s=t.slice(u,t.length)),a=Ia(a??t,r),{fullPath:a+(l&&"?")+l+s,path:a,query:n,hash:w1(s)}}function Ra(e,t){const r=t.query?e(t.query):"";return t.path+(r&&"?")+r+(t.hash||"")}function lt(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function Oa(e,t,r){const a=t.matched.length-1,n=r.matched.length-1;return a>-1&&a===n&&U2(t.matched[a],r.matched[n])&&g3(t.params,r.params)&&e(t.query)===e(r.query)&&t.hash===r.hash}function U2(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function g3(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const r in e)if(!ka(e[r],t[r]))return!1;return!0}function ka(e,t){return j0(e)?st(e,t):j0(t)?st(t,e):e===t}function st(e,t){return j0(t)?e.length===t.length&&e.every((r,a)=>r===t[a]):e.length===1&&e[0]===t}function Ia(e,t){if(e.startsWith("/"))return e;if(!e)return t;const r=t.split("/"),a=e.split("/"),n=a[a.length-1];(n===".."||n===".")&&a.push("");let l=r.length-1,s,u;for(s=0;s1&&l--;else break;return r.slice(0,l).join("/")+"/"+a.slice(s).join("/")}const _2={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0};var x1;(function(e){e.pop="pop",e.push="push"})(x1||(x1={}));var _1;(function(e){e.back="back",e.forward="forward",e.unknown=""})(_1||(_1={}));function Na(e){if(!e)if(R2){const t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),Ta(e)}const $a=/^[^#]+#/;function qa(e,t){return e.replace($a,"#")+t}function ja(e,t){const r=document.documentElement.getBoundingClientRect(),a=e.getBoundingClientRect();return{behavior:t.behavior,left:a.left-r.left-(t.left||0),top:a.top-r.top-(t.top||0)}}const oe=()=>({left:window.scrollX,top:window.scrollY});function Ka(e){let t;if("el"in e){const r=e.el,a=typeof r=="string"&&r.startsWith("#"),n=typeof r=="string"?a?document.getElementById(r.slice(1)):document.querySelector(r):r;if(!n)return;t=ja(n,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.scrollX,t.top!=null?t.top:window.scrollY)}function ot(e,t){return(history.state?history.state.position-t:-1)+e}const Ne=new Map;function Ua(e,t){Ne.set(e,t)}function Wa(e){const t=Ne.get(e);return Ne.delete(e),t}let Ga=()=>location.protocol+"//"+location.host;function w3(e,t){const{pathname:r,search:a,hash:n}=t,l=e.indexOf("#");if(l>-1){let u=n.includes(e.slice(l))?e.slice(l).length:1,c=n.slice(u);return c[0]!=="/"&&(c="/"+c),lt(c,"")}return lt(r,e)+a+n}function Ja(e,t,r,a){let n=[],l=[],s=null;const u=({state:g})=>{const w=w3(e,location),H=r.value,y=t.value;let P=0;if(g){if(r.value=w,t.value=g,s&&s===H){s=null;return}P=y?g.position-y.position:0}else a(w);n.forEach(A=>{A(r.value,H,{delta:P,type:x1.pop,direction:P?P>0?_1.forward:_1.back:_1.unknown})})};function c(){s=r.value}function f(g){n.push(g);const w=()=>{const H=n.indexOf(g);H>-1&&n.splice(H,1)};return l.push(w),w}function _(){const{history:g}=window;g.state&&g.replaceState(r0({},g.state,{scroll:oe()}),"")}function v(){for(const g of l)g();l=[],window.removeEventListener("popstate",u),window.removeEventListener("beforeunload",_)}return window.addEventListener("popstate",u),window.addEventListener("beforeunload",_,{passive:!0}),{pauseListeners:c,listen:f,destroy:v}}function ut(e,t,r,a=!1,n=!1){return{back:e,current:t,forward:r,replaced:a,position:window.history.length,scroll:n?oe():null}}function Za(e){const{history:t,location:r}=window,a={value:w3(e,r)},n={value:t.state};n.value||l(a.value,{back:null,current:a.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0);function l(c,f,_){const v=e.indexOf("#"),g=v>-1?(r.host&&document.querySelector("base")?e:e.slice(v))+c:Ga()+e+c;try{t[_?"replaceState":"pushState"](f,"",g),n.value=f}catch(w){console.error(w),r[_?"replace":"assign"](g)}}function s(c,f){const _=r0({},t.state,ut(n.value.back,c,n.value.forward,!0),f,{position:n.value.position});l(c,_,!0),a.value=c}function u(c,f){const _=r0({},n.value,t.state,{forward:c,scroll:oe()});l(_.current,_,!0);const v=r0({},ut(a.value,c,null),{position:_.position+1},f);l(c,v,!1),a.value=c}return{location:a,state:n,push:u,replace:s}}function Ya(e){e=Na(e);const t=Za(e),r=Ja(e,t.state,t.location,t.replace);function a(l,s=!0){s||r.pauseListeners(),history.go(l)}const n=r0({location:"",base:e,go:a,createHref:qa.bind(null,e)},t,r);return Object.defineProperty(n,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(n,"state",{enumerable:!0,get:()=>t.state.value}),n}function Qa(e){return e=location.host?e||location.pathname+location.search:"",e.includes("#")||(e+="#"),Ya(e)}function Xa(e){return typeof e=="string"||e&&typeof e=="object"}function x3(e){return typeof e=="string"||typeof e=="symbol"}const y3=Symbol("");var ct;(function(e){e[e.aborted=4]="aborted",e[e.cancelled=8]="cancelled",e[e.duplicated=16]="duplicated"})(ct||(ct={}));function W2(e,t){return r0(new Error,{type:e,[y3]:!0},t)}function r2(e,t){return e instanceof Error&&y3 in e&&(t==null||!!(e.type&t))}const it="[^/]+?",en={sensitive:!1,strict:!1,start:!0,end:!0},tn=/[.+*?^${}()[\]/\\]/g;function rn(e,t){const r=r0({},en,t),a=[];let n=r.start?"^":"";const l=[];for(const f of e){const _=f.length?[]:[90];r.strict&&!f.length&&(n+="/");for(let v=0;vt.length?t.length===1&&t[0]===80?1:-1:0}function C3(e,t){let r=0;const a=e.score,n=t.score;for(;r0&&t[t.length-1]<0}const nn={type:0,value:""},ln=/[a-zA-Z0-9_]/;function sn(e){if(!e)return[[]];if(e==="/")return[[nn]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(w){throw new Error(`ERR (${r})/"${f}": ${w}`)}let r=0,a=r;const n=[];let l;function s(){l&&n.push(l),l=[]}let u=0,c,f="",_="";function v(){f&&(r===0?l.push({type:0,value:f}):r===1||r===2||r===3?(l.length>1&&(c==="*"||c==="+")&&t(`A repeatable param (${f}) must be alone in its segment. eg: '/:ids+.`),l.push({type:1,value:f,regexp:_,repeatable:c==="*"||c==="+",optional:c==="*"||c==="?"})):t("Invalid state to consume buffer"),f="")}function g(){f+=c}for(;u{s(k)}:i1}function s(v){if(x3(v)){const g=a.get(v);g&&(a.delete(v),r.splice(r.indexOf(g),1),g.children.forEach(s),g.alias.forEach(s))}else{const g=r.indexOf(v);g>-1&&(r.splice(g,1),v.record.name&&a.delete(v.record.name),v.children.forEach(s),v.alias.forEach(s))}}function u(){return r}function c(v){const g=pn(v,r);r.splice(g,0,v),v.record.name&&!ft(v)&&a.set(v.record.name,v)}function f(v,g){let w,H={},y,P;if("name"in v&&v.name){if(w=a.get(v.name),!w)throw W2(1,{location:v});P=w.record.name,H=r0(pt(g.params,w.keys.filter(k=>!k.optional).concat(w.parent?w.parent.keys.filter(k=>k.optional):[]).map(k=>k.name)),v.params&&pt(v.params,w.keys.map(k=>k.name))),y=w.stringify(H)}else if(v.path!=null)y=v.path,w=r.find(k=>k.re.test(y)),w&&(H=w.parse(y),P=w.record.name);else{if(w=g.name?a.get(g.name):r.find(k=>k.re.test(g.path)),!w)throw W2(1,{location:v,currentLocation:g});P=w.record.name,H=r0({},g.params,v.params),y=w.stringify(H)}const A=[];let R=w;for(;R;)A.unshift(R.record),R=R.parent;return{name:P,path:y,params:H,matched:A,meta:_n(A)}}e.forEach(v=>l(v));function _(){r.length=0,a.clear()}return{addRoute:l,resolve:f,removeRoute:s,clearRoutes:_,getRoutes:u,getRecordMatcher:n}}function pt(e,t){const r={};for(const a of t)a in e&&(r[a]=e[a]);return r}function ht(e){const t={path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:e.aliasOf,beforeEnter:e.beforeEnter,props:cn(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in e?e.components||null:e.component&&{default:e.component}};return Object.defineProperty(t,"mods",{value:{}}),t}function cn(e){const t={},r=e.props||!1;if("component"in e)t.default=r;else for(const a in e.components)t[a]=typeof r=="object"?r[a]:r;return t}function ft(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function _n(e){return e.reduce((t,r)=>r0(t,r.meta),{})}function vt(e,t){const r={};for(const a in e)r[a]=a in t?t[a]:e[a];return r}function pn(e,t){let r=0,a=t.length;for(;r!==a;){const l=r+a>>1;C3(e,t[l])<0?a=l:r=l+1}const n=hn(e);return n&&(a=t.lastIndexOf(n,a-1)),a}function hn(e){let t=e;for(;t=t.parent;)if(z3(t)&&C3(e,t)===0)return t}function z3({record:e}){return!!(e.name||e.components&&Object.keys(e.components).length||e.redirect)}function fn(e){const t={};if(e===""||e==="?")return t;const a=(e[0]==="?"?e.slice(1):e).split("&");for(let n=0;nl&&Ie(l)):[a&&Ie(a)]).forEach(l=>{l!==void 0&&(t+=(t.length?"&":"")+r,l!=null&&(t+="="+l))})}return t}function vn(e){const t={};for(const r in e){const a=e[r];a!==void 0&&(t[r]=j0(a)?a.map(n=>n==null?null:""+n):a==null?a:""+a)}return t}const dn=Symbol(""),mt=Symbol(""),ue=Symbol(""),M3=Symbol(""),$e=Symbol("");function e1(){let e=[];function t(a){return e.push(a),()=>{const n=e.indexOf(a);n>-1&&e.splice(n,1)}}function r(){e=[]}return{add:t,list:()=>e.slice(),reset:r}}function d2(e,t,r,a,n,l=s=>s()){const s=a&&(a.enterCallbacks[n]=a.enterCallbacks[n]||[]);return()=>new Promise((u,c)=>{const f=g=>{g===!1?c(W2(4,{from:r,to:t})):g instanceof Error?c(g):Xa(g)?c(W2(2,{from:t,to:g})):(s&&a.enterCallbacks[n]===s&&typeof g=="function"&&s.push(g),u())},_=l(()=>e.call(a&&a.instances[n],t,r,f));let v=Promise.resolve(_);e.length<3&&(v=v.then(f)),v.catch(g=>c(g))})}function He(e,t,r,a,n=l=>l()){const l=[];for(const s of e)for(const u in s.components){let c=s.components[u];if(!(t!=="beforeRouteEnter"&&!s.instances[u]))if(p3(c)){const _=(c.__vccOpts||c)[t];_&&l.push(d2(_,r,a,s,u,n))}else{let f=c();l.push(()=>f.then(_=>{if(!_)throw new Error(`Couldn't resolve component "${u}" at "${s.path}"`);const v=ya(_)?_.default:_;s.mods[u]=_,s.components[u]=v;const w=(v.__vccOpts||v)[t];return w&&d2(w,r,a,s,u,n)()}))}}return l}function gt(e){const t=x0(ue),r=x0(M3),a=l0(()=>{const c=M0(e.to);return t.resolve(c)}),n=l0(()=>{const{matched:c}=a.value,{length:f}=c,_=c[f-1],v=r.matched;if(!_||!v.length)return-1;const g=v.findIndex(U2.bind(null,_));if(g>-1)return g;const w=wt(c[f-2]);return f>1&&wt(_)===w&&v[v.length-1].path!==w?v.findIndex(U2.bind(null,c[f-2])):g}),l=l0(()=>n.value>-1&&yn(r.params,a.value.params)),s=l0(()=>n.value>-1&&n.value===r.matched.length-1&&g3(r.params,a.value.params));function u(c={}){if(xn(c)){const f=t[M0(e.replace)?"replace":"push"](M0(e.to)).catch(i1);return e.viewTransition&&typeof document<"u"&&"startViewTransition"in document&&document.startViewTransition(()=>f),f}return Promise.resolve()}return{route:a,href:l0(()=>a.value.href),isActive:l,isExactActive:s,navigate:u}}function mn(e){return e.length===1?e[0]:e}const gn=p({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:gt,setup(e,{slots:t}){const r=X1(gt(e)),{options:a}=x0(ue),n=l0(()=>({[xt(e.activeClass,a.linkActiveClass,"router-link-active")]:r.isActive,[xt(e.exactActiveClass,a.linkExactActiveClass,"router-link-exact-active")]:r.isExactActive}));return()=>{const l=t.default&&mn(t.default(r));return e.custom?l:_6("a",{"aria-current":r.isExactActive?e.ariaCurrentValue:null,href:r.href,onClick:r.navigate,class:n.value},l)}}}),wn=gn;function xn(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)){if(e.currentTarget&&e.currentTarget.getAttribute){const t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function yn(e,t){for(const r in t){const a=t[r],n=e[r];if(typeof a=="string"){if(a!==n)return!1}else if(!j0(n)||n.length!==a.length||a.some((l,s)=>l!==n[s]))return!1}return!0}function wt(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const xt=(e,t,r)=>e??t??r,Cn=p({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:r}){const a=x0($e),n=l0(()=>e.route||a.value),l=x0(mt,0),s=l0(()=>{let f=M0(l);const{matched:_}=n.value;let v;for(;(v=_[f])&&!v.components;)f++;return f}),u=l0(()=>n.value.matched[s.value]);u1(mt,l0(()=>s.value+1)),u1(dn,u),u1($e,n);const c=X0();return j2(()=>[c.value,u.value,e.name],([f,_,v],[g,w,H])=>{_&&(_.instances[v]=f,w&&w!==_&&f&&f===g&&(_.leaveGuards.size||(_.leaveGuards=w.leaveGuards),_.updateGuards.size||(_.updateGuards=w.updateGuards))),f&&_&&(!w||!U2(_,w)||!g)&&(_.enterCallbacks[v]||[]).forEach(y=>y(f))},{flush:"post"}),()=>{const f=n.value,_=e.name,v=u.value,g=v&&v.components[_];if(!g)return yt(r.default,{Component:g,route:f});const w=v.props[_],H=w?w===!0?f.params:typeof w=="function"?w(f):w:null,P=_6(g,r0({},H,t,{onVnodeUnmounted:A=>{A.component.isUnmounted&&(v.instances[_]=null)},ref:c}));return yt(r.default,{Component:P,route:f})||P}}});function yt(e,t){if(!e)return null;const r=e(t);return r.length===1?r[0]:r}const zn=Cn;function Mn(e){const t=un(e.routes,e),r=e.parseQuery||fn,a=e.stringifyQuery||dt,n=e.history,l=e1(),s=e1(),u=e1(),c=o4(_2);let f=_2;R2&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const _=Me.bind(null,z=>""+z),v=Me.bind(null,Pa),g=Me.bind(null,w1);function w(z,D){let S,I;return x3(z)?(S=t.getRecordMatcher(z),I=D):I=z,t.addRoute(I,S)}function H(z){const D=t.getRecordMatcher(z);D&&t.removeRoute(D)}function y(){return t.getRoutes().map(z=>z.record)}function P(z){return!!t.getRecordMatcher(z)}function A(z,D){if(D=r0({},D||c.value),typeof z=="string"){const x=be(r,z,D.path),C=t.resolve({path:x.path},D),b=n.createHref(x.fullPath);return r0(x,C,{params:g(C.params),hash:w1(x.hash),redirectedFrom:void 0,href:b})}let S;if(z.path!=null)S=r0({},z,{path:be(r,z.path,D.path).path});else{const x=r0({},z.params);for(const C in x)x[C]==null&&delete x[C];S=r0({},z,{params:v(x)}),D.params=v(D.params)}const I=t.resolve(S,D),u0=z.hash||"";I.params=_(g(I.params));const d=Ra(a,r0({},z,{hash:La(u0),path:I.path})),m=n.createHref(d);return r0({fullPath:d,hash:u0,query:a===dt?vn(z.query):z.query||{}},I,{redirectedFrom:void 0,href:m})}function R(z){return typeof z=="string"?be(r,z,c.value.path):r0({},z)}function k(z,D){if(f!==z)return W2(8,{from:D,to:z})}function T(z){return Z(z)}function W(z){return T(r0(R(z),{replace:!0}))}function J(z){const D=z.matched[z.matched.length-1];if(D&&D.redirect){const{redirect:S}=D;let I=typeof S=="function"?S(z):S;return typeof I=="string"&&(I=I.includes("?")||I.includes("#")?I=R(I):{path:I},I.params={}),r0({query:z.query,hash:z.hash,params:I.path!=null?{}:z.params},I)}}function Z(z,D){const S=f=A(z),I=c.value,u0=z.state,d=z.force,m=z.replace===!0,x=J(S);if(x)return Z(r0(R(x),{state:typeof x=="object"?r0({},u0,x.state):u0,force:d,replace:m}),D||S);const C=S;C.redirectedFrom=D;let b;return!d&&Oa(a,I,S)&&(b=W2(16,{to:C,from:I}),K0(I,I,!0,!1)),(b?Promise.resolve(b):G(C,I)).catch(M=>r2(M)?r2(M,2)?M:c2(M):t0(M,C,I)).then(M=>{if(M){if(r2(M,2))return Z(r0({replace:m},R(M.to),{state:typeof M.to=="object"?r0({},u0,M.to.state):u0,force:d}),D||C)}else M=O(C,I,!0,m,u0);return a0(C,I,M),M})}function p0(z,D){const S=k(z,D);return S?Promise.reject(S):Promise.resolve()}function N(z){const D=P2.values().next().value;return D&&typeof D.runWithContext=="function"?D.runWithContext(z):z()}function G(z,D){let S;const[I,u0,d]=bn(z,D);S=He(I.reverse(),"beforeRouteLeave",z,D);for(const x of I)x.leaveGuards.forEach(C=>{S.push(d2(C,z,D))});const m=p0.bind(null,z,D);return S.push(m),R0(S).then(()=>{S=[];for(const x of l.list())S.push(d2(x,z,D));return S.push(m),R0(S)}).then(()=>{S=He(u0,"beforeRouteUpdate",z,D);for(const x of u0)x.updateGuards.forEach(C=>{S.push(d2(C,z,D))});return S.push(m),R0(S)}).then(()=>{S=[];for(const x of d)if(x.beforeEnter)if(j0(x.beforeEnter))for(const C of x.beforeEnter)S.push(d2(C,z,D));else S.push(d2(x.beforeEnter,z,D));return S.push(m),R0(S)}).then(()=>(z.matched.forEach(x=>x.enterCallbacks={}),S=He(d,"beforeRouteEnter",z,D,N),S.push(m),R0(S))).then(()=>{S=[];for(const x of s.list())S.push(d2(x,z,D));return S.push(m),R0(S)}).catch(x=>r2(x,8)?x:Promise.reject(x))}function a0(z,D,S){u.list().forEach(I=>N(()=>I(z,D,S)))}function O(z,D,S,I,u0){const d=k(z,D);if(d)return d;const m=D===_2,x=R2?history.state:{};S&&(I||m?n.replace(z.fullPath,r0({scroll:m&&x&&x.scroll},u0)):n.push(z.fullPath,u0)),c.value=z,K0(z,D,S,m),c2()}let e0;function m0(){e0||(e0=n.listen((z,D,S)=>{if(!M1.listening)return;const I=A(z),u0=J(I);if(u0){Z(r0(u0,{replace:!0,force:!0}),I).catch(i1);return}f=I;const d=c.value;R2&&Ua(ot(d.fullPath,S.delta),oe()),G(I,d).catch(m=>r2(m,12)?m:r2(m,2)?(Z(r0(R(m.to),{force:!0}),I).then(x=>{r2(x,20)&&!S.delta&&S.type===x1.pop&&n.go(-1,!1)}).catch(i1),Promise.reject()):(S.delta&&n.go(-S.delta,!1),t0(m,I,d))).then(m=>{m=m||O(I,d,!1),m&&(S.delta&&!r2(m,8)?n.go(-S.delta,!1):S.type===x1.pop&&r2(m,20)&&n.go(-1,!1)),a0(I,d,m)}).catch(i1)}))}let F0=e1(),f0=e1(),s0;function t0(z,D,S){c2(z);const I=f0.list();return I.length?I.forEach(u0=>u0(z,D,S)):console.error(z),Promise.reject(z)}function e2(){return s0&&c.value!==_2?Promise.resolve():new Promise((z,D)=>{F0.add([z,D])})}function c2(z){return s0||(s0=!z,m0(),F0.list().forEach(([D,S])=>z?S(z):D()),F0.reset()),z}function K0(z,D,S,I){const{scrollBehavior:u0}=e;if(!R2||!u0)return Promise.resolve();const d=!S&&Wa(ot(z.fullPath,0))||(I||!S)&&history.state&&history.state.scroll||null;return a6().then(()=>u0(z,D,d)).then(m=>m&&Ka(m)).catch(m=>t0(m,z,D))}const A0=z=>n.go(z);let F2;const P2=new Set,M1={currentRoute:c,listening:!0,addRoute:w,removeRoute:H,clearRoutes:t.clearRoutes,hasRoute:P,getRoutes:y,resolve:A,options:e,push:T,replace:W,go:A0,back:()=>A0(-1),forward:()=>A0(1),beforeEach:l.add,beforeResolve:s.add,afterEach:u.add,onError:f0.add,isReady:e2,install(z){const D=this;z.component("RouterLink",wn),z.component("RouterView",zn),z.config.globalProperties.$router=D,Object.defineProperty(z.config.globalProperties,"$route",{enumerable:!0,get:()=>M0(c)}),R2&&!F2&&c.value===_2&&(F2=!0,T(n.location).catch(u0=>{}));const S={};for(const u0 in _2)Object.defineProperty(S,u0,{get:()=>c.value[u0],enumerable:!0});z.provide(ue,D),z.provide(M3,s4(S)),z.provide($e,c);const I=z.unmount;P2.add(z),z.unmount=function(){P2.delete(z),P2.size<1&&(f=_2,e0&&e0(),e0=null,c.value=_2,F2=!1,s0=!1),I()}}};function R0(z){return z.reduce((D,S)=>D.then(()=>N(S)),Promise.resolve())}return M1}function bn(e,t){const r=[],a=[],n=[],l=Math.max(t.matched.length,e.matched.length);for(let s=0;sU2(f,u))?a.push(u):r.push(u));const c=e.matched[s];c&&(t.matched.find(f=>U2(f,c))||n.push(c))}return[r,a,n]}function qf(){return x0(ue)}const Hn="modulepreload",En=function(e,t){return new URL(e,t).href},Ct={},zt=function(t,r,a){let n=Promise.resolve();if(r&&r.length>0){const s=document.getElementsByTagName("link"),u=document.querySelector("meta[property=csp-nonce]"),c=(u==null?void 0:u.nonce)||(u==null?void 0:u.getAttribute("nonce"));n=Promise.allSettled(r.map(f=>{if(f=En(f,a),f in Ct)return;Ct[f]=!0;const _=f.endsWith(".css"),v=_?'[rel="stylesheet"]':"";if(!!a)for(let H=s.length-1;H>=0;H--){const y=s[H];if(y.href===f&&(!_||y.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${f}"]${v}`))return;const w=document.createElement("link");if(w.rel=_?"stylesheet":Hn,_||(w.as="script"),w.crossOrigin="",w.href=f,c&&w.setAttribute("nonce",c),document.head.appendChild(w),_)return new Promise((H,y)=>{w.addEventListener("load",H),w.addEventListener("error",()=>y(new Error(`Unable to preload CSS for ${f}`)))})}))}function l(s){const u=new Event("vite:preloadError",{cancelable:!0});if(u.payload=s,window.dispatchEvent(u),!u.defaultPrevented)throw s}return n.then(s=>{for(const u of s||[])u.status==="rejected"&&l(u.reason);return t().catch(l)})},Vn=[{path:"/",name:"Index",component:()=>zt(()=>import("./Index-BkCaaeQ1.js"),__vite__mapDeps([0,1,2,3]),import.meta.url)},{path:"/login",name:"Login",meta:{login:!1,title:"登录"},component:()=>zt(()=>import("./Login-DDlQxOJa.js"),__vite__mapDeps([4,1,2,5]),import.meta.url)}],b3=Mn({history:Qa(),routes:Vn});b3.beforeEach(async(e,t,r)=>{r()});const H3=Symbol(),P1="el",Bn="is-",b2=(e,t,r,a,n)=>{let l=`${e}-${t}`;return r&&(l+=`-${r}`),a&&(l+=`__${a}`),n&&(l+=`--${n}`),l},E3=Symbol("namespaceContextKey"),An=e=>{const t=e||(s2()?x0(E3,X0(P1)):X0(P1));return l0(()=>M0(t)||P1)},Ln=(e,t)=>{const r=An(t);return{namespace:r,b:(y="")=>b2(r.value,e,y,"",""),e:y=>y?b2(r.value,e,"",y,""):"",m:y=>y?b2(r.value,e,"","",y):"",be:(y,P)=>y&&P?b2(r.value,e,y,P,""):"",em:(y,P)=>y&&P?b2(r.value,e,"",y,P):"",bm:(y,P)=>y&&P?b2(r.value,e,y,"",P):"",bem:(y,P,A)=>y&&P&&A?b2(r.value,e,y,P,A):"",is:(y,...P)=>{const A=P.length>=1?P[0]:!0;return y&&A?`${Bn}${y}`:""},cssVar:y=>{const P={};for(const A in y)y[A]&&(P[`--${r.value}-${A}`]=y[A]);return P},cssVarName:y=>`--${r.value}-${y}`,cssVarBlock:y=>{const P={};for(const A in y)y[A]&&(P[`--${r.value}-${e}-${A}`]=y[A]);return P},cssVarBlockName:y=>`--${r.value}-${e}-${y}`}};var Sn=typeof global=="object"&&global&&global.Object===Object&&global,Fn=typeof self=="object"&&self&&self.Object===Object&&self,h6=Sn||Fn||Function("return this")(),G2=h6.Symbol,V3=Object.prototype,Pn=V3.hasOwnProperty,Dn=V3.toString,t1=G2?G2.toStringTag:void 0;function Tn(e){var t=Pn.call(e,t1),r=e[t1];try{e[t1]=void 0;var a=!0}catch{}var n=Dn.call(e);return a&&(t?e[t1]=r:delete e[t1]),n}var Rn=Object.prototype,On=Rn.toString;function kn(e){return On.call(e)}var In="[object Null]",Nn="[object Undefined]",Mt=G2?G2.toStringTag:void 0;function B3(e){return e==null?e===void 0?Nn:In:Mt&&Mt in Object(e)?Tn(e):kn(e)}function $n(e){return e!=null&&typeof e=="object"}var qn="[object Symbol]";function f6(e){return typeof e=="symbol"||$n(e)&&B3(e)==qn}function jn(e,t){for(var r=-1,a=e==null?0:e.length,n=Array(a);++r-1&&e%1==0&&e-1}function Tl(e,t){var r=this.__data__,a=ce(r,e);return a<0?(++this.size,r.push([e,t])):r[a][1]=t,this}function J2(e){var t=-1,r=e==null?0:e.length;for(this.clear();++te===void 0,Kf=e=>typeof e=="boolean",ts=e=>typeof e=="number",Uf=e=>typeof Element>"u"?!1:e instanceof Element,Wf=e=>h0(e)?!Number.isNaN(Number(e)):!1;var rs=Object.defineProperty,as=Object.defineProperties,ns=Object.getOwnPropertyDescriptors,Bt=Object.getOwnPropertySymbols,ls=Object.prototype.hasOwnProperty,ss=Object.prototype.propertyIsEnumerable,At=(e,t,r)=>t in e?rs(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,os=(e,t)=>{for(var r in t||(t={}))ls.call(t,r)&&At(e,r,t[r]);if(Bt)for(var r of Bt(t))ss.call(t,r)&&At(e,r,t[r]);return e},us=(e,t)=>as(e,ns(t));function Gf(e,t){var r;const a=o4();return mr(()=>{a.value=e()},us(os({},t),{flush:(r=void 0)!=null?r:"sync"})),ee(a)}var Lt;const g6=typeof window<"u",Jf=e=>typeof e<"u",Zf=e=>typeof e=="function",Yf=e=>typeof e=="string",St=()=>{},Qf=g6&&((Lt=window==null?void 0:window.navigator)==null?void 0:Lt.userAgent)&&/iP(ad|hone|od)/.test(window.navigator.userAgent);function qe(e){return typeof e=="function"?e():M0(e)}function cs(e,t){function r(...a){return new Promise((n,l)=>{Promise.resolve(e(()=>t.apply(this,a),{fn:t,thisArg:this,args:a})).then(n).catch(l)})}return r}function is(e,t={}){let r,a,n=St;const l=u=>{clearTimeout(u),n(),n=St};return u=>{const c=qe(e),f=qe(t.maxWait);return r&&l(r),c<=0||f!==void 0&&f<=0?(a&&(l(a),a=null),Promise.resolve(u())):new Promise((_,v)=>{n=t.rejectOnCancel?v:_,f&&!a&&(a=setTimeout(()=>{r&&l(r),a=null,_(u())},f)),r=setTimeout(()=>{a&&l(a),a=null,_(u())},c)})}}function Xf(e){return e}function _s(e){return Kt()?(l8(e),!0):!1}function ps(e,t=200,r={}){return cs(is(t,r),e)}function ev(e,t=200,r={}){const a=X0(e.value),n=ps(()=>{a.value=e.value},t,r);return j2(e,()=>n()),a}function tv(e,t=!0){s2()?s6(e):t?e():a6(e)}function rv(e,t,r={}){const{immediate:a=!0}=r,n=X0(!1);let l=null;function s(){l&&(clearTimeout(l),l=null)}function u(){n.value=!1,s()}function c(...f){s(),n.value=!0,l=setTimeout(()=>{n.value=!1,l=null,e(...f)},qe(t))}return a&&(n.value=!0,g6&&c()),_s(u),{isPending:ee(n),start:c,stop:u}}const Ft={current:0},Pt=X0(0),D3=2e3,Dt=Symbol("elZIndexContextKey"),T3=Symbol("zIndexContextKey"),hs=e=>{const t=s2()?x0(Dt,Ft):Ft,r=e||(s2()?x0(T3,void 0):void 0),a=l0(()=>{const s=M0(r);return ts(s)?s:D3}),n=l0(()=>a.value+Pt.value),l=()=>(t.current++,Pt.value=t.current,n.value);return!g6&&x0(Dt),{initialZIndex:a,currentZIndex:n,nextZIndex:l}};var fs={name:"en",el:{breadcrumb:{label:"Breadcrumb"},colorpicker:{confirm:"OK",clear:"Clear",defaultLabel:"color picker",description:"current color is {color}. press enter to select a new color.",alphaLabel:"pick alpha value"},datepicker:{now:"Now",today:"Today",cancel:"Cancel",clear:"Clear",confirm:"OK",dateTablePrompt:"Use the arrow keys and enter to select the day of the month",monthTablePrompt:"Use the arrow keys and enter to select the month",yearTablePrompt:"Use the arrow keys and enter to select the year",selectedDate:"Selected date",selectDate:"Select date",selectTime:"Select time",startDate:"Start Date",startTime:"Start Time",endDate:"End Date",endTime:"End Time",prevYear:"Previous Year",nextYear:"Next Year",prevMonth:"Previous Month",nextMonth:"Next Month",year:"",month1:"January",month2:"February",month3:"March",month4:"April",month5:"May",month6:"June",month7:"July",month8:"August",month9:"September",month10:"October",month11:"November",month12:"December",week:"week",weeks:{sun:"Sun",mon:"Mon",tue:"Tue",wed:"Wed",thu:"Thu",fri:"Fri",sat:"Sat"},weeksFull:{sun:"Sunday",mon:"Monday",tue:"Tuesday",wed:"Wednesday",thu:"Thursday",fri:"Friday",sat:"Saturday"},months:{jan:"Jan",feb:"Feb",mar:"Mar",apr:"Apr",may:"May",jun:"Jun",jul:"Jul",aug:"Aug",sep:"Sep",oct:"Oct",nov:"Nov",dec:"Dec"}},inputNumber:{decrease:"decrease number",increase:"increase number"},select:{loading:"Loading",noMatch:"No matching data",noData:"No data",placeholder:"Select"},mention:{loading:"Loading"},dropdown:{toggleDropdown:"Toggle Dropdown"},cascader:{noMatch:"No matching data",loading:"Loading",placeholder:"Select",noData:"No data"},pagination:{goto:"Go to",pagesize:"/page",total:"Total {total}",pageClassifier:"",page:"Page",prev:"Go to previous page",next:"Go to next page",currentPage:"page {pager}",prevPages:"Previous {pager} pages",nextPages:"Next {pager} pages",deprecationWarning:"Deprecated usages detected, please refer to the el-pagination documentation for more details"},dialog:{close:"Close this dialog"},drawer:{close:"Close this dialog"},messagebox:{title:"Message",confirm:"OK",cancel:"Cancel",error:"Illegal input",close:"Close this dialog"},upload:{deleteTip:"press delete to remove",delete:"Delete",preview:"Preview",continue:"Continue"},slider:{defaultLabel:"slider between {min} and {max}",defaultRangeStartLabel:"pick start value",defaultRangeEndLabel:"pick end value"},table:{emptyText:"No Data",confirmFilter:"Confirm",resetFilter:"Reset",clearFilter:"All",sumText:"Sum"},tour:{next:"Next",previous:"Previous",finish:"Finish"},tree:{emptyText:"No Data"},transfer:{noMatch:"No matching data",noData:"No data",titles:["List 1","List 2"],filterPlaceholder:"Enter keyword",noCheckedFormat:"{total} items",hasCheckedFormat:"{checked}/{total} checked"},image:{error:"FAILED"},pageHeader:{title:"Back"},popconfirm:{confirmButtonText:"Yes",cancelButtonText:"No"},carousel:{leftArrow:"Carousel arrow left",rightArrow:"Carousel arrow right",indicator:"Carousel switch to index {index}"}}};const vs=e=>(t,r)=>ds(t,r,M0(e)),ds=(e,t,r)=>P3(r,e,e).replace(/\{(\w+)\}/g,(a,n)=>{var l;return`${(l=t==null?void 0:t[n])!=null?l:`{${n}}`}`}),ms=e=>{const t=l0(()=>M0(e).name),r=v0(e)?e:X0(e);return{lang:t,locale:r,t:vs(e)}},R3=Symbol("localeContextKey"),gs=e=>{const t=e||x0(R3,X0());return ms(l0(()=>t.value||fs))},O3="__epPropKey",A1=e=>e,ws=e=>o0(e)&&!!e[O3],k3=(e,t)=>{if(!o0(e)||ws(e))return e;const{values:r,required:a,default:n,type:l,validator:s}=e,c={type:l,required:!!a,validator:r||s?f=>{let _=!1,v=[];if(r&&(v=Array.from(r),X(e,"default")&&v.push(n),_||(_=v.includes(f))),s&&(_||(_=s(f))),!_&&v.length>0){const g=[...new Set(v)].map(w=>JSON.stringify(w)).join(", ");Ir(`Invalid prop: validation failed${t?` for prop "${t}"`:""}. Expected one of [${g}], got value ${JSON.stringify(f)}.`)}return _}:void 0,[O3]:!0};return X(e,"default")&&(c.default=n),c},I3=e=>Ql(Object.entries(e).map(([t,r])=>[t,k3(r,t)])),xs=["","default","small","large"],ys=k3({type:String,values:xs,required:!1}),N3=Symbol("size"),av=()=>{const e=x0(N3,{});return l0(()=>M0(e.size)||"")},Cs=Symbol("emptyValuesContextKey"),zs=I3({emptyValues:Array,valueOnClear:{type:[String,Number,Boolean,Function],default:void 0,validator:e=>K(e)?!e():!e}}),Tt=e=>Object.keys(e),nv=e=>Object.entries(e),lv=(e,t,r)=>({get value(){return P3(e,t,r)},set value(a){es(e,t,a)}}),U1=X0();function $3(e,t=void 0){const r=s2()?x0(H3,U1):U1;return e?l0(()=>{var a,n;return(n=(a=r.value)==null?void 0:a[e])!=null?n:t}):r}function sv(e,t){const r=$3(),a=Ln(e,l0(()=>{var u;return((u=r.value)==null?void 0:u.namespace)||P1})),n=gs(l0(()=>{var u;return(u=r.value)==null?void 0:u.locale})),l=hs(l0(()=>{var u;return((u=r.value)==null?void 0:u.zIndex)||D3})),s=l0(()=>{var u;return M0(t)||((u=r.value)==null?void 0:u.size)||""});return q3(l0(()=>M0(r)||{})),{ns:a,locale:n,zIndex:l,size:s}}const q3=(e,t,r=!1)=>{var a;const n=!!s2(),l=n?$3():void 0,s=(a=void 0)!=null?a:n?u1:void 0;if(!s)return;const u=l0(()=>{const c=M0(e);return l!=null&&l.value?Ms(l.value,c):c});return s(H3,u),s(R3,l0(()=>u.value.locale)),s(E3,l0(()=>u.value.namespace)),s(T3,l0(()=>u.value.zIndex)),s(N3,{size:l0(()=>u.value.size||"")}),s(Cs,l0(()=>({emptyValues:u.value.emptyValues,valueOnClear:u.value.valueOnClear}))),(r||!U1.value)&&(U1.value=u.value),u},Ms=(e,t)=>{const r=[...new Set([...Tt(e),...Tt(t)])],a={};for(const n of r)a[n]=t[n]!==void 0?t[n]:e[n];return a},bs=(e,t)=>{if(e.install=r=>{for(const a of[e,...Object.values(t??{})])r.component(a.name,a)},t)for(const[r,a]of Object.entries(t))e[r]=a;return e},ov=(e,t)=>(e.install=r=>{e._context=r._context,r.config.globalProperties[t]=e},e),uv=e=>(e.install=k0,e);/*! Element Plus Icons Vue v2.3.1 */var Hs=p({name:"AddLocation",__name:"add-location",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32"}),o("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416M512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544"}),o("path",{fill:"currentColor",d:"M544 384h96a32 32 0 1 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96v-96a32 32 0 0 1 64 0z"})]))}}),Es=Hs,Vs=p({name:"Aim",__name:"aim",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"}),o("path",{fill:"currentColor",d:"M512 96a32 32 0 0 1 32 32v192a32 32 0 0 1-64 0V128a32 32 0 0 1 32-32m0 576a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V704a32 32 0 0 1 32-32M96 512a32 32 0 0 1 32-32h192a32 32 0 0 1 0 64H128a32 32 0 0 1-32-32m576 0a32 32 0 0 1 32-32h192a32 32 0 1 1 0 64H704a32 32 0 0 1-32-32"})]))}}),Bs=Vs,As=p({name:"AlarmClock",__name:"alarm-clock",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 832a320 320 0 1 0 0-640 320 320 0 0 0 0 640m0 64a384 384 0 1 1 0-768 384 384 0 0 1 0 768"}),o("path",{fill:"currentColor",d:"m292.288 824.576 55.424 32-48 83.136a32 32 0 1 1-55.424-32zm439.424 0-55.424 32 48 83.136a32 32 0 1 0 55.424-32zM512 512h160a32 32 0 1 1 0 64H480a32 32 0 0 1-32-32V320a32 32 0 0 1 64 0zM90.496 312.256A160 160 0 0 1 312.32 90.496l-46.848 46.848a96 96 0 0 0-128 128L90.56 312.256zm835.264 0A160 160 0 0 0 704 90.496l46.848 46.848a96 96 0 0 1 128 128z"})]))}}),Ls=As,Ss=p({name:"Apple",__name:"apple",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M599.872 203.776a189.44 189.44 0 0 1 64.384-4.672l2.624.128c31.168 1.024 51.2 4.096 79.488 16.32 37.632 16.128 74.496 45.056 111.488 89.344 96.384 115.264 82.752 372.8-34.752 521.728-7.68 9.728-32 41.6-30.72 39.936a426.624 426.624 0 0 1-30.08 35.776c-31.232 32.576-65.28 49.216-110.08 50.048-31.36.64-53.568-5.312-84.288-18.752l-6.528-2.88c-20.992-9.216-30.592-11.904-47.296-11.904-18.112 0-28.608 2.88-51.136 12.672l-6.464 2.816c-28.416 12.224-48.32 18.048-76.16 19.2-74.112 2.752-116.928-38.08-180.672-132.16-96.64-142.08-132.608-349.312-55.04-486.4 46.272-81.92 129.92-133.632 220.672-135.04 32.832-.576 60.288 6.848 99.648 22.72 27.136 10.88 34.752 13.76 37.376 14.272 16.256-20.16 27.776-36.992 34.56-50.24 13.568-26.304 27.2-59.968 40.704-100.8a32 32 0 1 1 60.8 20.224c-12.608 37.888-25.408 70.4-38.528 97.664zm-51.52 78.08c-14.528 17.792-31.808 37.376-51.904 58.816a32 32 0 1 1-46.72-43.776l12.288-13.248c-28.032-11.2-61.248-26.688-95.68-26.112-70.4 1.088-135.296 41.6-171.648 105.792C121.6 492.608 176 684.16 247.296 788.992c34.816 51.328 76.352 108.992 130.944 106.944 52.48-2.112 72.32-34.688 135.872-34.688 63.552 0 81.28 34.688 136.96 33.536 56.448-1.088 75.776-39.04 126.848-103.872 107.904-136.768 107.904-362.752 35.776-449.088-72.192-86.272-124.672-84.096-151.68-85.12-41.472-4.288-81.6 12.544-113.664 25.152z"})]))}}),Fs=Ss,Ps=p({name:"ArrowDownBold",__name:"arrow-down-bold",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M104.704 338.752a64 64 0 0 1 90.496 0l316.8 316.8 316.8-316.8a64 64 0 0 1 90.496 90.496L557.248 791.296a64 64 0 0 1-90.496 0L104.704 429.248a64 64 0 0 1 0-90.496z"})]))}}),Ds=Ps,Ts=p({name:"ArrowDown",__name:"arrow-down",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M831.872 340.864 512 652.672 192.128 340.864a30.592 30.592 0 0 0-42.752 0 29.12 29.12 0 0 0 0 41.6L489.664 714.24a32 32 0 0 0 44.672 0l340.288-331.712a29.12 29.12 0 0 0 0-41.728 30.592 30.592 0 0 0-42.752 0z"})]))}}),Rs=Ts,Os=p({name:"ArrowLeftBold",__name:"arrow-left-bold",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M685.248 104.704a64 64 0 0 1 0 90.496L368.448 512l316.8 316.8a64 64 0 0 1-90.496 90.496L232.704 557.248a64 64 0 0 1 0-90.496l362.048-362.048a64 64 0 0 1 90.496 0z"})]))}}),ks=Os,Is=p({name:"ArrowLeft",__name:"arrow-left",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M609.408 149.376 277.76 489.6a32 32 0 0 0 0 44.672l331.648 340.352a29.12 29.12 0 0 0 41.728 0 30.592 30.592 0 0 0 0-42.752L339.264 511.936l311.872-319.872a30.592 30.592 0 0 0 0-42.688 29.12 29.12 0 0 0-41.728 0z"})]))}}),Ns=Is,$s=p({name:"ArrowRightBold",__name:"arrow-right-bold",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M338.752 104.704a64 64 0 0 0 0 90.496l316.8 316.8-316.8 316.8a64 64 0 0 0 90.496 90.496l362.048-362.048a64 64 0 0 0 0-90.496L429.248 104.704a64 64 0 0 0-90.496 0z"})]))}}),qs=$s,js=p({name:"ArrowRight",__name:"arrow-right",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M340.864 149.312a30.592 30.592 0 0 0 0 42.752L652.736 512 340.864 831.872a30.592 30.592 0 0 0 0 42.752 29.12 29.12 0 0 0 41.728 0L714.24 534.336a32 32 0 0 0 0-44.672L382.592 149.376a29.12 29.12 0 0 0-41.728 0z"})]))}}),Ks=js,Us=p({name:"ArrowUpBold",__name:"arrow-up-bold",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M104.704 685.248a64 64 0 0 0 90.496 0l316.8-316.8 316.8 316.8a64 64 0 0 0 90.496-90.496L557.248 232.704a64 64 0 0 0-90.496 0L104.704 594.752a64 64 0 0 0 0 90.496z"})]))}}),Ws=Us,Gs=p({name:"ArrowUp",__name:"arrow-up",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m488.832 344.32-339.84 356.672a32 32 0 0 0 0 44.16l.384.384a29.44 29.44 0 0 0 42.688 0l320-335.872 319.872 335.872a29.44 29.44 0 0 0 42.688 0l.384-.384a32 32 0 0 0 0-44.16L535.168 344.32a32 32 0 0 0-46.336 0"})]))}}),Js=Gs,Zs=p({name:"Avatar",__name:"avatar",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M628.736 528.896A416 416 0 0 1 928 928H96a415.872 415.872 0 0 1 299.264-399.104L512 704zM720 304a208 208 0 1 1-416 0 208 208 0 0 1 416 0"})]))}}),Ys=Zs,Qs=p({name:"Back",__name:"back",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M224 480h640a32 32 0 1 1 0 64H224a32 32 0 0 1 0-64"}),o("path",{fill:"currentColor",d:"m237.248 512 265.408 265.344a32 32 0 0 1-45.312 45.312l-288-288a32 32 0 0 1 0-45.312l288-288a32 32 0 1 1 45.312 45.312z"})]))}}),Xs=Qs,eo=p({name:"Baseball",__name:"baseball",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M195.2 828.8a448 448 0 1 1 633.6-633.6 448 448 0 0 1-633.6 633.6zm45.248-45.248a384 384 0 1 0 543.104-543.104 384 384 0 0 0-543.104 543.104"}),o("path",{fill:"currentColor",d:"M497.472 96.896c22.784 4.672 44.416 9.472 64.896 14.528a256.128 256.128 0 0 0 350.208 350.208c5.056 20.48 9.856 42.112 14.528 64.896A320.128 320.128 0 0 1 497.472 96.896zM108.48 491.904a320.128 320.128 0 0 1 423.616 423.68c-23.04-3.648-44.992-7.424-65.728-11.52a256.128 256.128 0 0 0-346.496-346.432 1736.64 1736.64 0 0 1-11.392-65.728z"})]))}}),to=eo,ro=p({name:"Basketball",__name:"basketball",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M778.752 788.224a382.464 382.464 0 0 0 116.032-245.632 256.512 256.512 0 0 0-241.728-13.952 762.88 762.88 0 0 1 125.696 259.584zm-55.04 44.224a699.648 699.648 0 0 0-125.056-269.632 256.128 256.128 0 0 0-56.064 331.968 382.72 382.72 0 0 0 181.12-62.336m-254.08 61.248A320.128 320.128 0 0 1 557.76 513.6a715.84 715.84 0 0 0-48.192-48.128 320.128 320.128 0 0 1-379.264 88.384 382.4 382.4 0 0 0 110.144 229.696 382.4 382.4 0 0 0 229.184 110.08zM129.28 481.088a256.128 256.128 0 0 0 331.072-56.448 699.648 699.648 0 0 0-268.8-124.352 382.656 382.656 0 0 0-62.272 180.8m106.56-235.84a762.88 762.88 0 0 1 258.688 125.056 256.512 256.512 0 0 0-13.44-241.088A382.464 382.464 0 0 0 235.84 245.248zm318.08-114.944c40.576 89.536 37.76 193.92-8.448 281.344a779.84 779.84 0 0 1 66.176 66.112 320.832 320.832 0 0 1 282.112-8.128 382.4 382.4 0 0 0-110.144-229.12 382.4 382.4 0 0 0-229.632-110.208zM828.8 828.8a448 448 0 1 1-633.6-633.6 448 448 0 0 1 633.6 633.6"})]))}}),ao=ro,no=p({name:"BellFilled",__name:"bell-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M640 832a128 128 0 0 1-256 0zm192-64H134.4a38.4 38.4 0 0 1 0-76.8H192V448c0-154.88 110.08-284.16 256.32-313.6a64 64 0 1 1 127.36 0A320.128 320.128 0 0 1 832 448v243.2h57.6a38.4 38.4 0 0 1 0 76.8z"})]))}}),lo=no,so=p({name:"Bell",__name:"bell",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a64 64 0 0 1 64 64v64H448v-64a64 64 0 0 1 64-64"}),o("path",{fill:"currentColor",d:"M256 768h512V448a256 256 0 1 0-512 0zm256-640a320 320 0 0 1 320 320v384H192V448a320 320 0 0 1 320-320"}),o("path",{fill:"currentColor",d:"M96 768h832q32 0 32 32t-32 32H96q-32 0-32-32t32-32m352 128h128a64 64 0 0 1-128 0"})]))}}),oo=so,uo=p({name:"Bicycle",__name:"bicycle",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 832a128 128 0 1 0 0-256 128 128 0 0 0 0 256m0 64a192 192 0 1 1 0-384 192 192 0 0 1 0 384"}),o("path",{fill:"currentColor",d:"M288 672h320q32 0 32 32t-32 32H288q-32 0-32-32t32-32"}),o("path",{fill:"currentColor",d:"M768 832a128 128 0 1 0 0-256 128 128 0 0 0 0 256m0 64a192 192 0 1 1 0-384 192 192 0 0 1 0 384"}),o("path",{fill:"currentColor",d:"M480 192a32 32 0 0 1 0-64h160a32 32 0 0 1 31.04 24.256l96 384a32 32 0 0 1-62.08 15.488L615.04 192zM96 384a32 32 0 0 1 0-64h128a32 32 0 0 1 30.336 21.888l64 192a32 32 0 1 1-60.672 20.224L200.96 384z"}),o("path",{fill:"currentColor",d:"m373.376 599.808-42.752-47.616 320-288 42.752 47.616z"})]))}}),co=uo,io=p({name:"BottomLeft",__name:"bottom-left",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 768h416a32 32 0 1 1 0 64H224a32 32 0 0 1-32-32V352a32 32 0 0 1 64 0z"}),o("path",{fill:"currentColor",d:"M246.656 822.656a32 32 0 0 1-45.312-45.312l544-544a32 32 0 0 1 45.312 45.312l-544 544z"})]))}}),_o=io,po=p({name:"BottomRight",__name:"bottom-right",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M352 768a32 32 0 1 0 0 64h448a32 32 0 0 0 32-32V352a32 32 0 0 0-64 0v416z"}),o("path",{fill:"currentColor",d:"M777.344 822.656a32 32 0 0 0 45.312-45.312l-544-544a32 32 0 0 0-45.312 45.312z"})]))}}),ho=po,fo=p({name:"Bottom",__name:"bottom",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M544 805.888V168a32 32 0 1 0-64 0v637.888L246.656 557.952a30.72 30.72 0 0 0-45.312 0 35.52 35.52 0 0 0 0 48.064l288 306.048a30.72 30.72 0 0 0 45.312 0l288-306.048a35.52 35.52 0 0 0 0-48 30.72 30.72 0 0 0-45.312 0L544 805.824z"})]))}}),vo=fo,mo=p({name:"Bowl",__name:"bowl",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M714.432 704a351.744 351.744 0 0 0 148.16-256H161.408a351.744 351.744 0 0 0 148.16 256zM288 766.592A415.68 415.68 0 0 1 96 416a32 32 0 0 1 32-32h768a32 32 0 0 1 32 32 415.68 415.68 0 0 1-192 350.592V832a64 64 0 0 1-64 64H352a64 64 0 0 1-64-64zM493.248 320h-90.496l254.4-254.4a32 32 0 1 1 45.248 45.248zm187.328 0h-128l269.696-155.712a32 32 0 0 1 32 55.424zM352 768v64h320v-64z"})]))}}),go=mo,wo=p({name:"Box",__name:"box",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M317.056 128 128 344.064V896h768V344.064L706.944 128zm-14.528-64h418.944a32 32 0 0 1 24.064 10.88l206.528 236.096A32 32 0 0 1 960 332.032V928a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V332.032a32 32 0 0 1 7.936-21.12L278.4 75.008A32 32 0 0 1 302.528 64z"}),o("path",{fill:"currentColor",d:"M64 320h896v64H64z"}),o("path",{fill:"currentColor",d:"M448 327.872V640h128V327.872L526.08 128h-28.16zM448 64h128l64 256v352a32 32 0 0 1-32 32H416a32 32 0 0 1-32-32V320z"})]))}}),xo=wo,yo=p({name:"Briefcase",__name:"briefcase",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M320 320V128h384v192h192v192H128V320zM128 576h768v320H128zm256-256h256.064V192H384z"})]))}}),Co=yo,zo=p({name:"BrushFilled",__name:"brush-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M608 704v160a96 96 0 0 1-192 0V704h-96a128 128 0 0 1-128-128h640a128 128 0 0 1-128 128zM192 512V128.064h640V512z"})]))}}),Mo=zo,bo=p({name:"Brush",__name:"brush",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M896 448H128v192a64 64 0 0 0 64 64h192v192h256V704h192a64 64 0 0 0 64-64zm-770.752-64c0-47.552 5.248-90.24 15.552-128 14.72-54.016 42.496-107.392 83.2-160h417.28l-15.36 70.336L736 96h211.2c-24.832 42.88-41.92 96.256-51.2 160a663.872 663.872 0 0 0-6.144 128H960v256a128 128 0 0 1-128 128H704v160a32 32 0 0 1-32 32H352a32 32 0 0 1-32-32V768H192A128 128 0 0 1 64 640V384h61.248zm64 0h636.544c-2.048-45.824.256-91.584 6.848-137.216 4.48-30.848 10.688-59.776 18.688-86.784h-96.64l-221.12 141.248L561.92 160H256.512c-25.856 37.888-43.776 75.456-53.952 112.832-8.768 32.064-13.248 69.12-13.312 111.168z"})]))}}),Ho=bo,Eo=p({name:"Burger",__name:"burger",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 512a32 32 0 0 0-32 32v64a32 32 0 0 0 30.08 32H864a32 32 0 0 0 32-32v-64a32 32 0 0 0-32-32zm736-58.56A96 96 0 0 1 960 544v64a96 96 0 0 1-51.968 85.312L855.36 833.6a96 96 0 0 1-89.856 62.272H258.496A96 96 0 0 1 168.64 833.6l-52.608-140.224A96 96 0 0 1 64 608v-64a96 96 0 0 1 64-90.56V448a384 384 0 1 1 768 5.44M832 448a320 320 0 0 0-640 0zM512 704H188.352l40.192 107.136a32 32 0 0 0 29.952 20.736h507.008a32 32 0 0 0 29.952-20.736L835.648 704z"})]))}}),Vo=Eo,Bo=p({name:"Calendar",__name:"calendar",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 384v512h768V192H768v32a32 32 0 1 1-64 0v-32H320v32a32 32 0 0 1-64 0v-32H128v128h768v64zm192-256h384V96a32 32 0 1 1 64 0v32h160a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h160V96a32 32 0 0 1 64 0zm-32 384h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64m0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64m192-192h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64m0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64m192-192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64m0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64"})]))}}),Ao=Bo,Lo=p({name:"CameraFilled",__name:"camera-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 224a64 64 0 0 0-64 64v512a64 64 0 0 0 64 64h704a64 64 0 0 0 64-64V288a64 64 0 0 0-64-64H748.416l-46.464-92.672A64 64 0 0 0 644.736 96H379.328a64 64 0 0 0-57.216 35.392L275.776 224zm352 435.2a115.2 115.2 0 1 0 0-230.4 115.2 115.2 0 0 0 0 230.4m0 140.8a256 256 0 1 1 0-512 256 256 0 0 1 0 512"})]))}}),So=Lo,Fo=p({name:"Camera",__name:"camera",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M896 256H128v576h768zm-199.424-64-32.064-64h-304.96l-32 64zM96 192h160l46.336-92.608A64 64 0 0 1 359.552 64h304.96a64 64 0 0 1 57.216 35.328L768.192 192H928a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32m416 512a160 160 0 1 0 0-320 160 160 0 0 0 0 320m0 64a224 224 0 1 1 0-448 224 224 0 0 1 0 448"})]))}}),Po=Fo,Do=p({name:"CaretBottom",__name:"caret-bottom",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m192 384 320 384 320-384z"})]))}}),To=Do,Ro=p({name:"CaretLeft",__name:"caret-left",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M672 192 288 511.936 672 832z"})]))}}),Oo=Ro,ko=p({name:"CaretRight",__name:"caret-right",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M384 192v640l384-320.064z"})]))}}),Io=ko,No=p({name:"CaretTop",__name:"caret-top",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 320 192 704h639.936z"})]))}}),$o=No,qo=p({name:"Cellphone",__name:"cellphone",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 128a64 64 0 0 0-64 64v640a64 64 0 0 0 64 64h512a64 64 0 0 0 64-64V192a64 64 0 0 0-64-64zm0-64h512a128 128 0 0 1 128 128v640a128 128 0 0 1-128 128H256a128 128 0 0 1-128-128V192A128 128 0 0 1 256 64m128 128h256a32 32 0 1 1 0 64H384a32 32 0 0 1 0-64m128 640a64 64 0 1 1 0-128 64 64 0 0 1 0 128"})]))}}),jo=qo,Ko=p({name:"ChatDotRound",__name:"chat-dot-round",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m174.72 855.68 135.296-45.12 23.68 11.84C388.096 849.536 448.576 864 512 864c211.84 0 384-166.784 384-352S723.84 160 512 160 128 326.784 128 512c0 69.12 24.96 139.264 70.848 199.232l22.08 28.8-46.272 115.584zm-45.248 82.56A32 32 0 0 1 89.6 896l58.368-145.92C94.72 680.32 64 596.864 64 512 64 299.904 256 96 512 96s448 203.904 448 416-192 416-448 416a461.056 461.056 0 0 1-206.912-48.384l-175.616 58.56z"}),o("path",{fill:"currentColor",d:"M512 563.2a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4m192 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4m-384 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4"})]))}}),Uo=Ko,Wo=p({name:"ChatDotSquare",__name:"chat-dot-square",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64v570.88zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128z"}),o("path",{fill:"currentColor",d:"M512 499.2a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4zm192 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4zm-384 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4z"})]))}}),Go=Wo,Jo=p({name:"ChatLineRound",__name:"chat-line-round",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m174.72 855.68 135.296-45.12 23.68 11.84C388.096 849.536 448.576 864 512 864c211.84 0 384-166.784 384-352S723.84 160 512 160 128 326.784 128 512c0 69.12 24.96 139.264 70.848 199.232l22.08 28.8-46.272 115.584zm-45.248 82.56A32 32 0 0 1 89.6 896l58.368-145.92C94.72 680.32 64 596.864 64 512 64 299.904 256 96 512 96s448 203.904 448 416-192 416-448 416a461.056 461.056 0 0 1-206.912-48.384l-175.616 58.56z"}),o("path",{fill:"currentColor",d:"M352 576h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32m32-192h256q32 0 32 32t-32 32H384q-32 0-32-32t32-32"})]))}}),Zo=Jo,Yo=p({name:"ChatLineSquare",__name:"chat-line-square",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 826.88 273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128z"}),o("path",{fill:"currentColor",d:"M352 512h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32m0-192h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32"})]))}}),Qo=Yo,Xo=p({name:"ChatRound",__name:"chat-round",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m174.72 855.68 130.048-43.392 23.424 11.392C382.4 849.984 444.352 864 512 864c223.744 0 384-159.872 384-352 0-192.832-159.104-352-384-352S128 319.168 128 512a341.12 341.12 0 0 0 69.248 204.288l21.632 28.8-44.16 110.528zm-45.248 82.56A32 32 0 0 1 89.6 896l56.512-141.248A405.12 405.12 0 0 1 64 512C64 299.904 235.648 96 512 96s448 203.904 448 416-173.44 416-448 416c-79.68 0-150.848-17.152-211.712-46.72l-170.88 56.96z"})]))}}),eu=Xo,tu=p({name:"ChatSquare",__name:"chat-square",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64v570.88zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128z"})]))}}),ru=tu,au=p({name:"Check",__name:"check",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M406.656 706.944 195.84 496.256a32 32 0 1 0-45.248 45.248l256 256 512-512a32 32 0 0 0-45.248-45.248L406.592 706.944z"})]))}}),nu=au,lu=p({name:"Checked",__name:"checked",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M704 192h160v736H160V192h160.064v64H704zM311.616 537.28l-45.312 45.248L447.36 763.52l316.8-316.8-45.312-45.184L447.36 673.024zM384 192V96h256v96z"})]))}}),su=lu,ou=p({name:"Cherry",__name:"cherry",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M261.056 449.6c13.824-69.696 34.88-128.96 63.36-177.728 23.744-40.832 61.12-88.64 112.256-143.872H320a32 32 0 0 1 0-64h384a32 32 0 1 1 0 64H554.752c14.912 39.168 41.344 86.592 79.552 141.76 47.36 68.48 84.8 106.752 106.304 114.304a224 224 0 1 1-84.992 14.784c-22.656-22.912-47.04-53.76-73.92-92.608-38.848-56.128-67.008-105.792-84.352-149.312-55.296 58.24-94.528 107.52-117.76 147.2-23.168 39.744-41.088 88.768-53.568 147.072a224.064 224.064 0 1 1-64.96-1.6zM288 832a160 160 0 1 0 0-320 160 160 0 0 0 0 320m448-64a160 160 0 1 0 0-320 160 160 0 0 0 0 320"})]))}}),uu=ou,cu=p({name:"Chicken",__name:"chicken",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M349.952 716.992 478.72 588.16a106.688 106.688 0 0 1-26.176-19.072 106.688 106.688 0 0 1-19.072-26.176L304.704 671.744c.768 3.072 1.472 6.144 2.048 9.216l2.048 31.936 31.872 1.984c3.136.64 6.208 1.28 9.28 2.112zm57.344 33.152a128 128 0 1 1-216.32 114.432l-1.92-32-32-1.92a128 128 0 1 1 114.432-216.32L416.64 469.248c-2.432-101.44 58.112-239.104 149.056-330.048 107.328-107.328 231.296-85.504 316.8 0 85.44 85.44 107.328 209.408 0 316.8-91.008 90.88-228.672 151.424-330.112 149.056L407.296 750.08zm90.496-226.304c49.536 49.536 233.344-7.04 339.392-113.088 78.208-78.208 63.232-163.072 0-226.304-63.168-63.232-148.032-78.208-226.24 0C504.896 290.496 448.32 474.368 497.792 523.84M244.864 708.928a64 64 0 1 0-59.84 59.84l56.32-3.52zm8.064 127.68a64 64 0 1 0 59.84-59.84l-56.32 3.52-3.52 56.32z"})]))}}),iu=cu,_u=p({name:"ChromeFilled",__name:"chrome-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M938.67 512.01c0-44.59-6.82-87.6-19.54-128H682.67a212.372 212.372 0 0 1 42.67 128c.06 38.71-10.45 76.7-30.42 109.87l-182.91 316.8c235.65-.01 426.66-191.02 426.66-426.67z"}),o("path",{fill:"currentColor",d:"M576.79 401.63a127.92 127.92 0 0 0-63.56-17.6c-22.36-.22-44.39 5.43-63.89 16.38s-35.79 26.82-47.25 46.02a128.005 128.005 0 0 0-2.16 127.44l1.24 2.13a127.906 127.906 0 0 0 46.36 46.61 127.907 127.907 0 0 0 63.38 17.44c22.29.2 44.24-5.43 63.68-16.33a127.94 127.94 0 0 0 47.16-45.79v-.01l1.11-1.92a127.984 127.984 0 0 0 .29-127.46 127.957 127.957 0 0 0-46.36-46.91"}),o("path",{fill:"currentColor",d:"M394.45 333.96A213.336 213.336 0 0 1 512 298.67h369.58A426.503 426.503 0 0 0 512 85.34a425.598 425.598 0 0 0-171.74 35.98 425.644 425.644 0 0 0-142.62 102.22l118.14 204.63a213.397 213.397 0 0 1 78.67-94.21m117.56 604.72H512zm-97.25-236.73a213.284 213.284 0 0 1-89.54-86.81L142.48 298.6c-36.35 62.81-57.13 135.68-57.13 213.42 0 203.81 142.93 374.22 333.95 416.55h.04l118.19-204.71a213.315 213.315 0 0 1-122.77-21.91z"})]))}}),pu=_u,hu=p({name:"CircleCheckFilled",__name:"circle-check-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m-55.808 536.384-99.52-99.584a38.4 38.4 0 1 0-54.336 54.336l126.72 126.72a38.272 38.272 0 0 0 54.336 0l262.4-262.464a38.4 38.4 0 1 0-54.272-54.336z"})]))}}),fu=hu,vu=p({name:"CircleCheck",__name:"circle-check",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"}),o("path",{fill:"currentColor",d:"M745.344 361.344a32 32 0 0 1 45.312 45.312l-288 288a32 32 0 0 1-45.312 0l-160-160a32 32 0 1 1 45.312-45.312L480 626.752l265.344-265.408z"})]))}}),du=vu,mu=p({name:"CircleCloseFilled",__name:"circle-close-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 393.664L407.936 353.6a38.4 38.4 0 1 0-54.336 54.336L457.664 512 353.6 616.064a38.4 38.4 0 1 0 54.336 54.336L512 566.336 616.064 670.4a38.4 38.4 0 1 0 54.336-54.336L566.336 512 670.4 407.936a38.4 38.4 0 1 0-54.336-54.336z"})]))}}),gu=mu,wu=p({name:"CircleClose",__name:"circle-close",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m466.752 512-90.496-90.496a32 32 0 0 1 45.248-45.248L512 466.752l90.496-90.496a32 32 0 1 1 45.248 45.248L557.248 512l90.496 90.496a32 32 0 1 1-45.248 45.248L512 557.248l-90.496 90.496a32 32 0 0 1-45.248-45.248z"}),o("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"})]))}}),xu=wu,yu=p({name:"CirclePlusFilled",__name:"circle-plus-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m-38.4 409.6H326.4a38.4 38.4 0 1 0 0 76.8h147.2v147.2a38.4 38.4 0 0 0 76.8 0V550.4h147.2a38.4 38.4 0 0 0 0-76.8H550.4V326.4a38.4 38.4 0 1 0-76.8 0v147.2z"})]))}}),Cu=yu,zu=p({name:"CirclePlus",__name:"circle-plus",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M352 480h320a32 32 0 1 1 0 64H352a32 32 0 0 1 0-64"}),o("path",{fill:"currentColor",d:"M480 672V352a32 32 0 1 1 64 0v320a32 32 0 0 1-64 0"}),o("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"})]))}}),Mu=zu,bu=p({name:"Clock",__name:"clock",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"}),o("path",{fill:"currentColor",d:"M480 256a32 32 0 0 1 32 32v256a32 32 0 0 1-64 0V288a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M480 512h256q32 0 32 32t-32 32H480q-32 0-32-32t32-32"})]))}}),Hu=bu,Eu=p({name:"CloseBold",__name:"close-bold",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M195.2 195.2a64 64 0 0 1 90.496 0L512 421.504 738.304 195.2a64 64 0 0 1 90.496 90.496L602.496 512 828.8 738.304a64 64 0 0 1-90.496 90.496L512 602.496 285.696 828.8a64 64 0 0 1-90.496-90.496L421.504 512 195.2 285.696a64 64 0 0 1 0-90.496z"})]))}}),Vu=Eu,Bu=p({name:"Close",__name:"close",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M764.288 214.592 512 466.88 259.712 214.592a31.936 31.936 0 0 0-45.12 45.12L466.752 512 214.528 764.224a31.936 31.936 0 1 0 45.12 45.184L512 557.184l252.288 252.288a31.936 31.936 0 0 0 45.12-45.12L557.12 512.064l252.288-252.352a31.936 31.936 0 1 0-45.12-45.184z"})]))}}),Au=Bu,Lu=p({name:"Cloudy",__name:"cloudy",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M598.4 831.872H328.192a256 256 0 0 1-34.496-510.528A352 352 0 1 1 598.4 831.872m-271.36-64h272.256a288 288 0 1 0-248.512-417.664L335.04 381.44l-34.816 3.584a192 192 0 0 0 26.88 382.848z"})]))}}),Su=Lu,Fu=p({name:"CoffeeCup",__name:"coffee-cup",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M768 192a192 192 0 1 1-8 383.808A256.128 256.128 0 0 1 512 768H320A256 256 0 0 1 64 512V160a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32zm0 64v256a128 128 0 1 0 0-256M96 832h640a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64m32-640v320a192 192 0 0 0 192 192h192a192 192 0 0 0 192-192V192z"})]))}}),Pu=Fu,Du=p({name:"Coffee",__name:"coffee",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M822.592 192h14.272a32 32 0 0 1 31.616 26.752l21.312 128A32 32 0 0 1 858.24 384h-49.344l-39.04 546.304A32 32 0 0 1 737.92 960H285.824a32 32 0 0 1-32-29.696L214.912 384H165.76a32 32 0 0 1-31.552-37.248l21.312-128A32 32 0 0 1 187.136 192h14.016l-6.72-93.696A32 32 0 0 1 226.368 64h571.008a32 32 0 0 1 31.936 34.304zm-64.128 0 4.544-64H260.736l4.544 64h493.184m-548.16 128H820.48l-10.688-64H214.208l-10.688 64h6.784m68.736 64 36.544 512H708.16l36.544-512z"})]))}}),Tu=Du,Ru=p({name:"Coin",__name:"coin",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m161.92 580.736 29.888 58.88C171.328 659.776 160 681.728 160 704c0 82.304 155.328 160 352 160s352-77.696 352-160c0-22.272-11.392-44.16-31.808-64.32l30.464-58.432C903.936 615.808 928 657.664 928 704c0 129.728-188.544 224-416 224S96 833.728 96 704c0-46.592 24.32-88.576 65.92-123.264z"}),o("path",{fill:"currentColor",d:"m161.92 388.736 29.888 58.88C171.328 467.84 160 489.792 160 512c0 82.304 155.328 160 352 160s352-77.696 352-160c0-22.272-11.392-44.16-31.808-64.32l30.464-58.432C903.936 423.808 928 465.664 928 512c0 129.728-188.544 224-416 224S96 641.728 96 512c0-46.592 24.32-88.576 65.92-123.264z"}),o("path",{fill:"currentColor",d:"M512 544c-227.456 0-416-94.272-416-224S284.544 96 512 96s416 94.272 416 224-188.544 224-416 224m0-64c196.672 0 352-77.696 352-160S708.672 160 512 160s-352 77.696-352 160 155.328 160 352 160"})]))}}),Ou=Ru,ku=p({name:"ColdDrink",__name:"cold-drink",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M768 64a192 192 0 1 1-69.952 370.88L480 725.376V896h96a32 32 0 1 1 0 64H320a32 32 0 1 1 0-64h96V725.376L76.8 273.536a64 64 0 0 1-12.8-38.4v-10.688a32 32 0 0 1 32-32h71.808l-65.536-83.84a32 32 0 0 1 50.432-39.424l96.256 123.264h337.728A192.064 192.064 0 0 1 768 64M656.896 192.448H800a32 32 0 0 1 32 32v10.624a64 64 0 0 1-12.8 38.4l-80.448 107.2a128 128 0 1 0-81.92-188.16v-.064zm-357.888 64 129.472 165.76a32 32 0 0 1-50.432 39.36l-160.256-205.12H144l304 404.928 304-404.928z"})]))}}),Iu=ku,Nu=p({name:"CollectionTag",__name:"collection-tag",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 128v698.88l196.032-156.864a96 96 0 0 1 119.936 0L768 826.816V128zm-32-64h576a32 32 0 0 1 32 32v797.44a32 32 0 0 1-51.968 24.96L531.968 720a32 32 0 0 0-39.936 0L243.968 918.4A32 32 0 0 1 192 893.44V96a32 32 0 0 1 32-32"})]))}}),$u=Nu,qu=p({name:"Collection",__name:"collection",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M192 736h640V128H256a64 64 0 0 0-64 64zm64-672h608a32 32 0 0 1 32 32v672a32 32 0 0 1-32 32H160l-32 57.536V192A128 128 0 0 1 256 64"}),o("path",{fill:"currentColor",d:"M240 800a48 48 0 1 0 0 96h592v-96zm0-64h656v160a64 64 0 0 1-64 64H240a112 112 0 0 1 0-224m144-608v250.88l96-76.8 96 76.8V128zm-64-64h320v381.44a32 32 0 0 1-51.968 24.96L480 384l-108.032 86.4A32 32 0 0 1 320 445.44z"})]))}}),ju=qu,Ku=p({name:"Comment",__name:"comment",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M736 504a56 56 0 1 1 0-112 56 56 0 0 1 0 112m-224 0a56 56 0 1 1 0-112 56 56 0 0 1 0 112m-224 0a56 56 0 1 1 0-112 56 56 0 0 1 0 112M128 128v640h192v160l224-160h352V128z"})]))}}),Uu=Ku,Wu=p({name:"Compass",__name:"compass",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"}),o("path",{fill:"currentColor",d:"M725.888 315.008C676.48 428.672 624 513.28 568.576 568.64c-55.424 55.424-139.968 107.904-253.568 157.312a12.8 12.8 0 0 1-16.896-16.832c49.536-113.728 102.016-198.272 157.312-253.632 55.36-55.296 139.904-107.776 253.632-157.312a12.8 12.8 0 0 1 16.832 16.832"})]))}}),Gu=Wu,Ju=p({name:"Connection",__name:"connection",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M640 384v64H448a128 128 0 0 0-128 128v128a128 128 0 0 0 128 128h320a128 128 0 0 0 128-128V576a128 128 0 0 0-64-110.848V394.88c74.56 26.368 128 97.472 128 181.056v128a192 192 0 0 1-192 192H448a192 192 0 0 1-192-192V576a192 192 0 0 1 192-192z"}),o("path",{fill:"currentColor",d:"M384 640v-64h192a128 128 0 0 0 128-128V320a128 128 0 0 0-128-128H256a128 128 0 0 0-128 128v128a128 128 0 0 0 64 110.848v70.272A192.064 192.064 0 0 1 64 448V320a192 192 0 0 1 192-192h320a192 192 0 0 1 192 192v128a192 192 0 0 1-192 192z"})]))}}),Zu=Ju,Yu=p({name:"Coordinate",__name:"coordinate",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M480 512h64v320h-64z"}),o("path",{fill:"currentColor",d:"M192 896h640a64 64 0 0 0-64-64H256a64 64 0 0 0-64 64m64-128h512a128 128 0 0 1 128 128v64H128v-64a128 128 0 0 1 128-128m256-256a192 192 0 1 0 0-384 192 192 0 0 0 0 384m0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512"})]))}}),Qu=Yu,Xu=p({name:"CopyDocument",__name:"copy-document",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M768 832a128 128 0 0 1-128 128H192A128 128 0 0 1 64 832V384a128 128 0 0 1 128-128v64a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64z"}),o("path",{fill:"currentColor",d:"M384 128a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64V192a64 64 0 0 0-64-64zm0-64h448a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H384a128 128 0 0 1-128-128V192A128 128 0 0 1 384 64"})]))}}),ec=Xu,tc=p({name:"Cpu",__name:"cpu",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M320 256a64 64 0 0 0-64 64v384a64 64 0 0 0 64 64h384a64 64 0 0 0 64-64V320a64 64 0 0 0-64-64zm0-64h384a128 128 0 0 1 128 128v384a128 128 0 0 1-128 128H320a128 128 0 0 1-128-128V320a128 128 0 0 1 128-128"}),o("path",{fill:"currentColor",d:"M512 64a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32m160 0a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32m-320 0a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32m160 896a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32m160 0a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32m-320 0a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32M64 512a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32m0-160a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32m0 320a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32m896-160a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32m0-160a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32m0 320a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32"})]))}}),rc=tc,ac=p({name:"CreditCard",__name:"credit-card",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M896 324.096c0-42.368-2.496-55.296-9.536-68.48a52.352 52.352 0 0 0-22.144-22.08c-13.12-7.04-26.048-9.536-68.416-9.536H228.096c-42.368 0-55.296 2.496-68.48 9.536a52.352 52.352 0 0 0-22.08 22.144c-7.04 13.12-9.536 26.048-9.536 68.416v375.808c0 42.368 2.496 55.296 9.536 68.48a52.352 52.352 0 0 0 22.144 22.08c13.12 7.04 26.048 9.536 68.416 9.536h567.808c42.368 0 55.296-2.496 68.48-9.536a52.352 52.352 0 0 0 22.08-22.144c7.04-13.12 9.536-26.048 9.536-68.416zm64 0v375.808c0 57.088-5.952 77.76-17.088 98.56-11.136 20.928-27.52 37.312-48.384 48.448-20.864 11.136-41.6 17.088-98.56 17.088H228.032c-57.088 0-77.76-5.952-98.56-17.088a116.288 116.288 0 0 1-48.448-48.384c-11.136-20.864-17.088-41.6-17.088-98.56V324.032c0-57.088 5.952-77.76 17.088-98.56 11.136-20.928 27.52-37.312 48.384-48.448 20.864-11.136 41.6-17.088 98.56-17.088H795.84c57.088 0 77.76 5.952 98.56 17.088 20.928 11.136 37.312 27.52 48.448 48.384 11.136 20.864 17.088 41.6 17.088 98.56z"}),o("path",{fill:"currentColor",d:"M64 320h896v64H64zm0 128h896v64H64zm128 192h256v64H192z"})]))}}),nc=ac,lc=p({name:"Crop",__name:"crop",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 768h672a32 32 0 1 1 0 64H224a32 32 0 0 1-32-32V96a32 32 0 0 1 64 0z"}),o("path",{fill:"currentColor",d:"M832 224v704a32 32 0 1 1-64 0V256H96a32 32 0 0 1 0-64h704a32 32 0 0 1 32 32"})]))}}),sc=lc,oc=p({name:"DArrowLeft",__name:"d-arrow-left",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M529.408 149.376a29.12 29.12 0 0 1 41.728 0 30.592 30.592 0 0 1 0 42.688L259.264 511.936l311.872 319.936a30.592 30.592 0 0 1-.512 43.264 29.12 29.12 0 0 1-41.216-.512L197.76 534.272a32 32 0 0 1 0-44.672l331.648-340.224zm256 0a29.12 29.12 0 0 1 41.728 0 30.592 30.592 0 0 1 0 42.688L515.264 511.936l311.872 319.936a30.592 30.592 0 0 1-.512 43.264 29.12 29.12 0 0 1-41.216-.512L453.76 534.272a32 32 0 0 1 0-44.672l331.648-340.224z"})]))}}),uc=oc,cc=p({name:"DArrowRight",__name:"d-arrow-right",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M452.864 149.312a29.12 29.12 0 0 1 41.728.064L826.24 489.664a32 32 0 0 1 0 44.672L494.592 874.624a29.12 29.12 0 0 1-41.728 0 30.592 30.592 0 0 1 0-42.752L764.736 512 452.864 192a30.592 30.592 0 0 1 0-42.688m-256 0a29.12 29.12 0 0 1 41.728.064L570.24 489.664a32 32 0 0 1 0 44.672L238.592 874.624a29.12 29.12 0 0 1-41.728 0 30.592 30.592 0 0 1 0-42.752L508.736 512 196.864 192a30.592 30.592 0 0 1 0-42.688z"})]))}}),ic=cc,_c=p({name:"DCaret",__name:"d-caret",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m512 128 288 320H224zM224 576h576L512 896z"})]))}}),pc=_c,hc=p({name:"DataAnalysis",__name:"data-analysis",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m665.216 768 110.848 192h-73.856L591.36 768H433.024L322.176 960H248.32l110.848-192H160a32 32 0 0 1-32-32V192H64a32 32 0 0 1 0-64h896a32 32 0 1 1 0 64h-64v544a32 32 0 0 1-32 32zM832 192H192v512h640zM352 448a32 32 0 0 1 32 32v64a32 32 0 0 1-64 0v-64a32 32 0 0 1 32-32m160-64a32 32 0 0 1 32 32v128a32 32 0 0 1-64 0V416a32 32 0 0 1 32-32m160-64a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V352a32 32 0 0 1 32-32"})]))}}),fc=hc,vc=p({name:"DataBoard",__name:"data-board",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M32 128h960v64H32z"}),o("path",{fill:"currentColor",d:"M192 192v512h640V192zm-64-64h768v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32z"}),o("path",{fill:"currentColor",d:"M322.176 960H248.32l144.64-250.56 55.424 32zm453.888 0h-73.856L576 741.44l55.424-32z"})]))}}),dc=vc,mc=p({name:"DataLine",__name:"data-line",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M359.168 768H160a32 32 0 0 1-32-32V192H64a32 32 0 0 1 0-64h896a32 32 0 1 1 0 64h-64v544a32 32 0 0 1-32 32H665.216l110.848 192h-73.856L591.36 768H433.024L322.176 960H248.32zM832 192H192v512h640zM342.656 534.656a32 32 0 1 1-45.312-45.312L444.992 341.76l125.44 94.08L679.04 300.032a32 32 0 1 1 49.92 39.936L581.632 524.224 451.008 426.24 342.656 534.592z"})]))}}),gc=mc,wc=p({name:"DeleteFilled",__name:"delete-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M352 192V95.936a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V192h256a32 32 0 1 1 0 64H96a32 32 0 0 1 0-64zm64 0h192v-64H416zM192 960a32 32 0 0 1-32-32V256h704v672a32 32 0 0 1-32 32zm224-192a32 32 0 0 0 32-32V416a32 32 0 0 0-64 0v320a32 32 0 0 0 32 32m192 0a32 32 0 0 0 32-32V416a32 32 0 0 0-64 0v320a32 32 0 0 0 32 32"})]))}}),xc=wc,yc=p({name:"DeleteLocation",__name:"delete-location",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32"}),o("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416M512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544"}),o("path",{fill:"currentColor",d:"M384 384h256q32 0 32 32t-32 32H384q-32 0-32-32t32-32"})]))}}),Cc=yc,zc=p({name:"Delete",__name:"delete",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 256H96a32 32 0 0 1 0-64h256V95.936a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V192h256a32 32 0 1 1 0 64h-64v672a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32zm448-64v-64H416v64zM224 896h576V256H224zm192-128a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32m192 0a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32"})]))}}),Mc=zc,bc=p({name:"Dessert",__name:"dessert",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 416v-48a144 144 0 0 1 168.64-141.888 224.128 224.128 0 0 1 430.72 0A144 144 0 0 1 896 368v48a384 384 0 0 1-352 382.72V896h-64v-97.28A384 384 0 0 1 128 416m287.104-32.064h193.792a143.808 143.808 0 0 1 58.88-132.736 160.064 160.064 0 0 0-311.552 0 143.808 143.808 0 0 1 58.88 132.8zm-72.896 0a72 72 0 1 0-140.48 0h140.48m339.584 0h140.416a72 72 0 1 0-140.48 0zM512 736a320 320 0 0 0 318.4-288.064H193.6A320 320 0 0 0 512 736M384 896.064h256a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64"})]))}}),Hc=bc,Ec=p({name:"Discount",__name:"discount",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M224 704h576V318.336L552.512 115.84a64 64 0 0 0-81.024 0L224 318.336zm0 64v128h576V768zM593.024 66.304l259.2 212.096A32 32 0 0 1 864 303.168V928a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V303.168a32 32 0 0 1 11.712-24.768l259.2-212.096a128 128 0 0 1 162.112 0"}),o("path",{fill:"currentColor",d:"M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"})]))}}),Vc=Ec,Bc=p({name:"DishDot",__name:"dish-dot",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m384.064 274.56.064-50.688A128 128 0 0 1 512.128 96c70.528 0 127.68 57.152 127.68 127.68v50.752A448.192 448.192 0 0 1 955.392 768H68.544A448.192 448.192 0 0 1 384 274.56zM96 832h832a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64m32-128h768a384 384 0 1 0-768 0m447.808-448v-32.32a63.68 63.68 0 0 0-63.68-63.68 64 64 0 0 0-64 63.936V256z"})]))}}),Ac=Bc,Lc=p({name:"Dish",__name:"dish",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M480 257.152V192h-96a32 32 0 0 1 0-64h256a32 32 0 1 1 0 64h-96v65.152A448 448 0 0 1 955.52 768H68.48A448 448 0 0 1 480 257.152M128 704h768a384 384 0 1 0-768 0M96 832h832a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64"})]))}}),Sc=Lc,Fc=p({name:"DocumentAdd",__name:"document-add",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M832 384H576V128H192v768h640zm-26.496-64L640 154.496V320zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m320 512V448h64v128h128v64H544v128h-64V640H352v-64z"})]))}}),Pc=Fc,Dc=p({name:"DocumentChecked",__name:"document-checked",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M805.504 320 640 154.496V320zM832 384H576V128H192v768h640zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m318.4 582.144 180.992-180.992L704.64 510.4 478.4 736.64 320 578.304l45.248-45.312z"})]))}}),Tc=Dc,Rc=p({name:"DocumentCopy",__name:"document-copy",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 320v576h576V320zm-32-64h640a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32M960 96v704a32 32 0 0 1-32 32h-96v-64h64V128H384v64h-64V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32M256 672h320v64H256zm0-192h320v64H256z"})]))}}),Oc=Rc,kc=p({name:"DocumentDelete",__name:"document-delete",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M805.504 320 640 154.496V320zM832 384H576V128H192v768h640zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m308.992 546.304-90.496-90.624 45.248-45.248 90.56 90.496 90.496-90.432 45.248 45.248-90.496 90.56 90.496 90.496-45.248 45.248-90.496-90.496-90.56 90.496-45.248-45.248 90.496-90.496z"})]))}}),Ic=kc,Nc=p({name:"DocumentRemove",__name:"document-remove",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M805.504 320 640 154.496V320zM832 384H576V128H192v768h640zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m192 512h320v64H352z"})]))}}),$c=Nc,qc=p({name:"Document",__name:"document",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M832 384H576V128H192v768h640zm-26.496-64L640 154.496V320zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m160 448h384v64H320zm0-192h160v64H320zm0 384h384v64H320z"})]))}}),jc=qc,Kc=p({name:"Download",__name:"download",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 832h704a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64m384-253.696 236.288-236.352 45.248 45.248L508.8 704 192 387.2l45.248-45.248L480 584.704V128h64z"})]))}}),Uc=Kc,Wc=p({name:"Drizzling",__name:"drizzling",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m739.328 291.328-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 97.28 78.72 175.936 175.808 175.936h400a192 192 0 0 0 35.776-380.672zM959.552 480a256 256 0 0 1-256 256h-400A239.808 239.808 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 959.552 480M288 800h64v64h-64zm192 0h64v64h-64zm-96 96h64v64h-64zm192 0h64v64h-64zm96-96h64v64h-64z"})]))}}),Gc=Wc,Jc=p({name:"EditPen",__name:"edit-pen",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m199.04 672.64 193.984 112 224-387.968-193.92-112-224 388.032zm-23.872 60.16 32.896 148.288 144.896-45.696zM455.04 229.248l193.92 112 56.704-98.112-193.984-112-56.64 98.112zM104.32 708.8l384-665.024 304.768 175.936L409.152 884.8h.064l-248.448 78.336zm384 254.272v-64h448v64h-448z"})]))}}),Zc=Jc,Yc=p({name:"Edit",__name:"edit",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M832 512a32 32 0 1 1 64 0v352a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h352a32 32 0 0 1 0 64H192v640h640z"}),o("path",{fill:"currentColor",d:"m469.952 554.24 52.8-7.552L847.104 222.4a32 32 0 1 0-45.248-45.248L477.44 501.44l-7.552 52.8zm422.4-422.4a96 96 0 0 1 0 135.808l-331.84 331.84a32 32 0 0 1-18.112 9.088L436.8 623.68a32 32 0 0 1-36.224-36.224l15.104-105.6a32 32 0 0 1 9.024-18.112l331.904-331.84a96 96 0 0 1 135.744 0z"})]))}}),Qc=Yc,Xc=p({name:"ElemeFilled",__name:"eleme-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M176 64h672c61.824 0 112 50.176 112 112v672a112 112 0 0 1-112 112H176A112 112 0 0 1 64 848V176c0-61.824 50.176-112 112-112m150.528 173.568c-152.896 99.968-196.544 304.064-97.408 456.96a330.688 330.688 0 0 0 456.96 96.64c9.216-5.888 17.6-11.776 25.152-18.56a18.24 18.24 0 0 0 4.224-24.32L700.352 724.8a47.552 47.552 0 0 0-65.536-14.272A234.56 234.56 0 0 1 310.592 641.6C240 533.248 271.104 387.968 379.456 316.48a234.304 234.304 0 0 1 276.352 15.168c1.664.832 2.56 2.56 3.392 4.224 5.888 8.384 3.328 19.328-5.12 25.216L456.832 489.6a47.552 47.552 0 0 0-14.336 65.472l16 24.384c5.888 8.384 16.768 10.88 25.216 5.056l308.224-199.936a19.584 19.584 0 0 0 6.72-23.488v-.896c-4.992-9.216-10.048-17.6-15.104-26.88-99.968-151.168-304.064-194.88-456.96-95.744zM786.88 504.704l-62.208 40.32c-8.32 5.888-10.88 16.768-4.992 25.216L760 632.32c5.888 8.448 16.768 11.008 25.152 5.12l31.104-20.16a55.36 55.36 0 0 0 16-76.48l-20.224-31.04a19.52 19.52 0 0 0-25.152-5.12z"})]))}}),ei=Xc,ti=p({name:"Eleme",__name:"eleme",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M300.032 188.8c174.72-113.28 408-63.36 522.24 109.44 5.76 10.56 11.52 20.16 17.28 30.72v.96a22.4 22.4 0 0 1-7.68 26.88l-352.32 228.48c-9.6 6.72-22.08 3.84-28.8-5.76l-18.24-27.84a54.336 54.336 0 0 1 16.32-74.88l225.6-146.88c9.6-6.72 12.48-19.2 5.76-28.8-.96-1.92-1.92-3.84-3.84-4.8a267.84 267.84 0 0 0-315.84-17.28c-123.84 81.6-159.36 247.68-78.72 371.52a268.096 268.096 0 0 0 370.56 78.72 54.336 54.336 0 0 1 74.88 16.32l17.28 26.88c5.76 9.6 3.84 21.12-4.8 27.84-8.64 7.68-18.24 14.4-28.8 21.12a377.92 377.92 0 0 1-522.24-110.4c-113.28-174.72-63.36-408 111.36-522.24zm526.08 305.28a22.336 22.336 0 0 1 28.8 5.76l23.04 35.52a63.232 63.232 0 0 1-18.24 87.36l-35.52 23.04c-9.6 6.72-22.08 3.84-28.8-5.76l-46.08-71.04c-6.72-9.6-3.84-22.08 5.76-28.8l71.04-46.08z"})]))}}),ri=ti,ai=p({name:"ElementPlus",__name:"element-plus",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M839.7 734.7c0 33.3-17.9 41-17.9 41S519.7 949.8 499.2 960c-10.2 5.1-20.5 5.1-30.7 0 0 0-314.9-184.3-325.1-192-5.1-5.1-10.2-12.8-12.8-20.5V368.6c0-17.9 20.5-28.2 20.5-28.2L466 158.6c12.8-5.1 25.6-5.1 38.4 0 0 0 279 161.3 309.8 179.2 17.9 7.7 28.2 25.6 25.6 46.1-.1-5-.1 317.5-.1 350.8M714.2 371.2c-64-35.8-217.6-125.4-217.6-125.4-7.7-5.1-20.5-5.1-30.7 0L217.6 389.1s-17.9 10.2-17.9 23v297c0 5.1 5.1 12.8 7.7 17.9 7.7 5.1 256 148.5 256 148.5 7.7 5.1 17.9 5.1 25.6 0 15.4-7.7 250.9-145.9 250.9-145.9s12.8-5.1 12.8-30.7v-74.2l-276.5 169v-64c0-17.9 7.7-30.7 20.5-46.1L745 535c5.1-7.7 10.2-20.5 10.2-30.7v-66.6l-279 169v-69.1c0-15.4 5.1-30.7 17.9-38.4l220.1-128zM919 135.7c0-5.1-5.1-7.7-7.7-7.7h-58.9V66.6c0-5.1-5.1-5.1-10.2-5.1l-30.7 5.1c-5.1 0-5.1 2.6-5.1 5.1V128h-56.3c-5.1 0-5.1 5.1-7.7 5.1v38.4h69.1v64c0 5.1 5.1 5.1 10.2 5.1l30.7-5.1c5.1 0 5.1-2.6 5.1-5.1v-56.3h64l-2.5-38.4z"})]))}}),ni=ai,li=p({name:"Expand",__name:"expand",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 192h768v128H128zm0 256h512v128H128zm0 256h768v128H128zm576-352 192 160-192 128z"})]))}}),si=li,oi=p({name:"Failed",__name:"failed",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m557.248 608 135.744-135.744-45.248-45.248-135.68 135.744-135.808-135.68-45.248 45.184L466.752 608l-135.68 135.68 45.184 45.312L512 653.248l135.744 135.744 45.248-45.248L557.312 608zM704 192h160v736H160V192h160v64h384zm-320 0V96h256v96z"})]))}}),ui=oi,ci=p({name:"Female",__name:"female",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 640a256 256 0 1 0 0-512 256 256 0 0 0 0 512m0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640"}),o("path",{fill:"currentColor",d:"M512 640q32 0 32 32v256q0 32-32 32t-32-32V672q0-32 32-32"}),o("path",{fill:"currentColor",d:"M352 800h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32"})]))}}),ii=ci,_i=p({name:"Files",__name:"files",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 384v448h768V384zm-32-64h832a32 32 0 0 1 32 32v512a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V352a32 32 0 0 1 32-32m64-128h704v64H160zm96-128h512v64H256z"})]))}}),pi=_i,hi=p({name:"Film",__name:"film",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 160v704h704V160zm-32-64h768a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H128a32 32 0 0 1-32-32V128a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M320 288V128h64v352h256V128h64v160h160v64H704v128h160v64H704v128h160v64H704v160h-64V544H384v352h-64V736H128v-64h192V544H128v-64h192V352H128v-64z"})]))}}),fi=hi,vi=p({name:"Filter",__name:"filter",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M384 523.392V928a32 32 0 0 0 46.336 28.608l192-96A32 32 0 0 0 640 832V523.392l280.768-343.104a32 32 0 1 0-49.536-40.576l-288 352A32 32 0 0 0 576 512v300.224l-128 64V512a32 32 0 0 0-7.232-20.288L195.52 192H704a32 32 0 1 0 0-64H128a32 32 0 0 0-24.768 52.288z"})]))}}),di=vi,mi=p({name:"Finished",__name:"finished",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M280.768 753.728 691.456 167.04a32 32 0 1 1 52.416 36.672L314.24 817.472a32 32 0 0 1-45.44 7.296l-230.4-172.8a32 32 0 0 1 38.4-51.2l203.968 152.96zM736 448a32 32 0 1 1 0-64h192a32 32 0 1 1 0 64zM608 640a32 32 0 0 1 0-64h319.936a32 32 0 1 1 0 64zM480 832a32 32 0 1 1 0-64h447.936a32 32 0 1 1 0 64z"})]))}}),gi=mi,wi=p({name:"FirstAidKit",__name:"first-aid-kit",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M192 256a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V320a64 64 0 0 0-64-64zm0-64h640a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H192A128 128 0 0 1 64 768V320a128 128 0 0 1 128-128"}),o("path",{fill:"currentColor",d:"M544 512h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96v-96a32 32 0 0 1 64 0zM352 128v64h320v-64zm-32-64h384a32 32 0 0 1 32 32v128a32 32 0 0 1-32 32H320a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32"})]))}}),xi=wi,yi=p({name:"Flag",__name:"flag",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M288 128h608L736 384l160 256H288v320h-96V64h96z"})]))}}),Ci=yi,zi=p({name:"Fold",__name:"fold",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M896 192H128v128h768zm0 256H384v128h512zm0 256H128v128h768zM320 384 128 512l192 128z"})]))}}),Mi=zi,bi=p({name:"FolderAdd",__name:"folder-add",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32m384 416V416h64v128h128v64H544v128h-64V608H352v-64z"})]))}}),Hi=bi,Ei=p({name:"FolderChecked",__name:"folder-checked",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32m414.08 502.144 180.992-180.992L736.32 494.4 510.08 720.64l-158.4-158.336 45.248-45.312z"})]))}}),Vi=Ei,Bi=p({name:"FolderDelete",__name:"folder-delete",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32m370.752 448-90.496-90.496 45.248-45.248L512 530.752l90.496-90.496 45.248 45.248L557.248 576l90.496 90.496-45.248 45.248L512 621.248l-90.496 90.496-45.248-45.248z"})]))}}),Ai=Bi,Li=p({name:"FolderOpened",__name:"folder-opened",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M878.08 448H241.92l-96 384h636.16l96-384zM832 384v-64H485.76L357.504 192H128v448l57.92-231.744A32 32 0 0 1 216.96 384zm-24.96 512H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h287.872l128.384 128H864a32 32 0 0 1 32 32v96h23.04a32 32 0 0 1 31.04 39.744l-112 448A32 32 0 0 1 807.04 896"})]))}}),Si=Li,Fi=p({name:"FolderRemove",__name:"folder-remove",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32m256 416h320v64H352z"})]))}}),Pi=Fi,Di=p({name:"Folder",__name:"folder",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32"})]))}}),Ti=Di,Ri=p({name:"Food",__name:"food",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 352.576V352a288 288 0 0 1 491.072-204.224 192 192 0 0 1 274.24 204.48 64 64 0 0 1 57.216 74.24C921.6 600.512 850.048 710.656 736 756.992V800a96 96 0 0 1-96 96H384a96 96 0 0 1-96-96v-43.008c-114.048-46.336-185.6-156.48-214.528-330.496A64 64 0 0 1 128 352.64zm64-.576h64a160 160 0 0 1 320 0h64a224 224 0 0 0-448 0m128 0h192a96 96 0 0 0-192 0m439.424 0h68.544A128.256 128.256 0 0 0 704 192c-15.36 0-29.952 2.688-43.52 7.616 11.328 18.176 20.672 37.76 27.84 58.304A64.128 64.128 0 0 1 759.424 352M672 768H352v32a32 32 0 0 0 32 32h256a32 32 0 0 0 32-32zm-342.528-64h365.056c101.504-32.64 165.76-124.928 192.896-288H136.576c27.136 163.072 91.392 255.36 192.896 288"})]))}}),Oi=Ri,ki=p({name:"Football",__name:"football",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896m0-64a384 384 0 1 0 0-768 384 384 0 0 0 0 768"}),o("path",{fill:"currentColor",d:"M186.816 268.288c16-16.384 31.616-31.744 46.976-46.08 17.472 30.656 39.808 58.112 65.984 81.28l-32.512 56.448a385.984 385.984 0 0 1-80.448-91.648zm653.696-5.312a385.92 385.92 0 0 1-83.776 96.96l-32.512-56.384a322.923 322.923 0 0 0 68.48-85.76c15.552 14.08 31.488 29.12 47.808 45.184zM465.984 445.248l11.136-63.104a323.584 323.584 0 0 0 69.76 0l11.136 63.104a387.968 387.968 0 0 1-92.032 0m-62.72-12.8A381.824 381.824 0 0 1 320 396.544l32-55.424a319.885 319.885 0 0 0 62.464 27.712l-11.2 63.488zm300.8-35.84a381.824 381.824 0 0 1-83.328 35.84l-11.2-63.552A319.885 319.885 0 0 0 672 341.184l32 55.424zm-520.768 364.8a385.92 385.92 0 0 1 83.968-97.28l32.512 56.32c-26.88 23.936-49.856 52.352-67.52 84.032-16-13.44-32.32-27.712-48.96-43.072zm657.536.128a1442.759 1442.759 0 0 1-49.024 43.072 321.408 321.408 0 0 0-67.584-84.16l32.512-56.32c33.216 27.456 61.696 60.352 84.096 97.408zM465.92 578.752a387.968 387.968 0 0 1 92.032 0l-11.136 63.104a323.584 323.584 0 0 0-69.76 0zm-62.72 12.8 11.2 63.552a319.885 319.885 0 0 0-62.464 27.712L320 627.392a381.824 381.824 0 0 1 83.264-35.84zm300.8 35.84-32 55.424a318.272 318.272 0 0 0-62.528-27.712l11.2-63.488c29.44 8.64 57.28 20.736 83.264 35.776z"})]))}}),Ii=ki,Ni=p({name:"ForkSpoon",__name:"fork-spoon",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 410.304V96a32 32 0 0 1 64 0v314.304a96 96 0 0 0 64-90.56V96a32 32 0 0 1 64 0v223.744a160 160 0 0 1-128 156.8V928a32 32 0 1 1-64 0V476.544a160 160 0 0 1-128-156.8V96a32 32 0 0 1 64 0v223.744a96 96 0 0 0 64 90.56zM672 572.48C581.184 552.128 512 446.848 512 320c0-141.44 85.952-256 192-256s192 114.56 192 256c0 126.848-69.184 232.128-160 252.48V928a32 32 0 1 1-64 0zM704 512c66.048 0 128-82.56 128-192s-61.952-192-128-192-128 82.56-128 192 61.952 192 128 192"})]))}}),$i=Ni,qi=p({name:"Fries",__name:"fries",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M608 224v-64a32 32 0 0 0-64 0v336h26.88A64 64 0 0 0 608 484.096zm101.12 160A64 64 0 0 0 672 395.904V384h64V224a32 32 0 1 0-64 0v160zm74.88 0a92.928 92.928 0 0 1 91.328 110.08l-60.672 323.584A96 96 0 0 1 720.32 896H303.68a96 96 0 0 1-94.336-78.336L148.672 494.08A92.928 92.928 0 0 1 240 384h-16V224a96 96 0 0 1 188.608-25.28A95.744 95.744 0 0 1 480 197.44V160a96 96 0 0 1 188.608-25.28A96 96 0 0 1 800 224v160zM670.784 512a128 128 0 0 1-99.904 48H453.12a128 128 0 0 1-99.84-48H352v-1.536a128.128 128.128 0 0 1-9.984-14.976L314.88 448H240a28.928 28.928 0 0 0-28.48 34.304L241.088 640h541.824l29.568-157.696A28.928 28.928 0 0 0 784 448h-74.88l-27.136 47.488A132.405 132.405 0 0 1 672 510.464V512zM480 288a32 32 0 0 0-64 0v196.096A64 64 0 0 0 453.12 496H480zm-128 96V224a32 32 0 0 0-64 0v160zh-37.12A64 64 0 0 1 352 395.904zm-98.88 320 19.072 101.888A32 32 0 0 0 303.68 832h416.64a32 32 0 0 0 31.488-26.112L770.88 704z"})]))}}),ji=qi,Ki=p({name:"FullScreen",__name:"full-screen",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m160 96.064 192 .192a32 32 0 0 1 0 64l-192-.192V352a32 32 0 0 1-64 0V96h64zm0 831.872V928H96V672a32 32 0 1 1 64 0v191.936l192-.192a32 32 0 1 1 0 64zM864 96.064V96h64v256a32 32 0 1 1-64 0V160.064l-192 .192a32 32 0 1 1 0-64l192-.192zm0 831.872-192-.192a32 32 0 0 1 0-64l192 .192V672a32 32 0 1 1 64 0v256h-64z"})]))}}),Ui=Ki,Wi=p({name:"GobletFull",__name:"goblet-full",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 320h512c0-78.592-12.608-142.4-36.928-192h-434.24C269.504 192.384 256 256.256 256 320m503.936 64H264.064a256.128 256.128 0 0 0 495.872 0zM544 638.4V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.4A320 320 0 0 1 192 320c0-85.632 21.312-170.944 64-256h512c42.688 64.32 64 149.632 64 256a320 320 0 0 1-288 318.4"})]))}}),Gi=Wi,Ji=p({name:"GobletSquareFull",__name:"goblet-square-full",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 270.912c10.048 6.72 22.464 14.912 28.992 18.624a220.16 220.16 0 0 0 114.752 30.72c30.592 0 49.408-9.472 91.072-41.152l.64-.448c52.928-40.32 82.368-55.04 132.288-54.656 55.552.448 99.584 20.8 142.72 57.408l1.536 1.28V128H256v142.912zm.96 76.288C266.368 482.176 346.88 575.872 512 576c157.44.064 237.952-85.056 253.248-209.984a952.32 952.32 0 0 1-40.192-35.712c-32.704-27.776-63.36-41.92-101.888-42.24-31.552-.256-50.624 9.28-93.12 41.6l-.576.448c-52.096 39.616-81.024 54.208-129.792 54.208-54.784 0-100.48-13.376-142.784-37.056zM480 638.848C250.624 623.424 192 442.496 192 319.68V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v224c0 122.816-58.624 303.68-288 318.912V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96z"})]))}}),Zi=Ji,Yi=p({name:"GobletSquare",__name:"goblet-square",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M544 638.912V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.848C250.624 623.424 192 442.496 192 319.68V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v224c0 122.816-58.624 303.68-288 318.912M256 319.68c0 149.568 80 256.192 256 256.256C688.128 576 768 469.568 768 320V128H256z"})]))}}),Qi=Yi,Xi=p({name:"Goblet",__name:"goblet",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M544 638.4V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.4A320 320 0 0 1 192 320c0-85.632 21.312-170.944 64-256h512c42.688 64.32 64 149.632 64 256a320 320 0 0 1-288 318.4M256 320a256 256 0 1 0 512 0c0-78.592-12.608-142.4-36.928-192h-434.24C269.504 192.384 256 256.256 256 320"})]))}}),e5=Xi,t5=p({name:"GoldMedal",__name:"gold-medal",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m772.13 452.84 53.86-351.81c1.32-10.01-1.17-18.68-7.49-26.02S804.35 64 795.01 64H228.99v-.01h-.06c-9.33 0-17.15 3.67-23.49 11.01s-8.83 16.01-7.49 26.02l53.87 351.89C213.54 505.73 193.59 568.09 192 640c2 90.67 33.17 166.17 93.5 226.5S421.33 957.99 512 960c90.67-2 166.17-33.17 226.5-93.5 60.33-60.34 91.49-135.83 93.5-226.5-1.59-71.94-21.56-134.32-59.87-187.16zM640.01 128h117.02l-39.01 254.02c-20.75-10.64-40.74-19.73-59.94-27.28-5.92-3-11.95-5.8-18.08-8.41V128h.01zM576 128v198.76c-13.18-2.58-26.74-4.43-40.67-5.55-8.07-.8-15.85-1.2-23.33-1.2-10.54 0-21.09.66-31.64 1.96a359.844 359.844 0 0 0-32.36 4.79V128zm-192 0h.04v218.3c-6.22 2.66-12.34 5.5-18.36 8.56-19.13 7.54-39.02 16.6-59.66 27.16L267.01 128zm308.99 692.99c-48 48-108.33 73-180.99 75.01-72.66-2.01-132.99-27.01-180.99-75.01S258.01 712.66 256 640c2.01-72.66 27.01-132.99 75.01-180.99 19.67-19.67 41.41-35.47 65.22-47.41 38.33-15.04 71.15-23.92 98.44-26.65 5.07-.41 10.2-.7 15.39-.88.63-.01 1.28-.03 1.91-.03.66 0 1.35.03 2.02.04 5.11.17 10.15.46 15.13.86 27.4 2.71 60.37 11.65 98.91 26.79 23.71 11.93 45.36 27.69 64.96 47.29 48 48 73 108.33 75.01 180.99-2.01 72.65-27.01 132.98-75.01 180.98z"}),o("path",{fill:"currentColor",d:"M544 480H416v64h64v192h-64v64h192v-64h-64z"})]))}}),r5=t5,a5=p({name:"GoodsFilled",__name:"goods-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M192 352h640l64 544H128zm128 224h64V448h-64zm320 0h64V448h-64zM384 288h-64a192 192 0 1 1 384 0h-64a128 128 0 1 0-256 0"})]))}}),n5=a5,l5=p({name:"Goods",__name:"goods",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M320 288v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4h131.072a32 32 0 0 1 31.808 28.8l57.6 576a32 32 0 0 1-31.808 35.2H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320zm64 0h256v-22.336C640 189.248 582.272 128 512 128c-70.272 0-128 61.248-128 137.664v22.4zm-64 64H217.92l-51.2 512h690.56l-51.264-512H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0z"})]))}}),s5=l5,o5=p({name:"Grape",__name:"grape",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M544 195.2a160 160 0 0 1 96 60.8 160 160 0 1 1 146.24 254.976 160 160 0 0 1-128 224 160 160 0 1 1-292.48 0 160 160 0 0 1-128-224A160 160 0 1 1 384 256a160 160 0 0 1 96-60.8V128h-64a32 32 0 0 1 0-64h192a32 32 0 0 1 0 64h-64zM512 448a96 96 0 1 0 0-192 96 96 0 0 0 0 192m-256 0a96 96 0 1 0 0-192 96 96 0 0 0 0 192m128 224a96 96 0 1 0 0-192 96 96 0 0 0 0 192m128 224a96 96 0 1 0 0-192 96 96 0 0 0 0 192m128-224a96 96 0 1 0 0-192 96 96 0 0 0 0 192m128-224a96 96 0 1 0 0-192 96 96 0 0 0 0 192"})]))}}),u5=o5,c5=p({name:"Grid",__name:"grid",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M640 384v256H384V384zm64 0h192v256H704zm-64 512H384V704h256zm64 0V704h192v192zm-64-768v192H384V128zm64 0h192v192H704zM320 384v256H128V384zm0 512H128V704h192zm0-768v192H128V128z"})]))}}),i5=c5,_5=p({name:"Guide",__name:"guide",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M640 608h-64V416h64zm0 160v160a32 32 0 0 1-32 32H416a32 32 0 0 1-32-32V768h64v128h128V768zM384 608V416h64v192zm256-352h-64V128H448v128h-64V96a32 32 0 0 1 32-32h192a32 32 0 0 1 32 32z"}),o("path",{fill:"currentColor",d:"m220.8 256-71.232 80 71.168 80H768V256H220.8zm-14.4-64H800a32 32 0 0 1 32 32v224a32 32 0 0 1-32 32H206.4a32 32 0 0 1-23.936-10.752l-99.584-112a32 32 0 0 1 0-42.496l99.584-112A32 32 0 0 1 206.4 192m678.784 496-71.104 80H266.816V608h547.2l71.168 80zm-56.768-144H234.88a32 32 0 0 0-32 32v224a32 32 0 0 0 32 32h593.6a32 32 0 0 0 23.936-10.752l99.584-112a32 32 0 0 0 0-42.496l-99.584-112A32 32 0 0 0 828.48 544z"})]))}}),p5=_5,h5=p({name:"Handbag",__name:"handbag",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M887.01 264.99c-6-5.99-13.67-8.99-23.01-8.99H704c-1.34-54.68-20.01-100.01-56-136s-81.32-54.66-136-56c-54.68 1.34-100.01 20.01-136 56s-54.66 81.32-56 136H160c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.67-8.99 23.01v640c0 9.35 2.99 17.02 8.99 23.01S150.66 960 160 960h704c9.35 0 17.02-2.99 23.01-8.99S896 937.34 896 928V288c0-9.35-2.99-17.02-8.99-23.01M421.5 165.5c24.32-24.34 54.49-36.84 90.5-37.5 35.99.68 66.16 13.18 90.5 37.5s36.84 54.49 37.5 90.5H384c.68-35.99 13.18-66.16 37.5-90.5M832 896H192V320h128v128h64V320h256v128h64V320h128z"})]))}}),f5=h5,v5=p({name:"Headset",__name:"headset",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M896 529.152V512a384 384 0 1 0-768 0v17.152A128 128 0 0 1 320 640v128a128 128 0 1 1-256 0V512a448 448 0 1 1 896 0v256a128 128 0 1 1-256 0V640a128 128 0 0 1 192-110.848M896 640a64 64 0 0 0-128 0v128a64 64 0 0 0 128 0zm-768 0v128a64 64 0 0 0 128 0V640a64 64 0 1 0-128 0"})]))}}),d5=v5,m5=p({name:"HelpFilled",__name:"help-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M926.784 480H701.312A192.512 192.512 0 0 0 544 322.688V97.216A416.064 416.064 0 0 1 926.784 480m0 64A416.064 416.064 0 0 1 544 926.784V701.312A192.512 192.512 0 0 0 701.312 544zM97.28 544h225.472A192.512 192.512 0 0 0 480 701.312v225.472A416.064 416.064 0 0 1 97.216 544zm0-64A416.064 416.064 0 0 1 480 97.216v225.472A192.512 192.512 0 0 0 322.688 480H97.216z"})]))}}),g5=m5,w5=p({name:"Help",__name:"help",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m759.936 805.248-90.944-91.008A254.912 254.912 0 0 1 512 768a254.912 254.912 0 0 1-156.992-53.76l-90.944 91.008A382.464 382.464 0 0 0 512 896c94.528 0 181.12-34.176 247.936-90.752m45.312-45.312A382.464 382.464 0 0 0 896 512c0-94.528-34.176-181.12-90.752-247.936l-91.008 90.944C747.904 398.4 768 452.864 768 512c0 59.136-20.096 113.6-53.76 156.992l91.008 90.944zm-45.312-541.184A382.464 382.464 0 0 0 512 128c-94.528 0-181.12 34.176-247.936 90.752l90.944 91.008A254.912 254.912 0 0 1 512 256c59.136 0 113.6 20.096 156.992 53.76l90.944-91.008zm-541.184 45.312A382.464 382.464 0 0 0 128 512c0 94.528 34.176 181.12 90.752 247.936l91.008-90.944A254.912 254.912 0 0 1 256 512c0-59.136 20.096-113.6 53.76-156.992zm417.28 394.496a194.56 194.56 0 0 0 22.528-22.528C686.912 602.56 704 559.232 704 512a191.232 191.232 0 0 0-67.968-146.56A191.296 191.296 0 0 0 512 320a191.232 191.232 0 0 0-146.56 67.968C337.088 421.44 320 464.768 320 512a191.232 191.232 0 0 0 67.968 146.56C421.44 686.912 464.768 704 512 704c47.296 0 90.56-17.088 124.032-45.44zM512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896"})]))}}),x5=w5,y5=p({name:"Hide",__name:"hide",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M876.8 156.8c0-9.6-3.2-16-9.6-22.4-6.4-6.4-12.8-9.6-22.4-9.6-9.6 0-16 3.2-22.4 9.6L736 220.8c-64-32-137.6-51.2-224-60.8-160 16-288 73.6-377.6 176C44.8 438.4 0 496 0 512s48 73.6 134.4 176c22.4 25.6 44.8 48 73.6 67.2l-86.4 89.6c-6.4 6.4-9.6 12.8-9.6 22.4 0 9.6 3.2 16 9.6 22.4 6.4 6.4 12.8 9.6 22.4 9.6 9.6 0 16-3.2 22.4-9.6l704-710.4c3.2-6.4 6.4-12.8 6.4-22.4Zm-646.4 528c-76.8-70.4-128-128-153.6-172.8 28.8-48 80-105.6 153.6-172.8C304 272 400 230.4 512 224c64 3.2 124.8 19.2 176 44.8l-54.4 54.4C598.4 300.8 560 288 512 288c-64 0-115.2 22.4-160 64s-64 96-64 160c0 48 12.8 89.6 35.2 124.8L256 707.2c-9.6-6.4-19.2-16-25.6-22.4Zm140.8-96c-12.8-22.4-19.2-48-19.2-76.8 0-44.8 16-83.2 48-112 32-28.8 67.2-48 112-48 28.8 0 54.4 6.4 73.6 19.2zM889.599 336c-12.8-16-28.8-28.8-41.6-41.6l-48 48c73.6 67.2 124.8 124.8 150.4 169.6-28.8 48-80 105.6-153.6 172.8-73.6 67.2-172.8 108.8-284.8 115.2-51.2-3.2-99.2-12.8-140.8-28.8l-48 48c57.6 22.4 118.4 38.4 188.8 44.8 160-16 288-73.6 377.6-176C979.199 585.6 1024 528 1024 512s-48.001-73.6-134.401-176Z"}),o("path",{fill:"currentColor",d:"M511.998 672c-12.8 0-25.6-3.2-38.4-6.4l-51.2 51.2c28.8 12.8 57.6 19.2 89.6 19.2 64 0 115.2-22.4 160-64 41.6-41.6 64-96 64-160 0-32-6.4-64-19.2-89.6l-51.2 51.2c3.2 12.8 6.4 25.6 6.4 38.4 0 44.8-16 83.2-48 112-32 28.8-67.2 48-112 48Z"})]))}}),C5=y5,z5=p({name:"Histogram",__name:"histogram",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M416 896V128h192v768zm-288 0V448h192v448zm576 0V320h192v576z"})]))}}),M5=z5,b5=p({name:"HomeFilled",__name:"home-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 128 128 447.936V896h255.936V640H640v256h255.936V447.936z"})]))}}),H5=b5,E5=p({name:"HotWater",__name:"hot-water",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M273.067 477.867h477.866V409.6H273.067zm0 68.266v51.2A187.733 187.733 0 0 0 460.8 785.067h102.4a187.733 187.733 0 0 0 187.733-187.734v-51.2H273.067zm-34.134-204.8h546.134a34.133 34.133 0 0 1 34.133 34.134v221.866a256 256 0 0 1-256 256H460.8a256 256 0 0 1-256-256V375.467a34.133 34.133 0 0 1 34.133-34.134zM512 34.133a34.133 34.133 0 0 1 34.133 34.134v170.666a34.133 34.133 0 0 1-68.266 0V68.267A34.133 34.133 0 0 1 512 34.133zM375.467 102.4a34.133 34.133 0 0 1 34.133 34.133v102.4a34.133 34.133 0 0 1-68.267 0v-102.4a34.133 34.133 0 0 1 34.134-34.133m273.066 0a34.133 34.133 0 0 1 34.134 34.133v102.4a34.133 34.133 0 1 1-68.267 0v-102.4a34.133 34.133 0 0 1 34.133-34.133M170.667 921.668h682.666a34.133 34.133 0 1 1 0 68.267H170.667a34.133 34.133 0 1 1 0-68.267z"})]))}}),V5=E5,B5=p({name:"House",__name:"house",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M192 413.952V896h640V413.952L512 147.328zM139.52 374.4l352-293.312a32 32 0 0 1 40.96 0l352 293.312A32 32 0 0 1 896 398.976V928a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V398.976a32 32 0 0 1 11.52-24.576"})]))}}),A5=B5,L5=p({name:"IceCreamRound",__name:"ice-cream-round",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m308.352 489.344 226.304 226.304a32 32 0 0 0 45.248 0L783.552 512A192 192 0 1 0 512 240.448L308.352 444.16a32 32 0 0 0 0 45.248zm135.744 226.304L308.352 851.392a96 96 0 0 1-135.744-135.744l135.744-135.744-45.248-45.248a96 96 0 0 1 0-135.808L466.752 195.2A256 256 0 0 1 828.8 557.248L625.152 760.96a96 96 0 0 1-135.808 0l-45.248-45.248zM398.848 670.4 353.6 625.152 217.856 760.896a32 32 0 0 0 45.248 45.248zm248.96-384.64a32 32 0 0 1 0 45.248L466.624 512a32 32 0 1 1-45.184-45.248l180.992-181.056a32 32 0 0 1 45.248 0zm90.496 90.496a32 32 0 0 1 0 45.248L557.248 602.496A32 32 0 1 1 512 557.248l180.992-180.992a32 32 0 0 1 45.312 0z"})]))}}),S5=L5,F5=p({name:"IceCreamSquare",__name:"ice-cream-square",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M416 640h256a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32H352a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32zm192 64v160a96 96 0 0 1-192 0V704h-64a96 96 0 0 1-96-96V160a96 96 0 0 1 96-96h320a96 96 0 0 1 96 96v448a96 96 0 0 1-96 96zm-64 0h-64v160a32 32 0 1 0 64 0z"})]))}}),P5=F5,D5=p({name:"IceCream",__name:"ice-cream",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128.64 448a208 208 0 0 1 193.536-191.552 224 224 0 0 1 445.248 15.488A208.128 208.128 0 0 1 894.784 448H896L548.8 983.68a32 32 0 0 1-53.248.704L128 448zm64.256 0h286.208a144 144 0 0 0-286.208 0zm351.36 0h286.272a144 144 0 0 0-286.272 0zm-294.848 64 271.808 396.608L778.24 512H249.408zM511.68 352.64a207.872 207.872 0 0 1 189.184-96.192 160 160 0 0 0-314.752 5.632c52.608 12.992 97.28 46.08 125.568 90.56"})]))}}),T5=D5,R5=p({name:"IceDrink",__name:"ice-drink",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 448v128h239.68l16.064-128zm-64 0H256.256l16.064 128H448zm64-255.36V384h247.744A256.128 256.128 0 0 0 512 192.64m-64 8.064A256.448 256.448 0 0 0 264.256 384H448zm64-72.064A320.128 320.128 0 0 1 825.472 384H896a32 32 0 1 1 0 64h-64v1.92l-56.96 454.016A64 64 0 0 1 711.552 960H312.448a64 64 0 0 1-63.488-56.064L192 449.92V448h-64a32 32 0 0 1 0-64h70.528A320.384 320.384 0 0 1 448 135.04V96a96 96 0 0 1 96-96h128a32 32 0 1 1 0 64H544a32 32 0 0 0-32 32zM743.68 640H280.32l32.128 256h399.104z"})]))}}),O5=R5,k5=p({name:"IceTea",__name:"ice-tea",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M197.696 259.648a320.128 320.128 0 0 1 628.608 0A96 96 0 0 1 896 352v64a96 96 0 0 1-71.616 92.864l-49.408 395.072A64 64 0 0 1 711.488 960H312.512a64 64 0 0 1-63.488-56.064l-49.408-395.072A96 96 0 0 1 128 416v-64a96 96 0 0 1 69.696-92.352M264.064 256h495.872a256.128 256.128 0 0 0-495.872 0m495.424 256H264.512l48 384h398.976zM224 448h576a32 32 0 0 0 32-32v-64a32 32 0 0 0-32-32H224a32 32 0 0 0-32 32v64a32 32 0 0 0 32 32m160 192h64v64h-64zm192 64h64v64h-64zm-128 64h64v64h-64zm64-192h64v64h-64z"})]))}}),I5=k5,N5=p({name:"InfoFilled",__name:"info-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896.064A448 448 0 0 1 512 64m67.2 275.072c33.28 0 60.288-23.104 60.288-57.344s-27.072-57.344-60.288-57.344c-33.28 0-60.16 23.104-60.16 57.344s26.88 57.344 60.16 57.344M590.912 699.2c0-6.848 2.368-24.64 1.024-34.752l-52.608 60.544c-10.88 11.456-24.512 19.392-30.912 17.28a12.992 12.992 0 0 1-8.256-14.72l87.68-276.992c7.168-35.136-12.544-67.2-54.336-71.296-44.096 0-108.992 44.736-148.48 101.504 0 6.784-1.28 23.68.064 33.792l52.544-60.608c10.88-11.328 23.552-19.328 29.952-17.152a12.8 12.8 0 0 1 7.808 16.128L388.48 728.576c-10.048 32.256 8.96 63.872 55.04 71.04 67.84 0 107.904-43.648 147.456-100.416z"})]))}}),$5=N5,q5=p({name:"Iphone",__name:"iphone",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M224 768v96.064a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64V768zm0-64h576V160a64 64 0 0 0-64-64H288a64 64 0 0 0-64 64zm32 288a96 96 0 0 1-96-96V128a96 96 0 0 1 96-96h512a96 96 0 0 1 96 96v768a96 96 0 0 1-96 96zm304-144a48 48 0 1 1-96 0 48 48 0 0 1 96 0"})]))}}),j5=q5,K5=p({name:"Key",__name:"key",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M448 456.064V96a32 32 0 0 1 32-32.064L672 64a32 32 0 0 1 0 64H512v128h160a32 32 0 0 1 0 64H512v128a256 256 0 1 1-64 8.064M512 896a192 192 0 1 0 0-384 192 192 0 0 0 0 384"})]))}}),U5=K5,W5=p({name:"KnifeFork",__name:"knife-fork",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 410.56V96a32 32 0 0 1 64 0v314.56A96 96 0 0 0 384 320V96a32 32 0 0 1 64 0v224a160 160 0 0 1-128 156.8V928a32 32 0 1 1-64 0V476.8A160 160 0 0 1 128 320V96a32 32 0 0 1 64 0v224a96 96 0 0 0 64 90.56m384-250.24V544h126.72c-3.328-78.72-12.928-147.968-28.608-207.744-14.336-54.528-46.848-113.344-98.112-175.872zM640 608v320a32 32 0 1 1-64 0V64h64c85.312 89.472 138.688 174.848 160 256 21.312 81.152 32 177.152 32 288z"})]))}}),G5=W5,J5=p({name:"Lightning",__name:"lightning",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M288 671.36v64.128A239.808 239.808 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 736 734.016v-64.768a192 192 0 0 0 3.328-377.92l-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 91.968 70.464 167.36 160.256 175.232z"}),o("path",{fill:"currentColor",d:"M416 736a32 32 0 0 1-27.776-47.872l128-224a32 32 0 1 1 55.552 31.744L471.168 672H608a32 32 0 0 1 27.776 47.872l-128 224a32 32 0 1 1-55.68-31.744L552.96 736z"})]))}}),Z5=J5,Y5=p({name:"Link",__name:"link",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M715.648 625.152 670.4 579.904l90.496-90.56c75.008-74.944 85.12-186.368 22.656-248.896-62.528-62.464-173.952-52.352-248.96 22.656L444.16 353.6l-45.248-45.248 90.496-90.496c100.032-99.968 251.968-110.08 339.456-22.656 87.488 87.488 77.312 239.424-22.656 339.456l-90.496 90.496zm-90.496 90.496-90.496 90.496C434.624 906.112 282.688 916.224 195.2 828.8c-87.488-87.488-77.312-239.424 22.656-339.456l90.496-90.496 45.248 45.248-90.496 90.56c-75.008 74.944-85.12 186.368-22.656 248.896 62.528 62.464 173.952 52.352 248.96-22.656l90.496-90.496zm0-362.048 45.248 45.248L398.848 670.4 353.6 625.152z"})]))}}),Q5=Y5,X5=p({name:"List",__name:"list",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M704 192h160v736H160V192h160v64h384zM288 512h448v-64H288zm0 256h448v-64H288zm96-576V96h256v96z"})]))}}),e9=X5,t9=p({name:"Loading",__name:"loading",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a32 32 0 0 1 32 32v192a32 32 0 0 1-64 0V96a32 32 0 0 1 32-32m0 640a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V736a32 32 0 0 1 32-32m448-192a32 32 0 0 1-32 32H736a32 32 0 1 1 0-64h192a32 32 0 0 1 32 32m-640 0a32 32 0 0 1-32 32H96a32 32 0 0 1 0-64h192a32 32 0 0 1 32 32M195.2 195.2a32 32 0 0 1 45.248 0L376.32 331.008a32 32 0 0 1-45.248 45.248L195.2 240.448a32 32 0 0 1 0-45.248zm452.544 452.544a32 32 0 0 1 45.248 0L828.8 783.552a32 32 0 0 1-45.248 45.248L647.744 692.992a32 32 0 0 1 0-45.248zM828.8 195.264a32 32 0 0 1 0 45.184L692.992 376.32a32 32 0 0 1-45.248-45.248l135.808-135.808a32 32 0 0 1 45.248 0m-452.544 452.48a32 32 0 0 1 0 45.248L240.448 828.8a32 32 0 0 1-45.248-45.248l135.808-135.808a32 32 0 0 1 45.248 0z"})]))}}),r9=t9,a9=p({name:"LocationFilled",__name:"location-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 928c23.936 0 117.504-68.352 192.064-153.152C803.456 661.888 864 535.808 864 416c0-189.632-155.84-320-352-320S160 226.368 160 416c0 120.32 60.544 246.4 159.936 359.232C394.432 859.84 488 928 512 928m0-435.2a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 140.8a204.8 204.8 0 1 1 0-409.6 204.8 204.8 0 0 1 0 409.6"})]))}}),n9=a9,l9=p({name:"LocationInformation",__name:"location-information",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32"}),o("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416M512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544"}),o("path",{fill:"currentColor",d:"M512 512a96 96 0 1 0 0-192 96 96 0 0 0 0 192m0 64a160 160 0 1 1 0-320 160 160 0 0 1 0 320"})]))}}),s9=l9,o9=p({name:"Location",__name:"location",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416M512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544"}),o("path",{fill:"currentColor",d:"M512 512a96 96 0 1 0 0-192 96 96 0 0 0 0 192m0 64a160 160 0 1 1 0-320 160 160 0 0 1 0 320"})]))}}),u9=o9,c9=p({name:"Lock",__name:"lock",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M224 448a32 32 0 0 0-32 32v384a32 32 0 0 0 32 32h576a32 32 0 0 0 32-32V480a32 32 0 0 0-32-32zm0-64h576a96 96 0 0 1 96 96v384a96 96 0 0 1-96 96H224a96 96 0 0 1-96-96V480a96 96 0 0 1 96-96"}),o("path",{fill:"currentColor",d:"M512 544a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V576a32 32 0 0 1 32-32m192-160v-64a192 192 0 1 0-384 0v64zM512 64a256 256 0 0 1 256 256v128H256V320A256 256 0 0 1 512 64"})]))}}),i9=c9,_9=p({name:"Lollipop",__name:"lollipop",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M513.28 448a64 64 0 1 1 76.544 49.728A96 96 0 0 0 768 448h64a160 160 0 0 1-320 0zm-126.976-29.696a256 256 0 1 0 43.52-180.48A256 256 0 0 1 832 448h-64a192 192 0 0 0-381.696-29.696m105.664 249.472L285.696 874.048a96 96 0 0 1-135.68-135.744l206.208-206.272a320 320 0 1 1 135.744 135.744zm-54.464-36.032a321.92 321.92 0 0 1-45.248-45.248L195.2 783.552a32 32 0 1 0 45.248 45.248l197.056-197.12z"})]))}}),p9=_9,h9=p({name:"MagicStick",__name:"magic-stick",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64h64v192h-64zm0 576h64v192h-64zM160 480v-64h192v64zm576 0v-64h192v64zM249.856 199.04l45.248-45.184L430.848 289.6 385.6 334.848 249.856 199.104zM657.152 606.4l45.248-45.248 135.744 135.744-45.248 45.248zM114.048 923.2 68.8 877.952l316.8-316.8 45.248 45.248zM702.4 334.848 657.152 289.6l135.744-135.744 45.248 45.248z"})]))}}),f9=h9,v9=p({name:"Magnet",__name:"magnet",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M832 320V192H704v320a192 192 0 1 1-384 0V192H192v128h128v64H192v128a320 320 0 0 0 640 0V384H704v-64zM640 512V128h256v384a384 384 0 1 1-768 0V128h256v384a128 128 0 1 0 256 0"})]))}}),d9=v9,m9=p({name:"Male",__name:"male",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M399.5 849.5a225 225 0 1 0 0-450 225 225 0 0 0 0 450m0 56.25a281.25 281.25 0 1 1 0-562.5 281.25 281.25 0 0 1 0 562.5m253.125-787.5h225q28.125 0 28.125 28.125T877.625 174.5h-225q-28.125 0-28.125-28.125t28.125-28.125"}),o("path",{fill:"currentColor",d:"M877.625 118.25q28.125 0 28.125 28.125v225q0 28.125-28.125 28.125T849.5 371.375v-225q0-28.125 28.125-28.125"}),o("path",{fill:"currentColor",d:"M604.813 458.9 565.1 419.131l292.613-292.668 39.825 39.824z"})]))}}),g9=m9,w9=p({name:"Management",__name:"management",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M576 128v288l96-96 96 96V128h128v768H320V128zm-448 0h128v768H128z"})]))}}),x9=w9,y9=p({name:"MapLocation",__name:"map-location",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416M512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544"}),o("path",{fill:"currentColor",d:"M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256m345.6 192L960 960H672v-64H352v64H64l102.4-256zm-68.928 0H235.328l-76.8 192h706.944z"})]))}}),C9=y9,z9=p({name:"Medal",__name:"medal",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 896a256 256 0 1 0 0-512 256 256 0 0 0 0 512m0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640"}),o("path",{fill:"currentColor",d:"M576 128H448v200a286.72 286.72 0 0 1 64-8c19.52 0 40.832 2.688 64 8zm64 0v219.648c24.448 9.088 50.56 20.416 78.4 33.92L757.44 128zm-256 0H266.624l39.04 253.568c27.84-13.504 53.888-24.832 78.336-33.92V128zM229.312 64h565.376a32 32 0 0 1 31.616 36.864L768 480c-113.792-64-199.104-96-256-96-56.896 0-142.208 32-256 96l-58.304-379.136A32 32 0 0 1 229.312 64"})]))}}),M9=z9,b9=p({name:"Memo",__name:"memo",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M480 320h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32"}),o("path",{fill:"currentColor",d:"M887.01 72.99C881.01 67 873.34 64 864 64H160c-9.35 0-17.02 3-23.01 8.99C131 78.99 128 86.66 128 96v832c0 9.35 2.99 17.02 8.99 23.01S150.66 960 160 960h704c9.35 0 17.02-2.99 23.01-8.99S896 937.34 896 928V96c0-9.35-3-17.02-8.99-23.01M192 896V128h96v768zm640 0H352V128h480z"}),o("path",{fill:"currentColor",d:"M480 512h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32m0 192h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32"})]))}}),H9=b9,E9=p({name:"Menu",__name:"menu",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 448a32 32 0 0 1-32-32V160.064a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V416a32 32 0 0 1-32 32zm448 0a32 32 0 0 1-32-32V160.064a32 32 0 0 1 32-32h255.936a32 32 0 0 1 32 32V416a32 32 0 0 1-32 32zM160 896a32 32 0 0 1-32-32V608a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32zm448 0a32 32 0 0 1-32-32V608a32 32 0 0 1 32-32h255.936a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32z"})]))}}),V9=E9,B9=p({name:"MessageBox",__name:"message-box",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M288 384h448v64H288zm96-128h256v64H384zM131.456 512H384v128h256V512h252.544L721.856 192H302.144zM896 576H704v128H320V576H128v256h768zM275.776 128h472.448a32 32 0 0 1 28.608 17.664l179.84 359.552A32 32 0 0 1 960 519.552V864a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V519.552a32 32 0 0 1 3.392-14.336l179.776-359.552A32 32 0 0 1 275.776 128z"})]))}}),A9=B9,L9=p({name:"Message",__name:"message",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 224v512a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V224zm0-64h768a64 64 0 0 1 64 64v512a128 128 0 0 1-128 128H192A128 128 0 0 1 64 736V224a64 64 0 0 1 64-64"}),o("path",{fill:"currentColor",d:"M904 224 656.512 506.88a192 192 0 0 1-289.024 0L120 224zm-698.944 0 210.56 240.704a128 128 0 0 0 192.704 0L818.944 224H205.056"})]))}}),S9=L9,F9=p({name:"Mic",__name:"mic",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M480 704h160a64 64 0 0 0 64-64v-32h-96a32 32 0 0 1 0-64h96v-96h-96a32 32 0 0 1 0-64h96v-96h-96a32 32 0 0 1 0-64h96v-32a64 64 0 0 0-64-64H384a64 64 0 0 0-64 64v32h96a32 32 0 0 1 0 64h-96v96h96a32 32 0 0 1 0 64h-96v96h96a32 32 0 0 1 0 64h-96v32a64 64 0 0 0 64 64zm64 64v128h192a32 32 0 1 1 0 64H288a32 32 0 1 1 0-64h192V768h-96a128 128 0 0 1-128-128V192A128 128 0 0 1 384 64h256a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128z"})]))}}),P9=F9,D9=p({name:"Microphone",__name:"microphone",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 128a128 128 0 0 0-128 128v256a128 128 0 1 0 256 0V256a128 128 0 0 0-128-128m0-64a192 192 0 0 1 192 192v256a192 192 0 1 1-384 0V256A192 192 0 0 1 512 64m-32 832v-64a288 288 0 0 1-288-288v-32a32 32 0 0 1 64 0v32a224 224 0 0 0 224 224h64a224 224 0 0 0 224-224v-32a32 32 0 1 1 64 0v32a288 288 0 0 1-288 288v64h64a32 32 0 1 1 0 64H416a32 32 0 1 1 0-64z"})]))}}),T9=D9,R9=p({name:"MilkTea",__name:"milk-tea",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M416 128V96a96 96 0 0 1 96-96h128a32 32 0 1 1 0 64H512a32 32 0 0 0-32 32v32h320a96 96 0 0 1 11.712 191.296l-39.68 581.056A64 64 0 0 1 708.224 960H315.776a64 64 0 0 1-63.872-59.648l-39.616-581.056A96 96 0 0 1 224 128zM276.48 320l39.296 576h392.448l4.8-70.784a224.064 224.064 0 0 1 30.016-439.808L747.52 320zM224 256h576a32 32 0 1 0 0-64H224a32 32 0 0 0 0 64m493.44 503.872 21.12-309.12a160 160 0 0 0-21.12 309.12"})]))}}),O9=R9,k9=p({name:"Minus",__name:"minus",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 544h768a32 32 0 1 0 0-64H128a32 32 0 0 0 0 64"})]))}}),I9=k9,N9=p({name:"Money",__name:"money",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 640v192h640V384H768v-64h150.976c14.272 0 19.456 1.472 24.64 4.288a29.056 29.056 0 0 1 12.16 12.096c2.752 5.184 4.224 10.368 4.224 24.64v493.952c0 14.272-1.472 19.456-4.288 24.64a29.056 29.056 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H233.024c-14.272 0-19.456-1.472-24.64-4.288a29.056 29.056 0 0 1-12.16-12.096c-2.688-5.184-4.224-10.368-4.224-24.576V640z"}),o("path",{fill:"currentColor",d:"M768 192H128v448h640zm64-22.976v493.952c0 14.272-1.472 19.456-4.288 24.64a29.056 29.056 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H105.024c-14.272 0-19.456-1.472-24.64-4.288a29.056 29.056 0 0 1-12.16-12.096C65.536 682.432 64 677.248 64 663.04V169.024c0-14.272 1.472-19.456 4.288-24.64a29.056 29.056 0 0 1 12.096-12.16C85.568 129.536 90.752 128 104.96 128h685.952c14.272 0 19.456 1.472 24.64 4.288a29.056 29.056 0 0 1 12.16 12.096c2.752 5.184 4.224 10.368 4.224 24.64z"}),o("path",{fill:"currentColor",d:"M448 576a160 160 0 1 1 0-320 160 160 0 0 1 0 320m0-64a96 96 0 1 0 0-192 96 96 0 0 0 0 192"})]))}}),$9=N9,q9=p({name:"Monitor",__name:"monitor",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M544 768v128h192a32 32 0 1 1 0 64H288a32 32 0 1 1 0-64h192V768H192A128 128 0 0 1 64 640V256a128 128 0 0 1 128-128h640a128 128 0 0 1 128 128v384a128 128 0 0 1-128 128zM192 192a64 64 0 0 0-64 64v384a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64z"})]))}}),j9=q9,K9=p({name:"MoonNight",__name:"moon-night",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M384 512a448 448 0 0 1 215.872-383.296A384 384 0 0 0 213.76 640h188.8A448.256 448.256 0 0 1 384 512M171.136 704a448 448 0 0 1 636.992-575.296A384 384 0 0 0 499.328 704h-328.32z"}),o("path",{fill:"currentColor",d:"M32 640h960q32 0 32 32t-32 32H32q-32 0-32-32t32-32m128 128h384a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64m160 127.68 224 .256a32 32 0 0 1 32 32V928a32 32 0 0 1-32 32l-224-.384a32 32 0 0 1-32-32v-.064a32 32 0 0 1 32-32z"})]))}}),U9=K9,W9=p({name:"Moon",__name:"moon",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M240.448 240.448a384 384 0 1 0 559.424 525.696 448 448 0 0 1-542.016-542.08 390.592 390.592 0 0 0-17.408 16.384zm181.056 362.048a384 384 0 0 0 525.632 16.384A448 448 0 1 1 405.056 76.8a384 384 0 0 0 16.448 525.696"})]))}}),G9=W9,J9=p({name:"MoreFilled",__name:"more-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M176 416a112 112 0 1 1 0 224 112 112 0 0 1 0-224m336 0a112 112 0 1 1 0 224 112 112 0 0 1 0-224m336 0a112 112 0 1 1 0 224 112 112 0 0 1 0-224"})]))}}),Z9=J9,Y9=p({name:"More",__name:"more",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M176 416a112 112 0 1 0 0 224 112 112 0 0 0 0-224m0 64a48 48 0 1 1 0 96 48 48 0 0 1 0-96m336-64a112 112 0 1 1 0 224 112 112 0 0 1 0-224m0 64a48 48 0 1 0 0 96 48 48 0 0 0 0-96m336-64a112 112 0 1 1 0 224 112 112 0 0 1 0-224m0 64a48 48 0 1 0 0 96 48 48 0 0 0 0-96"})]))}}),Q9=Y9,X9=p({name:"MostlyCloudy",__name:"mostly-cloudy",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M737.216 357.952 704 349.824l-11.776-32a192.064 192.064 0 0 0-367.424 23.04l-8.96 39.04-39.04 8.96A192.064 192.064 0 0 0 320 768h368a207.808 207.808 0 0 0 207.808-208 208.32 208.32 0 0 0-158.592-202.048m15.168-62.208A272.32 272.32 0 0 1 959.744 560a271.808 271.808 0 0 1-271.552 272H320a256 256 0 0 1-57.536-505.536 256.128 256.128 0 0 1 489.92-30.72"})]))}}),e_=X9,t_=p({name:"Mouse",__name:"mouse",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M438.144 256c-68.352 0-92.736 4.672-117.76 18.112-20.096 10.752-35.52 26.176-46.272 46.272C260.672 345.408 256 369.792 256 438.144v275.712c0 68.352 4.672 92.736 18.112 117.76 10.752 20.096 26.176 35.52 46.272 46.272C345.408 891.328 369.792 896 438.144 896h147.712c68.352 0 92.736-4.672 117.76-18.112 20.096-10.752 35.52-26.176 46.272-46.272C763.328 806.592 768 782.208 768 713.856V438.144c0-68.352-4.672-92.736-18.112-117.76a110.464 110.464 0 0 0-46.272-46.272C678.592 260.672 654.208 256 585.856 256zm0-64h147.712c85.568 0 116.608 8.96 147.904 25.6 31.36 16.768 55.872 41.344 72.576 72.64C823.104 321.536 832 352.576 832 438.08v275.84c0 85.504-8.96 116.544-25.6 147.84a174.464 174.464 0 0 1-72.64 72.576C702.464 951.104 671.424 960 585.92 960H438.08c-85.504 0-116.544-8.96-147.84-25.6a174.464 174.464 0 0 1-72.64-72.704c-16.768-31.296-25.664-62.336-25.664-147.84v-275.84c0-85.504 8.96-116.544 25.6-147.84a174.464 174.464 0 0 1 72.768-72.576c31.232-16.704 62.272-25.6 147.776-25.6z"}),o("path",{fill:"currentColor",d:"M512 320q32 0 32 32v128q0 32-32 32t-32-32V352q0-32 32-32m32-96a32 32 0 0 1-64 0v-64a32 32 0 0 0-32-32h-96a32 32 0 0 1 0-64h96a96 96 0 0 1 96 96z"})]))}}),r_=t_,a_=p({name:"Mug",__name:"mug",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M736 800V160H160v640a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64m64-544h63.552a96 96 0 0 1 96 96v224a96 96 0 0 1-96 96H800v128a128 128 0 0 1-128 128H224A128 128 0 0 1 96 800V128a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32zm0 64v288h63.552a32 32 0 0 0 32-32V352a32 32 0 0 0-32-32z"})]))}}),n_=a_,l_=p({name:"MuteNotification",__name:"mute-notification",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m241.216 832 63.616-64H768V448c0-42.368-10.24-82.304-28.48-117.504l46.912-47.232C815.36 331.392 832 387.84 832 448v320h96a32 32 0 1 1 0 64zm-90.24 0H96a32 32 0 1 1 0-64h96V448a320.128 320.128 0 0 1 256-313.6V128a64 64 0 1 1 128 0v6.4a319.552 319.552 0 0 1 171.648 97.088l-45.184 45.44A256 256 0 0 0 256 448v278.336L151.04 832zM448 896h128a64 64 0 0 1-128 0"}),o("path",{fill:"currentColor",d:"M150.72 859.072a32 32 0 0 1-45.44-45.056l704-708.544a32 32 0 0 1 45.44 45.056l-704 708.544z"})]))}}),s_=l_,o_=p({name:"Mute",__name:"mute",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m412.16 592.128-45.44 45.44A191.232 191.232 0 0 1 320 512V256a192 192 0 1 1 384 0v44.352l-64 64V256a128 128 0 1 0-256 0v256c0 30.336 10.56 58.24 28.16 80.128m51.968 38.592A128 128 0 0 0 640 512v-57.152l64-64V512a192 192 0 0 1-287.68 166.528zM314.88 779.968l46.144-46.08A222.976 222.976 0 0 0 480 768h64a224 224 0 0 0 224-224v-32a32 32 0 1 1 64 0v32a288 288 0 0 1-288 288v64h64a32 32 0 1 1 0 64H416a32 32 0 1 1 0-64h64v-64c-61.44 0-118.4-19.2-165.12-52.032M266.752 737.6A286.976 286.976 0 0 1 192 544v-32a32 32 0 0 1 64 0v32c0 56.832 21.184 108.8 56.064 148.288z"}),o("path",{fill:"currentColor",d:"M150.72 859.072a32 32 0 0 1-45.44-45.056l704-708.544a32 32 0 0 1 45.44 45.056l-704 708.544z"})]))}}),u_=o_,c_=p({name:"NoSmoking",__name:"no-smoking",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M440.256 576H256v128h56.256l-64 64H224a32 32 0 0 1-32-32V544a32 32 0 0 1 32-32h280.256zm143.488 128H704V583.744L775.744 512H928a32 32 0 0 1 32 32v192a32 32 0 0 1-32 32H519.744zM768 576v128h128V576zm-29.696-207.552 45.248 45.248-497.856 497.856-45.248-45.248zM256 64h64v320h-64zM128 192h64v192h-64zM64 512h64v256H64z"})]))}}),i_=c_,__=p({name:"Notebook",__name:"notebook",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M192 128v768h640V128zm-32-64h704a32 32 0 0 1 32 32v832a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M672 128h64v768h-64zM96 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32m0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32m0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32m0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32"})]))}}),p_=__,h_=p({name:"Notification",__name:"notification",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 128v64H256a64 64 0 0 0-64 64v512a64 64 0 0 0 64 64h512a64 64 0 0 0 64-64V512h64v256a128 128 0 0 1-128 128H256a128 128 0 0 1-128-128V256a128 128 0 0 1 128-128z"}),o("path",{fill:"currentColor",d:"M768 384a128 128 0 1 0 0-256 128 128 0 0 0 0 256m0 64a192 192 0 1 1 0-384 192 192 0 0 1 0 384"})]))}}),f_=h_,v_=p({name:"Odometer",__name:"odometer",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"}),o("path",{fill:"currentColor",d:"M192 512a320 320 0 1 1 640 0 32 32 0 1 1-64 0 256 256 0 1 0-512 0 32 32 0 0 1-64 0"}),o("path",{fill:"currentColor",d:"M570.432 627.84A96 96 0 1 1 509.568 608l60.992-187.776A32 32 0 1 1 631.424 440l-60.992 187.776zM502.08 734.464a32 32 0 1 0 19.84-60.928 32 32 0 0 0-19.84 60.928"})]))}}),d_=v_,m_=p({name:"OfficeBuilding",__name:"office-building",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M192 128v704h384V128zm-32-64h448a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M256 256h256v64H256zm0 192h256v64H256zm0 192h256v64H256zm384-128h128v64H640zm0 128h128v64H640zM64 832h896v64H64z"}),o("path",{fill:"currentColor",d:"M640 384v448h192V384zm-32-64h256a32 32 0 0 1 32 32v512a32 32 0 0 1-32 32H608a32 32 0 0 1-32-32V352a32 32 0 0 1 32-32"})]))}}),g_=m_,w_=p({name:"Open",__name:"open",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M329.956 257.138a254.862 254.862 0 0 0 0 509.724h364.088a254.862 254.862 0 0 0 0-509.724zm0-72.818h364.088a327.68 327.68 0 1 1 0 655.36H329.956a327.68 327.68 0 1 1 0-655.36z"}),o("path",{fill:"currentColor",d:"M694.044 621.227a109.227 109.227 0 1 0 0-218.454 109.227 109.227 0 0 0 0 218.454m0 72.817a182.044 182.044 0 1 1 0-364.088 182.044 182.044 0 0 1 0 364.088"})]))}}),x_=w_,y_=p({name:"Operation",__name:"operation",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M389.44 768a96.064 96.064 0 0 1 181.12 0H896v64H570.56a96.064 96.064 0 0 1-181.12 0H128v-64zm192-288a96.064 96.064 0 0 1 181.12 0H896v64H762.56a96.064 96.064 0 0 1-181.12 0H128v-64zm-320-288a96.064 96.064 0 0 1 181.12 0H896v64H442.56a96.064 96.064 0 0 1-181.12 0H128v-64z"})]))}}),C_=y_,z_=p({name:"Opportunity",__name:"opportunity",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M384 960v-64h192.064v64zm448-544a350.656 350.656 0 0 1-128.32 271.424C665.344 719.04 640 763.776 640 813.504V832H320v-14.336c0-48-19.392-95.36-57.216-124.992a351.552 351.552 0 0 1-128.448-344.256c25.344-136.448 133.888-248.128 269.76-276.48A352.384 352.384 0 0 1 832 416m-544 32c0-132.288 75.904-224 192-224v-64c-154.432 0-256 122.752-256 288z"})]))}}),M_=z_,b_=p({name:"Orange",__name:"orange",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M544 894.72a382.336 382.336 0 0 0 215.936-89.472L577.024 622.272c-10.24 6.016-21.248 10.688-33.024 13.696v258.688zm261.248-134.784A382.336 382.336 0 0 0 894.656 544H635.968c-3.008 11.776-7.68 22.848-13.696 33.024l182.976 182.912zM894.656 480a382.336 382.336 0 0 0-89.408-215.936L622.272 446.976c6.016 10.24 10.688 21.248 13.696 33.024h258.688zm-134.72-261.248A382.336 382.336 0 0 0 544 129.344v258.688c11.776 3.008 22.848 7.68 33.024 13.696zM480 129.344a382.336 382.336 0 0 0-215.936 89.408l182.912 182.976c10.24-6.016 21.248-10.688 33.024-13.696zm-261.248 134.72A382.336 382.336 0 0 0 129.344 480h258.688c3.008-11.776 7.68-22.848 13.696-33.024zM129.344 544a382.336 382.336 0 0 0 89.408 215.936l182.976-182.912A127.232 127.232 0 0 1 388.032 544zm134.72 261.248A382.336 382.336 0 0 0 480 894.656V635.968a127.232 127.232 0 0 1-33.024-13.696zM512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896m0-384a64 64 0 1 0 0-128 64 64 0 0 0 0 128"})]))}}),H_=b_,E_=p({name:"Paperclip",__name:"paperclip",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M602.496 240.448A192 192 0 1 1 874.048 512l-316.8 316.8A256 256 0 0 1 195.2 466.752L602.496 59.456l45.248 45.248L240.448 512A192 192 0 0 0 512 783.552l316.8-316.8a128 128 0 1 0-181.056-181.056L353.6 579.904a32 32 0 1 0 45.248 45.248l294.144-294.144 45.312 45.248L444.096 670.4a96 96 0 1 1-135.744-135.744l294.144-294.208z"})]))}}),V_=E_,B_=p({name:"PartlyCloudy",__name:"partly-cloudy",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M598.4 895.872H328.192a256 256 0 0 1-34.496-510.528A352 352 0 1 1 598.4 895.872m-271.36-64h272.256a288 288 0 1 0-248.512-417.664L335.04 445.44l-34.816 3.584a192 192 0 0 0 26.88 382.848z"}),o("path",{fill:"currentColor",d:"M139.84 501.888a256 256 0 1 1 417.856-277.12c-17.728 2.176-38.208 8.448-61.504 18.816A192 192 0 1 0 189.12 460.48a6003.84 6003.84 0 0 0-49.28 41.408z"})]))}}),A_=B_,L_=p({name:"Pear",__name:"pear",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M542.336 258.816a443.255 443.255 0 0 0-9.024 25.088 32 32 0 1 1-60.8-20.032l1.088-3.328a162.688 162.688 0 0 0-122.048 131.392l-17.088 102.72-20.736 15.36C256.192 552.704 224 610.88 224 672c0 120.576 126.4 224 288 224s288-103.424 288-224c0-61.12-32.192-119.296-89.728-161.92l-20.736-15.424-17.088-102.72a162.688 162.688 0 0 0-130.112-133.12zm-40.128-66.56c7.936-15.552 16.576-30.08 25.92-43.776 23.296-33.92 49.408-59.776 78.528-77.12a32 32 0 1 1 32.704 55.04c-20.544 12.224-40.064 31.552-58.432 58.304a316.608 316.608 0 0 0-9.792 15.104 226.688 226.688 0 0 1 164.48 181.568l12.8 77.248C819.456 511.36 864 587.392 864 672c0 159.04-157.568 288-352 288S160 831.04 160 672c0-84.608 44.608-160.64 115.584-213.376l12.8-77.248a226.624 226.624 0 0 1 213.76-189.184z"})]))}}),S_=L_,F_=p({name:"PhoneFilled",__name:"phone-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M199.232 125.568 90.624 379.008a32 32 0 0 0 6.784 35.2l512.384 512.384a32 32 0 0 0 35.2 6.784l253.44-108.608a32 32 0 0 0 10.048-52.032L769.6 633.92a32 32 0 0 0-36.928-5.952l-130.176 65.088-271.488-271.552 65.024-130.176a32 32 0 0 0-5.952-36.928L251.2 115.52a32 32 0 0 0-51.968 10.048z"})]))}}),P_=F_,D_=p({name:"Phone",__name:"phone",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M79.36 432.256 591.744 944.64a32 32 0 0 0 35.2 6.784l253.44-108.544a32 32 0 0 0 9.984-52.032l-153.856-153.92a32 32 0 0 0-36.928-6.016l-69.888 34.944L358.08 394.24l35.008-69.888a32 32 0 0 0-5.952-36.928L233.152 133.568a32 32 0 0 0-52.032 10.048L72.512 397.056a32 32 0 0 0 6.784 35.2zm60.48-29.952 81.536-190.08L325.568 316.48l-24.64 49.216-20.608 41.216 32.576 32.64 271.552 271.552 32.64 32.64 41.216-20.672 49.28-24.576 104.192 104.128-190.08 81.472L139.84 402.304zM512 320v-64a256 256 0 0 1 256 256h-64a192 192 0 0 0-192-192m0-192V64a448 448 0 0 1 448 448h-64a384 384 0 0 0-384-384"})]))}}),T_=D_,R_=p({name:"PictureFilled",__name:"picture-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M96 896a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h832a32 32 0 0 1 32 32v704a32 32 0 0 1-32 32zm315.52-228.48-68.928-68.928a32 32 0 0 0-45.248 0L128 768.064h778.688l-242.112-290.56a32 32 0 0 0-49.216 0L458.752 665.408a32 32 0 0 1-47.232 2.112M256 384a96 96 0 1 0 192.064-.064A96 96 0 0 0 256 384"})]))}}),O_=R_,k_=p({name:"PictureRounded",__name:"picture-rounded",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 128a384 384 0 1 0 0 768 384 384 0 0 0 0-768m0-64a448 448 0 1 1 0 896 448 448 0 0 1 0-896"}),o("path",{fill:"currentColor",d:"M640 288q64 0 64 64t-64 64q-64 0-64-64t64-64M214.656 790.656l-45.312-45.312 185.664-185.6a96 96 0 0 1 123.712-10.24l138.24 98.688a32 32 0 0 0 39.872-2.176L906.688 422.4l42.624 47.744L699.52 693.696a96 96 0 0 1-119.808 6.592l-138.24-98.752a32 32 0 0 0-41.152 3.456l-185.664 185.6z"})]))}}),I_=k_,N_=p({name:"Picture",__name:"picture",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 160v704h704V160zm-32-64h768a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H128a32 32 0 0 1-32-32V128a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M384 288q64 0 64 64t-64 64q-64 0-64-64t64-64M185.408 876.992l-50.816-38.912L350.72 556.032a96 96 0 0 1 134.592-17.856l1.856 1.472 122.88 99.136a32 32 0 0 0 44.992-4.864l216-269.888 49.92 39.936-215.808 269.824-.256.32a96 96 0 0 1-135.04 14.464l-122.88-99.072-.64-.512a32 32 0 0 0-44.8 5.952z"})]))}}),$_=N_,q_=p({name:"PieChart",__name:"pie-chart",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M448 68.48v64.832A384.128 384.128 0 0 0 512 896a384.128 384.128 0 0 0 378.688-320h64.768A448.128 448.128 0 0 1 64 512 448.128 448.128 0 0 1 448 68.48z"}),o("path",{fill:"currentColor",d:"M576 97.28V448h350.72A384.064 384.064 0 0 0 576 97.28zM512 64V33.152A448 448 0 0 1 990.848 512H512z"})]))}}),j_=q_,K_=p({name:"Place",__name:"place",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 512a192 192 0 1 0 0-384 192 192 0 0 0 0 384m0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512"}),o("path",{fill:"currentColor",d:"M512 512a32 32 0 0 1 32 32v256a32 32 0 1 1-64 0V544a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M384 649.088v64.96C269.76 732.352 192 771.904 192 800c0 37.696 139.904 96 320 96s320-58.304 320-96c0-28.16-77.76-67.648-192-85.952v-64.96C789.12 671.04 896 730.368 896 800c0 88.32-171.904 160-384 160s-384-71.68-384-160c0-69.696 106.88-128.96 256-150.912"})]))}}),U_=K_,W_=p({name:"Platform",__name:"platform",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M448 832v-64h128v64h192v64H256v-64zM128 704V128h768v576z"})]))}}),G_=W_,J_=p({name:"Plus",__name:"plus",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M480 480V128a32 32 0 0 1 64 0v352h352a32 32 0 1 1 0 64H544v352a32 32 0 1 1-64 0V544H128a32 32 0 0 1 0-64z"})]))}}),Z_=J_,Y_=p({name:"Pointer",__name:"pointer",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M511.552 128c-35.584 0-64.384 28.8-64.384 64.448v516.48L274.048 570.88a94.272 94.272 0 0 0-112.896-3.456 44.416 44.416 0 0 0-8.96 62.208L332.8 870.4A64 64 0 0 0 384 896h512V575.232a64 64 0 0 0-45.632-61.312l-205.952-61.76A96 96 0 0 1 576 360.192V192.448C576 156.8 547.2 128 511.552 128M359.04 556.8l24.128 19.2V192.448a128.448 128.448 0 1 1 256.832 0v167.744a32 32 0 0 0 22.784 30.656l206.016 61.76A128 128 0 0 1 960 575.232V896a64 64 0 0 1-64 64H384a128 128 0 0 1-102.4-51.2L101.056 668.032A108.416 108.416 0 0 1 128 512.512a158.272 158.272 0 0 1 185.984 8.32z"})]))}}),Q_=Y_,X_=p({name:"Position",__name:"position",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m249.6 417.088 319.744 43.072 39.168 310.272L845.12 178.88 249.6 417.088zm-129.024 47.168a32 32 0 0 1-7.68-61.44l777.792-311.04a32 32 0 0 1 41.6 41.6l-310.336 775.68a32 32 0 0 1-61.44-7.808L512 516.992l-391.424-52.736z"})]))}}),ep=X_,tp=p({name:"Postcard",__name:"postcard",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 224a32 32 0 0 0-32 32v512a32 32 0 0 0 32 32h704a32 32 0 0 0 32-32V256a32 32 0 0 0-32-32zm0-64h704a96 96 0 0 1 96 96v512a96 96 0 0 1-96 96H160a96 96 0 0 1-96-96V256a96 96 0 0 1 96-96"}),o("path",{fill:"currentColor",d:"M704 320a64 64 0 1 1 0 128 64 64 0 0 1 0-128M288 448h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32m0 128h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32"})]))}}),rp=tp,ap=p({name:"Pouring",__name:"pouring",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m739.328 291.328-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 97.28 78.72 175.936 175.808 175.936h400a192 192 0 0 0 35.776-380.672zM959.552 480a256 256 0 0 1-256 256h-400A239.808 239.808 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 959.552 480M224 800a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32m192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32m192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32m192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32"})]))}}),np=ap,lp=p({name:"Present",__name:"present",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M480 896V640H192v-64h288V320H192v576zm64 0h288V320H544v256h288v64H544zM128 256h768v672a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32z"}),o("path",{fill:"currentColor",d:"M96 256h832q32 0 32 32t-32 32H96q-32 0-32-32t32-32"}),o("path",{fill:"currentColor",d:"M416 256a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"}),o("path",{fill:"currentColor",d:"M608 256a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"})]))}}),sp=lp,op=p({name:"PriceTag",__name:"price-tag",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M224 318.336V896h576V318.336L552.512 115.84a64 64 0 0 0-81.024 0zM593.024 66.304l259.2 212.096A32 32 0 0 1 864 303.168V928a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V303.168a32 32 0 0 1 11.712-24.768l259.2-212.096a128 128 0 0 1 162.112 0z"}),o("path",{fill:"currentColor",d:"M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"})]))}}),up=op,cp=p({name:"Printer",__name:"printer",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 768H105.024c-14.272 0-19.456-1.472-24.64-4.288a29.056 29.056 0 0 1-12.16-12.096C65.536 746.432 64 741.248 64 727.04V379.072c0-42.816 4.48-58.304 12.8-73.984 8.384-15.616 20.672-27.904 36.288-36.288 15.68-8.32 31.168-12.8 73.984-12.8H256V64h512v192h68.928c42.816 0 58.304 4.48 73.984 12.8 15.616 8.384 27.904 20.672 36.288 36.288 8.32 15.68 12.8 31.168 12.8 73.984v347.904c0 14.272-1.472 19.456-4.288 24.64a29.056 29.056 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H768v192H256zm64-192v320h384V576zm-64 128V512h512v192h128V379.072c0-29.376-1.408-36.48-5.248-43.776a23.296 23.296 0 0 0-10.048-10.048c-7.232-3.84-14.4-5.248-43.776-5.248H187.072c-29.376 0-36.48 1.408-43.776 5.248a23.296 23.296 0 0 0-10.048 10.048c-3.84 7.232-5.248 14.4-5.248 43.776V704zm64-448h384V128H320zm-64 128h64v64h-64zm128 0h64v64h-64z"})]))}}),ip=cp,_p=p({name:"Promotion",__name:"promotion",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m64 448 832-320-128 704-446.08-243.328L832 192 242.816 545.472zm256 512V657.024L512 768z"})]))}}),pp=_p,hp=p({name:"QuartzWatch",__name:"quartz-watch",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M422.02 602.01v-.03c-6.68-5.99-14.35-8.83-23.01-8.51-8.67.32-16.17 3.66-22.5 10.02-6.33 6.36-9.5 13.7-9.5 22.02s3 15.82 8.99 22.5c8.68 8.68 19.02 11.35 31.01 8s19.49-10.85 22.5-22.5c3.01-11.65.51-22.15-7.49-31.49zM384 512c0-9.35-3-17.02-8.99-23.01-6-5.99-13.66-8.99-23.01-8.99-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.66 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.67 8.99-23.01m6.53-82.49c11.65 3.01 22.15.51 31.49-7.49h.04c5.99-6.68 8.83-14.34 8.51-23.01-.32-8.67-3.66-16.16-10.02-22.5-6.36-6.33-13.7-9.5-22.02-9.5s-15.82 3-22.5 8.99c-8.68 8.69-11.35 19.02-8 31.01 3.35 11.99 10.85 19.49 22.5 22.5zm242.94 0c11.67-3.03 19.01-10.37 22.02-22.02 3.01-11.65.51-22.15-7.49-31.49h.01c-6.68-5.99-14.18-8.99-22.5-8.99s-15.66 3.16-22.02 9.5c-6.36 6.34-9.7 13.84-10.02 22.5-.32 8.66 2.52 16.33 8.51 23.01 9.32 8.02 19.82 10.52 31.49 7.49M512 640c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.67 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.66 8.99-23.01s-3-17.02-8.99-23.01c-6-5.99-13.66-8.99-23.01-8.99m183.01-151.01c-6-5.99-13.66-8.99-23.01-8.99s-17.02 3-23.01 8.99c-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.66 8.99 23.01 8.99s17.02-3 23.01-8.99c5.99-6 8.99-13.67 8.99-23.01 0-9.35-3-17.02-8.99-23.01"}),o("path",{fill:"currentColor",d:"M832 512c-2-90.67-33.17-166.17-93.5-226.5-20.43-20.42-42.6-37.49-66.5-51.23V64H352v170.26c-23.9 13.74-46.07 30.81-66.5 51.24-60.33 60.33-91.49 135.83-93.5 226.5 2 90.67 33.17 166.17 93.5 226.5 20.43 20.43 42.6 37.5 66.5 51.24V960h320V789.74c23.9-13.74 46.07-30.81 66.5-51.24 60.33-60.34 91.49-135.83 93.5-226.5M416 128h192v78.69c-29.85-9.03-61.85-13.93-96-14.69-34.15.75-66.15 5.65-96 14.68zm192 768H416v-78.68c29.85 9.03 61.85 13.93 96 14.68 34.15-.75 66.15-5.65 96-14.68zm-96-128c-72.66-2.01-132.99-27.01-180.99-75.01S258.01 584.66 256 512c2.01-72.66 27.01-132.99 75.01-180.99S439.34 258.01 512 256c72.66 2.01 132.99 27.01 180.99 75.01S765.99 439.34 768 512c-2.01 72.66-27.01 132.99-75.01 180.99S584.66 765.99 512 768"}),o("path",{fill:"currentColor",d:"M512 320c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01 0 9.35 3 17.02 8.99 23.01 6 5.99 13.67 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.66 8.99-23.01 0-9.35-3-17.02-8.99-23.01-6-5.99-13.66-8.99-23.01-8.99m112.99 273.5c-8.66-.32-16.33 2.52-23.01 8.51-7.98 9.32-10.48 19.82-7.49 31.49s10.49 19.17 22.5 22.5 22.35.66 31.01-8v.04c5.99-6.68 8.99-14.18 8.99-22.5s-3.16-15.66-9.5-22.02-13.84-9.7-22.5-10.02"})]))}}),fp=hp,vp=p({name:"QuestionFilled",__name:"question-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m23.744 191.488c-52.096 0-92.928 14.784-123.2 44.352-30.976 29.568-45.76 70.4-45.76 122.496h80.256c0-29.568 5.632-52.8 17.6-68.992 13.376-19.712 35.2-28.864 66.176-28.864 23.936 0 42.944 6.336 56.32 19.712 12.672 13.376 19.712 31.68 19.712 54.912 0 17.6-6.336 34.496-19.008 49.984l-8.448 9.856c-45.76 40.832-73.216 70.4-82.368 89.408-9.856 19.008-14.08 42.24-14.08 68.992v9.856h80.96v-9.856c0-16.896 3.52-31.68 10.56-45.76 6.336-12.672 15.488-24.64 28.16-35.2 33.792-29.568 54.208-48.576 60.544-55.616 16.896-22.528 26.048-51.392 26.048-86.592 0-42.944-14.08-76.736-42.24-101.376-28.16-25.344-65.472-37.312-111.232-37.312zm-12.672 406.208a54.272 54.272 0 0 0-38.72 14.784 49.408 49.408 0 0 0-15.488 38.016c0 15.488 4.928 28.16 15.488 38.016A54.848 54.848 0 0 0 523.072 768c15.488 0 28.16-4.928 38.72-14.784a51.52 51.52 0 0 0 16.192-38.72 51.968 51.968 0 0 0-15.488-38.016 55.936 55.936 0 0 0-39.424-14.784z"})]))}}),dp=vp,mp=p({name:"Rank",__name:"rank",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m186.496 544 41.408 41.344a32 32 0 1 1-45.248 45.312l-96-96a32 32 0 0 1 0-45.312l96-96a32 32 0 1 1 45.248 45.312L186.496 480h290.816V186.432l-41.472 41.472a32 32 0 1 1-45.248-45.184l96-96.128a32 32 0 0 1 45.312 0l96 96.064a32 32 0 0 1-45.248 45.184l-41.344-41.28V480H832l-41.344-41.344a32 32 0 0 1 45.248-45.312l96 96a32 32 0 0 1 0 45.312l-96 96a32 32 0 0 1-45.248-45.312L832 544H541.312v293.44l41.344-41.28a32 32 0 1 1 45.248 45.248l-96 96a32 32 0 0 1-45.312 0l-96-96a32 32 0 1 1 45.312-45.248l41.408 41.408V544H186.496z"})]))}}),gp=mp,wp=p({name:"ReadingLamp",__name:"reading-lamp",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M352 896h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32m-44.672-768-99.52 448h608.384l-99.52-448zm-25.6-64h460.608a32 32 0 0 1 31.232 25.088l113.792 512A32 32 0 0 1 856.128 640H167.872a32 32 0 0 1-31.232-38.912l113.792-512A32 32 0 0 1 281.664 64z"}),o("path",{fill:"currentColor",d:"M672 576q32 0 32 32v128q0 32-32 32t-32-32V608q0-32 32-32m-192-.064h64V960h-64z"})]))}}),xp=wp,yp=p({name:"Reading",__name:"reading",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m512 863.36 384-54.848v-638.72L525.568 222.72a96 96 0 0 1-27.136 0L128 169.792v638.72zM137.024 106.432l370.432 52.928a32 32 0 0 0 9.088 0l370.432-52.928A64 64 0 0 1 960 169.792v638.72a64 64 0 0 1-54.976 63.36l-388.48 55.488a32 32 0 0 1-9.088 0l-388.48-55.488A64 64 0 0 1 64 808.512v-638.72a64 64 0 0 1 73.024-63.36z"}),o("path",{fill:"currentColor",d:"M480 192h64v704h-64z"})]))}}),Cp=yp,zp=p({name:"RefreshLeft",__name:"refresh-left",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M289.088 296.704h92.992a32 32 0 0 1 0 64H232.96a32 32 0 0 1-32-32V179.712a32 32 0 0 1 64 0v50.56a384 384 0 0 1 643.84 282.88 384 384 0 0 1-383.936 384 384 384 0 0 1-384-384h64a320 320 0 1 0 640 0 320 320 0 0 0-555.712-216.448z"})]))}}),Mp=zp,bp=p({name:"RefreshRight",__name:"refresh-right",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M784.512 230.272v-50.56a32 32 0 1 1 64 0v149.056a32 32 0 0 1-32 32H667.52a32 32 0 1 1 0-64h92.992A320 320 0 1 0 524.8 833.152a320 320 0 0 0 320-320h64a384 384 0 0 1-384 384 384 384 0 0 1-384-384 384 384 0 0 1 643.712-282.88z"})]))}}),Hp=bp,Ep=p({name:"Refresh",__name:"refresh",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M771.776 794.88A384 384 0 0 1 128 512h64a320 320 0 0 0 555.712 216.448H654.72a32 32 0 1 1 0-64h149.056a32 32 0 0 1 32 32v148.928a32 32 0 1 1-64 0v-50.56zM276.288 295.616h92.992a32 32 0 0 1 0 64H220.16a32 32 0 0 1-32-32V178.56a32 32 0 0 1 64 0v50.56A384 384 0 0 1 896.128 512h-64a320 320 0 0 0-555.776-216.384z"})]))}}),Vp=Ep,Bp=p({name:"Refrigerator",__name:"refrigerator",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 448h512V160a32 32 0 0 0-32-32H288a32 32 0 0 0-32 32zm0 64v352a32 32 0 0 0 32 32h448a32 32 0 0 0 32-32V512zm32-448h448a96 96 0 0 1 96 96v704a96 96 0 0 1-96 96H288a96 96 0 0 1-96-96V160a96 96 0 0 1 96-96m32 224h64v96h-64zm0 288h64v96h-64z"})]))}}),Ap=Bp,Lp=p({name:"RemoveFilled",__name:"remove-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896M288 512a38.4 38.4 0 0 0 38.4 38.4h371.2a38.4 38.4 0 0 0 0-76.8H326.4A38.4 38.4 0 0 0 288 512"})]))}}),Sp=Lp,Fp=p({name:"Remove",__name:"remove",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M352 480h320a32 32 0 1 1 0 64H352a32 32 0 0 1 0-64"}),o("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"})]))}}),Pp=Fp,Dp=p({name:"Right",__name:"right",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M754.752 480H160a32 32 0 1 0 0 64h594.752L521.344 777.344a32 32 0 0 0 45.312 45.312l288-288a32 32 0 0 0 0-45.312l-288-288a32 32 0 1 0-45.312 45.312z"})]))}}),Tp=Dp,Rp=p({name:"ScaleToOriginal",__name:"scale-to-original",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M813.176 180.706a60.235 60.235 0 0 1 60.236 60.235v481.883a60.235 60.235 0 0 1-60.236 60.235H210.824a60.235 60.235 0 0 1-60.236-60.235V240.94a60.235 60.235 0 0 1 60.236-60.235h602.352zm0-60.235H210.824A120.47 120.47 0 0 0 90.353 240.94v481.883a120.47 120.47 0 0 0 120.47 120.47h602.353a120.47 120.47 0 0 0 120.471-120.47V240.94a120.47 120.47 0 0 0-120.47-120.47zm-120.47 180.705a30.118 30.118 0 0 0-30.118 30.118v301.177a30.118 30.118 0 0 0 60.236 0V331.294a30.118 30.118 0 0 0-30.118-30.118zm-361.412 0a30.118 30.118 0 0 0-30.118 30.118v301.177a30.118 30.118 0 1 0 60.236 0V331.294a30.118 30.118 0 0 0-30.118-30.118M512 361.412a30.118 30.118 0 0 0-30.118 30.117v30.118a30.118 30.118 0 0 0 60.236 0V391.53A30.118 30.118 0 0 0 512 361.412M512 512a30.118 30.118 0 0 0-30.118 30.118v30.117a30.118 30.118 0 0 0 60.236 0v-30.117A30.118 30.118 0 0 0 512 512"})]))}}),Op=Rp,kp=p({name:"School",__name:"school",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M224 128v704h576V128zm-32-64h640a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M64 832h896v64H64zm256-640h128v96H320z"}),o("path",{fill:"currentColor",d:"M384 832h256v-64a128 128 0 1 0-256 0zm128-256a192 192 0 0 1 192 192v128H320V768a192 192 0 0 1 192-192M320 384h128v96H320zm256-192h128v96H576zm0 192h128v96H576z"})]))}}),Ip=kp,Np=p({name:"Scissor",__name:"scissor",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m512.064 578.368-106.88 152.768a160 160 0 1 1-23.36-78.208L472.96 522.56 196.864 128.256a32 32 0 1 1 52.48-36.736l393.024 561.344a160 160 0 1 1-23.36 78.208l-106.88-152.704zm54.4-189.248 208.384-297.6a32 32 0 0 1 52.48 36.736l-221.76 316.672-39.04-55.808zm-376.32 425.856a96 96 0 1 0 110.144-157.248 96 96 0 0 0-110.08 157.248zm643.84 0a96 96 0 1 0-110.08-157.248 96 96 0 0 0 110.08 157.248"})]))}}),$p=Np,qp=p({name:"Search",__name:"search",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704"})]))}}),jp=qp,Kp=p({name:"Select",__name:"select",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M77.248 415.04a64 64 0 0 1 90.496 0l226.304 226.304L846.528 188.8a64 64 0 1 1 90.56 90.496l-543.04 543.04-316.8-316.8a64 64 0 0 1 0-90.496z"})]))}}),Up=Kp,Wp=p({name:"Sell",__name:"sell",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M704 288h131.072a32 32 0 0 1 31.808 28.8L886.4 512h-64.384l-16-160H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0v-96H217.92l-51.2 512H512v64H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4zm-64 0v-22.336C640 189.248 582.272 128 512 128c-70.272 0-128 61.248-128 137.664v22.4h256zm201.408 483.84L768 698.496V928a32 32 0 1 1-64 0V698.496l-73.344 73.344a32 32 0 1 1-45.248-45.248l128-128a32 32 0 0 1 45.248 0l128 128a32 32 0 1 1-45.248 45.248z"})]))}}),Gp=Wp,Jp=p({name:"SemiSelect",__name:"semi-select",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 448h768q64 0 64 64t-64 64H128q-64 0-64-64t64-64"})]))}}),Zp=Jp,Yp=p({name:"Service",__name:"service",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M864 409.6a192 192 0 0 1-37.888 349.44A256.064 256.064 0 0 1 576 960h-96a32 32 0 1 1 0-64h96a192.064 192.064 0 0 0 181.12-128H736a32 32 0 0 1-32-32V416a32 32 0 0 1 32-32h32c10.368 0 20.544.832 30.528 2.432a288 288 0 0 0-573.056 0A193.235 193.235 0 0 1 256 384h32a32 32 0 0 1 32 32v320a32 32 0 0 1-32 32h-32a192 192 0 0 1-96-358.4 352 352 0 0 1 704 0M256 448a128 128 0 1 0 0 256zm640 128a128 128 0 0 0-128-128v256a128 128 0 0 0 128-128"})]))}}),Qp=Yp,Xp=p({name:"SetUp",__name:"set-up",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M224 160a64 64 0 0 0-64 64v576a64 64 0 0 0 64 64h576a64 64 0 0 0 64-64V224a64 64 0 0 0-64-64zm0-64h576a128 128 0 0 1 128 128v576a128 128 0 0 1-128 128H224A128 128 0 0 1 96 800V224A128 128 0 0 1 224 96"}),o("path",{fill:"currentColor",d:"M384 416a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"}),o("path",{fill:"currentColor",d:"M480 320h256q32 0 32 32t-32 32H480q-32 0-32-32t32-32m160 416a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"}),o("path",{fill:"currentColor",d:"M288 640h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32"})]))}}),eh=Xp,th=p({name:"Setting",__name:"setting",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M600.704 64a32 32 0 0 1 30.464 22.208l35.2 109.376c14.784 7.232 28.928 15.36 42.432 24.512l112.384-24.192a32 32 0 0 1 34.432 15.36L944.32 364.8a32 32 0 0 1-4.032 37.504l-77.12 85.12a357.12 357.12 0 0 1 0 49.024l77.12 85.248a32 32 0 0 1 4.032 37.504l-88.704 153.6a32 32 0 0 1-34.432 15.296L708.8 803.904c-13.44 9.088-27.648 17.28-42.368 24.512l-35.264 109.376A32 32 0 0 1 600.704 960H423.296a32 32 0 0 1-30.464-22.208L357.696 828.48a351.616 351.616 0 0 1-42.56-24.64l-112.32 24.256a32 32 0 0 1-34.432-15.36L79.68 659.2a32 32 0 0 1 4.032-37.504l77.12-85.248a357.12 357.12 0 0 1 0-48.896l-77.12-85.248A32 32 0 0 1 79.68 364.8l88.704-153.6a32 32 0 0 1 34.432-15.296l112.32 24.256c13.568-9.152 27.776-17.408 42.56-24.64l35.2-109.312A32 32 0 0 1 423.232 64H600.64zm-23.424 64H446.72l-36.352 113.088-24.512 11.968a294.113 294.113 0 0 0-34.816 20.096l-22.656 15.36-116.224-25.088-65.28 113.152 79.68 88.192-1.92 27.136a293.12 293.12 0 0 0 0 40.192l1.92 27.136-79.808 88.192 65.344 113.152 116.224-25.024 22.656 15.296a294.113 294.113 0 0 0 34.816 20.096l24.512 11.968L446.72 896h130.688l36.48-113.152 24.448-11.904a288.282 288.282 0 0 0 34.752-20.096l22.592-15.296 116.288 25.024 65.28-113.152-79.744-88.192 1.92-27.136a293.12 293.12 0 0 0 0-40.256l-1.92-27.136 79.808-88.128-65.344-113.152-116.288 24.96-22.592-15.232a287.616 287.616 0 0 0-34.752-20.096l-24.448-11.904L577.344 128zM512 320a192 192 0 1 1 0 384 192 192 0 0 1 0-384m0 64a128 128 0 1 0 0 256 128 128 0 0 0 0-256"})]))}}),rh=th,ah=p({name:"Share",__name:"share",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m679.872 348.8-301.76 188.608a127.808 127.808 0 0 1 5.12 52.16l279.936 104.96a128 128 0 1 1-22.464 59.904l-279.872-104.96a128 128 0 1 1-16.64-166.272l301.696-188.608a128 128 0 1 1 33.92 54.272z"})]))}}),nh=ah,lh=p({name:"Ship",__name:"ship",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 386.88V448h405.568a32 32 0 0 1 30.72 40.768l-76.48 267.968A192 192 0 0 1 687.168 896H336.832a192 192 0 0 1-184.64-139.264L75.648 488.768A32 32 0 0 1 106.368 448H448V117.888a32 32 0 0 1 47.36-28.096l13.888 7.616L512 96v2.88l231.68 126.4a32 32 0 0 1-2.048 57.216zm0-70.272 144.768-65.792L512 171.84zM512 512H148.864l18.24 64H856.96l18.24-64zM185.408 640l28.352 99.2A128 128 0 0 0 336.832 832h350.336a128 128 0 0 0 123.072-92.8l28.352-99.2H185.408"})]))}}),sh=lh,oh=p({name:"Shop",__name:"shop",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M704 704h64v192H256V704h64v64h384zm188.544-152.192C894.528 559.616 896 567.616 896 576a96 96 0 1 1-192 0 96 96 0 1 1-192 0 96 96 0 1 1-192 0 96 96 0 1 1-192 0c0-8.384 1.408-16.384 3.392-24.192L192 128h640z"})]))}}),uh=oh,ch=p({name:"ShoppingBag",__name:"shopping-bag",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M704 320v96a32 32 0 0 1-32 32h-32V320H384v128h-32a32 32 0 0 1-32-32v-96H192v576h640V320zm-384-64a192 192 0 1 1 384 0h160a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32zm64 0h256a128 128 0 1 0-256 0"}),o("path",{fill:"currentColor",d:"M192 704h640v64H192z"})]))}}),ih=ch,_h=p({name:"ShoppingCartFull",__name:"shopping-cart-full",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M432 928a48 48 0 1 1 0-96 48 48 0 0 1 0 96m320 0a48 48 0 1 1 0-96 48 48 0 0 1 0 96M96 128a32 32 0 0 1 0-64h160a32 32 0 0 1 31.36 25.728L320.64 256H928a32 32 0 0 1 31.296 38.72l-96 448A32 32 0 0 1 832 768H384a32 32 0 0 1-31.36-25.728L229.76 128zm314.24 576h395.904l82.304-384H333.44l76.8 384z"}),o("path",{fill:"currentColor",d:"M699.648 256 608 145.984 516.352 256h183.296zm-140.8-151.04a64 64 0 0 1 98.304 0L836.352 320H379.648l179.2-215.04"})]))}}),ph=_h,hh=p({name:"ShoppingCart",__name:"shopping-cart",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M432 928a48 48 0 1 1 0-96 48 48 0 0 1 0 96m320 0a48 48 0 1 1 0-96 48 48 0 0 1 0 96M96 128a32 32 0 0 1 0-64h160a32 32 0 0 1 31.36 25.728L320.64 256H928a32 32 0 0 1 31.296 38.72l-96 448A32 32 0 0 1 832 768H384a32 32 0 0 1-31.36-25.728L229.76 128zm314.24 576h395.904l82.304-384H333.44l76.8 384z"})]))}}),fh=hh,vh=p({name:"ShoppingTrolley",__name:"shopping-trolley",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M368 833c-13.3 0-24.5 4.5-33.5 13.5S321 866.7 321 880s4.5 24.5 13.5 33.5 20.2 13.8 33.5 14.5c13.3-.7 24.5-5.5 33.5-14.5S415 893.3 415 880s-4.5-24.5-13.5-33.5S381.3 833 368 833m439-193c7.4 0 13.8-2.2 19.5-6.5S836 623.3 838 616l112-448c2-10-.2-19.2-6.5-27.5S929 128 919 128H96c-9.3 0-17 3-23 9s-9 13.7-9 23 3 17 9 23 13.7 9 23 9h96v576h672c9.3 0 17-3 23-9s9-13.7 9-23-3-17-9-23-13.7-9-23-9H256v-64zM256 192h622l-96 384H256zm432 641c-13.3 0-24.5 4.5-33.5 13.5S641 866.7 641 880s4.5 24.5 13.5 33.5 20.2 13.8 33.5 14.5c13.3-.7 24.5-5.5 33.5-14.5S735 893.3 735 880s-4.5-24.5-13.5-33.5S701.3 833 688 833"})]))}}),dh=vh,mh=p({name:"Smoking",__name:"smoking",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 576v128h640V576zm-32-64h704a32 32 0 0 1 32 32v192a32 32 0 0 1-32 32H224a32 32 0 0 1-32-32V544a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M704 576h64v128h-64zM256 64h64v320h-64zM128 192h64v192h-64zM64 512h64v256H64z"})]))}}),gh=mh,wh=p({name:"Soccer",__name:"soccer",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M418.496 871.04 152.256 604.8c-16.512 94.016-2.368 178.624 42.944 224 44.928 44.928 129.344 58.752 223.296 42.24m72.32-18.176a573.056 573.056 0 0 0 224.832-137.216 573.12 573.12 0 0 0 137.216-224.832L533.888 171.84a578.56 578.56 0 0 0-227.52 138.496A567.68 567.68 0 0 0 170.432 532.48l320.384 320.384zM871.04 418.496c16.512-93.952 2.688-178.368-42.24-223.296-44.544-44.544-128.704-58.048-222.592-41.536zM149.952 874.048c-112.96-112.96-88.832-408.96 111.168-608.96C461.056 65.152 760.96 36.928 874.048 149.952c113.024 113.024 86.784 411.008-113.152 610.944-199.936 199.936-497.92 226.112-610.944 113.152m452.544-497.792 22.656-22.656a32 32 0 0 1 45.248 45.248l-22.656 22.656 45.248 45.248A32 32 0 1 1 647.744 512l-45.248-45.248L557.248 512l45.248 45.248a32 32 0 1 1-45.248 45.248L512 557.248l-45.248 45.248L512 647.744a32 32 0 1 1-45.248 45.248l-45.248-45.248-22.656 22.656a32 32 0 1 1-45.248-45.248l22.656-22.656-45.248-45.248A32 32 0 1 1 376.256 512l45.248 45.248L466.752 512l-45.248-45.248a32 32 0 1 1 45.248-45.248L512 466.752l45.248-45.248L512 376.256a32 32 0 0 1 45.248-45.248l45.248 45.248z"})]))}}),xh=wh,yh=p({name:"SoldOut",__name:"sold-out",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M704 288h131.072a32 32 0 0 1 31.808 28.8L886.4 512h-64.384l-16-160H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0v-96H217.92l-51.2 512H512v64H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4zm-64 0v-22.336C640 189.248 582.272 128 512 128c-70.272 0-128 61.248-128 137.664v22.4h256zm201.408 476.16a32 32 0 1 1 45.248 45.184l-128 128a32 32 0 0 1-45.248 0l-128-128a32 32 0 1 1 45.248-45.248L704 837.504V608a32 32 0 1 1 64 0v229.504l73.408-73.408z"})]))}}),Ch=yh,zh=p({name:"SortDown",__name:"sort-down",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M576 96v709.568L333.312 562.816A32 32 0 1 0 288 608l297.408 297.344A32 32 0 0 0 640 882.688V96a32 32 0 0 0-64 0"})]))}}),Mh=zh,bh=p({name:"SortUp",__name:"sort-up",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M384 141.248V928a32 32 0 1 0 64 0V218.56l242.688 242.688A32 32 0 1 0 736 416L438.592 118.656A32 32 0 0 0 384 141.248"})]))}}),Hh=bh,Eh=p({name:"Sort",__name:"sort",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M384 96a32 32 0 0 1 64 0v786.752a32 32 0 0 1-54.592 22.656L95.936 608a32 32 0 0 1 0-45.312h.128a32 32 0 0 1 45.184 0L384 805.632zm192 45.248a32 32 0 0 1 54.592-22.592L928.064 416a32 32 0 0 1 0 45.312h-.128a32 32 0 0 1-45.184 0L640 218.496V928a32 32 0 1 1-64 0V141.248z"})]))}}),Vh=Eh,Bh=p({name:"Stamp",__name:"stamp",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M624 475.968V640h144a128 128 0 0 1 128 128H128a128 128 0 0 1 128-128h144V475.968a192 192 0 1 1 224 0M128 896v-64h768v64z"})]))}}),Ah=Bh,Lh=p({name:"StarFilled",__name:"star-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M283.84 867.84 512 747.776l228.16 119.936a6.4 6.4 0 0 0 9.28-6.72l-43.52-254.08 184.512-179.904a6.4 6.4 0 0 0-3.52-10.88l-255.104-37.12L517.76 147.904a6.4 6.4 0 0 0-11.52 0L392.192 379.072l-255.104 37.12a6.4 6.4 0 0 0-3.52 10.88L318.08 606.976l-43.584 254.08a6.4 6.4 0 0 0 9.28 6.72z"})]))}}),Sh=Lh,Fh=p({name:"Star",__name:"star",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m512 747.84 228.16 119.936a6.4 6.4 0 0 0 9.28-6.72l-43.52-254.08 184.512-179.904a6.4 6.4 0 0 0-3.52-10.88l-255.104-37.12L517.76 147.904a6.4 6.4 0 0 0-11.52 0L392.192 379.072l-255.104 37.12a6.4 6.4 0 0 0-3.52 10.88L318.08 606.976l-43.584 254.08a6.4 6.4 0 0 0 9.28 6.72zM313.6 924.48a70.4 70.4 0 0 1-102.144-74.24l37.888-220.928L88.96 472.96A70.4 70.4 0 0 1 128 352.896l221.76-32.256 99.2-200.96a70.4 70.4 0 0 1 126.208 0l99.2 200.96 221.824 32.256a70.4 70.4 0 0 1 39.04 120.064L774.72 629.376l37.888 220.928a70.4 70.4 0 0 1-102.144 74.24L512 820.096l-198.4 104.32z"})]))}}),Ph=Fh,Dh=p({name:"Stopwatch",__name:"stopwatch",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"}),o("path",{fill:"currentColor",d:"M672 234.88c-39.168 174.464-80 298.624-122.688 372.48-64 110.848-202.624 30.848-138.624-80C453.376 453.44 540.48 355.968 672 234.816z"})]))}}),Th=Dh,Rh=p({name:"SuccessFilled",__name:"success-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m-55.808 536.384-99.52-99.584a38.4 38.4 0 1 0-54.336 54.336l126.72 126.72a38.272 38.272 0 0 0 54.336 0l262.4-262.464a38.4 38.4 0 1 0-54.272-54.336z"})]))}}),Oh=Rh,kh=p({name:"Sugar",__name:"sugar",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m801.728 349.184 4.48 4.48a128 128 0 0 1 0 180.992L534.656 806.144a128 128 0 0 1-181.056 0l-4.48-4.48-19.392 109.696a64 64 0 0 1-108.288 34.176L78.464 802.56a64 64 0 0 1 34.176-108.288l109.76-19.328-4.544-4.544a128 128 0 0 1 0-181.056l271.488-271.488a128 128 0 0 1 181.056 0l4.48 4.48 19.392-109.504a64 64 0 0 1 108.352-34.048l142.592 143.04a64 64 0 0 1-34.24 108.16l-109.248 19.2zm-548.8 198.72h447.168v2.24l60.8-60.8a63.808 63.808 0 0 0 18.752-44.416h-426.88l-89.664 89.728a64.064 64.064 0 0 0-10.24 13.248zm0 64c2.752 4.736 6.144 9.152 10.176 13.248l135.744 135.744a64 64 0 0 0 90.496 0L638.4 611.904zm490.048-230.976L625.152 263.104a64 64 0 0 0-90.496 0L416.768 380.928zM123.712 757.312l142.976 142.976 24.32-137.6a25.6 25.6 0 0 0-29.696-29.632l-137.6 24.256zm633.6-633.344-24.32 137.472a25.6 25.6 0 0 0 29.632 29.632l137.28-24.064-142.656-143.04z"})]))}}),Ih=kh,Nh=p({name:"SuitcaseLine",__name:"suitcase-line",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M922.5 229.5c-24.32-24.34-54.49-36.84-90.5-37.5H704v-64c-.68-17.98-7.02-32.98-19.01-44.99S658.01 64.66 640 64H384c-17.98.68-32.98 7.02-44.99 19.01S320.66 110 320 128v64H192c-35.99.68-66.16 13.18-90.5 37.5C77.16 253.82 64.66 283.99 64 320v448c.68 35.99 13.18 66.16 37.5 90.5s54.49 36.84 90.5 37.5h640c35.99-.68 66.16-13.18 90.5-37.5s36.84-54.49 37.5-90.5V320c-.68-35.99-13.18-66.16-37.5-90.5M384 128h256v64H384zM256 832h-64c-17.98-.68-32.98-7.02-44.99-19.01S128.66 786.01 128 768V448h128zm448 0H320V448h384zm192-64c-.68 17.98-7.02 32.98-19.01 44.99S850.01 831.34 832 832h-64V448h128zm0-384H128v-64c.69-17.98 7.02-32.98 19.01-44.99S173.99 256.66 192 256h640c17.98.69 32.98 7.02 44.99 19.01S895.34 301.99 896 320z"})]))}}),$h=Nh,qh=p({name:"Suitcase",__name:"suitcase",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 384h768v-64a64 64 0 0 0-64-64H192a64 64 0 0 0-64 64zm0 64v320a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V448zm64-256h640a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H192A128 128 0 0 1 64 768V320a128 128 0 0 1 128-128"}),o("path",{fill:"currentColor",d:"M384 128v64h256v-64zm0-64h256a64 64 0 0 1 64 64v64a64 64 0 0 1-64 64H384a64 64 0 0 1-64-64v-64a64 64 0 0 1 64-64"})]))}}),jh=qh,Kh=p({name:"Sunny",__name:"sunny",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 704a192 192 0 1 0 0-384 192 192 0 0 0 0 384m0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512m0-704a32 32 0 0 1 32 32v64a32 32 0 0 1-64 0V96a32 32 0 0 1 32-32m0 768a32 32 0 0 1 32 32v64a32 32 0 1 1-64 0v-64a32 32 0 0 1 32-32M195.2 195.2a32 32 0 0 1 45.248 0l45.248 45.248a32 32 0 1 1-45.248 45.248L195.2 240.448a32 32 0 0 1 0-45.248zm543.104 543.104a32 32 0 0 1 45.248 0l45.248 45.248a32 32 0 0 1-45.248 45.248l-45.248-45.248a32 32 0 0 1 0-45.248M64 512a32 32 0 0 1 32-32h64a32 32 0 0 1 0 64H96a32 32 0 0 1-32-32m768 0a32 32 0 0 1 32-32h64a32 32 0 1 1 0 64h-64a32 32 0 0 1-32-32M195.2 828.8a32 32 0 0 1 0-45.248l45.248-45.248a32 32 0 0 1 45.248 45.248L240.448 828.8a32 32 0 0 1-45.248 0zm543.104-543.104a32 32 0 0 1 0-45.248l45.248-45.248a32 32 0 0 1 45.248 45.248l-45.248 45.248a32 32 0 0 1-45.248 0"})]))}}),Uh=Kh,Wh=p({name:"Sunrise",__name:"sunrise",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M32 768h960a32 32 0 1 1 0 64H32a32 32 0 1 1 0-64m129.408-96a352 352 0 0 1 701.184 0h-64.32a288 288 0 0 0-572.544 0h-64.32zM512 128a32 32 0 0 1 32 32v96a32 32 0 0 1-64 0v-96a32 32 0 0 1 32-32m407.296 168.704a32 32 0 0 1 0 45.248l-67.84 67.84a32 32 0 1 1-45.248-45.248l67.84-67.84a32 32 0 0 1 45.248 0zm-814.592 0a32 32 0 0 1 45.248 0l67.84 67.84a32 32 0 1 1-45.248 45.248l-67.84-67.84a32 32 0 0 1 0-45.248"})]))}}),Gh=Wh,Jh=p({name:"Sunset",__name:"sunset",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M82.56 640a448 448 0 1 1 858.88 0h-67.2a384 384 0 1 0-724.288 0zM32 704h960q32 0 32 32t-32 32H32q-32 0-32-32t32-32m256 128h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32"})]))}}),Zh=Jh,Yh=p({name:"SwitchButton",__name:"switch-button",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M352 159.872V230.4a352 352 0 1 0 320 0v-70.528A416.128 416.128 0 0 1 512 960a416 416 0 0 1-160-800.128z"}),o("path",{fill:"currentColor",d:"M512 64q32 0 32 32v320q0 32-32 32t-32-32V96q0-32 32-32"})]))}}),Qh=Yh,Xh=p({name:"SwitchFilled",__name:"switch-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M247.47 358.4v.04c.07 19.17 7.72 37.53 21.27 51.09s31.92 21.2 51.09 21.27c39.86 0 72.41-32.6 72.41-72.4s-32.6-72.36-72.41-72.36-72.36 32.55-72.36 72.36z"}),o("path",{fill:"currentColor",d:"M492.38 128H324.7c-52.16 0-102.19 20.73-139.08 57.61a196.655 196.655 0 0 0-57.61 139.08V698.7c-.01 25.84 5.08 51.42 14.96 75.29s24.36 45.56 42.63 63.83 39.95 32.76 63.82 42.65a196.67 196.67 0 0 0 75.28 14.98h167.68c3.03 0 5.46-2.43 5.46-5.42V133.42c.6-2.99-1.83-5.42-5.46-5.42zm-56.11 705.88H324.7c-17.76.13-35.36-3.33-51.75-10.18s-31.22-16.94-43.61-29.67c-25.3-25.35-39.81-59.1-39.81-95.32V324.69c-.13-17.75 3.33-35.35 10.17-51.74a131.695 131.695 0 0 1 29.64-43.62c25.39-25.3 59.14-39.81 95.36-39.81h111.57zm402.12-647.67a196.655 196.655 0 0 0-139.08-57.61H580.48c-3.03 0-4.82 2.43-4.82 4.82v757.16c-.6 2.99 1.79 5.42 5.42 5.42h118.23a196.69 196.69 0 0 0 139.08-57.61A196.655 196.655 0 0 0 896 699.31V325.29a196.69 196.69 0 0 0-57.61-139.08zm-111.3 441.92c-42.83 0-77.82-34.99-77.82-77.82s34.98-77.82 77.82-77.82c42.83 0 77.82 34.99 77.82 77.82s-34.99 77.82-77.82 77.82z"})]))}}),e7=Xh,t7=p({name:"Switch",__name:"switch",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M118.656 438.656a32 32 0 0 1 0-45.248L416 96l4.48-3.776A32 32 0 0 1 461.248 96l3.712 4.48a32.064 32.064 0 0 1-3.712 40.832L218.56 384H928a32 32 0 1 1 0 64H141.248a32 32 0 0 1-22.592-9.344zM64 608a32 32 0 0 1 32-32h786.752a32 32 0 0 1 22.656 54.592L608 928l-4.48 3.776a32.064 32.064 0 0 1-40.832-49.024L805.632 640H96a32 32 0 0 1-32-32"})]))}}),r7=t7,a7=p({name:"TakeawayBox",__name:"takeaway-box",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M832 384H192v448h640zM96 320h832V128H96zm800 64v480a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V384H64a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32h896a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32zM416 512h192a32 32 0 0 1 0 64H416a32 32 0 0 1 0-64"})]))}}),n7=a7,l7=p({name:"Ticket",__name:"ticket",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M640 832H64V640a128 128 0 1 0 0-256V192h576v160h64V192h256v192a128 128 0 1 0 0 256v192H704V672h-64zm0-416v192h64V416z"})]))}}),s7=l7,o7=p({name:"Tickets",__name:"tickets",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M192 128v768h640V128zm-32-64h704a32 32 0 0 1 32 32v832a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m160 448h384v64H320zm0-192h192v64H320zm0 384h384v64H320z"})]))}}),u7=o7,c7=p({name:"Timer",__name:"timer",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 896a320 320 0 1 0 0-640 320 320 0 0 0 0 640m0 64a384 384 0 1 1 0-768 384 384 0 0 1 0 768"}),o("path",{fill:"currentColor",d:"M512 320a32 32 0 0 1 32 32l-.512 224a32 32 0 1 1-64 0L480 352a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M448 576a64 64 0 1 0 128 0 64 64 0 1 0-128 0m96-448v128h-64V128h-96a32 32 0 0 1 0-64h256a32 32 0 1 1 0 64z"})]))}}),i7=c7,_7=p({name:"ToiletPaper",__name:"toilet-paper",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M595.2 128H320a192 192 0 0 0-192 192v576h384V352c0-90.496 32.448-171.2 83.2-224M736 64c123.712 0 224 128.96 224 288S859.712 640 736 640H576v320H64V320A256 256 0 0 1 320 64zM576 352v224h160c84.352 0 160-97.28 160-224s-75.648-224-160-224-160 97.28-160 224"}),o("path",{fill:"currentColor",d:"M736 448c-35.328 0-64-43.008-64-96s28.672-96 64-96 64 43.008 64 96-28.672 96-64 96"})]))}}),p7=_7,h7=p({name:"Tools",__name:"tools",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M764.416 254.72a351.68 351.68 0 0 1 86.336 149.184H960v192.064H850.752a351.68 351.68 0 0 1-86.336 149.312l54.72 94.72-166.272 96-54.592-94.72a352.64 352.64 0 0 1-172.48 0L371.136 936l-166.272-96 54.72-94.72a351.68 351.68 0 0 1-86.336-149.312H64v-192h109.248a351.68 351.68 0 0 1 86.336-149.312L204.8 160l166.208-96h.192l54.656 94.592a352.64 352.64 0 0 1 172.48 0L652.8 64h.128L819.2 160l-54.72 94.72zM704 499.968a192 192 0 1 0-384 0 192 192 0 0 0 384 0"})]))}}),f7=h7,v7=p({name:"TopLeft",__name:"top-left",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 256h416a32 32 0 1 0 0-64H224a32 32 0 0 0-32 32v448a32 32 0 0 0 64 0z"}),o("path",{fill:"currentColor",d:"M246.656 201.344a32 32 0 0 0-45.312 45.312l544 544a32 32 0 0 0 45.312-45.312l-544-544z"})]))}}),d7=v7,m7=p({name:"TopRight",__name:"top-right",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M768 256H353.6a32 32 0 1 1 0-64H800a32 32 0 0 1 32 32v448a32 32 0 0 1-64 0z"}),o("path",{fill:"currentColor",d:"M777.344 201.344a32 32 0 0 1 45.312 45.312l-544 544a32 32 0 0 1-45.312-45.312l544-544z"})]))}}),g7=m7,w7=p({name:"Top",__name:"top",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M572.235 205.282v600.365a30.118 30.118 0 1 1-60.235 0V205.282L292.382 438.633a28.913 28.913 0 0 1-42.646 0 33.43 33.43 0 0 1 0-45.236l271.058-288.045a28.913 28.913 0 0 1 42.647 0L834.5 393.397a33.43 33.43 0 0 1 0 45.176 28.913 28.913 0 0 1-42.647 0l-219.618-233.23z"})]))}}),x7=w7,y7=p({name:"TrendCharts",__name:"trend-charts",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 896V128h768v768zm291.712-327.296 128 102.4 180.16-201.792-47.744-42.624-139.84 156.608-128-102.4-180.16 201.792 47.744 42.624 139.84-156.608zM816 352a48 48 0 1 0-96 0 48 48 0 0 0 96 0"})]))}}),C7=y7,z7=p({name:"TrophyBase",__name:"trophy-base",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M918.4 201.6c-6.4-6.4-12.8-9.6-22.4-9.6H768V96c0-9.6-3.2-16-9.6-22.4C752 67.2 745.6 64 736 64H288c-9.6 0-16 3.2-22.4 9.6C259.2 80 256 86.4 256 96v96H128c-9.6 0-16 3.2-22.4 9.6-6.4 6.4-9.6 16-9.6 22.4 3.2 108.8 25.6 185.6 64 224 34.4 34.4 77.56 55.65 127.65 61.99 10.91 20.44 24.78 39.25 41.95 56.41 40.86 40.86 91 65.47 150.4 71.9V768h-96c-9.6 0-16 3.2-22.4 9.6-6.4 6.4-9.6 12.8-9.6 22.4s3.2 16 9.6 22.4c6.4 6.4 12.8 9.6 22.4 9.6h256c9.6 0 16-3.2 22.4-9.6 6.4-6.4 9.6-12.8 9.6-22.4s-3.2-16-9.6-22.4c-6.4-6.4-12.8-9.6-22.4-9.6h-96V637.26c59.4-7.71 109.54-30.01 150.4-70.86 17.2-17.2 31.51-36.06 42.81-56.55 48.93-6.51 90.02-27.7 126.79-61.85 38.4-38.4 60.8-112 64-224 0-6.4-3.2-16-9.6-22.4zM256 438.4c-19.2-6.4-35.2-19.2-51.2-35.2-22.4-22.4-35.2-70.4-41.6-147.2H256zm390.4 80C608 553.6 566.4 576 512 576s-99.2-19.2-134.4-57.6C342.4 480 320 438.4 320 384V128h384v256c0 54.4-19.2 99.2-57.6 134.4m172.8-115.2c-16 16-32 25.6-51.2 35.2V256h92.8c-6.4 76.8-19.2 124.8-41.6 147.2zM768 896H256c-9.6 0-16 3.2-22.4 9.6-6.4 6.4-9.6 12.8-9.6 22.4s3.2 16 9.6 22.4c6.4 6.4 12.8 9.6 22.4 9.6h512c9.6 0 16-3.2 22.4-9.6 6.4-6.4 9.6-12.8 9.6-22.4s-3.2-16-9.6-22.4c-6.4-6.4-12.8-9.6-22.4-9.6"})]))}}),M7=z7,b7=p({name:"Trophy",__name:"trophy",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M480 896V702.08A256.256 256.256 0 0 1 264.064 512h-32.64a96 96 0 0 1-91.968-68.416L93.632 290.88a76.8 76.8 0 0 1 73.6-98.88H256V96a32 32 0 0 1 32-32h448a32 32 0 0 1 32 32v96h88.768a76.8 76.8 0 0 1 73.6 98.88L884.48 443.52A96 96 0 0 1 792.576 512h-32.64A256.256 256.256 0 0 1 544 702.08V896h128a32 32 0 1 1 0 64H352a32 32 0 1 1 0-64zm224-448V128H320v320a192 192 0 1 0 384 0m64 0h24.576a32 32 0 0 0 30.656-22.784l45.824-152.768A12.8 12.8 0 0 0 856.768 256H768zm-512 0V256h-88.768a12.8 12.8 0 0 0-12.288 16.448l45.824 152.768A32 32 0 0 0 231.424 448z"})]))}}),H7=b7,E7=p({name:"TurnOff",__name:"turn-off",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M329.956 257.138a254.862 254.862 0 0 0 0 509.724h364.088a254.862 254.862 0 0 0 0-509.724zm0-72.818h364.088a327.68 327.68 0 1 1 0 655.36H329.956a327.68 327.68 0 1 1 0-655.36z"}),o("path",{fill:"currentColor",d:"M329.956 621.227a109.227 109.227 0 1 0 0-218.454 109.227 109.227 0 0 0 0 218.454m0 72.817a182.044 182.044 0 1 1 0-364.088 182.044 182.044 0 0 1 0 364.088"})]))}}),V7=E7,B7=p({name:"Umbrella",__name:"umbrella",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M320 768a32 32 0 1 1 64 0 64 64 0 0 0 128 0V512H64a448 448 0 1 1 896 0H576v256a128 128 0 1 1-256 0m570.688-320a384.128 384.128 0 0 0-757.376 0z"})]))}}),A7=B7,L7=p({name:"Unlock",__name:"unlock",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M224 448a32 32 0 0 0-32 32v384a32 32 0 0 0 32 32h576a32 32 0 0 0 32-32V480a32 32 0 0 0-32-32zm0-64h576a96 96 0 0 1 96 96v384a96 96 0 0 1-96 96H224a96 96 0 0 1-96-96V480a96 96 0 0 1 96-96"}),o("path",{fill:"currentColor",d:"M512 544a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V576a32 32 0 0 1 32-32m178.304-295.296A192.064 192.064 0 0 0 320 320v64h352l96 38.4V448H256V320a256 256 0 0 1 493.76-95.104z"})]))}}),S7=L7,F7=p({name:"UploadFilled",__name:"upload-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M544 864V672h128L512 480 352 672h128v192H320v-1.6c-5.376.32-10.496 1.6-16 1.6A240 240 0 0 1 64 624c0-123.136 93.12-223.488 212.608-237.248A239.808 239.808 0 0 1 512 192a239.872 239.872 0 0 1 235.456 194.752c119.488 13.76 212.48 114.112 212.48 237.248a240 240 0 0 1-240 240c-5.376 0-10.56-1.28-16-1.6v1.6z"})]))}}),P7=F7,D7=p({name:"Upload",__name:"upload",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 832h704a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64m384-578.304V704h-64V247.296L237.248 490.048 192 444.8 508.8 128l316.8 316.8-45.312 45.248z"})]))}}),T7=D7,R7=p({name:"UserFilled",__name:"user-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M288 320a224 224 0 1 0 448 0 224 224 0 1 0-448 0m544 608H160a32 32 0 0 1-32-32v-96a160 160 0 0 1 160-160h448a160 160 0 0 1 160 160v96a32 32 0 0 1-32 32z"})]))}}),O7=R7,k7=p({name:"User",__name:"user",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 512a192 192 0 1 0 0-384 192 192 0 0 0 0 384m0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512m320 320v-96a96 96 0 0 0-96-96H288a96 96 0 0 0-96 96v96a32 32 0 1 1-64 0v-96a160 160 0 0 1 160-160h448a160 160 0 0 1 160 160v96a32 32 0 1 1-64 0"})]))}}),I7=k7,N7=p({name:"Van",__name:"van",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128.896 736H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v96h164.544a32 32 0 0 1 31.616 27.136l54.144 352A32 32 0 0 1 922.688 736h-91.52a144 144 0 1 1-286.272 0H415.104a144 144 0 1 1-286.272 0zm23.36-64a143.872 143.872 0 0 1 239.488 0H568.32c17.088-25.6 42.24-45.376 71.744-55.808V256H128v416zm655.488 0h77.632l-19.648-128H704v64.896A144 144 0 0 1 807.744 672m48.128-192-14.72-96H704v96h151.872M688 832a80 80 0 1 0 0-160 80 80 0 0 0 0 160m-416 0a80 80 0 1 0 0-160 80 80 0 0 0 0 160"})]))}}),$7=N7,q7=p({name:"VideoCameraFilled",__name:"video-camera-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m768 576 192-64v320l-192-64v96a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V480a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32zM192 768v64h384v-64zm192-480a160 160 0 0 1 320 0 160 160 0 0 1-320 0m64 0a96 96 0 1 0 192.064-.064A96 96 0 0 0 448 288m-320 32a128 128 0 1 1 256.064.064A128 128 0 0 1 128 320m64 0a64 64 0 1 0 128 0 64 64 0 0 0-128 0"})]))}}),j7=q7,K7=p({name:"VideoCamera",__name:"video-camera",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M704 768V256H128v512zm64-416 192-96v512l-192-96v128a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32zm0 71.552v176.896l128 64V359.552zM192 320h192v64H192z"})]))}}),U7=K7,W7=p({name:"VideoPause",__name:"video-pause",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768m-96-544q32 0 32 32v256q0 32-32 32t-32-32V384q0-32 32-32m192 0q32 0 32 32v256q0 32-32 32t-32-32V384q0-32 32-32"})]))}}),G7=W7,J7=p({name:"VideoPlay",__name:"video-play",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768m-48-247.616L668.608 512 464 375.616zm10.624-342.656 249.472 166.336a48 48 0 0 1 0 79.872L474.624 718.272A48 48 0 0 1 400 678.336V345.6a48 48 0 0 1 74.624-39.936z"})]))}}),Z7=J7,Y7=p({name:"View",__name:"view",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 160c320 0 512 352 512 352S832 864 512 864 0 512 0 512s192-352 512-352m0 64c-225.28 0-384.128 208.064-436.8 288 52.608 79.872 211.456 288 436.8 288 225.28 0 384.128-208.064 436.8-288-52.608-79.872-211.456-288-436.8-288zm0 64a224 224 0 1 1 0 448 224 224 0 0 1 0-448m0 64a160.192 160.192 0 0 0-160 160c0 88.192 71.744 160 160 160s160-71.808 160-160-71.744-160-160-160"})]))}}),Q7=Y7,X7=p({name:"WalletFilled",__name:"wallet-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M688 512a112 112 0 1 0 0 224h208v160H128V352h768v160zm32 160h-32a48 48 0 0 1 0-96h32a48 48 0 0 1 0 96m-80-544 128 160H384z"})]))}}),ef=X7,tf=p({name:"Wallet",__name:"wallet",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M640 288h-64V128H128v704h384v32a32 32 0 0 0 32 32H96a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32h512a32 32 0 0 1 32 32z"}),o("path",{fill:"currentColor",d:"M128 320v512h768V320zm-32-64h832a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M704 640a64 64 0 1 1 0-128 64 64 0 0 1 0 128"})]))}}),rf=tf,af=p({name:"WarnTriangleFilled",__name:"warn-triangle-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M928.99 755.83 574.6 203.25c-12.89-20.16-36.76-32.58-62.6-32.58s-49.71 12.43-62.6 32.58L95.01 755.83c-12.91 20.12-12.9 44.91.01 65.03 12.92 20.12 36.78 32.51 62.59 32.49h708.78c25.82.01 49.68-12.37 62.59-32.49 12.91-20.12 12.92-44.91.01-65.03M554.67 768h-85.33v-85.33h85.33zm0-426.67v298.66h-85.33V341.32z"})]))}}),nf=af,lf=p({name:"WarningFilled",__name:"warning-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 192a58.432 58.432 0 0 0-58.24 63.744l23.36 256.384a35.072 35.072 0 0 0 69.76 0l23.296-256.384A58.432 58.432 0 0 0 512 256m0 512a51.2 51.2 0 1 0 0-102.4 51.2 51.2 0 0 0 0 102.4"})]))}}),sf=lf,of=p({name:"Warning",__name:"warning",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768m48-176a48 48 0 1 1-96 0 48 48 0 0 1 96 0m-48-464a32 32 0 0 1 32 32v288a32 32 0 0 1-64 0V288a32 32 0 0 1 32-32"})]))}}),uf=of,cf=p({name:"Watch",__name:"watch",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 768a256 256 0 1 0 0-512 256 256 0 0 0 0 512m0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640"}),o("path",{fill:"currentColor",d:"M480 352a32 32 0 0 1 32 32v160a32 32 0 0 1-64 0V384a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M480 512h128q32 0 32 32t-32 32H480q-32 0-32-32t32-32m128-256V128H416v128h-64V64h320v192zM416 768v128h192V768h64v192H352V768z"})]))}}),_f=cf,pf=p({name:"Watermelon",__name:"watermelon",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m683.072 600.32-43.648 162.816-61.824-16.512 53.248-198.528L576 493.248l-158.4 158.4-45.248-45.248 158.4-158.4-55.616-55.616-198.528 53.248-16.512-61.824 162.816-43.648L282.752 200A384 384 0 0 0 824 741.248zm231.552 141.056a448 448 0 1 1-632-632l632 632"})]))}}),hf=pf,ff=p({name:"WindPower",__name:"wind-power",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 64q32 0 32 32v832q0 32-32 32t-32-32V96q0-32 32-32m416 354.624 128-11.584V168.96l-128-11.52v261.12zm-64 5.824V151.552L320 134.08V160h-64V64l616.704 56.064A96 96 0 0 1 960 215.68v144.64a96 96 0 0 1-87.296 95.616L256 512V224h64v217.92zm256-23.232 98.88-8.96A32 32 0 0 0 896 360.32V215.68a32 32 0 0 0-29.12-31.872l-98.88-8.96z"})]))}}),vf=ff,df=p({name:"ZoomIn",__name:"zoom-in",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704m-32-384v-96a32 32 0 0 1 64 0v96h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64z"})]))}}),mf=df,gf=p({name:"ZoomOut",__name:"zoom-out",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704M352 448h256a32 32 0 0 1 0 64H352a32 32 0 0 1 0-64"})]))}}),wf=gf;const xf=Object.freeze(Object.defineProperty({__proto__:null,AddLocation:Es,Aim:Bs,AlarmClock:Ls,Apple:Fs,ArrowDown:Rs,ArrowDownBold:Ds,ArrowLeft:Ns,ArrowLeftBold:ks,ArrowRight:Ks,ArrowRightBold:qs,ArrowUp:Js,ArrowUpBold:Ws,Avatar:Ys,Back:Xs,Baseball:to,Basketball:ao,Bell:oo,BellFilled:lo,Bicycle:co,Bottom:vo,BottomLeft:_o,BottomRight:ho,Bowl:go,Box:xo,Briefcase:Co,Brush:Ho,BrushFilled:Mo,Burger:Vo,Calendar:Ao,Camera:Po,CameraFilled:So,CaretBottom:To,CaretLeft:Oo,CaretRight:Io,CaretTop:$o,Cellphone:jo,ChatDotRound:Uo,ChatDotSquare:Go,ChatLineRound:Zo,ChatLineSquare:Qo,ChatRound:eu,ChatSquare:ru,Check:nu,Checked:su,Cherry:uu,Chicken:iu,ChromeFilled:pu,CircleCheck:du,CircleCheckFilled:fu,CircleClose:xu,CircleCloseFilled:gu,CirclePlus:Mu,CirclePlusFilled:Cu,Clock:Hu,Close:Au,CloseBold:Vu,Cloudy:Su,Coffee:Tu,CoffeeCup:Pu,Coin:Ou,ColdDrink:Iu,Collection:ju,CollectionTag:$u,Comment:Uu,Compass:Gu,Connection:Zu,Coordinate:Qu,CopyDocument:ec,Cpu:rc,CreditCard:nc,Crop:sc,DArrowLeft:uc,DArrowRight:ic,DCaret:pc,DataAnalysis:fc,DataBoard:dc,DataLine:gc,Delete:Mc,DeleteFilled:xc,DeleteLocation:Cc,Dessert:Hc,Discount:Vc,Dish:Sc,DishDot:Ac,Document:jc,DocumentAdd:Pc,DocumentChecked:Tc,DocumentCopy:Oc,DocumentDelete:Ic,DocumentRemove:$c,Download:Uc,Drizzling:Gc,Edit:Qc,EditPen:Zc,Eleme:ri,ElemeFilled:ei,ElementPlus:ni,Expand:si,Failed:ui,Female:ii,Files:pi,Film:fi,Filter:di,Finished:gi,FirstAidKit:xi,Flag:Ci,Fold:Mi,Folder:Ti,FolderAdd:Hi,FolderChecked:Vi,FolderDelete:Ai,FolderOpened:Si,FolderRemove:Pi,Food:Oi,Football:Ii,ForkSpoon:$i,Fries:ji,FullScreen:Ui,Goblet:e5,GobletFull:Gi,GobletSquare:Qi,GobletSquareFull:Zi,GoldMedal:r5,Goods:s5,GoodsFilled:n5,Grape:u5,Grid:i5,Guide:p5,Handbag:f5,Headset:d5,Help:x5,HelpFilled:g5,Hide:C5,Histogram:M5,HomeFilled:H5,HotWater:V5,House:A5,IceCream:T5,IceCreamRound:S5,IceCreamSquare:P5,IceDrink:O5,IceTea:I5,InfoFilled:$5,Iphone:j5,Key:U5,KnifeFork:G5,Lightning:Z5,Link:Q5,List:e9,Loading:r9,Location:u9,LocationFilled:n9,LocationInformation:s9,Lock:i9,Lollipop:p9,MagicStick:f9,Magnet:d9,Male:g9,Management:x9,MapLocation:C9,Medal:M9,Memo:H9,Menu:V9,Message:S9,MessageBox:A9,Mic:P9,Microphone:T9,MilkTea:O9,Minus:I9,Money:$9,Monitor:j9,Moon:G9,MoonNight:U9,More:Q9,MoreFilled:Z9,MostlyCloudy:e_,Mouse:r_,Mug:n_,Mute:u_,MuteNotification:s_,NoSmoking:i_,Notebook:p_,Notification:f_,Odometer:d_,OfficeBuilding:g_,Open:x_,Operation:C_,Opportunity:M_,Orange:H_,Paperclip:V_,PartlyCloudy:A_,Pear:S_,Phone:T_,PhoneFilled:P_,Picture:$_,PictureFilled:O_,PictureRounded:I_,PieChart:j_,Place:U_,Platform:G_,Plus:Z_,Pointer:Q_,Position:ep,Postcard:rp,Pouring:np,Present:sp,PriceTag:up,Printer:ip,Promotion:pp,QuartzWatch:fp,QuestionFilled:dp,Rank:gp,Reading:Cp,ReadingLamp:xp,Refresh:Vp,RefreshLeft:Mp,RefreshRight:Hp,Refrigerator:Ap,Remove:Pp,RemoveFilled:Sp,Right:Tp,ScaleToOriginal:Op,School:Ip,Scissor:$p,Search:jp,Select:Up,Sell:Gp,SemiSelect:Zp,Service:Qp,SetUp:eh,Setting:rh,Share:nh,Ship:sh,Shop:uh,ShoppingBag:ih,ShoppingCart:fh,ShoppingCartFull:ph,ShoppingTrolley:dh,Smoking:gh,Soccer:xh,SoldOut:Ch,Sort:Vh,SortDown:Mh,SortUp:Hh,Stamp:Ah,Star:Ph,StarFilled:Sh,Stopwatch:Th,SuccessFilled:Oh,Sugar:Ih,Suitcase:jh,SuitcaseLine:$h,Sunny:Uh,Sunrise:Gh,Sunset:Zh,Switch:r7,SwitchButton:Qh,SwitchFilled:e7,TakeawayBox:n7,Ticket:s7,Tickets:u7,Timer:i7,ToiletPaper:p7,Tools:f7,Top:x7,TopLeft:d7,TopRight:g7,TrendCharts:C7,Trophy:H7,TrophyBase:M7,TurnOff:V7,Umbrella:A7,Unlock:S7,Upload:T7,UploadFilled:P7,User:I7,UserFilled:O7,Van:$7,VideoCamera:U7,VideoCameraFilled:j7,VideoPause:G7,VideoPlay:Z7,View:Q7,Wallet:rf,WalletFilled:ef,WarnTriangleFilled:nf,Warning:uf,WarningFilled:sf,Watch:_f,Watermelon:hf,WindPower:vf,ZoomIn:mf,ZoomOut:wf},Symbol.toStringTag,{value:"Module"})),yf=I3({a11y:{type:Boolean,default:!0},locale:{type:A1(Object)},size:ys,button:{type:A1(Object)},experimentalFeatures:{type:A1(Object)},keyboardNavigation:{type:Boolean,default:!0},message:{type:A1(Object)},zIndex:Number,namespace:{type:String,default:"el"},...zs}),Cf={},zf=p({name:"ElConfigProvider",props:yf,setup(e,{slots:t}){j2(()=>e.message,a=>{Object.assign(Cf,a??{})},{immediate:!0,deep:!0});const r=q3(e);return()=>Z8(t,"default",{config:r==null?void 0:r.value})}}),Mf=bs(zf);var bf={name:"zh-cn",el:{breadcrumb:{label:"面包屑"},colorpicker:{confirm:"确定",clear:"清空",defaultLabel:"颜色选择器",description:"当前颜色 {color},按 Enter 键选择新颜色",alphaLabel:"选择透明度的值"},datepicker:{now:"此刻",today:"今天",cancel:"取消",clear:"清空",confirm:"确定",dateTablePrompt:"使用方向键与 Enter 键可选择日期",monthTablePrompt:"使用方向键与 Enter 键可选择月份",yearTablePrompt:"使用方向键与 Enter 键可选择年份",selectedDate:"已选日期",selectDate:"选择日期",selectTime:"选择时间",startDate:"开始日期",startTime:"开始时间",endDate:"结束日期",endTime:"结束时间",prevYear:"前一年",nextYear:"后一年",prevMonth:"上个月",nextMonth:"下个月",year:"年",month1:"1 月",month2:"2 月",month3:"3 月",month4:"4 月",month5:"5 月",month6:"6 月",month7:"7 月",month8:"8 月",month9:"9 月",month10:"10 月",month11:"11 月",month12:"12 月",weeks:{sun:"日",mon:"一",tue:"二",wed:"三",thu:"四",fri:"五",sat:"六"},weeksFull:{sun:"星期日",mon:"星期一",tue:"星期二",wed:"星期三",thu:"星期四",fri:"星期五",sat:"星期六"},months:{jan:"一月",feb:"二月",mar:"三月",apr:"四月",may:"五月",jun:"六月",jul:"七月",aug:"八月",sep:"九月",oct:"十月",nov:"十一月",dec:"十二月"}},inputNumber:{decrease:"减少数值",increase:"增加数值"},select:{loading:"加载中",noMatch:"无匹配数据",noData:"无数据",placeholder:"请选择"},dropdown:{toggleDropdown:"切换下拉选项"},mention:{loading:"加载中"},cascader:{noMatch:"无匹配数据",loading:"加载中",placeholder:"请选择",noData:"暂无数据"},pagination:{goto:"前往",pagesize:"条/页",total:"共 {total} 条",pageClassifier:"页",page:"页",prev:"上一页",next:"下一页",currentPage:"第 {pager} 页",prevPages:"向前 {pager} 页",nextPages:"向后 {pager} 页",deprecationWarning:"你使用了一些已被废弃的用法,请参考 el-pagination 的官方文档"},dialog:{close:"关闭此对话框"},drawer:{close:"关闭此对话框"},messagebox:{title:"提示",confirm:"确定",cancel:"取消",error:"输入的数据不合法!",close:"关闭此对话框"},upload:{deleteTip:"按 delete 键可删除",delete:"删除",preview:"查看图片",continue:"继续上传"},slider:{defaultLabel:"滑块介于 {min} 至 {max}",defaultRangeStartLabel:"选择起始值",defaultRangeEndLabel:"选择结束值"},table:{emptyText:"暂无数据",confirmFilter:"筛选",resetFilter:"重置",clearFilter:"全部",sumText:"合计"},tour:{next:"下一步",previous:"上一步",finish:"结束导览"},tree:{emptyText:"暂无数据"},transfer:{noMatch:"无匹配数据",noData:"无数据",titles:["列表 1","列表 2"],filterPlaceholder:"请输入搜索内容",noCheckedFormat:"共 {total} 项",hasCheckedFormat:"已选 {checked}/{total} 项"},image:{error:"加载失败"},pageHeader:{title:"返回"},popconfirm:{confirmButtonText:"确定",cancelButtonText:"取消"},carousel:{leftArrow:"上一张幻灯片",rightArrow:"下一张幻灯片",indicator:"幻灯片切换至索引 {index}"}}};const Hf={__name:"App",setup(e){return(t,r)=>{const a=J8("router-view"),n=Mf;return i(),N1(n,{locale:M0(bf)},{default:d4(()=>[z0(a)]),_:1},8,["locale"])}}};window._iconfont_svg_string_4826982='',(e=>{var t=(r=(r=document.getElementsByTagName("script"))[r.length-1]).getAttribute("data-injectcss"),r=r.getAttribute("data-disable-injectsvg");if(!r){var a,n,l,s,u,c=function(v,g){g.parentNode.insertBefore(v,g)};if(t&&!e.__iconfont__svg__cssinject__){e.__iconfont__svg__cssinject__=!0;try{document.write("")}catch(v){console&&console.log(v)}}a=function(){var v,g=document.createElement("div");g.innerHTML=e._iconfont_svg_string_4826982,(g=g.getElementsByTagName("svg")[0])&&(g.setAttribute("aria-hidden","true"),g.style.position="absolute",g.style.width=0,g.style.height=0,g.style.overflow="hidden",g=g,(v=document.body).firstChild?c(g,v.firstChild):v.appendChild(g))},document.addEventListener?~["complete","loaded","interactive"].indexOf(document.readyState)?setTimeout(a,0):(n=function(){document.removeEventListener("DOMContentLoaded",n,!1),a()},document.addEventListener("DOMContentLoaded",n,!1)):document.attachEvent&&(l=a,s=e.document,u=!1,_(),s.onreadystatechange=function(){s.readyState=="complete"&&(s.onreadystatechange=null,f())})}function f(){u||(u=!0,l())}function _(){try{s.documentElement.doScroll("left")}catch{return void setTimeout(_,50)}f()}})(window);let w6=ga(Hf);for(const[e,t]of Object.entries(xf))w6.component(e,t);w6.use(b3);w6.mount("#app");export{s2 as $,u1 as A,X1 as B,I8 as C,s6 as D,a6 as E,S0 as F,V4 as G,Tf as H,Z8 as I,Lf as J,o0 as K,bs as L,S2 as M,k0 as N,g2 as O,le as P,B0 as Q,Uf as R,G2 as S,Rf as T,Ar as U,h0 as V,o4 as W,Ql as X,hs as Y,_s as Z,k3 as _,$n as a,Yl as a$,K as a0,Kf as a1,j as a2,Af as a3,q8 as a4,An as a5,ee as a6,N8 as a7,a8,_6 as a9,i7 as aA,P7 as aB,Ou as aC,xs as aD,Ef as aE,ev as aF,lv as aG,uv as aH,ga as aI,sv as aJ,w2 as aK,qf as aL,d6 as aM,h6 as aN,K1 as aO,Vt as aP,pl as aQ,vl as aR,Jn as aS,B3 as aT,Sn as aU,_l as aV,J2 as aW,Rl as aX,Xn as aY,S3 as aZ,F3 as a_,mr as aa,gs as ab,v0 as ac,l8 as ad,$3 as ae,P1 as af,rv as ag,Pf as ah,Ff as ai,dp as aj,Br as ak,sf as al,du as am,xu as an,nu as ao,Au as ap,Sf as aq,Nf as ar,If as as,jc as at,mf as au,Mc as av,kf as aw,It as ax,nv as ay,I7 as az,g6 as b,Xl as b0,Yf as b1,St as b2,tv as b3,Jf as b4,Zf as b5,Qf as b6,qe as b7,Xf as b8,N0 as b9,Wf as ba,jf as bb,r9 as bc,$5 as bd,gu as be,Oh as bf,ys as bg,Gf as bh,A4 as bi,av as bj,Df as bk,Q7 as bl,C5 as bm,m1 as bn,$f as bo,ov as bp,b3 as bq,I3 as c,p as d,L3 as e,x0 as f,l0 as g,N1 as h,v6 as i,i as j,Bf as k,o as l,M0 as m,Je as n,B4 as o,Ge as p,h as q,X0 as r,z0 as s,Vf as t,Ln as u,Of as v,d4 as w,ts as x,A1 as y,j2 as z}; diff --git a/dev-assistant-service/src/main/resources/static/index.html b/dev-assistant-service/src/main/resources/static/index.html new file mode 100644 index 0000000..4eea933 --- /dev/null +++ b/dev-assistant-service/src/main/resources/static/index.html @@ -0,0 +1,14 @@ + + + + + + + 开发助手 + + + + + + + diff --git a/dev-assistant-service/src/main/resources/static/logo.png b/dev-assistant-service/src/main/resources/static/logo.png new file mode 100644 index 0000000..2e9c59e Binary files /dev/null and b/dev-assistant-service/src/main/resources/static/logo.png differ diff --git a/dev-assistant-web/index.html b/dev-assistant-web/index.html index 3267bef..fd1b4df 100644 --- a/dev-assistant-web/index.html +++ b/dev-assistant-web/index.html @@ -2,7 +2,7 @@ - + 开发助手 diff --git a/dev-assistant-web/public/logo.png b/dev-assistant-web/public/logo.png new file mode 100644 index 0000000..2e9c59e Binary files /dev/null and b/dev-assistant-web/public/logo.png differ diff --git a/dev-assistant-web/src/App.vue b/dev-assistant-web/src/App.vue index 843adce..7db5bcb 100644 --- a/dev-assistant-web/src/App.vue +++ b/dev-assistant-web/src/App.vue @@ -11,6 +11,24 @@ import {zhCn} from "element-plus/es/locale/index"; diff --git a/dev-assistant-web/src/api/file.js b/dev-assistant-web/src/api/file.js new file mode 100644 index 0000000..8d30db1 --- /dev/null +++ b/dev-assistant-web/src/api/file.js @@ -0,0 +1,5 @@ +import http from '~/axios/index.js'; + +export const getFileListApi = data => http.post("/file/getFileList", data) +export const delFileApi = data => http.post("/file/delFile", data) +export const downloadFileApi = data => http.post("/note/downloadFile", data) \ No newline at end of file diff --git a/dev-assistant-web/src/api/login.js b/dev-assistant-web/src/api/login.js new file mode 100644 index 0000000..5e8940a --- /dev/null +++ b/dev-assistant-web/src/api/login.js @@ -0,0 +1,3 @@ +import http from '~/axios/index.js'; + +export const loginApi = data => http.post("/authentication/login", data) \ No newline at end of file diff --git a/dev-assistant-web/src/api/note.js b/dev-assistant-web/src/api/note.js new file mode 100644 index 0000000..f1a2fa7 --- /dev/null +++ b/dev-assistant-web/src/api/note.js @@ -0,0 +1,6 @@ +import http from '~/axios/index.js'; + +export const addNoteApi = data => http.post("/note/addNote", data) +export const updateNoteApi = data => http.post("/note/updateNote", data) +export const delNoteApi = data => http.post("/note/delNote", data) +export const getNoteListApi = data => http.post("/note/getNoteList", data) \ No newline at end of file diff --git a/dev-assistant-web/src/assets/background.svg b/dev-assistant-web/src/assets/background.svg new file mode 100644 index 0000000..bdfbb99 --- /dev/null +++ b/dev-assistant-web/src/assets/background.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dev-assistant-web/src/axios/index.js b/dev-assistant-web/src/axios/index.js new file mode 100644 index 0000000..7823a9b --- /dev/null +++ b/dev-assistant-web/src/axios/index.js @@ -0,0 +1,57 @@ +import axios from 'axios'; +import {ElNotification} from "element-plus"; +import router from "~/router"; + +const http = axios.create(); + +// 添加请求拦截器 +http.interceptors.request.use(function (config) { + return config; +}, function (error) { + console.log('error.response1', error.response) + return Promise.reject(error); +}); + +// 添加响应拦截器 +http.interceptors.response.use(function (response) { + if (response.data.code === 400) { + let content = response.data.message + ElNotification({ + title: '请求参数错误', + message: content, + position: 'top-right', + type: 'error', + }) + } + return response; +}, function (error) { + if (error.response.status === 401) { + ElNotification({ + title: '请重新登陆', + message: '请重新登陆', + position: 'top-right', + type: 'error', + }) + router.push({path: '/login'}) + } else if (error.response.status === 403) { + let content = error.response.data.message + ElNotification({ + title: '操作错误', + message: content, + position: 'top-right', + type: 'error', + }) + } else if (error.response.status === 500) { + let content = error.response.data.message + ElNotification({ + title: '系统错误', + message: content, + position: 'top-right', + type: 'error', + }) + } + return Promise.reject(error); +}); + +export default http + diff --git a/dev-assistant-web/src/views/Index.vue b/dev-assistant-web/src/views/Index.vue index 06d2239..936b6f4 100644 --- a/dev-assistant-web/src/views/Index.vue +++ b/dev-assistant-web/src/views/Index.vue @@ -1,8 +1,12 @@ + - - + + + + + 笔记 + + + + 新建笔记 + + + + + + + - - - - - - - - - - 新建笔记 - - - - - - - {{ note.content }} - - - - - - - - {{ note.updateIp }} - - - - - - {{ note.updateTime }} - - - - 修改 - 删除 - - - - - - - - - - - - - - - 拖动文件到这里 或 点击上传 - - - - - - - - - - - - {{ file.fileName }} - - - - - - - - - {{ file.uploadIp }} - - - - - - {{ file.uploadTime }} - - - - 下载 - 删除 - + + + + + {{ note.content }} + + + + + + + + + {{ note.updateIp }} + + + + + + {{ note.updateTime }} + - - - - - + + 修改 + + + 删除 + + + + + + + + + + + + + 文件 + + + + + + + + 拖动文件到这里 或 点击上传 + + + + + + + + + + + + + + + + + {{ file.fileName }} + + + + + + + + {{ formatFileSize(file.fileSize) }} + + + + + + + + {{ file.uploadIp }} + + + + + + + + + + + + {{ file.uploadTime }} + + + + 下载 + + + 删除 + + + + + + + + + + + - - + + - 取消 - 保存 + 保存 \ No newline at end of file diff --git a/dev-assistant-web/src/views/Login.vue b/dev-assistant-web/src/views/Login.vue index f79cdd8..5ca5bea 100644 --- a/dev-assistant-web/src/views/Login.vue +++ b/dev-assistant-web/src/views/Login.vue @@ -1,11 +1,125 @@ - + + + + + 通用登陆页 + + + + + + + 登录 + + + {{ message }} + + + + \ No newline at end of file diff --git a/dev-assistant-web/vite.config.js b/dev-assistant-web/vite.config.js index a07fde7..0d832f1 100644 --- a/dev-assistant-web/vite.config.js +++ b/dev-assistant-web/vite.config.js @@ -14,8 +14,16 @@ export default defineConfig({ '~/': `${path.resolve(__dirname, 'src')}/`, } }, server: { - host: '127.0.0.1', port: 80 - }, plugins: [vue(), AutoImport({ + host: '127.0.0.1', port: 80, + proxy: { + '/api': { + target: 'http://127.0.0.1:8080', + changeOrigin: true, + rewrite: (path) => path.replace(/^\/api/, '') + } + } + }, + plugins: [vue(), AutoImport({ imports: ['vue'], resolvers: [ElementPlusResolver(), IconsResolver({ prefix: 'Icon', })]
$)for(;E<=F;)A0(d[E],b,M,!0),E++;else{const U=E,Y=E,i0=new Map;for(E=Y;E<=$;E++){const D0=m[E]=V?v2(m[E]):Q0(m[E]);D0.key!=null&&i0.set(D0.key,E)}let n0,P0=0;const L0=$-Y+1;let U0=!1,W0=0;const Z2=new Array(L0);for(E=0;E=L0){A0(D0,b,M,!0);continue}let G0;if(D0.key!=null)G0=i0.get(D0.key);else for(n0=Y;n0<=$;n0++)if(Z2[n0-Y]===0&&E2(D0,m[n0])){G0=n0;break}G0===void 0?A0(D0,b,M,!0):(Z2[G0-Y]=E+1,G0>=W0?W0=G0:U0=!0,y(D0,m[G0],x,null,b,M,L,B,V),P0++)}const x6=U0?fr(Z2):O2;for(n0=x6.length-1,E=L0-1;E>=0;E--){const D0=Y+E,G0=m[D0],y6=D0+1{const{el:M,type:L,transition:B,children:V,shapeFlag:E}=d;if(E&6){K0(d.component.subTree,m,x,C);return}if(E&128){d.suspense.move(m,x,C);return}if(E&64){L.move(d,m,x,I);return}if(L===S0){a(M,m,x);for(let F=0;FB.enter(M),b);else{const{leave:F,delayLeave:$,afterLeave:U}=B,Y=()=>a(M,m,x),i0=()=>{F(M,()=>{Y(),U&&U()})};$?$(M,Y,i0):i0()}else a(M,m,x)},A0=(d,m,x,C=!1,b=!1)=>{const{type:M,props:L,ref:B,children:V,dynamicChildren:E,shapeFlag:q,patchFlag:F,dirs:$,cacheIndex:U}=d;if(F===-2&&(b=!1),B!=null&&k1(B,null,x,d,!0),U!=null&&(m.renderCache[U]=void 0),q&256){m.ctx.deactivate(d);return}const Y=q&1&&$,i0=!$2(d);let n0;if(i0&&(n0=L&&L.onVnodeBeforeUnmount)&&J0(n0,m,d),q&6)M1(d.component,x,C);else{if(q&128){d.suspense.unmount(x,C);return}Y&&C2(d,null,m,"beforeUnmount"),q&64?d.type.remove(d,m,x,I,C):E&&!E.hasOnce&&(M!==S0||F>0&&F&64)?R0(E,m,x,!1,!0):(M===S0&&F&384||!b&&q&16)&&R0(V,m,x),C&&F2(d)}(i0&&(n0=L&&L.onVnodeUnmounted)||Y)&&H0(()=>{n0&&J0(n0,m,d),Y&&C2(d,null,m,"unmounted")},x)},F2=d=>{const{type:m,el:x,anchor:C,transition:b}=d;if(m===S0){P2(x,C);return}if(m===xe){T(d);return}const M=()=>{n(x),b&&!b.persisted&&b.afterLeave&&b.afterLeave()};if(d.shapeFlag&1&&b&&!b.persisted){const{leave:L,delayLeave:B}=b,V=()=>L(x,M);B?B(d.el,M,V):V()}else M()},P2=(d,m)=>{let x;for(;d!==m;)x=g(d),n(d),d=x;n(m)},M1=(d,m,x)=>{const{bum:C,scope:b,job:M,subTree:L,um:B,m:V,a:E}=d;T6(V),T6(E),C&&pe(C),b.stop(),M&&(M.flags|=8,A0(L,d,m,x)),B&&H0(B,m),H0(()=>{d.isUnmounted=!0},m),m&&m.pendingBranch&&!m.isUnmounted&&d.asyncDep&&!d.asyncResolved&&d.suspenseId===m.pendingId&&(m.deps--,m.deps===0&&m.resolve())},R0=(d,m,x,C=!1,b=!1,M=0)=>{for(let L=M;L{if(d.shapeFlag&6)return z(d.component.subTree);if(d.shapeFlag&128)return d.suspense.next();const m=g(d.anchor||d.el),x=m&&m[m4];return x?g(x):m};let D=!1;const S=(d,m,x)=>{d==null?m._vnode&&A0(m._vnode,null,null,!0):y(m._vnode||null,d,m,null,null,null,x),m._vnode=d,D||(D=!0,b6(),h4(),D=!1)},I={p:y,um:A0,m:K0,r:F2,mt:m0,mc:p0,pc:t0,pbc:G,n:z,o:e};return{render:S,hydrate:void 0,createApp:nr(S)}}function we({type:e,props:t},r){return r==="svg"&&e==="foreignObject"||r==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:r}function z2({effect:e,job:t},r){r?(e.flags|=32,t.flags|=4):(e.flags&=-33,t.flags&=-5)}function hr(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function u6(e,t,r=!1){const a=e.children,n=t.children;if(j(a)&&j(n))for(let l=0;l>1,e[r[u]]0&&(t[a]=r[l-1]),r[l]=a)}}for(l=r.length,s=r[l-1];l-- >0;)r[l]=s,s=t[s];return r}function G4(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:G4(t)}function T6(e){if(e)for(let t=0;tx0(vr);function mr(e,t){return c6(e,null,t)}function j2(e,t,r){return c6(e,t,r)}function c6(e,t,r=c0){const{immediate:a,deep:n,flush:l,once:s}=r,u=d0({},r),c=t&&a||!t&&l!=="post";let f;if(g1){if(l==="sync"){const w=dr();f=w.__watcherHandles||(w.__watcherHandles=[])}else if(!c){const w=()=>{};return w.stop=k0,w.resume=k0,w.pause=k0,w}}const _=w0;u.call=(w,H,y)=>q0(w,_,H,y);let v=!1;l==="post"?u.scheduler=w=>{H0(w,_&&_.suspense)}:l!=="sync"&&(v=!0,u.scheduler=(w,H)=>{H?w():n6(w)}),u.augmentJob=w=>{t&&(w.flags|=4),v&&(w.flags|=2,_&&(w.id=_.uid,w.i=_))};const g=F8(e,t,u);return g1&&(f?f.push(g):c&&g()),g}function gr(e,t,r){const a=this.proxy,n=h0(e)?e.includes(".")?J4(a,e):()=>a[e]:e.bind(a,a);let l;K(t)?l=t:(l=t.handler,r=t);const s=z1(this),u=c6(n,l.bind(a),r);return s(),u}function J4(e,t){const r=t.split(".");return()=>{let a=e;for(let n=0;nt==="modelValue"||t==="model-value"?e.modelModifiers:e[`${t}Modifiers`]||e[`${N0(t)}Modifiers`]||e[`${w2(t)}Modifiers`];function xr(e,t,...r){if(e.isUnmounted)return;const a=e.vnode.props||c0;let n=r;const l=t.startsWith("update:"),s=l&&wr(a,t.slice(7));s&&(s.trim&&(n=r.map(_=>h0(_)?_.trim():_)),s.number&&(n=r.map(J3)));let u,c=a[u=_e(t)]||a[u=_e(N0(t))];!c&&l&&(c=a[u=_e(w2(t))]),c&&q0(c,e,6,n);const f=a[u+"Once"];if(f){if(!e.emitted)e.emitted={};else if(e.emitted[u])return;e.emitted[u]=!0,q0(f,e,6,n)}}function Z4(e,t,r=!1){const a=t.emitsCache,n=a.get(e);if(n!==void 0)return n;const l=e.emits;let s={},u=!1;if(!K(e)){const c=f=>{const _=Z4(f,t,!0);_&&(u=!0,d0(s,_))};!r&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}return!l&&!u?(o0(e)&&a.set(e,null),null):(j(l)?l.forEach(c=>s[c]=null):d0(s,l),o0(e)&&a.set(e,s),s)}function ne(e,t){return!e||!W1(t)?!1:(t=t.slice(2).replace(/Once$/,""),X(e,t[0].toLowerCase()+t.slice(1))||X(e,w2(t))||X(e,t))}function R6(e){const{type:t,vnode:r,proxy:a,withProxy:n,propsOptions:[l],slots:s,attrs:u,emit:c,render:f,renderCache:_,props:v,data:g,setupState:w,ctx:H,inheritAttrs:y}=e,P=O1(e);let A,R;try{if(r.shapeFlag&4){const T=n||a,W=T;A=Q0(f.call(W,T,_,v,w,g,H)),R=u}else{const T=t;A=Q0(T.length>1?T(v,{attrs:u,slots:s,emit:c}):T(v,null)),R=t.props?u:yr(u)}}catch(T){c1.length=0,te(T,e,1),A=z0(B0)}let k=A;if(R&&y!==!1){const T=Object.keys(R),{shapeFlag:W}=k;T.length&&W&7&&(l&&T.some(Ke)&&(R=Cr(R,l)),k=g2(k,R,!1,!0))}return r.dirs&&(k=g2(k,null,!1,!0),k.dirs=k.dirs?k.dirs.concat(r.dirs):r.dirs),r.transition&&A2(k,r.transition),A=k,O1(P),A}const yr=e=>{let t;for(const r in e)(r==="class"||r==="style"||W1(r))&&((t||(t={}))[r]=e[r]);return t},Cr=(e,t)=>{const r={};for(const a in e)(!Ke(a)||!(a.slice(9)in t))&&(r[a]=e[a]);return r};function zr(e,t,r){const{props:a,children:n,component:l}=e,{props:s,children:u,patchFlag:c}=t,f=l.emitsOptions;if(t.dirs||t.transition)return!0;if(r&&c>=0){if(c&1024)return!0;if(c&16)return a?O6(a,s,f):!!s;if(c&8){const _=t.dynamicProps;for(let v=0;v<_.length;v++){const g=_[v];if(s[g]!==a[g]&&!ne(f,g))return!0}}}else return(n||u)&&(!u||!u.$stable)?!0:a===s?!1:a?s?O6(a,s,f):!0:!!s;return!1}function O6(e,t,r){const a=Object.keys(t);if(a.length!==Object.keys(e).length)return!0;for(let n=0;ne.__isSuspense;function br(e,t){t&&t.pendingBranch?j(e)?t.effects.push(...e):t.effects.push(e):T8(e)}const S0=Symbol.for("v-fgt"),le=Symbol.for("v-txt"),B0=Symbol.for("v-cmt"),xe=Symbol.for("v-stc"),c1=[];let T0=null;function i(e=!1){c1.push(T0=e?null:[])}function Hr(){c1.pop(),T0=c1[c1.length-1]||null}let d1=1;function k6(e,t=!1){d1+=e,e<0&&T0&&t&&(T0.hasOnce=!0)}function Q4(e){return e.dynamicChildren=d1>0?T0||O2:null,Hr(),d1>0&&T0&&T0.push(e),e}function h(e,t,r,a,n,l){return Q4(o(e,t,r,a,n,l,!0))}function N1(e,t,r,a,n){return Q4(z0(e,t,r,a,n,!0))}function m1(e){return e?e.__v_isVNode===!0:!1}function E2(e,t){return e.type===t.type&&e.key===t.key}const X4=({key:e})=>e??null,S1=({ref:e,ref_key:t,ref_for:r})=>(typeof e=="number"&&(e=""+e),e!=null?h0(e)||v0(e)||K(e)?{i:g0,r:e,k:t,f:!!r}:e:null);function o(e,t=null,r=null,a=0,n=null,l=e===S0?0:1,s=!1,u=!1){const c={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&X4(t),ref:t&&S1(t),scopeId:v4,slotScopeIds:null,children:r,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetStart:null,targetAnchor:null,staticCount:0,shapeFlag:l,patchFlag:a,dynamicProps:n,dynamicChildren:null,appContext:null,ctx:g0};return u?(i6(c,r),l&128&&e.normalize(c)):r&&(c.shapeFlag|=h0(r)?8:16),d1>0&&!s&&T0&&(c.patchFlag>0||l&6)&&c.patchFlag!==32&&T0.push(c),c}const z0=Er;function Er(e,t=null,r=null,a=0,n=null,l=!1){if((!e||e===S4)&&(e=B0),m1(e)){const u=g2(e,t,!0);return r&&i6(u,r),d1>0&&!l&&T0&&(u.shapeFlag&6?T0[T0.indexOf(e)]=u:T0.push(u)),u.patchFlag=-2,u}if(Or(e)&&(e=e.__vccOpts),t){t=Vr(t);let{class:u,style:c}=t;u&&!h0(u)&&(t.class=Je(u)),o0(c)&&(r6(c)&&!j(c)&&(c=d0({},c)),t.style=Ge(c))}const s=h0(e)?1:Y4(e)?128:g4(e)?64:o0(e)?4:K(e)?2:0;return o(e,t,r,a,n,s,l,!0)}function Vr(e){return e?r6(e)||N4(e)?d0({},e):e:null}function g2(e,t,r=!1,a=!1){const{props:n,ref:l,patchFlag:s,children:u,transition:c}=e,f=t?Ar(n||{},t):n,_={__v_isVNode:!0,__v_skip:!0,type:e.type,props:f,key:f&&X4(f),ref:t&&t.ref?r&&l?j(l)?l.concat(S1(t)):[l,S1(t)]:S1(t):l,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:u,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==S0?s===-1?16:s|16:s,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:c,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&g2(e.ssContent),ssFallback:e.ssFallback&&g2(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return c&&a&&A2(_,c.clone(_)),_}function Br(e=" ",t=0){return z0(le,null,e,t)}function Tf(e="",t=!1){return t?(i(),N1(B0,null,e)):z0(B0,null,e)}function Q0(e){return e==null||typeof e=="boolean"?z0(B0):j(e)?z0(S0,null,e.slice()):m1(e)?v2(e):z0(le,null,String(e))}function v2(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:g2(e)}function i6(e,t){let r=0;const{shapeFlag:a}=e;if(t==null)t=null;else if(j(t))r=16;else if(typeof t=="object")if(a&65){const n=t.default;n&&(n._c&&(n._d=!1),i6(e,n()),n._c&&(n._d=!0));return}else{r=32;const n=t._;!n&&!N4(t)?t._ctx=g0:n===3&&g0&&(g0.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else K(t)?(t={default:t,_ctx:g0},r=32):(t=String(t),a&64?(r=16,t=[Br(t)]):r=8);e.children=t,e.shapeFlag|=r}function Ar(...e){const t={};for(let r=0;rw0||g0;let $1,Re;{const e=Y1(),t=(r,a)=>{let n;return(n=e[r])||(n=e[r]=[]),n.push(a),l=>{n.length>1?n.forEach(s=>s(l)):n[0](l)}};$1=t("__VUE_INSTANCE_SETTERS__",r=>w0=r),Re=t("__VUE_SSR_SETTERS__",r=>g1=r)}const z1=e=>{const t=w0;return $1(e),e.scope.on(),()=>{e.scope.off(),$1(t)}},I6=()=>{w0&&w0.scope.off(),$1(null)};function e3(e){return e.vnode.shapeFlag&4}let g1=!1;function Pr(e,t=!1,r=!1){t&&Re(t);const{props:a,children:n}=e.vnode,l=e3(e);lr(e,a,l,t),cr(e,n,r);const s=l?Dr(e,t):void 0;return t&&Re(!1),s}function Dr(e,t){const r=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,Y8);const{setup:a}=r;if(a){x2();const n=e.setupContext=a.length>1?r3(e):null,l=z1(e),s=C1(a,e,0,[e.props,n]),u=Ot(s);if(y2(),l(),(u||e.sp)&&!$2(e)&&H4(e),u){if(s.then(I6,I6),t)return s.then(c=>{N6(e,c)}).catch(c=>{te(c,e,0)});e.asyncDep=s}else N6(e,s)}else t3(e)}function N6(e,t,r){K(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:o0(t)&&(e.setupState=c4(t)),t3(e)}function t3(e,t,r){const a=e.type;e.render||(e.render=a.render||k0);{const n=z1(e);x2();try{Q8(e)}finally{y2(),n()}}}const Tr={get(e,t){return y0(e,"get",""),e[t]}};function r3(e){const t=r=>{e.exposed=r||{}};return{attrs:new Proxy(e.attrs,Tr),slots:e.slots,emit:e.emit,expose:t}}function se(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(c4(b8(e.exposed)),{get(t,r){if(r in t)return t[r];if(r in o1)return o1[r](e)},has(t,r){return r in t||r in o1}})):e.proxy}function Rr(e,t=!0){return K(e)?e.displayName||e.name:e.name||t&&e.__name}function Or(e){return K(e)&&"__vccOpts"in e}const l0=(e,t)=>L8(e,t,g1);function _6(e,t,r){const a=arguments.length;return a===2?o0(t)&&!j(t)?m1(t)?z0(e,null,[t]):z0(e,t):z0(e,null,t):(a>3?r=Array.prototype.slice.call(arguments,2):a===3&&m1(r)&&(r=[r]),z0(e,t,r))}const kr="3.5.13",Ir=k0;/** +* @vue/runtime-dom v3.5.13 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/let Oe;const $6=typeof window<"u"&&window.trustedTypes;if($6)try{Oe=$6.createPolicy("vue",{createHTML:e=>e})}catch{}const a3=Oe?e=>Oe.createHTML(e):e=>e,Nr="http://www.w3.org/2000/svg",$r="http://www.w3.org/1998/Math/MathML",a2=typeof document<"u"?document:null,q6=a2&&a2.createElement("template"),qr={insert:(e,t,r)=>{t.insertBefore(e,r||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,r,a)=>{const n=t==="svg"?a2.createElementNS(Nr,e):t==="mathml"?a2.createElementNS($r,e):r?a2.createElement(e,{is:r}):a2.createElement(e);return e==="select"&&a&&a.multiple!=null&&n.setAttribute("multiple",a.multiple),n},createText:e=>a2.createTextNode(e),createComment:e=>a2.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>a2.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,r,a,n,l){const s=r?r.previousSibling:t.lastChild;if(n&&(n===l||n.nextSibling))for(;t.insertBefore(n.cloneNode(!0),r),!(n===l||!(n=n.nextSibling)););else{q6.innerHTML=a3(a==="svg"?`${e}`:a==="mathml"?`${e}`:e);const u=q6.content;if(a==="svg"||a==="mathml"){const c=u.firstChild;for(;c.firstChild;)u.appendChild(c.firstChild);u.removeChild(c)}t.insertBefore(u,r)}return[s?s.nextSibling:t.firstChild,r?r.previousSibling:t.lastChild]}},i2="transition",Q2="animation",K2=Symbol("_vtc"),n3={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},l3=d0({},C4,n3),jr=e=>(e.displayName="Transition",e.props=l3,e),Rf=jr((e,{slots:t})=>_6(k8,s3(e),t)),M2=(e,t=[])=>{j(e)?e.forEach(r=>r(...t)):e&&e(...t)},j6=e=>e?j(e)?e.some(t=>t.length>1):e.length>1:!1;function s3(e){const t={};for(const O in e)O in n3||(t[O]=e[O]);if(e.css===!1)return t;const{name:r="v",type:a,duration:n,enterFromClass:l=`${r}-enter-from`,enterActiveClass:s=`${r}-enter-active`,enterToClass:u=`${r}-enter-to`,appearFromClass:c=l,appearActiveClass:f=s,appearToClass:_=u,leaveFromClass:v=`${r}-leave-from`,leaveActiveClass:g=`${r}-leave-active`,leaveToClass:w=`${r}-leave-to`}=e,H=Kr(n),y=H&&H[0],P=H&&H[1],{onBeforeEnter:A,onEnter:R,onEnterCancelled:k,onLeave:T,onLeaveCancelled:W,onBeforeAppear:J=A,onAppear:Z=R,onAppearCancelled:p0=k}=t,N=(O,e0,m0,F0)=>{O._enterCancelled=F0,p2(O,e0?_:u),p2(O,e0?f:s),m0&&m0()},G=(O,e0)=>{O._isLeaving=!1,p2(O,v),p2(O,w),p2(O,g),e0&&e0()},a0=O=>(e0,m0)=>{const F0=O?Z:R,f0=()=>N(e0,O,m0);M2(F0,[e0,f0]),K6(()=>{p2(e0,O?c:l),Z0(e0,O?_:u),j6(F0)||U6(e0,a,y,f0)})};return d0(t,{onBeforeEnter(O){M2(A,[O]),Z0(O,l),Z0(O,s)},onBeforeAppear(O){M2(J,[O]),Z0(O,c),Z0(O,f)},onEnter:a0(!1),onAppear:a0(!0),onLeave(O,e0){O._isLeaving=!0;const m0=()=>G(O,e0);Z0(O,v),O._enterCancelled?(Z0(O,g),ke()):(ke(),Z0(O,g)),K6(()=>{O._isLeaving&&(p2(O,v),Z0(O,w),j6(T)||U6(O,a,P,m0))}),M2(T,[O,m0])},onEnterCancelled(O){N(O,!1,void 0,!0),M2(k,[O])},onAppearCancelled(O){N(O,!0,void 0,!0),M2(p0,[O])},onLeaveCancelled(O){G(O),M2(W,[O])}})}function Kr(e){if(e==null)return null;if(o0(e))return[ye(e.enter),ye(e.leave)];{const t=ye(e);return[t,t]}}function ye(e){return Z3(e)}function Z0(e,t){t.split(/\s+/).forEach(r=>r&&e.classList.add(r)),(e[K2]||(e[K2]=new Set)).add(t)}function p2(e,t){t.split(/\s+/).forEach(a=>a&&e.classList.remove(a));const r=e[K2];r&&(r.delete(t),r.size||(e[K2]=void 0))}function K6(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let Ur=0;function U6(e,t,r,a){const n=e._endId=++Ur,l=()=>{n===e._endId&&a()};if(r!=null)return setTimeout(l,r);const{type:s,timeout:u,propCount:c}=o3(e,t);if(!s)return a();const f=s+"end";let _=0;const v=()=>{e.removeEventListener(f,g),l()},g=w=>{w.target===e&&++_>=c&&v()};setTimeout(()=>{_(r[H]||"").split(", "),n=a(`${i2}Delay`),l=a(`${i2}Duration`),s=W6(n,l),u=a(`${Q2}Delay`),c=a(`${Q2}Duration`),f=W6(u,c);let _=null,v=0,g=0;t===i2?s>0&&(_=i2,v=s,g=l.length):t===Q2?f>0&&(_=Q2,v=f,g=c.length):(v=Math.max(s,f),_=v>0?s>f?i2:Q2:null,g=_?_===i2?l.length:c.length:0);const w=_===i2&&/\b(transform|all)(,|$)/.test(a(`${i2}Property`).toString());return{type:_,timeout:v,propCount:g,hasTransform:w}}function W6(e,t){for(;e.lengthG6(r)+G6(e[a])))}function G6(e){return e==="auto"?0:Number(e.slice(0,-1).replace(",","."))*1e3}function ke(){return document.body.offsetHeight}function Wr(e,t,r){const a=e[K2];a&&(t=(t?[t,...a]:[...a]).join(" ")),t==null?e.removeAttribute("class"):r?e.setAttribute("class",t):e.className=t}const q1=Symbol("_vod"),u3=Symbol("_vsh"),Of={beforeMount(e,{value:t},{transition:r}){e[q1]=e.style.display==="none"?"":e.style.display,r&&t?r.beforeEnter(e):X2(e,t)},mounted(e,{value:t},{transition:r}){r&&t&&r.enter(e)},updated(e,{value:t,oldValue:r},{transition:a}){!t!=!r&&(a?t?(a.beforeEnter(e),X2(e,!0),a.enter(e)):a.leave(e,()=>{X2(e,!1)}):X2(e,t))},beforeUnmount(e,{value:t}){X2(e,t)}};function X2(e,t){e.style.display=t?e[q1]:"none",e[u3]=!t}const Gr=Symbol(""),Jr=/(^|;)\s*display\s*:/;function Zr(e,t,r){const a=e.style,n=h0(r);let l=!1;if(r&&!n){if(t)if(h0(t))for(const s of t.split(";")){const u=s.slice(0,s.indexOf(":")).trim();r[u]==null&&F1(a,u,"")}else for(const s in t)r[s]==null&&F1(a,s,"");for(const s in r)s==="display"&&(l=!0),F1(a,s,r[s])}else if(n){if(t!==r){const s=a[Gr];s&&(r+=";"+s),a.cssText=r,l=Jr.test(r)}}else t&&e.removeAttribute("style");q1 in e&&(e[q1]=l?a.display:"",e[u3]&&(a.display="none"))}const J6=/\s*!important$/;function F1(e,t,r){if(j(r))r.forEach(a=>F1(e,t,a));else if(r==null&&(r=""),t.startsWith("--"))e.setProperty(t,r);else{const a=Yr(e,t);J6.test(r)?e.setProperty(w2(a),r.replace(J6,""),"important"):e[a]=r}}const Z6=["Webkit","Moz","ms"],Ce={};function Yr(e,t){const r=Ce[t];if(r)return r;let a=N0(t);if(a!=="filter"&&a in e)return Ce[t]=a;a=Z1(a);for(let n=0;nze||(ra.then(()=>ze=0),ze=Date.now());function na(e,t){const r=a=>{if(!a._vts)a._vts=Date.now();else if(a._vts<=r.attached)return;q0(la(a,r.value),t,5,[a])};return r.value=e,r.attached=aa(),r}function la(e,t){if(j(t)){const r=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{r.call(e),e._stopped=!0},t.map(a=>n=>!n._stopped&&a&&a(n))}else return t}const rt=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,sa=(e,t,r,a,n,l)=>{const s=n==="svg";t==="class"?Wr(e,a,s):t==="style"?Zr(e,r,a):W1(t)?Ke(t)||ea(e,t,r,a,l):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):oa(e,t,a,s))?(X6(e,t,a),!e.tagName.includes("-")&&(t==="value"||t==="checked"||t==="selected")&&Q6(e,t,a,s,l,t!=="value")):e._isVueCE&&(/[A-Z]/.test(t)||!h0(a))?X6(e,N0(t),a,l,t):(t==="true-value"?e._trueValue=a:t==="false-value"&&(e._falseValue=a),Q6(e,t,a,s))};function oa(e,t,r,a){if(a)return!!(t==="innerHTML"||t==="textContent"||t in e&&rt(t)&&K(r));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const n=e.tagName;if(n==="IMG"||n==="VIDEO"||n==="CANVAS"||n==="SOURCE")return!1}return rt(t)&&h0(r)?!1:t in e}const c3=new WeakMap,i3=new WeakMap,j1=Symbol("_moveCb"),at=Symbol("_enterCb"),ua=e=>(delete e.props.mode,e),ca=ua({name:"TransitionGroup",props:d0({},l3,{tag:String,moveClass:String}),setup(e,{slots:t}){const r=s2(),a=y4();let n,l;return V4(()=>{if(!n.length)return;const s=e.moveClass||`${e.name||"v"}-move`;if(!ha(n[0].el,r.vnode.el,s))return;n.forEach(ia),n.forEach(_a);const u=n.filter(pa);ke(),u.forEach(c=>{const f=c.el,_=f.style;Z0(f,s),_.transform=_.webkitTransform=_.transitionDuration="";const v=f[j1]=g=>{g&&g.target!==f||(!g||/transform$/.test(g.propertyName))&&(f.removeEventListener("transitionend",v),f[j1]=null,p2(f,s))};f.addEventListener("transitionend",v)})}),()=>{const s=Q(e),u=s3(s);let c=s.tag||S0;if(n=[],l)for(let f=0;f{u.split(/\s+/).forEach(c=>c&&a.classList.remove(c))}),r.split(/\s+/).forEach(u=>u&&a.classList.add(u)),a.style.display="none";const l=t.nodeType===1?t:t.parentNode;l.appendChild(a);const{hasTransform:s}=o3(a);return l.removeChild(a),s}const fa=["ctrl","shift","alt","meta"],va={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,t)=>fa.some(r=>e[`${r}Key`]&&!t.includes(r))},If=(e,t)=>{const r=e._withMods||(e._withMods={}),a=t.join(".");return r[a]||(r[a]=(n,...l)=>{for(let s=0;s{const r=e._withKeys||(e._withKeys={}),a=t.join(".");return r[a]||(r[a]=n=>{if(!("key"in n))return;const l=w2(n.key);if(t.some(s=>s===l||da[s]===l))return e(n)})},ma=d0({patchProp:sa},qr);let nt;function _3(){return nt||(nt=_r(ma))}const $f=(...e)=>{_3().render(...e)},ga=(...e)=>{const t=_3().createApp(...e),{mount:r}=t;return t.mount=a=>{const n=xa(a);if(!n)return;const l=t._component;!K(l)&&!l.render&&!l.template&&(l.template=n.innerHTML),n.nodeType===1&&(n.textContent="");const s=r(n,!1,wa(n));return n instanceof Element&&(n.removeAttribute("v-cloak"),n.setAttribute("data-v-app","")),s},t};function wa(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function xa(e){return h0(e)?document.querySelector(e):e}/*! + * vue-router v4.5.0 + * (c) 2024 Eduardo San Martin Morote + * @license MIT + */const R2=typeof document<"u";function p3(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function ya(e){return e.__esModule||e[Symbol.toStringTag]==="Module"||e.default&&p3(e.default)}const r0=Object.assign;function Me(e,t){const r={};for(const a in t){const n=t[a];r[a]=j0(n)?n.map(e):e(n)}return r}const i1=()=>{},j0=Array.isArray,h3=/#/g,Ca=/&/g,za=/\//g,Ma=/=/g,ba=/\?/g,f3=/\+/g,Ha=/%5B/g,Ea=/%5D/g,v3=/%5E/g,Va=/%60/g,d3=/%7B/g,Ba=/%7C/g,m3=/%7D/g,Aa=/%20/g;function p6(e){return encodeURI(""+e).replace(Ba,"|").replace(Ha,"[").replace(Ea,"]")}function La(e){return p6(e).replace(d3,"{").replace(m3,"}").replace(v3,"^")}function Ie(e){return p6(e).replace(f3,"%2B").replace(Aa,"+").replace(h3,"%23").replace(Ca,"%26").replace(Va,"`").replace(d3,"{").replace(m3,"}").replace(v3,"^")}function Sa(e){return Ie(e).replace(Ma,"%3D")}function Fa(e){return p6(e).replace(h3,"%23").replace(ba,"%3F")}function Pa(e){return e==null?"":Fa(e).replace(za,"%2F")}function w1(e){try{return decodeURIComponent(""+e)}catch{}return""+e}const Da=/\/$/,Ta=e=>e.replace(Da,"");function be(e,t,r="/"){let a,n={},l="",s="";const u=t.indexOf("#");let c=t.indexOf("?");return u=0&&(c=-1),c>-1&&(a=t.slice(0,c),l=t.slice(c+1,u>-1?u:t.length),n=e(l)),u>-1&&(a=a||t.slice(0,u),s=t.slice(u,t.length)),a=Ia(a??t,r),{fullPath:a+(l&&"?")+l+s,path:a,query:n,hash:w1(s)}}function Ra(e,t){const r=t.query?e(t.query):"";return t.path+(r&&"?")+r+(t.hash||"")}function lt(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function Oa(e,t,r){const a=t.matched.length-1,n=r.matched.length-1;return a>-1&&a===n&&U2(t.matched[a],r.matched[n])&&g3(t.params,r.params)&&e(t.query)===e(r.query)&&t.hash===r.hash}function U2(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function g3(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const r in e)if(!ka(e[r],t[r]))return!1;return!0}function ka(e,t){return j0(e)?st(e,t):j0(t)?st(t,e):e===t}function st(e,t){return j0(t)?e.length===t.length&&e.every((r,a)=>r===t[a]):e.length===1&&e[0]===t}function Ia(e,t){if(e.startsWith("/"))return e;if(!e)return t;const r=t.split("/"),a=e.split("/"),n=a[a.length-1];(n===".."||n===".")&&a.push("");let l=r.length-1,s,u;for(s=0;s1&&l--;else break;return r.slice(0,l).join("/")+"/"+a.slice(s).join("/")}const _2={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0};var x1;(function(e){e.pop="pop",e.push="push"})(x1||(x1={}));var _1;(function(e){e.back="back",e.forward="forward",e.unknown=""})(_1||(_1={}));function Na(e){if(!e)if(R2){const t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),Ta(e)}const $a=/^[^#]+#/;function qa(e,t){return e.replace($a,"#")+t}function ja(e,t){const r=document.documentElement.getBoundingClientRect(),a=e.getBoundingClientRect();return{behavior:t.behavior,left:a.left-r.left-(t.left||0),top:a.top-r.top-(t.top||0)}}const oe=()=>({left:window.scrollX,top:window.scrollY});function Ka(e){let t;if("el"in e){const r=e.el,a=typeof r=="string"&&r.startsWith("#"),n=typeof r=="string"?a?document.getElementById(r.slice(1)):document.querySelector(r):r;if(!n)return;t=ja(n,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.scrollX,t.top!=null?t.top:window.scrollY)}function ot(e,t){return(history.state?history.state.position-t:-1)+e}const Ne=new Map;function Ua(e,t){Ne.set(e,t)}function Wa(e){const t=Ne.get(e);return Ne.delete(e),t}let Ga=()=>location.protocol+"//"+location.host;function w3(e,t){const{pathname:r,search:a,hash:n}=t,l=e.indexOf("#");if(l>-1){let u=n.includes(e.slice(l))?e.slice(l).length:1,c=n.slice(u);return c[0]!=="/"&&(c="/"+c),lt(c,"")}return lt(r,e)+a+n}function Ja(e,t,r,a){let n=[],l=[],s=null;const u=({state:g})=>{const w=w3(e,location),H=r.value,y=t.value;let P=0;if(g){if(r.value=w,t.value=g,s&&s===H){s=null;return}P=y?g.position-y.position:0}else a(w);n.forEach(A=>{A(r.value,H,{delta:P,type:x1.pop,direction:P?P>0?_1.forward:_1.back:_1.unknown})})};function c(){s=r.value}function f(g){n.push(g);const w=()=>{const H=n.indexOf(g);H>-1&&n.splice(H,1)};return l.push(w),w}function _(){const{history:g}=window;g.state&&g.replaceState(r0({},g.state,{scroll:oe()}),"")}function v(){for(const g of l)g();l=[],window.removeEventListener("popstate",u),window.removeEventListener("beforeunload",_)}return window.addEventListener("popstate",u),window.addEventListener("beforeunload",_,{passive:!0}),{pauseListeners:c,listen:f,destroy:v}}function ut(e,t,r,a=!1,n=!1){return{back:e,current:t,forward:r,replaced:a,position:window.history.length,scroll:n?oe():null}}function Za(e){const{history:t,location:r}=window,a={value:w3(e,r)},n={value:t.state};n.value||l(a.value,{back:null,current:a.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0);function l(c,f,_){const v=e.indexOf("#"),g=v>-1?(r.host&&document.querySelector("base")?e:e.slice(v))+c:Ga()+e+c;try{t[_?"replaceState":"pushState"](f,"",g),n.value=f}catch(w){console.error(w),r[_?"replace":"assign"](g)}}function s(c,f){const _=r0({},t.state,ut(n.value.back,c,n.value.forward,!0),f,{position:n.value.position});l(c,_,!0),a.value=c}function u(c,f){const _=r0({},n.value,t.state,{forward:c,scroll:oe()});l(_.current,_,!0);const v=r0({},ut(a.value,c,null),{position:_.position+1},f);l(c,v,!1),a.value=c}return{location:a,state:n,push:u,replace:s}}function Ya(e){e=Na(e);const t=Za(e),r=Ja(e,t.state,t.location,t.replace);function a(l,s=!0){s||r.pauseListeners(),history.go(l)}const n=r0({location:"",base:e,go:a,createHref:qa.bind(null,e)},t,r);return Object.defineProperty(n,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(n,"state",{enumerable:!0,get:()=>t.state.value}),n}function Qa(e){return e=location.host?e||location.pathname+location.search:"",e.includes("#")||(e+="#"),Ya(e)}function Xa(e){return typeof e=="string"||e&&typeof e=="object"}function x3(e){return typeof e=="string"||typeof e=="symbol"}const y3=Symbol("");var ct;(function(e){e[e.aborted=4]="aborted",e[e.cancelled=8]="cancelled",e[e.duplicated=16]="duplicated"})(ct||(ct={}));function W2(e,t){return r0(new Error,{type:e,[y3]:!0},t)}function r2(e,t){return e instanceof Error&&y3 in e&&(t==null||!!(e.type&t))}const it="[^/]+?",en={sensitive:!1,strict:!1,start:!0,end:!0},tn=/[.+*?^${}()[\]/\\]/g;function rn(e,t){const r=r0({},en,t),a=[];let n=r.start?"^":"";const l=[];for(const f of e){const _=f.length?[]:[90];r.strict&&!f.length&&(n+="/");for(let v=0;vt.length?t.length===1&&t[0]===80?1:-1:0}function C3(e,t){let r=0;const a=e.score,n=t.score;for(;r0&&t[t.length-1]<0}const nn={type:0,value:""},ln=/[a-zA-Z0-9_]/;function sn(e){if(!e)return[[]];if(e==="/")return[[nn]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(w){throw new Error(`ERR (${r})/"${f}": ${w}`)}let r=0,a=r;const n=[];let l;function s(){l&&n.push(l),l=[]}let u=0,c,f="",_="";function v(){f&&(r===0?l.push({type:0,value:f}):r===1||r===2||r===3?(l.length>1&&(c==="*"||c==="+")&&t(`A repeatable param (${f}) must be alone in its segment. eg: '/:ids+.`),l.push({type:1,value:f,regexp:_,repeatable:c==="*"||c==="+",optional:c==="*"||c==="?"})):t("Invalid state to consume buffer"),f="")}function g(){f+=c}for(;u{s(k)}:i1}function s(v){if(x3(v)){const g=a.get(v);g&&(a.delete(v),r.splice(r.indexOf(g),1),g.children.forEach(s),g.alias.forEach(s))}else{const g=r.indexOf(v);g>-1&&(r.splice(g,1),v.record.name&&a.delete(v.record.name),v.children.forEach(s),v.alias.forEach(s))}}function u(){return r}function c(v){const g=pn(v,r);r.splice(g,0,v),v.record.name&&!ft(v)&&a.set(v.record.name,v)}function f(v,g){let w,H={},y,P;if("name"in v&&v.name){if(w=a.get(v.name),!w)throw W2(1,{location:v});P=w.record.name,H=r0(pt(g.params,w.keys.filter(k=>!k.optional).concat(w.parent?w.parent.keys.filter(k=>k.optional):[]).map(k=>k.name)),v.params&&pt(v.params,w.keys.map(k=>k.name))),y=w.stringify(H)}else if(v.path!=null)y=v.path,w=r.find(k=>k.re.test(y)),w&&(H=w.parse(y),P=w.record.name);else{if(w=g.name?a.get(g.name):r.find(k=>k.re.test(g.path)),!w)throw W2(1,{location:v,currentLocation:g});P=w.record.name,H=r0({},g.params,v.params),y=w.stringify(H)}const A=[];let R=w;for(;R;)A.unshift(R.record),R=R.parent;return{name:P,path:y,params:H,matched:A,meta:_n(A)}}e.forEach(v=>l(v));function _(){r.length=0,a.clear()}return{addRoute:l,resolve:f,removeRoute:s,clearRoutes:_,getRoutes:u,getRecordMatcher:n}}function pt(e,t){const r={};for(const a of t)a in e&&(r[a]=e[a]);return r}function ht(e){const t={path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:e.aliasOf,beforeEnter:e.beforeEnter,props:cn(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in e?e.components||null:e.component&&{default:e.component}};return Object.defineProperty(t,"mods",{value:{}}),t}function cn(e){const t={},r=e.props||!1;if("component"in e)t.default=r;else for(const a in e.components)t[a]=typeof r=="object"?r[a]:r;return t}function ft(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function _n(e){return e.reduce((t,r)=>r0(t,r.meta),{})}function vt(e,t){const r={};for(const a in e)r[a]=a in t?t[a]:e[a];return r}function pn(e,t){let r=0,a=t.length;for(;r!==a;){const l=r+a>>1;C3(e,t[l])<0?a=l:r=l+1}const n=hn(e);return n&&(a=t.lastIndexOf(n,a-1)),a}function hn(e){let t=e;for(;t=t.parent;)if(z3(t)&&C3(e,t)===0)return t}function z3({record:e}){return!!(e.name||e.components&&Object.keys(e.components).length||e.redirect)}function fn(e){const t={};if(e===""||e==="?")return t;const a=(e[0]==="?"?e.slice(1):e).split("&");for(let n=0;nl&&Ie(l)):[a&&Ie(a)]).forEach(l=>{l!==void 0&&(t+=(t.length?"&":"")+r,l!=null&&(t+="="+l))})}return t}function vn(e){const t={};for(const r in e){const a=e[r];a!==void 0&&(t[r]=j0(a)?a.map(n=>n==null?null:""+n):a==null?a:""+a)}return t}const dn=Symbol(""),mt=Symbol(""),ue=Symbol(""),M3=Symbol(""),$e=Symbol("");function e1(){let e=[];function t(a){return e.push(a),()=>{const n=e.indexOf(a);n>-1&&e.splice(n,1)}}function r(){e=[]}return{add:t,list:()=>e.slice(),reset:r}}function d2(e,t,r,a,n,l=s=>s()){const s=a&&(a.enterCallbacks[n]=a.enterCallbacks[n]||[]);return()=>new Promise((u,c)=>{const f=g=>{g===!1?c(W2(4,{from:r,to:t})):g instanceof Error?c(g):Xa(g)?c(W2(2,{from:t,to:g})):(s&&a.enterCallbacks[n]===s&&typeof g=="function"&&s.push(g),u())},_=l(()=>e.call(a&&a.instances[n],t,r,f));let v=Promise.resolve(_);e.length<3&&(v=v.then(f)),v.catch(g=>c(g))})}function He(e,t,r,a,n=l=>l()){const l=[];for(const s of e)for(const u in s.components){let c=s.components[u];if(!(t!=="beforeRouteEnter"&&!s.instances[u]))if(p3(c)){const _=(c.__vccOpts||c)[t];_&&l.push(d2(_,r,a,s,u,n))}else{let f=c();l.push(()=>f.then(_=>{if(!_)throw new Error(`Couldn't resolve component "${u}" at "${s.path}"`);const v=ya(_)?_.default:_;s.mods[u]=_,s.components[u]=v;const w=(v.__vccOpts||v)[t];return w&&d2(w,r,a,s,u,n)()}))}}return l}function gt(e){const t=x0(ue),r=x0(M3),a=l0(()=>{const c=M0(e.to);return t.resolve(c)}),n=l0(()=>{const{matched:c}=a.value,{length:f}=c,_=c[f-1],v=r.matched;if(!_||!v.length)return-1;const g=v.findIndex(U2.bind(null,_));if(g>-1)return g;const w=wt(c[f-2]);return f>1&&wt(_)===w&&v[v.length-1].path!==w?v.findIndex(U2.bind(null,c[f-2])):g}),l=l0(()=>n.value>-1&&yn(r.params,a.value.params)),s=l0(()=>n.value>-1&&n.value===r.matched.length-1&&g3(r.params,a.value.params));function u(c={}){if(xn(c)){const f=t[M0(e.replace)?"replace":"push"](M0(e.to)).catch(i1);return e.viewTransition&&typeof document<"u"&&"startViewTransition"in document&&document.startViewTransition(()=>f),f}return Promise.resolve()}return{route:a,href:l0(()=>a.value.href),isActive:l,isExactActive:s,navigate:u}}function mn(e){return e.length===1?e[0]:e}const gn=p({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:gt,setup(e,{slots:t}){const r=X1(gt(e)),{options:a}=x0(ue),n=l0(()=>({[xt(e.activeClass,a.linkActiveClass,"router-link-active")]:r.isActive,[xt(e.exactActiveClass,a.linkExactActiveClass,"router-link-exact-active")]:r.isExactActive}));return()=>{const l=t.default&&mn(t.default(r));return e.custom?l:_6("a",{"aria-current":r.isExactActive?e.ariaCurrentValue:null,href:r.href,onClick:r.navigate,class:n.value},l)}}}),wn=gn;function xn(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)){if(e.currentTarget&&e.currentTarget.getAttribute){const t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function yn(e,t){for(const r in t){const a=t[r],n=e[r];if(typeof a=="string"){if(a!==n)return!1}else if(!j0(n)||n.length!==a.length||a.some((l,s)=>l!==n[s]))return!1}return!0}function wt(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const xt=(e,t,r)=>e??t??r,Cn=p({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:r}){const a=x0($e),n=l0(()=>e.route||a.value),l=x0(mt,0),s=l0(()=>{let f=M0(l);const{matched:_}=n.value;let v;for(;(v=_[f])&&!v.components;)f++;return f}),u=l0(()=>n.value.matched[s.value]);u1(mt,l0(()=>s.value+1)),u1(dn,u),u1($e,n);const c=X0();return j2(()=>[c.value,u.value,e.name],([f,_,v],[g,w,H])=>{_&&(_.instances[v]=f,w&&w!==_&&f&&f===g&&(_.leaveGuards.size||(_.leaveGuards=w.leaveGuards),_.updateGuards.size||(_.updateGuards=w.updateGuards))),f&&_&&(!w||!U2(_,w)||!g)&&(_.enterCallbacks[v]||[]).forEach(y=>y(f))},{flush:"post"}),()=>{const f=n.value,_=e.name,v=u.value,g=v&&v.components[_];if(!g)return yt(r.default,{Component:g,route:f});const w=v.props[_],H=w?w===!0?f.params:typeof w=="function"?w(f):w:null,P=_6(g,r0({},H,t,{onVnodeUnmounted:A=>{A.component.isUnmounted&&(v.instances[_]=null)},ref:c}));return yt(r.default,{Component:P,route:f})||P}}});function yt(e,t){if(!e)return null;const r=e(t);return r.length===1?r[0]:r}const zn=Cn;function Mn(e){const t=un(e.routes,e),r=e.parseQuery||fn,a=e.stringifyQuery||dt,n=e.history,l=e1(),s=e1(),u=e1(),c=o4(_2);let f=_2;R2&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const _=Me.bind(null,z=>""+z),v=Me.bind(null,Pa),g=Me.bind(null,w1);function w(z,D){let S,I;return x3(z)?(S=t.getRecordMatcher(z),I=D):I=z,t.addRoute(I,S)}function H(z){const D=t.getRecordMatcher(z);D&&t.removeRoute(D)}function y(){return t.getRoutes().map(z=>z.record)}function P(z){return!!t.getRecordMatcher(z)}function A(z,D){if(D=r0({},D||c.value),typeof z=="string"){const x=be(r,z,D.path),C=t.resolve({path:x.path},D),b=n.createHref(x.fullPath);return r0(x,C,{params:g(C.params),hash:w1(x.hash),redirectedFrom:void 0,href:b})}let S;if(z.path!=null)S=r0({},z,{path:be(r,z.path,D.path).path});else{const x=r0({},z.params);for(const C in x)x[C]==null&&delete x[C];S=r0({},z,{params:v(x)}),D.params=v(D.params)}const I=t.resolve(S,D),u0=z.hash||"";I.params=_(g(I.params));const d=Ra(a,r0({},z,{hash:La(u0),path:I.path})),m=n.createHref(d);return r0({fullPath:d,hash:u0,query:a===dt?vn(z.query):z.query||{}},I,{redirectedFrom:void 0,href:m})}function R(z){return typeof z=="string"?be(r,z,c.value.path):r0({},z)}function k(z,D){if(f!==z)return W2(8,{from:D,to:z})}function T(z){return Z(z)}function W(z){return T(r0(R(z),{replace:!0}))}function J(z){const D=z.matched[z.matched.length-1];if(D&&D.redirect){const{redirect:S}=D;let I=typeof S=="function"?S(z):S;return typeof I=="string"&&(I=I.includes("?")||I.includes("#")?I=R(I):{path:I},I.params={}),r0({query:z.query,hash:z.hash,params:I.path!=null?{}:z.params},I)}}function Z(z,D){const S=f=A(z),I=c.value,u0=z.state,d=z.force,m=z.replace===!0,x=J(S);if(x)return Z(r0(R(x),{state:typeof x=="object"?r0({},u0,x.state):u0,force:d,replace:m}),D||S);const C=S;C.redirectedFrom=D;let b;return!d&&Oa(a,I,S)&&(b=W2(16,{to:C,from:I}),K0(I,I,!0,!1)),(b?Promise.resolve(b):G(C,I)).catch(M=>r2(M)?r2(M,2)?M:c2(M):t0(M,C,I)).then(M=>{if(M){if(r2(M,2))return Z(r0({replace:m},R(M.to),{state:typeof M.to=="object"?r0({},u0,M.to.state):u0,force:d}),D||C)}else M=O(C,I,!0,m,u0);return a0(C,I,M),M})}function p0(z,D){const S=k(z,D);return S?Promise.reject(S):Promise.resolve()}function N(z){const D=P2.values().next().value;return D&&typeof D.runWithContext=="function"?D.runWithContext(z):z()}function G(z,D){let S;const[I,u0,d]=bn(z,D);S=He(I.reverse(),"beforeRouteLeave",z,D);for(const x of I)x.leaveGuards.forEach(C=>{S.push(d2(C,z,D))});const m=p0.bind(null,z,D);return S.push(m),R0(S).then(()=>{S=[];for(const x of l.list())S.push(d2(x,z,D));return S.push(m),R0(S)}).then(()=>{S=He(u0,"beforeRouteUpdate",z,D);for(const x of u0)x.updateGuards.forEach(C=>{S.push(d2(C,z,D))});return S.push(m),R0(S)}).then(()=>{S=[];for(const x of d)if(x.beforeEnter)if(j0(x.beforeEnter))for(const C of x.beforeEnter)S.push(d2(C,z,D));else S.push(d2(x.beforeEnter,z,D));return S.push(m),R0(S)}).then(()=>(z.matched.forEach(x=>x.enterCallbacks={}),S=He(d,"beforeRouteEnter",z,D,N),S.push(m),R0(S))).then(()=>{S=[];for(const x of s.list())S.push(d2(x,z,D));return S.push(m),R0(S)}).catch(x=>r2(x,8)?x:Promise.reject(x))}function a0(z,D,S){u.list().forEach(I=>N(()=>I(z,D,S)))}function O(z,D,S,I,u0){const d=k(z,D);if(d)return d;const m=D===_2,x=R2?history.state:{};S&&(I||m?n.replace(z.fullPath,r0({scroll:m&&x&&x.scroll},u0)):n.push(z.fullPath,u0)),c.value=z,K0(z,D,S,m),c2()}let e0;function m0(){e0||(e0=n.listen((z,D,S)=>{if(!M1.listening)return;const I=A(z),u0=J(I);if(u0){Z(r0(u0,{replace:!0,force:!0}),I).catch(i1);return}f=I;const d=c.value;R2&&Ua(ot(d.fullPath,S.delta),oe()),G(I,d).catch(m=>r2(m,12)?m:r2(m,2)?(Z(r0(R(m.to),{force:!0}),I).then(x=>{r2(x,20)&&!S.delta&&S.type===x1.pop&&n.go(-1,!1)}).catch(i1),Promise.reject()):(S.delta&&n.go(-S.delta,!1),t0(m,I,d))).then(m=>{m=m||O(I,d,!1),m&&(S.delta&&!r2(m,8)?n.go(-S.delta,!1):S.type===x1.pop&&r2(m,20)&&n.go(-1,!1)),a0(I,d,m)}).catch(i1)}))}let F0=e1(),f0=e1(),s0;function t0(z,D,S){c2(z);const I=f0.list();return I.length?I.forEach(u0=>u0(z,D,S)):console.error(z),Promise.reject(z)}function e2(){return s0&&c.value!==_2?Promise.resolve():new Promise((z,D)=>{F0.add([z,D])})}function c2(z){return s0||(s0=!z,m0(),F0.list().forEach(([D,S])=>z?S(z):D()),F0.reset()),z}function K0(z,D,S,I){const{scrollBehavior:u0}=e;if(!R2||!u0)return Promise.resolve();const d=!S&&Wa(ot(z.fullPath,0))||(I||!S)&&history.state&&history.state.scroll||null;return a6().then(()=>u0(z,D,d)).then(m=>m&&Ka(m)).catch(m=>t0(m,z,D))}const A0=z=>n.go(z);let F2;const P2=new Set,M1={currentRoute:c,listening:!0,addRoute:w,removeRoute:H,clearRoutes:t.clearRoutes,hasRoute:P,getRoutes:y,resolve:A,options:e,push:T,replace:W,go:A0,back:()=>A0(-1),forward:()=>A0(1),beforeEach:l.add,beforeResolve:s.add,afterEach:u.add,onError:f0.add,isReady:e2,install(z){const D=this;z.component("RouterLink",wn),z.component("RouterView",zn),z.config.globalProperties.$router=D,Object.defineProperty(z.config.globalProperties,"$route",{enumerable:!0,get:()=>M0(c)}),R2&&!F2&&c.value===_2&&(F2=!0,T(n.location).catch(u0=>{}));const S={};for(const u0 in _2)Object.defineProperty(S,u0,{get:()=>c.value[u0],enumerable:!0});z.provide(ue,D),z.provide(M3,s4(S)),z.provide($e,c);const I=z.unmount;P2.add(z),z.unmount=function(){P2.delete(z),P2.size<1&&(f=_2,e0&&e0(),e0=null,c.value=_2,F2=!1,s0=!1),I()}}};function R0(z){return z.reduce((D,S)=>D.then(()=>N(S)),Promise.resolve())}return M1}function bn(e,t){const r=[],a=[],n=[],l=Math.max(t.matched.length,e.matched.length);for(let s=0;sU2(f,u))?a.push(u):r.push(u));const c=e.matched[s];c&&(t.matched.find(f=>U2(f,c))||n.push(c))}return[r,a,n]}function qf(){return x0(ue)}const Hn="modulepreload",En=function(e,t){return new URL(e,t).href},Ct={},zt=function(t,r,a){let n=Promise.resolve();if(r&&r.length>0){const s=document.getElementsByTagName("link"),u=document.querySelector("meta[property=csp-nonce]"),c=(u==null?void 0:u.nonce)||(u==null?void 0:u.getAttribute("nonce"));n=Promise.allSettled(r.map(f=>{if(f=En(f,a),f in Ct)return;Ct[f]=!0;const _=f.endsWith(".css"),v=_?'[rel="stylesheet"]':"";if(!!a)for(let H=s.length-1;H>=0;H--){const y=s[H];if(y.href===f&&(!_||y.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${f}"]${v}`))return;const w=document.createElement("link");if(w.rel=_?"stylesheet":Hn,_||(w.as="script"),w.crossOrigin="",w.href=f,c&&w.setAttribute("nonce",c),document.head.appendChild(w),_)return new Promise((H,y)=>{w.addEventListener("load",H),w.addEventListener("error",()=>y(new Error(`Unable to preload CSS for ${f}`)))})}))}function l(s){const u=new Event("vite:preloadError",{cancelable:!0});if(u.payload=s,window.dispatchEvent(u),!u.defaultPrevented)throw s}return n.then(s=>{for(const u of s||[])u.status==="rejected"&&l(u.reason);return t().catch(l)})},Vn=[{path:"/",name:"Index",component:()=>zt(()=>import("./Index-BkCaaeQ1.js"),__vite__mapDeps([0,1,2,3]),import.meta.url)},{path:"/login",name:"Login",meta:{login:!1,title:"登录"},component:()=>zt(()=>import("./Login-DDlQxOJa.js"),__vite__mapDeps([4,1,2,5]),import.meta.url)}],b3=Mn({history:Qa(),routes:Vn});b3.beforeEach(async(e,t,r)=>{r()});const H3=Symbol(),P1="el",Bn="is-",b2=(e,t,r,a,n)=>{let l=`${e}-${t}`;return r&&(l+=`-${r}`),a&&(l+=`__${a}`),n&&(l+=`--${n}`),l},E3=Symbol("namespaceContextKey"),An=e=>{const t=e||(s2()?x0(E3,X0(P1)):X0(P1));return l0(()=>M0(t)||P1)},Ln=(e,t)=>{const r=An(t);return{namespace:r,b:(y="")=>b2(r.value,e,y,"",""),e:y=>y?b2(r.value,e,"",y,""):"",m:y=>y?b2(r.value,e,"","",y):"",be:(y,P)=>y&&P?b2(r.value,e,y,P,""):"",em:(y,P)=>y&&P?b2(r.value,e,"",y,P):"",bm:(y,P)=>y&&P?b2(r.value,e,y,"",P):"",bem:(y,P,A)=>y&&P&&A?b2(r.value,e,y,P,A):"",is:(y,...P)=>{const A=P.length>=1?P[0]:!0;return y&&A?`${Bn}${y}`:""},cssVar:y=>{const P={};for(const A in y)y[A]&&(P[`--${r.value}-${A}`]=y[A]);return P},cssVarName:y=>`--${r.value}-${y}`,cssVarBlock:y=>{const P={};for(const A in y)y[A]&&(P[`--${r.value}-${e}-${A}`]=y[A]);return P},cssVarBlockName:y=>`--${r.value}-${e}-${y}`}};var Sn=typeof global=="object"&&global&&global.Object===Object&&global,Fn=typeof self=="object"&&self&&self.Object===Object&&self,h6=Sn||Fn||Function("return this")(),G2=h6.Symbol,V3=Object.prototype,Pn=V3.hasOwnProperty,Dn=V3.toString,t1=G2?G2.toStringTag:void 0;function Tn(e){var t=Pn.call(e,t1),r=e[t1];try{e[t1]=void 0;var a=!0}catch{}var n=Dn.call(e);return a&&(t?e[t1]=r:delete e[t1]),n}var Rn=Object.prototype,On=Rn.toString;function kn(e){return On.call(e)}var In="[object Null]",Nn="[object Undefined]",Mt=G2?G2.toStringTag:void 0;function B3(e){return e==null?e===void 0?Nn:In:Mt&&Mt in Object(e)?Tn(e):kn(e)}function $n(e){return e!=null&&typeof e=="object"}var qn="[object Symbol]";function f6(e){return typeof e=="symbol"||$n(e)&&B3(e)==qn}function jn(e,t){for(var r=-1,a=e==null?0:e.length,n=Array(a);++r-1&&e%1==0&&e-1}function Tl(e,t){var r=this.__data__,a=ce(r,e);return a<0?(++this.size,r.push([e,t])):r[a][1]=t,this}function J2(e){var t=-1,r=e==null?0:e.length;for(this.clear();++te===void 0,Kf=e=>typeof e=="boolean",ts=e=>typeof e=="number",Uf=e=>typeof Element>"u"?!1:e instanceof Element,Wf=e=>h0(e)?!Number.isNaN(Number(e)):!1;var rs=Object.defineProperty,as=Object.defineProperties,ns=Object.getOwnPropertyDescriptors,Bt=Object.getOwnPropertySymbols,ls=Object.prototype.hasOwnProperty,ss=Object.prototype.propertyIsEnumerable,At=(e,t,r)=>t in e?rs(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,os=(e,t)=>{for(var r in t||(t={}))ls.call(t,r)&&At(e,r,t[r]);if(Bt)for(var r of Bt(t))ss.call(t,r)&&At(e,r,t[r]);return e},us=(e,t)=>as(e,ns(t));function Gf(e,t){var r;const a=o4();return mr(()=>{a.value=e()},us(os({},t),{flush:(r=void 0)!=null?r:"sync"})),ee(a)}var Lt;const g6=typeof window<"u",Jf=e=>typeof e<"u",Zf=e=>typeof e=="function",Yf=e=>typeof e=="string",St=()=>{},Qf=g6&&((Lt=window==null?void 0:window.navigator)==null?void 0:Lt.userAgent)&&/iP(ad|hone|od)/.test(window.navigator.userAgent);function qe(e){return typeof e=="function"?e():M0(e)}function cs(e,t){function r(...a){return new Promise((n,l)=>{Promise.resolve(e(()=>t.apply(this,a),{fn:t,thisArg:this,args:a})).then(n).catch(l)})}return r}function is(e,t={}){let r,a,n=St;const l=u=>{clearTimeout(u),n(),n=St};return u=>{const c=qe(e),f=qe(t.maxWait);return r&&l(r),c<=0||f!==void 0&&f<=0?(a&&(l(a),a=null),Promise.resolve(u())):new Promise((_,v)=>{n=t.rejectOnCancel?v:_,f&&!a&&(a=setTimeout(()=>{r&&l(r),a=null,_(u())},f)),r=setTimeout(()=>{a&&l(a),a=null,_(u())},c)})}}function Xf(e){return e}function _s(e){return Kt()?(l8(e),!0):!1}function ps(e,t=200,r={}){return cs(is(t,r),e)}function ev(e,t=200,r={}){const a=X0(e.value),n=ps(()=>{a.value=e.value},t,r);return j2(e,()=>n()),a}function tv(e,t=!0){s2()?s6(e):t?e():a6(e)}function rv(e,t,r={}){const{immediate:a=!0}=r,n=X0(!1);let l=null;function s(){l&&(clearTimeout(l),l=null)}function u(){n.value=!1,s()}function c(...f){s(),n.value=!0,l=setTimeout(()=>{n.value=!1,l=null,e(...f)},qe(t))}return a&&(n.value=!0,g6&&c()),_s(u),{isPending:ee(n),start:c,stop:u}}const Ft={current:0},Pt=X0(0),D3=2e3,Dt=Symbol("elZIndexContextKey"),T3=Symbol("zIndexContextKey"),hs=e=>{const t=s2()?x0(Dt,Ft):Ft,r=e||(s2()?x0(T3,void 0):void 0),a=l0(()=>{const s=M0(r);return ts(s)?s:D3}),n=l0(()=>a.value+Pt.value),l=()=>(t.current++,Pt.value=t.current,n.value);return!g6&&x0(Dt),{initialZIndex:a,currentZIndex:n,nextZIndex:l}};var fs={name:"en",el:{breadcrumb:{label:"Breadcrumb"},colorpicker:{confirm:"OK",clear:"Clear",defaultLabel:"color picker",description:"current color is {color}. press enter to select a new color.",alphaLabel:"pick alpha value"},datepicker:{now:"Now",today:"Today",cancel:"Cancel",clear:"Clear",confirm:"OK",dateTablePrompt:"Use the arrow keys and enter to select the day of the month",monthTablePrompt:"Use the arrow keys and enter to select the month",yearTablePrompt:"Use the arrow keys and enter to select the year",selectedDate:"Selected date",selectDate:"Select date",selectTime:"Select time",startDate:"Start Date",startTime:"Start Time",endDate:"End Date",endTime:"End Time",prevYear:"Previous Year",nextYear:"Next Year",prevMonth:"Previous Month",nextMonth:"Next Month",year:"",month1:"January",month2:"February",month3:"March",month4:"April",month5:"May",month6:"June",month7:"July",month8:"August",month9:"September",month10:"October",month11:"November",month12:"December",week:"week",weeks:{sun:"Sun",mon:"Mon",tue:"Tue",wed:"Wed",thu:"Thu",fri:"Fri",sat:"Sat"},weeksFull:{sun:"Sunday",mon:"Monday",tue:"Tuesday",wed:"Wednesday",thu:"Thursday",fri:"Friday",sat:"Saturday"},months:{jan:"Jan",feb:"Feb",mar:"Mar",apr:"Apr",may:"May",jun:"Jun",jul:"Jul",aug:"Aug",sep:"Sep",oct:"Oct",nov:"Nov",dec:"Dec"}},inputNumber:{decrease:"decrease number",increase:"increase number"},select:{loading:"Loading",noMatch:"No matching data",noData:"No data",placeholder:"Select"},mention:{loading:"Loading"},dropdown:{toggleDropdown:"Toggle Dropdown"},cascader:{noMatch:"No matching data",loading:"Loading",placeholder:"Select",noData:"No data"},pagination:{goto:"Go to",pagesize:"/page",total:"Total {total}",pageClassifier:"",page:"Page",prev:"Go to previous page",next:"Go to next page",currentPage:"page {pager}",prevPages:"Previous {pager} pages",nextPages:"Next {pager} pages",deprecationWarning:"Deprecated usages detected, please refer to the el-pagination documentation for more details"},dialog:{close:"Close this dialog"},drawer:{close:"Close this dialog"},messagebox:{title:"Message",confirm:"OK",cancel:"Cancel",error:"Illegal input",close:"Close this dialog"},upload:{deleteTip:"press delete to remove",delete:"Delete",preview:"Preview",continue:"Continue"},slider:{defaultLabel:"slider between {min} and {max}",defaultRangeStartLabel:"pick start value",defaultRangeEndLabel:"pick end value"},table:{emptyText:"No Data",confirmFilter:"Confirm",resetFilter:"Reset",clearFilter:"All",sumText:"Sum"},tour:{next:"Next",previous:"Previous",finish:"Finish"},tree:{emptyText:"No Data"},transfer:{noMatch:"No matching data",noData:"No data",titles:["List 1","List 2"],filterPlaceholder:"Enter keyword",noCheckedFormat:"{total} items",hasCheckedFormat:"{checked}/{total} checked"},image:{error:"FAILED"},pageHeader:{title:"Back"},popconfirm:{confirmButtonText:"Yes",cancelButtonText:"No"},carousel:{leftArrow:"Carousel arrow left",rightArrow:"Carousel arrow right",indicator:"Carousel switch to index {index}"}}};const vs=e=>(t,r)=>ds(t,r,M0(e)),ds=(e,t,r)=>P3(r,e,e).replace(/\{(\w+)\}/g,(a,n)=>{var l;return`${(l=t==null?void 0:t[n])!=null?l:`{${n}}`}`}),ms=e=>{const t=l0(()=>M0(e).name),r=v0(e)?e:X0(e);return{lang:t,locale:r,t:vs(e)}},R3=Symbol("localeContextKey"),gs=e=>{const t=e||x0(R3,X0());return ms(l0(()=>t.value||fs))},O3="__epPropKey",A1=e=>e,ws=e=>o0(e)&&!!e[O3],k3=(e,t)=>{if(!o0(e)||ws(e))return e;const{values:r,required:a,default:n,type:l,validator:s}=e,c={type:l,required:!!a,validator:r||s?f=>{let _=!1,v=[];if(r&&(v=Array.from(r),X(e,"default")&&v.push(n),_||(_=v.includes(f))),s&&(_||(_=s(f))),!_&&v.length>0){const g=[...new Set(v)].map(w=>JSON.stringify(w)).join(", ");Ir(`Invalid prop: validation failed${t?` for prop "${t}"`:""}. Expected one of [${g}], got value ${JSON.stringify(f)}.`)}return _}:void 0,[O3]:!0};return X(e,"default")&&(c.default=n),c},I3=e=>Ql(Object.entries(e).map(([t,r])=>[t,k3(r,t)])),xs=["","default","small","large"],ys=k3({type:String,values:xs,required:!1}),N3=Symbol("size"),av=()=>{const e=x0(N3,{});return l0(()=>M0(e.size)||"")},Cs=Symbol("emptyValuesContextKey"),zs=I3({emptyValues:Array,valueOnClear:{type:[String,Number,Boolean,Function],default:void 0,validator:e=>K(e)?!e():!e}}),Tt=e=>Object.keys(e),nv=e=>Object.entries(e),lv=(e,t,r)=>({get value(){return P3(e,t,r)},set value(a){es(e,t,a)}}),U1=X0();function $3(e,t=void 0){const r=s2()?x0(H3,U1):U1;return e?l0(()=>{var a,n;return(n=(a=r.value)==null?void 0:a[e])!=null?n:t}):r}function sv(e,t){const r=$3(),a=Ln(e,l0(()=>{var u;return((u=r.value)==null?void 0:u.namespace)||P1})),n=gs(l0(()=>{var u;return(u=r.value)==null?void 0:u.locale})),l=hs(l0(()=>{var u;return((u=r.value)==null?void 0:u.zIndex)||D3})),s=l0(()=>{var u;return M0(t)||((u=r.value)==null?void 0:u.size)||""});return q3(l0(()=>M0(r)||{})),{ns:a,locale:n,zIndex:l,size:s}}const q3=(e,t,r=!1)=>{var a;const n=!!s2(),l=n?$3():void 0,s=(a=void 0)!=null?a:n?u1:void 0;if(!s)return;const u=l0(()=>{const c=M0(e);return l!=null&&l.value?Ms(l.value,c):c});return s(H3,u),s(R3,l0(()=>u.value.locale)),s(E3,l0(()=>u.value.namespace)),s(T3,l0(()=>u.value.zIndex)),s(N3,{size:l0(()=>u.value.size||"")}),s(Cs,l0(()=>({emptyValues:u.value.emptyValues,valueOnClear:u.value.valueOnClear}))),(r||!U1.value)&&(U1.value=u.value),u},Ms=(e,t)=>{const r=[...new Set([...Tt(e),...Tt(t)])],a={};for(const n of r)a[n]=t[n]!==void 0?t[n]:e[n];return a},bs=(e,t)=>{if(e.install=r=>{for(const a of[e,...Object.values(t??{})])r.component(a.name,a)},t)for(const[r,a]of Object.entries(t))e[r]=a;return e},ov=(e,t)=>(e.install=r=>{e._context=r._context,r.config.globalProperties[t]=e},e),uv=e=>(e.install=k0,e);/*! Element Plus Icons Vue v2.3.1 */var Hs=p({name:"AddLocation",__name:"add-location",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32"}),o("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416M512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544"}),o("path",{fill:"currentColor",d:"M544 384h96a32 32 0 1 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96v-96a32 32 0 0 1 64 0z"})]))}}),Es=Hs,Vs=p({name:"Aim",__name:"aim",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"}),o("path",{fill:"currentColor",d:"M512 96a32 32 0 0 1 32 32v192a32 32 0 0 1-64 0V128a32 32 0 0 1 32-32m0 576a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V704a32 32 0 0 1 32-32M96 512a32 32 0 0 1 32-32h192a32 32 0 0 1 0 64H128a32 32 0 0 1-32-32m576 0a32 32 0 0 1 32-32h192a32 32 0 1 1 0 64H704a32 32 0 0 1-32-32"})]))}}),Bs=Vs,As=p({name:"AlarmClock",__name:"alarm-clock",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 832a320 320 0 1 0 0-640 320 320 0 0 0 0 640m0 64a384 384 0 1 1 0-768 384 384 0 0 1 0 768"}),o("path",{fill:"currentColor",d:"m292.288 824.576 55.424 32-48 83.136a32 32 0 1 1-55.424-32zm439.424 0-55.424 32 48 83.136a32 32 0 1 0 55.424-32zM512 512h160a32 32 0 1 1 0 64H480a32 32 0 0 1-32-32V320a32 32 0 0 1 64 0zM90.496 312.256A160 160 0 0 1 312.32 90.496l-46.848 46.848a96 96 0 0 0-128 128L90.56 312.256zm835.264 0A160 160 0 0 0 704 90.496l46.848 46.848a96 96 0 0 1 128 128z"})]))}}),Ls=As,Ss=p({name:"Apple",__name:"apple",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M599.872 203.776a189.44 189.44 0 0 1 64.384-4.672l2.624.128c31.168 1.024 51.2 4.096 79.488 16.32 37.632 16.128 74.496 45.056 111.488 89.344 96.384 115.264 82.752 372.8-34.752 521.728-7.68 9.728-32 41.6-30.72 39.936a426.624 426.624 0 0 1-30.08 35.776c-31.232 32.576-65.28 49.216-110.08 50.048-31.36.64-53.568-5.312-84.288-18.752l-6.528-2.88c-20.992-9.216-30.592-11.904-47.296-11.904-18.112 0-28.608 2.88-51.136 12.672l-6.464 2.816c-28.416 12.224-48.32 18.048-76.16 19.2-74.112 2.752-116.928-38.08-180.672-132.16-96.64-142.08-132.608-349.312-55.04-486.4 46.272-81.92 129.92-133.632 220.672-135.04 32.832-.576 60.288 6.848 99.648 22.72 27.136 10.88 34.752 13.76 37.376 14.272 16.256-20.16 27.776-36.992 34.56-50.24 13.568-26.304 27.2-59.968 40.704-100.8a32 32 0 1 1 60.8 20.224c-12.608 37.888-25.408 70.4-38.528 97.664zm-51.52 78.08c-14.528 17.792-31.808 37.376-51.904 58.816a32 32 0 1 1-46.72-43.776l12.288-13.248c-28.032-11.2-61.248-26.688-95.68-26.112-70.4 1.088-135.296 41.6-171.648 105.792C121.6 492.608 176 684.16 247.296 788.992c34.816 51.328 76.352 108.992 130.944 106.944 52.48-2.112 72.32-34.688 135.872-34.688 63.552 0 81.28 34.688 136.96 33.536 56.448-1.088 75.776-39.04 126.848-103.872 107.904-136.768 107.904-362.752 35.776-449.088-72.192-86.272-124.672-84.096-151.68-85.12-41.472-4.288-81.6 12.544-113.664 25.152z"})]))}}),Fs=Ss,Ps=p({name:"ArrowDownBold",__name:"arrow-down-bold",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M104.704 338.752a64 64 0 0 1 90.496 0l316.8 316.8 316.8-316.8a64 64 0 0 1 90.496 90.496L557.248 791.296a64 64 0 0 1-90.496 0L104.704 429.248a64 64 0 0 1 0-90.496z"})]))}}),Ds=Ps,Ts=p({name:"ArrowDown",__name:"arrow-down",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M831.872 340.864 512 652.672 192.128 340.864a30.592 30.592 0 0 0-42.752 0 29.12 29.12 0 0 0 0 41.6L489.664 714.24a32 32 0 0 0 44.672 0l340.288-331.712a29.12 29.12 0 0 0 0-41.728 30.592 30.592 0 0 0-42.752 0z"})]))}}),Rs=Ts,Os=p({name:"ArrowLeftBold",__name:"arrow-left-bold",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M685.248 104.704a64 64 0 0 1 0 90.496L368.448 512l316.8 316.8a64 64 0 0 1-90.496 90.496L232.704 557.248a64 64 0 0 1 0-90.496l362.048-362.048a64 64 0 0 1 90.496 0z"})]))}}),ks=Os,Is=p({name:"ArrowLeft",__name:"arrow-left",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M609.408 149.376 277.76 489.6a32 32 0 0 0 0 44.672l331.648 340.352a29.12 29.12 0 0 0 41.728 0 30.592 30.592 0 0 0 0-42.752L339.264 511.936l311.872-319.872a30.592 30.592 0 0 0 0-42.688 29.12 29.12 0 0 0-41.728 0z"})]))}}),Ns=Is,$s=p({name:"ArrowRightBold",__name:"arrow-right-bold",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M338.752 104.704a64 64 0 0 0 0 90.496l316.8 316.8-316.8 316.8a64 64 0 0 0 90.496 90.496l362.048-362.048a64 64 0 0 0 0-90.496L429.248 104.704a64 64 0 0 0-90.496 0z"})]))}}),qs=$s,js=p({name:"ArrowRight",__name:"arrow-right",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M340.864 149.312a30.592 30.592 0 0 0 0 42.752L652.736 512 340.864 831.872a30.592 30.592 0 0 0 0 42.752 29.12 29.12 0 0 0 41.728 0L714.24 534.336a32 32 0 0 0 0-44.672L382.592 149.376a29.12 29.12 0 0 0-41.728 0z"})]))}}),Ks=js,Us=p({name:"ArrowUpBold",__name:"arrow-up-bold",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M104.704 685.248a64 64 0 0 0 90.496 0l316.8-316.8 316.8 316.8a64 64 0 0 0 90.496-90.496L557.248 232.704a64 64 0 0 0-90.496 0L104.704 594.752a64 64 0 0 0 0 90.496z"})]))}}),Ws=Us,Gs=p({name:"ArrowUp",__name:"arrow-up",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m488.832 344.32-339.84 356.672a32 32 0 0 0 0 44.16l.384.384a29.44 29.44 0 0 0 42.688 0l320-335.872 319.872 335.872a29.44 29.44 0 0 0 42.688 0l.384-.384a32 32 0 0 0 0-44.16L535.168 344.32a32 32 0 0 0-46.336 0"})]))}}),Js=Gs,Zs=p({name:"Avatar",__name:"avatar",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M628.736 528.896A416 416 0 0 1 928 928H96a415.872 415.872 0 0 1 299.264-399.104L512 704zM720 304a208 208 0 1 1-416 0 208 208 0 0 1 416 0"})]))}}),Ys=Zs,Qs=p({name:"Back",__name:"back",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M224 480h640a32 32 0 1 1 0 64H224a32 32 0 0 1 0-64"}),o("path",{fill:"currentColor",d:"m237.248 512 265.408 265.344a32 32 0 0 1-45.312 45.312l-288-288a32 32 0 0 1 0-45.312l288-288a32 32 0 1 1 45.312 45.312z"})]))}}),Xs=Qs,eo=p({name:"Baseball",__name:"baseball",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M195.2 828.8a448 448 0 1 1 633.6-633.6 448 448 0 0 1-633.6 633.6zm45.248-45.248a384 384 0 1 0 543.104-543.104 384 384 0 0 0-543.104 543.104"}),o("path",{fill:"currentColor",d:"M497.472 96.896c22.784 4.672 44.416 9.472 64.896 14.528a256.128 256.128 0 0 0 350.208 350.208c5.056 20.48 9.856 42.112 14.528 64.896A320.128 320.128 0 0 1 497.472 96.896zM108.48 491.904a320.128 320.128 0 0 1 423.616 423.68c-23.04-3.648-44.992-7.424-65.728-11.52a256.128 256.128 0 0 0-346.496-346.432 1736.64 1736.64 0 0 1-11.392-65.728z"})]))}}),to=eo,ro=p({name:"Basketball",__name:"basketball",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M778.752 788.224a382.464 382.464 0 0 0 116.032-245.632 256.512 256.512 0 0 0-241.728-13.952 762.88 762.88 0 0 1 125.696 259.584zm-55.04 44.224a699.648 699.648 0 0 0-125.056-269.632 256.128 256.128 0 0 0-56.064 331.968 382.72 382.72 0 0 0 181.12-62.336m-254.08 61.248A320.128 320.128 0 0 1 557.76 513.6a715.84 715.84 0 0 0-48.192-48.128 320.128 320.128 0 0 1-379.264 88.384 382.4 382.4 0 0 0 110.144 229.696 382.4 382.4 0 0 0 229.184 110.08zM129.28 481.088a256.128 256.128 0 0 0 331.072-56.448 699.648 699.648 0 0 0-268.8-124.352 382.656 382.656 0 0 0-62.272 180.8m106.56-235.84a762.88 762.88 0 0 1 258.688 125.056 256.512 256.512 0 0 0-13.44-241.088A382.464 382.464 0 0 0 235.84 245.248zm318.08-114.944c40.576 89.536 37.76 193.92-8.448 281.344a779.84 779.84 0 0 1 66.176 66.112 320.832 320.832 0 0 1 282.112-8.128 382.4 382.4 0 0 0-110.144-229.12 382.4 382.4 0 0 0-229.632-110.208zM828.8 828.8a448 448 0 1 1-633.6-633.6 448 448 0 0 1 633.6 633.6"})]))}}),ao=ro,no=p({name:"BellFilled",__name:"bell-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M640 832a128 128 0 0 1-256 0zm192-64H134.4a38.4 38.4 0 0 1 0-76.8H192V448c0-154.88 110.08-284.16 256.32-313.6a64 64 0 1 1 127.36 0A320.128 320.128 0 0 1 832 448v243.2h57.6a38.4 38.4 0 0 1 0 76.8z"})]))}}),lo=no,so=p({name:"Bell",__name:"bell",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a64 64 0 0 1 64 64v64H448v-64a64 64 0 0 1 64-64"}),o("path",{fill:"currentColor",d:"M256 768h512V448a256 256 0 1 0-512 0zm256-640a320 320 0 0 1 320 320v384H192V448a320 320 0 0 1 320-320"}),o("path",{fill:"currentColor",d:"M96 768h832q32 0 32 32t-32 32H96q-32 0-32-32t32-32m352 128h128a64 64 0 0 1-128 0"})]))}}),oo=so,uo=p({name:"Bicycle",__name:"bicycle",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 832a128 128 0 1 0 0-256 128 128 0 0 0 0 256m0 64a192 192 0 1 1 0-384 192 192 0 0 1 0 384"}),o("path",{fill:"currentColor",d:"M288 672h320q32 0 32 32t-32 32H288q-32 0-32-32t32-32"}),o("path",{fill:"currentColor",d:"M768 832a128 128 0 1 0 0-256 128 128 0 0 0 0 256m0 64a192 192 0 1 1 0-384 192 192 0 0 1 0 384"}),o("path",{fill:"currentColor",d:"M480 192a32 32 0 0 1 0-64h160a32 32 0 0 1 31.04 24.256l96 384a32 32 0 0 1-62.08 15.488L615.04 192zM96 384a32 32 0 0 1 0-64h128a32 32 0 0 1 30.336 21.888l64 192a32 32 0 1 1-60.672 20.224L200.96 384z"}),o("path",{fill:"currentColor",d:"m373.376 599.808-42.752-47.616 320-288 42.752 47.616z"})]))}}),co=uo,io=p({name:"BottomLeft",__name:"bottom-left",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 768h416a32 32 0 1 1 0 64H224a32 32 0 0 1-32-32V352a32 32 0 0 1 64 0z"}),o("path",{fill:"currentColor",d:"M246.656 822.656a32 32 0 0 1-45.312-45.312l544-544a32 32 0 0 1 45.312 45.312l-544 544z"})]))}}),_o=io,po=p({name:"BottomRight",__name:"bottom-right",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M352 768a32 32 0 1 0 0 64h448a32 32 0 0 0 32-32V352a32 32 0 0 0-64 0v416z"}),o("path",{fill:"currentColor",d:"M777.344 822.656a32 32 0 0 0 45.312-45.312l-544-544a32 32 0 0 0-45.312 45.312z"})]))}}),ho=po,fo=p({name:"Bottom",__name:"bottom",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M544 805.888V168a32 32 0 1 0-64 0v637.888L246.656 557.952a30.72 30.72 0 0 0-45.312 0 35.52 35.52 0 0 0 0 48.064l288 306.048a30.72 30.72 0 0 0 45.312 0l288-306.048a35.52 35.52 0 0 0 0-48 30.72 30.72 0 0 0-45.312 0L544 805.824z"})]))}}),vo=fo,mo=p({name:"Bowl",__name:"bowl",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M714.432 704a351.744 351.744 0 0 0 148.16-256H161.408a351.744 351.744 0 0 0 148.16 256zM288 766.592A415.68 415.68 0 0 1 96 416a32 32 0 0 1 32-32h768a32 32 0 0 1 32 32 415.68 415.68 0 0 1-192 350.592V832a64 64 0 0 1-64 64H352a64 64 0 0 1-64-64zM493.248 320h-90.496l254.4-254.4a32 32 0 1 1 45.248 45.248zm187.328 0h-128l269.696-155.712a32 32 0 0 1 32 55.424zM352 768v64h320v-64z"})]))}}),go=mo,wo=p({name:"Box",__name:"box",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M317.056 128 128 344.064V896h768V344.064L706.944 128zm-14.528-64h418.944a32 32 0 0 1 24.064 10.88l206.528 236.096A32 32 0 0 1 960 332.032V928a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V332.032a32 32 0 0 1 7.936-21.12L278.4 75.008A32 32 0 0 1 302.528 64z"}),o("path",{fill:"currentColor",d:"M64 320h896v64H64z"}),o("path",{fill:"currentColor",d:"M448 327.872V640h128V327.872L526.08 128h-28.16zM448 64h128l64 256v352a32 32 0 0 1-32 32H416a32 32 0 0 1-32-32V320z"})]))}}),xo=wo,yo=p({name:"Briefcase",__name:"briefcase",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M320 320V128h384v192h192v192H128V320zM128 576h768v320H128zm256-256h256.064V192H384z"})]))}}),Co=yo,zo=p({name:"BrushFilled",__name:"brush-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M608 704v160a96 96 0 0 1-192 0V704h-96a128 128 0 0 1-128-128h640a128 128 0 0 1-128 128zM192 512V128.064h640V512z"})]))}}),Mo=zo,bo=p({name:"Brush",__name:"brush",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M896 448H128v192a64 64 0 0 0 64 64h192v192h256V704h192a64 64 0 0 0 64-64zm-770.752-64c0-47.552 5.248-90.24 15.552-128 14.72-54.016 42.496-107.392 83.2-160h417.28l-15.36 70.336L736 96h211.2c-24.832 42.88-41.92 96.256-51.2 160a663.872 663.872 0 0 0-6.144 128H960v256a128 128 0 0 1-128 128H704v160a32 32 0 0 1-32 32H352a32 32 0 0 1-32-32V768H192A128 128 0 0 1 64 640V384h61.248zm64 0h636.544c-2.048-45.824.256-91.584 6.848-137.216 4.48-30.848 10.688-59.776 18.688-86.784h-96.64l-221.12 141.248L561.92 160H256.512c-25.856 37.888-43.776 75.456-53.952 112.832-8.768 32.064-13.248 69.12-13.312 111.168z"})]))}}),Ho=bo,Eo=p({name:"Burger",__name:"burger",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 512a32 32 0 0 0-32 32v64a32 32 0 0 0 30.08 32H864a32 32 0 0 0 32-32v-64a32 32 0 0 0-32-32zm736-58.56A96 96 0 0 1 960 544v64a96 96 0 0 1-51.968 85.312L855.36 833.6a96 96 0 0 1-89.856 62.272H258.496A96 96 0 0 1 168.64 833.6l-52.608-140.224A96 96 0 0 1 64 608v-64a96 96 0 0 1 64-90.56V448a384 384 0 1 1 768 5.44M832 448a320 320 0 0 0-640 0zM512 704H188.352l40.192 107.136a32 32 0 0 0 29.952 20.736h507.008a32 32 0 0 0 29.952-20.736L835.648 704z"})]))}}),Vo=Eo,Bo=p({name:"Calendar",__name:"calendar",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 384v512h768V192H768v32a32 32 0 1 1-64 0v-32H320v32a32 32 0 0 1-64 0v-32H128v128h768v64zm192-256h384V96a32 32 0 1 1 64 0v32h160a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h160V96a32 32 0 0 1 64 0zm-32 384h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64m0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64m192-192h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64m0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64m192-192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64m0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64"})]))}}),Ao=Bo,Lo=p({name:"CameraFilled",__name:"camera-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 224a64 64 0 0 0-64 64v512a64 64 0 0 0 64 64h704a64 64 0 0 0 64-64V288a64 64 0 0 0-64-64H748.416l-46.464-92.672A64 64 0 0 0 644.736 96H379.328a64 64 0 0 0-57.216 35.392L275.776 224zm352 435.2a115.2 115.2 0 1 0 0-230.4 115.2 115.2 0 0 0 0 230.4m0 140.8a256 256 0 1 1 0-512 256 256 0 0 1 0 512"})]))}}),So=Lo,Fo=p({name:"Camera",__name:"camera",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M896 256H128v576h768zm-199.424-64-32.064-64h-304.96l-32 64zM96 192h160l46.336-92.608A64 64 0 0 1 359.552 64h304.96a64 64 0 0 1 57.216 35.328L768.192 192H928a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32m416 512a160 160 0 1 0 0-320 160 160 0 0 0 0 320m0 64a224 224 0 1 1 0-448 224 224 0 0 1 0 448"})]))}}),Po=Fo,Do=p({name:"CaretBottom",__name:"caret-bottom",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m192 384 320 384 320-384z"})]))}}),To=Do,Ro=p({name:"CaretLeft",__name:"caret-left",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M672 192 288 511.936 672 832z"})]))}}),Oo=Ro,ko=p({name:"CaretRight",__name:"caret-right",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M384 192v640l384-320.064z"})]))}}),Io=ko,No=p({name:"CaretTop",__name:"caret-top",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 320 192 704h639.936z"})]))}}),$o=No,qo=p({name:"Cellphone",__name:"cellphone",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 128a64 64 0 0 0-64 64v640a64 64 0 0 0 64 64h512a64 64 0 0 0 64-64V192a64 64 0 0 0-64-64zm0-64h512a128 128 0 0 1 128 128v640a128 128 0 0 1-128 128H256a128 128 0 0 1-128-128V192A128 128 0 0 1 256 64m128 128h256a32 32 0 1 1 0 64H384a32 32 0 0 1 0-64m128 640a64 64 0 1 1 0-128 64 64 0 0 1 0 128"})]))}}),jo=qo,Ko=p({name:"ChatDotRound",__name:"chat-dot-round",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m174.72 855.68 135.296-45.12 23.68 11.84C388.096 849.536 448.576 864 512 864c211.84 0 384-166.784 384-352S723.84 160 512 160 128 326.784 128 512c0 69.12 24.96 139.264 70.848 199.232l22.08 28.8-46.272 115.584zm-45.248 82.56A32 32 0 0 1 89.6 896l58.368-145.92C94.72 680.32 64 596.864 64 512 64 299.904 256 96 512 96s448 203.904 448 416-192 416-448 416a461.056 461.056 0 0 1-206.912-48.384l-175.616 58.56z"}),o("path",{fill:"currentColor",d:"M512 563.2a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4m192 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4m-384 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4"})]))}}),Uo=Ko,Wo=p({name:"ChatDotSquare",__name:"chat-dot-square",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64v570.88zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128z"}),o("path",{fill:"currentColor",d:"M512 499.2a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4zm192 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4zm-384 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4z"})]))}}),Go=Wo,Jo=p({name:"ChatLineRound",__name:"chat-line-round",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m174.72 855.68 135.296-45.12 23.68 11.84C388.096 849.536 448.576 864 512 864c211.84 0 384-166.784 384-352S723.84 160 512 160 128 326.784 128 512c0 69.12 24.96 139.264 70.848 199.232l22.08 28.8-46.272 115.584zm-45.248 82.56A32 32 0 0 1 89.6 896l58.368-145.92C94.72 680.32 64 596.864 64 512 64 299.904 256 96 512 96s448 203.904 448 416-192 416-448 416a461.056 461.056 0 0 1-206.912-48.384l-175.616 58.56z"}),o("path",{fill:"currentColor",d:"M352 576h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32m32-192h256q32 0 32 32t-32 32H384q-32 0-32-32t32-32"})]))}}),Zo=Jo,Yo=p({name:"ChatLineSquare",__name:"chat-line-square",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 826.88 273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128z"}),o("path",{fill:"currentColor",d:"M352 512h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32m0-192h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32"})]))}}),Qo=Yo,Xo=p({name:"ChatRound",__name:"chat-round",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m174.72 855.68 130.048-43.392 23.424 11.392C382.4 849.984 444.352 864 512 864c223.744 0 384-159.872 384-352 0-192.832-159.104-352-384-352S128 319.168 128 512a341.12 341.12 0 0 0 69.248 204.288l21.632 28.8-44.16 110.528zm-45.248 82.56A32 32 0 0 1 89.6 896l56.512-141.248A405.12 405.12 0 0 1 64 512C64 299.904 235.648 96 512 96s448 203.904 448 416-173.44 416-448 416c-79.68 0-150.848-17.152-211.712-46.72l-170.88 56.96z"})]))}}),eu=Xo,tu=p({name:"ChatSquare",__name:"chat-square",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64v570.88zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128z"})]))}}),ru=tu,au=p({name:"Check",__name:"check",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M406.656 706.944 195.84 496.256a32 32 0 1 0-45.248 45.248l256 256 512-512a32 32 0 0 0-45.248-45.248L406.592 706.944z"})]))}}),nu=au,lu=p({name:"Checked",__name:"checked",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M704 192h160v736H160V192h160.064v64H704zM311.616 537.28l-45.312 45.248L447.36 763.52l316.8-316.8-45.312-45.184L447.36 673.024zM384 192V96h256v96z"})]))}}),su=lu,ou=p({name:"Cherry",__name:"cherry",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M261.056 449.6c13.824-69.696 34.88-128.96 63.36-177.728 23.744-40.832 61.12-88.64 112.256-143.872H320a32 32 0 0 1 0-64h384a32 32 0 1 1 0 64H554.752c14.912 39.168 41.344 86.592 79.552 141.76 47.36 68.48 84.8 106.752 106.304 114.304a224 224 0 1 1-84.992 14.784c-22.656-22.912-47.04-53.76-73.92-92.608-38.848-56.128-67.008-105.792-84.352-149.312-55.296 58.24-94.528 107.52-117.76 147.2-23.168 39.744-41.088 88.768-53.568 147.072a224.064 224.064 0 1 1-64.96-1.6zM288 832a160 160 0 1 0 0-320 160 160 0 0 0 0 320m448-64a160 160 0 1 0 0-320 160 160 0 0 0 0 320"})]))}}),uu=ou,cu=p({name:"Chicken",__name:"chicken",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M349.952 716.992 478.72 588.16a106.688 106.688 0 0 1-26.176-19.072 106.688 106.688 0 0 1-19.072-26.176L304.704 671.744c.768 3.072 1.472 6.144 2.048 9.216l2.048 31.936 31.872 1.984c3.136.64 6.208 1.28 9.28 2.112zm57.344 33.152a128 128 0 1 1-216.32 114.432l-1.92-32-32-1.92a128 128 0 1 1 114.432-216.32L416.64 469.248c-2.432-101.44 58.112-239.104 149.056-330.048 107.328-107.328 231.296-85.504 316.8 0 85.44 85.44 107.328 209.408 0 316.8-91.008 90.88-228.672 151.424-330.112 149.056L407.296 750.08zm90.496-226.304c49.536 49.536 233.344-7.04 339.392-113.088 78.208-78.208 63.232-163.072 0-226.304-63.168-63.232-148.032-78.208-226.24 0C504.896 290.496 448.32 474.368 497.792 523.84M244.864 708.928a64 64 0 1 0-59.84 59.84l56.32-3.52zm8.064 127.68a64 64 0 1 0 59.84-59.84l-56.32 3.52-3.52 56.32z"})]))}}),iu=cu,_u=p({name:"ChromeFilled",__name:"chrome-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M938.67 512.01c0-44.59-6.82-87.6-19.54-128H682.67a212.372 212.372 0 0 1 42.67 128c.06 38.71-10.45 76.7-30.42 109.87l-182.91 316.8c235.65-.01 426.66-191.02 426.66-426.67z"}),o("path",{fill:"currentColor",d:"M576.79 401.63a127.92 127.92 0 0 0-63.56-17.6c-22.36-.22-44.39 5.43-63.89 16.38s-35.79 26.82-47.25 46.02a128.005 128.005 0 0 0-2.16 127.44l1.24 2.13a127.906 127.906 0 0 0 46.36 46.61 127.907 127.907 0 0 0 63.38 17.44c22.29.2 44.24-5.43 63.68-16.33a127.94 127.94 0 0 0 47.16-45.79v-.01l1.11-1.92a127.984 127.984 0 0 0 .29-127.46 127.957 127.957 0 0 0-46.36-46.91"}),o("path",{fill:"currentColor",d:"M394.45 333.96A213.336 213.336 0 0 1 512 298.67h369.58A426.503 426.503 0 0 0 512 85.34a425.598 425.598 0 0 0-171.74 35.98 425.644 425.644 0 0 0-142.62 102.22l118.14 204.63a213.397 213.397 0 0 1 78.67-94.21m117.56 604.72H512zm-97.25-236.73a213.284 213.284 0 0 1-89.54-86.81L142.48 298.6c-36.35 62.81-57.13 135.68-57.13 213.42 0 203.81 142.93 374.22 333.95 416.55h.04l118.19-204.71a213.315 213.315 0 0 1-122.77-21.91z"})]))}}),pu=_u,hu=p({name:"CircleCheckFilled",__name:"circle-check-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m-55.808 536.384-99.52-99.584a38.4 38.4 0 1 0-54.336 54.336l126.72 126.72a38.272 38.272 0 0 0 54.336 0l262.4-262.464a38.4 38.4 0 1 0-54.272-54.336z"})]))}}),fu=hu,vu=p({name:"CircleCheck",__name:"circle-check",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"}),o("path",{fill:"currentColor",d:"M745.344 361.344a32 32 0 0 1 45.312 45.312l-288 288a32 32 0 0 1-45.312 0l-160-160a32 32 0 1 1 45.312-45.312L480 626.752l265.344-265.408z"})]))}}),du=vu,mu=p({name:"CircleCloseFilled",__name:"circle-close-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 393.664L407.936 353.6a38.4 38.4 0 1 0-54.336 54.336L457.664 512 353.6 616.064a38.4 38.4 0 1 0 54.336 54.336L512 566.336 616.064 670.4a38.4 38.4 0 1 0 54.336-54.336L566.336 512 670.4 407.936a38.4 38.4 0 1 0-54.336-54.336z"})]))}}),gu=mu,wu=p({name:"CircleClose",__name:"circle-close",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m466.752 512-90.496-90.496a32 32 0 0 1 45.248-45.248L512 466.752l90.496-90.496a32 32 0 1 1 45.248 45.248L557.248 512l90.496 90.496a32 32 0 1 1-45.248 45.248L512 557.248l-90.496 90.496a32 32 0 0 1-45.248-45.248z"}),o("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"})]))}}),xu=wu,yu=p({name:"CirclePlusFilled",__name:"circle-plus-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m-38.4 409.6H326.4a38.4 38.4 0 1 0 0 76.8h147.2v147.2a38.4 38.4 0 0 0 76.8 0V550.4h147.2a38.4 38.4 0 0 0 0-76.8H550.4V326.4a38.4 38.4 0 1 0-76.8 0v147.2z"})]))}}),Cu=yu,zu=p({name:"CirclePlus",__name:"circle-plus",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M352 480h320a32 32 0 1 1 0 64H352a32 32 0 0 1 0-64"}),o("path",{fill:"currentColor",d:"M480 672V352a32 32 0 1 1 64 0v320a32 32 0 0 1-64 0"}),o("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"})]))}}),Mu=zu,bu=p({name:"Clock",__name:"clock",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"}),o("path",{fill:"currentColor",d:"M480 256a32 32 0 0 1 32 32v256a32 32 0 0 1-64 0V288a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M480 512h256q32 0 32 32t-32 32H480q-32 0-32-32t32-32"})]))}}),Hu=bu,Eu=p({name:"CloseBold",__name:"close-bold",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M195.2 195.2a64 64 0 0 1 90.496 0L512 421.504 738.304 195.2a64 64 0 0 1 90.496 90.496L602.496 512 828.8 738.304a64 64 0 0 1-90.496 90.496L512 602.496 285.696 828.8a64 64 0 0 1-90.496-90.496L421.504 512 195.2 285.696a64 64 0 0 1 0-90.496z"})]))}}),Vu=Eu,Bu=p({name:"Close",__name:"close",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M764.288 214.592 512 466.88 259.712 214.592a31.936 31.936 0 0 0-45.12 45.12L466.752 512 214.528 764.224a31.936 31.936 0 1 0 45.12 45.184L512 557.184l252.288 252.288a31.936 31.936 0 0 0 45.12-45.12L557.12 512.064l252.288-252.352a31.936 31.936 0 1 0-45.12-45.184z"})]))}}),Au=Bu,Lu=p({name:"Cloudy",__name:"cloudy",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M598.4 831.872H328.192a256 256 0 0 1-34.496-510.528A352 352 0 1 1 598.4 831.872m-271.36-64h272.256a288 288 0 1 0-248.512-417.664L335.04 381.44l-34.816 3.584a192 192 0 0 0 26.88 382.848z"})]))}}),Su=Lu,Fu=p({name:"CoffeeCup",__name:"coffee-cup",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M768 192a192 192 0 1 1-8 383.808A256.128 256.128 0 0 1 512 768H320A256 256 0 0 1 64 512V160a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32zm0 64v256a128 128 0 1 0 0-256M96 832h640a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64m32-640v320a192 192 0 0 0 192 192h192a192 192 0 0 0 192-192V192z"})]))}}),Pu=Fu,Du=p({name:"Coffee",__name:"coffee",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M822.592 192h14.272a32 32 0 0 1 31.616 26.752l21.312 128A32 32 0 0 1 858.24 384h-49.344l-39.04 546.304A32 32 0 0 1 737.92 960H285.824a32 32 0 0 1-32-29.696L214.912 384H165.76a32 32 0 0 1-31.552-37.248l21.312-128A32 32 0 0 1 187.136 192h14.016l-6.72-93.696A32 32 0 0 1 226.368 64h571.008a32 32 0 0 1 31.936 34.304zm-64.128 0 4.544-64H260.736l4.544 64h493.184m-548.16 128H820.48l-10.688-64H214.208l-10.688 64h6.784m68.736 64 36.544 512H708.16l36.544-512z"})]))}}),Tu=Du,Ru=p({name:"Coin",__name:"coin",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m161.92 580.736 29.888 58.88C171.328 659.776 160 681.728 160 704c0 82.304 155.328 160 352 160s352-77.696 352-160c0-22.272-11.392-44.16-31.808-64.32l30.464-58.432C903.936 615.808 928 657.664 928 704c0 129.728-188.544 224-416 224S96 833.728 96 704c0-46.592 24.32-88.576 65.92-123.264z"}),o("path",{fill:"currentColor",d:"m161.92 388.736 29.888 58.88C171.328 467.84 160 489.792 160 512c0 82.304 155.328 160 352 160s352-77.696 352-160c0-22.272-11.392-44.16-31.808-64.32l30.464-58.432C903.936 423.808 928 465.664 928 512c0 129.728-188.544 224-416 224S96 641.728 96 512c0-46.592 24.32-88.576 65.92-123.264z"}),o("path",{fill:"currentColor",d:"M512 544c-227.456 0-416-94.272-416-224S284.544 96 512 96s416 94.272 416 224-188.544 224-416 224m0-64c196.672 0 352-77.696 352-160S708.672 160 512 160s-352 77.696-352 160 155.328 160 352 160"})]))}}),Ou=Ru,ku=p({name:"ColdDrink",__name:"cold-drink",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M768 64a192 192 0 1 1-69.952 370.88L480 725.376V896h96a32 32 0 1 1 0 64H320a32 32 0 1 1 0-64h96V725.376L76.8 273.536a64 64 0 0 1-12.8-38.4v-10.688a32 32 0 0 1 32-32h71.808l-65.536-83.84a32 32 0 0 1 50.432-39.424l96.256 123.264h337.728A192.064 192.064 0 0 1 768 64M656.896 192.448H800a32 32 0 0 1 32 32v10.624a64 64 0 0 1-12.8 38.4l-80.448 107.2a128 128 0 1 0-81.92-188.16v-.064zm-357.888 64 129.472 165.76a32 32 0 0 1-50.432 39.36l-160.256-205.12H144l304 404.928 304-404.928z"})]))}}),Iu=ku,Nu=p({name:"CollectionTag",__name:"collection-tag",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 128v698.88l196.032-156.864a96 96 0 0 1 119.936 0L768 826.816V128zm-32-64h576a32 32 0 0 1 32 32v797.44a32 32 0 0 1-51.968 24.96L531.968 720a32 32 0 0 0-39.936 0L243.968 918.4A32 32 0 0 1 192 893.44V96a32 32 0 0 1 32-32"})]))}}),$u=Nu,qu=p({name:"Collection",__name:"collection",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M192 736h640V128H256a64 64 0 0 0-64 64zm64-672h608a32 32 0 0 1 32 32v672a32 32 0 0 1-32 32H160l-32 57.536V192A128 128 0 0 1 256 64"}),o("path",{fill:"currentColor",d:"M240 800a48 48 0 1 0 0 96h592v-96zm0-64h656v160a64 64 0 0 1-64 64H240a112 112 0 0 1 0-224m144-608v250.88l96-76.8 96 76.8V128zm-64-64h320v381.44a32 32 0 0 1-51.968 24.96L480 384l-108.032 86.4A32 32 0 0 1 320 445.44z"})]))}}),ju=qu,Ku=p({name:"Comment",__name:"comment",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M736 504a56 56 0 1 1 0-112 56 56 0 0 1 0 112m-224 0a56 56 0 1 1 0-112 56 56 0 0 1 0 112m-224 0a56 56 0 1 1 0-112 56 56 0 0 1 0 112M128 128v640h192v160l224-160h352V128z"})]))}}),Uu=Ku,Wu=p({name:"Compass",__name:"compass",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"}),o("path",{fill:"currentColor",d:"M725.888 315.008C676.48 428.672 624 513.28 568.576 568.64c-55.424 55.424-139.968 107.904-253.568 157.312a12.8 12.8 0 0 1-16.896-16.832c49.536-113.728 102.016-198.272 157.312-253.632 55.36-55.296 139.904-107.776 253.632-157.312a12.8 12.8 0 0 1 16.832 16.832"})]))}}),Gu=Wu,Ju=p({name:"Connection",__name:"connection",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M640 384v64H448a128 128 0 0 0-128 128v128a128 128 0 0 0 128 128h320a128 128 0 0 0 128-128V576a128 128 0 0 0-64-110.848V394.88c74.56 26.368 128 97.472 128 181.056v128a192 192 0 0 1-192 192H448a192 192 0 0 1-192-192V576a192 192 0 0 1 192-192z"}),o("path",{fill:"currentColor",d:"M384 640v-64h192a128 128 0 0 0 128-128V320a128 128 0 0 0-128-128H256a128 128 0 0 0-128 128v128a128 128 0 0 0 64 110.848v70.272A192.064 192.064 0 0 1 64 448V320a192 192 0 0 1 192-192h320a192 192 0 0 1 192 192v128a192 192 0 0 1-192 192z"})]))}}),Zu=Ju,Yu=p({name:"Coordinate",__name:"coordinate",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M480 512h64v320h-64z"}),o("path",{fill:"currentColor",d:"M192 896h640a64 64 0 0 0-64-64H256a64 64 0 0 0-64 64m64-128h512a128 128 0 0 1 128 128v64H128v-64a128 128 0 0 1 128-128m256-256a192 192 0 1 0 0-384 192 192 0 0 0 0 384m0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512"})]))}}),Qu=Yu,Xu=p({name:"CopyDocument",__name:"copy-document",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M768 832a128 128 0 0 1-128 128H192A128 128 0 0 1 64 832V384a128 128 0 0 1 128-128v64a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64z"}),o("path",{fill:"currentColor",d:"M384 128a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64V192a64 64 0 0 0-64-64zm0-64h448a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H384a128 128 0 0 1-128-128V192A128 128 0 0 1 384 64"})]))}}),ec=Xu,tc=p({name:"Cpu",__name:"cpu",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M320 256a64 64 0 0 0-64 64v384a64 64 0 0 0 64 64h384a64 64 0 0 0 64-64V320a64 64 0 0 0-64-64zm0-64h384a128 128 0 0 1 128 128v384a128 128 0 0 1-128 128H320a128 128 0 0 1-128-128V320a128 128 0 0 1 128-128"}),o("path",{fill:"currentColor",d:"M512 64a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32m160 0a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32m-320 0a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32m160 896a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32m160 0a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32m-320 0a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32M64 512a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32m0-160a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32m0 320a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32m896-160a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32m0-160a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32m0 320a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32"})]))}}),rc=tc,ac=p({name:"CreditCard",__name:"credit-card",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M896 324.096c0-42.368-2.496-55.296-9.536-68.48a52.352 52.352 0 0 0-22.144-22.08c-13.12-7.04-26.048-9.536-68.416-9.536H228.096c-42.368 0-55.296 2.496-68.48 9.536a52.352 52.352 0 0 0-22.08 22.144c-7.04 13.12-9.536 26.048-9.536 68.416v375.808c0 42.368 2.496 55.296 9.536 68.48a52.352 52.352 0 0 0 22.144 22.08c13.12 7.04 26.048 9.536 68.416 9.536h567.808c42.368 0 55.296-2.496 68.48-9.536a52.352 52.352 0 0 0 22.08-22.144c7.04-13.12 9.536-26.048 9.536-68.416zm64 0v375.808c0 57.088-5.952 77.76-17.088 98.56-11.136 20.928-27.52 37.312-48.384 48.448-20.864 11.136-41.6 17.088-98.56 17.088H228.032c-57.088 0-77.76-5.952-98.56-17.088a116.288 116.288 0 0 1-48.448-48.384c-11.136-20.864-17.088-41.6-17.088-98.56V324.032c0-57.088 5.952-77.76 17.088-98.56 11.136-20.928 27.52-37.312 48.384-48.448 20.864-11.136 41.6-17.088 98.56-17.088H795.84c57.088 0 77.76 5.952 98.56 17.088 20.928 11.136 37.312 27.52 48.448 48.384 11.136 20.864 17.088 41.6 17.088 98.56z"}),o("path",{fill:"currentColor",d:"M64 320h896v64H64zm0 128h896v64H64zm128 192h256v64H192z"})]))}}),nc=ac,lc=p({name:"Crop",__name:"crop",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 768h672a32 32 0 1 1 0 64H224a32 32 0 0 1-32-32V96a32 32 0 0 1 64 0z"}),o("path",{fill:"currentColor",d:"M832 224v704a32 32 0 1 1-64 0V256H96a32 32 0 0 1 0-64h704a32 32 0 0 1 32 32"})]))}}),sc=lc,oc=p({name:"DArrowLeft",__name:"d-arrow-left",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M529.408 149.376a29.12 29.12 0 0 1 41.728 0 30.592 30.592 0 0 1 0 42.688L259.264 511.936l311.872 319.936a30.592 30.592 0 0 1-.512 43.264 29.12 29.12 0 0 1-41.216-.512L197.76 534.272a32 32 0 0 1 0-44.672l331.648-340.224zm256 0a29.12 29.12 0 0 1 41.728 0 30.592 30.592 0 0 1 0 42.688L515.264 511.936l311.872 319.936a30.592 30.592 0 0 1-.512 43.264 29.12 29.12 0 0 1-41.216-.512L453.76 534.272a32 32 0 0 1 0-44.672l331.648-340.224z"})]))}}),uc=oc,cc=p({name:"DArrowRight",__name:"d-arrow-right",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M452.864 149.312a29.12 29.12 0 0 1 41.728.064L826.24 489.664a32 32 0 0 1 0 44.672L494.592 874.624a29.12 29.12 0 0 1-41.728 0 30.592 30.592 0 0 1 0-42.752L764.736 512 452.864 192a30.592 30.592 0 0 1 0-42.688m-256 0a29.12 29.12 0 0 1 41.728.064L570.24 489.664a32 32 0 0 1 0 44.672L238.592 874.624a29.12 29.12 0 0 1-41.728 0 30.592 30.592 0 0 1 0-42.752L508.736 512 196.864 192a30.592 30.592 0 0 1 0-42.688z"})]))}}),ic=cc,_c=p({name:"DCaret",__name:"d-caret",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m512 128 288 320H224zM224 576h576L512 896z"})]))}}),pc=_c,hc=p({name:"DataAnalysis",__name:"data-analysis",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m665.216 768 110.848 192h-73.856L591.36 768H433.024L322.176 960H248.32l110.848-192H160a32 32 0 0 1-32-32V192H64a32 32 0 0 1 0-64h896a32 32 0 1 1 0 64h-64v544a32 32 0 0 1-32 32zM832 192H192v512h640zM352 448a32 32 0 0 1 32 32v64a32 32 0 0 1-64 0v-64a32 32 0 0 1 32-32m160-64a32 32 0 0 1 32 32v128a32 32 0 0 1-64 0V416a32 32 0 0 1 32-32m160-64a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V352a32 32 0 0 1 32-32"})]))}}),fc=hc,vc=p({name:"DataBoard",__name:"data-board",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M32 128h960v64H32z"}),o("path",{fill:"currentColor",d:"M192 192v512h640V192zm-64-64h768v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32z"}),o("path",{fill:"currentColor",d:"M322.176 960H248.32l144.64-250.56 55.424 32zm453.888 0h-73.856L576 741.44l55.424-32z"})]))}}),dc=vc,mc=p({name:"DataLine",__name:"data-line",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M359.168 768H160a32 32 0 0 1-32-32V192H64a32 32 0 0 1 0-64h896a32 32 0 1 1 0 64h-64v544a32 32 0 0 1-32 32H665.216l110.848 192h-73.856L591.36 768H433.024L322.176 960H248.32zM832 192H192v512h640zM342.656 534.656a32 32 0 1 1-45.312-45.312L444.992 341.76l125.44 94.08L679.04 300.032a32 32 0 1 1 49.92 39.936L581.632 524.224 451.008 426.24 342.656 534.592z"})]))}}),gc=mc,wc=p({name:"DeleteFilled",__name:"delete-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M352 192V95.936a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V192h256a32 32 0 1 1 0 64H96a32 32 0 0 1 0-64zm64 0h192v-64H416zM192 960a32 32 0 0 1-32-32V256h704v672a32 32 0 0 1-32 32zm224-192a32 32 0 0 0 32-32V416a32 32 0 0 0-64 0v320a32 32 0 0 0 32 32m192 0a32 32 0 0 0 32-32V416a32 32 0 0 0-64 0v320a32 32 0 0 0 32 32"})]))}}),xc=wc,yc=p({name:"DeleteLocation",__name:"delete-location",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32"}),o("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416M512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544"}),o("path",{fill:"currentColor",d:"M384 384h256q32 0 32 32t-32 32H384q-32 0-32-32t32-32"})]))}}),Cc=yc,zc=p({name:"Delete",__name:"delete",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 256H96a32 32 0 0 1 0-64h256V95.936a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V192h256a32 32 0 1 1 0 64h-64v672a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32zm448-64v-64H416v64zM224 896h576V256H224zm192-128a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32m192 0a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32"})]))}}),Mc=zc,bc=p({name:"Dessert",__name:"dessert",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 416v-48a144 144 0 0 1 168.64-141.888 224.128 224.128 0 0 1 430.72 0A144 144 0 0 1 896 368v48a384 384 0 0 1-352 382.72V896h-64v-97.28A384 384 0 0 1 128 416m287.104-32.064h193.792a143.808 143.808 0 0 1 58.88-132.736 160.064 160.064 0 0 0-311.552 0 143.808 143.808 0 0 1 58.88 132.8zm-72.896 0a72 72 0 1 0-140.48 0h140.48m339.584 0h140.416a72 72 0 1 0-140.48 0zM512 736a320 320 0 0 0 318.4-288.064H193.6A320 320 0 0 0 512 736M384 896.064h256a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64"})]))}}),Hc=bc,Ec=p({name:"Discount",__name:"discount",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M224 704h576V318.336L552.512 115.84a64 64 0 0 0-81.024 0L224 318.336zm0 64v128h576V768zM593.024 66.304l259.2 212.096A32 32 0 0 1 864 303.168V928a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V303.168a32 32 0 0 1 11.712-24.768l259.2-212.096a128 128 0 0 1 162.112 0"}),o("path",{fill:"currentColor",d:"M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"})]))}}),Vc=Ec,Bc=p({name:"DishDot",__name:"dish-dot",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m384.064 274.56.064-50.688A128 128 0 0 1 512.128 96c70.528 0 127.68 57.152 127.68 127.68v50.752A448.192 448.192 0 0 1 955.392 768H68.544A448.192 448.192 0 0 1 384 274.56zM96 832h832a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64m32-128h768a384 384 0 1 0-768 0m447.808-448v-32.32a63.68 63.68 0 0 0-63.68-63.68 64 64 0 0 0-64 63.936V256z"})]))}}),Ac=Bc,Lc=p({name:"Dish",__name:"dish",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M480 257.152V192h-96a32 32 0 0 1 0-64h256a32 32 0 1 1 0 64h-96v65.152A448 448 0 0 1 955.52 768H68.48A448 448 0 0 1 480 257.152M128 704h768a384 384 0 1 0-768 0M96 832h832a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64"})]))}}),Sc=Lc,Fc=p({name:"DocumentAdd",__name:"document-add",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M832 384H576V128H192v768h640zm-26.496-64L640 154.496V320zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m320 512V448h64v128h128v64H544v128h-64V640H352v-64z"})]))}}),Pc=Fc,Dc=p({name:"DocumentChecked",__name:"document-checked",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M805.504 320 640 154.496V320zM832 384H576V128H192v768h640zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m318.4 582.144 180.992-180.992L704.64 510.4 478.4 736.64 320 578.304l45.248-45.312z"})]))}}),Tc=Dc,Rc=p({name:"DocumentCopy",__name:"document-copy",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 320v576h576V320zm-32-64h640a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32M960 96v704a32 32 0 0 1-32 32h-96v-64h64V128H384v64h-64V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32M256 672h320v64H256zm0-192h320v64H256z"})]))}}),Oc=Rc,kc=p({name:"DocumentDelete",__name:"document-delete",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M805.504 320 640 154.496V320zM832 384H576V128H192v768h640zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m308.992 546.304-90.496-90.624 45.248-45.248 90.56 90.496 90.496-90.432 45.248 45.248-90.496 90.56 90.496 90.496-45.248 45.248-90.496-90.496-90.56 90.496-45.248-45.248 90.496-90.496z"})]))}}),Ic=kc,Nc=p({name:"DocumentRemove",__name:"document-remove",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M805.504 320 640 154.496V320zM832 384H576V128H192v768h640zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m192 512h320v64H352z"})]))}}),$c=Nc,qc=p({name:"Document",__name:"document",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M832 384H576V128H192v768h640zm-26.496-64L640 154.496V320zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m160 448h384v64H320zm0-192h160v64H320zm0 384h384v64H320z"})]))}}),jc=qc,Kc=p({name:"Download",__name:"download",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 832h704a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64m384-253.696 236.288-236.352 45.248 45.248L508.8 704 192 387.2l45.248-45.248L480 584.704V128h64z"})]))}}),Uc=Kc,Wc=p({name:"Drizzling",__name:"drizzling",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m739.328 291.328-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 97.28 78.72 175.936 175.808 175.936h400a192 192 0 0 0 35.776-380.672zM959.552 480a256 256 0 0 1-256 256h-400A239.808 239.808 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 959.552 480M288 800h64v64h-64zm192 0h64v64h-64zm-96 96h64v64h-64zm192 0h64v64h-64zm96-96h64v64h-64z"})]))}}),Gc=Wc,Jc=p({name:"EditPen",__name:"edit-pen",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m199.04 672.64 193.984 112 224-387.968-193.92-112-224 388.032zm-23.872 60.16 32.896 148.288 144.896-45.696zM455.04 229.248l193.92 112 56.704-98.112-193.984-112-56.64 98.112zM104.32 708.8l384-665.024 304.768 175.936L409.152 884.8h.064l-248.448 78.336zm384 254.272v-64h448v64h-448z"})]))}}),Zc=Jc,Yc=p({name:"Edit",__name:"edit",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M832 512a32 32 0 1 1 64 0v352a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h352a32 32 0 0 1 0 64H192v640h640z"}),o("path",{fill:"currentColor",d:"m469.952 554.24 52.8-7.552L847.104 222.4a32 32 0 1 0-45.248-45.248L477.44 501.44l-7.552 52.8zm422.4-422.4a96 96 0 0 1 0 135.808l-331.84 331.84a32 32 0 0 1-18.112 9.088L436.8 623.68a32 32 0 0 1-36.224-36.224l15.104-105.6a32 32 0 0 1 9.024-18.112l331.904-331.84a96 96 0 0 1 135.744 0z"})]))}}),Qc=Yc,Xc=p({name:"ElemeFilled",__name:"eleme-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M176 64h672c61.824 0 112 50.176 112 112v672a112 112 0 0 1-112 112H176A112 112 0 0 1 64 848V176c0-61.824 50.176-112 112-112m150.528 173.568c-152.896 99.968-196.544 304.064-97.408 456.96a330.688 330.688 0 0 0 456.96 96.64c9.216-5.888 17.6-11.776 25.152-18.56a18.24 18.24 0 0 0 4.224-24.32L700.352 724.8a47.552 47.552 0 0 0-65.536-14.272A234.56 234.56 0 0 1 310.592 641.6C240 533.248 271.104 387.968 379.456 316.48a234.304 234.304 0 0 1 276.352 15.168c1.664.832 2.56 2.56 3.392 4.224 5.888 8.384 3.328 19.328-5.12 25.216L456.832 489.6a47.552 47.552 0 0 0-14.336 65.472l16 24.384c5.888 8.384 16.768 10.88 25.216 5.056l308.224-199.936a19.584 19.584 0 0 0 6.72-23.488v-.896c-4.992-9.216-10.048-17.6-15.104-26.88-99.968-151.168-304.064-194.88-456.96-95.744zM786.88 504.704l-62.208 40.32c-8.32 5.888-10.88 16.768-4.992 25.216L760 632.32c5.888 8.448 16.768 11.008 25.152 5.12l31.104-20.16a55.36 55.36 0 0 0 16-76.48l-20.224-31.04a19.52 19.52 0 0 0-25.152-5.12z"})]))}}),ei=Xc,ti=p({name:"Eleme",__name:"eleme",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M300.032 188.8c174.72-113.28 408-63.36 522.24 109.44 5.76 10.56 11.52 20.16 17.28 30.72v.96a22.4 22.4 0 0 1-7.68 26.88l-352.32 228.48c-9.6 6.72-22.08 3.84-28.8-5.76l-18.24-27.84a54.336 54.336 0 0 1 16.32-74.88l225.6-146.88c9.6-6.72 12.48-19.2 5.76-28.8-.96-1.92-1.92-3.84-3.84-4.8a267.84 267.84 0 0 0-315.84-17.28c-123.84 81.6-159.36 247.68-78.72 371.52a268.096 268.096 0 0 0 370.56 78.72 54.336 54.336 0 0 1 74.88 16.32l17.28 26.88c5.76 9.6 3.84 21.12-4.8 27.84-8.64 7.68-18.24 14.4-28.8 21.12a377.92 377.92 0 0 1-522.24-110.4c-113.28-174.72-63.36-408 111.36-522.24zm526.08 305.28a22.336 22.336 0 0 1 28.8 5.76l23.04 35.52a63.232 63.232 0 0 1-18.24 87.36l-35.52 23.04c-9.6 6.72-22.08 3.84-28.8-5.76l-46.08-71.04c-6.72-9.6-3.84-22.08 5.76-28.8l71.04-46.08z"})]))}}),ri=ti,ai=p({name:"ElementPlus",__name:"element-plus",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M839.7 734.7c0 33.3-17.9 41-17.9 41S519.7 949.8 499.2 960c-10.2 5.1-20.5 5.1-30.7 0 0 0-314.9-184.3-325.1-192-5.1-5.1-10.2-12.8-12.8-20.5V368.6c0-17.9 20.5-28.2 20.5-28.2L466 158.6c12.8-5.1 25.6-5.1 38.4 0 0 0 279 161.3 309.8 179.2 17.9 7.7 28.2 25.6 25.6 46.1-.1-5-.1 317.5-.1 350.8M714.2 371.2c-64-35.8-217.6-125.4-217.6-125.4-7.7-5.1-20.5-5.1-30.7 0L217.6 389.1s-17.9 10.2-17.9 23v297c0 5.1 5.1 12.8 7.7 17.9 7.7 5.1 256 148.5 256 148.5 7.7 5.1 17.9 5.1 25.6 0 15.4-7.7 250.9-145.9 250.9-145.9s12.8-5.1 12.8-30.7v-74.2l-276.5 169v-64c0-17.9 7.7-30.7 20.5-46.1L745 535c5.1-7.7 10.2-20.5 10.2-30.7v-66.6l-279 169v-69.1c0-15.4 5.1-30.7 17.9-38.4l220.1-128zM919 135.7c0-5.1-5.1-7.7-7.7-7.7h-58.9V66.6c0-5.1-5.1-5.1-10.2-5.1l-30.7 5.1c-5.1 0-5.1 2.6-5.1 5.1V128h-56.3c-5.1 0-5.1 5.1-7.7 5.1v38.4h69.1v64c0 5.1 5.1 5.1 10.2 5.1l30.7-5.1c5.1 0 5.1-2.6 5.1-5.1v-56.3h64l-2.5-38.4z"})]))}}),ni=ai,li=p({name:"Expand",__name:"expand",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 192h768v128H128zm0 256h512v128H128zm0 256h768v128H128zm576-352 192 160-192 128z"})]))}}),si=li,oi=p({name:"Failed",__name:"failed",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m557.248 608 135.744-135.744-45.248-45.248-135.68 135.744-135.808-135.68-45.248 45.184L466.752 608l-135.68 135.68 45.184 45.312L512 653.248l135.744 135.744 45.248-45.248L557.312 608zM704 192h160v736H160V192h160v64h384zm-320 0V96h256v96z"})]))}}),ui=oi,ci=p({name:"Female",__name:"female",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 640a256 256 0 1 0 0-512 256 256 0 0 0 0 512m0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640"}),o("path",{fill:"currentColor",d:"M512 640q32 0 32 32v256q0 32-32 32t-32-32V672q0-32 32-32"}),o("path",{fill:"currentColor",d:"M352 800h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32"})]))}}),ii=ci,_i=p({name:"Files",__name:"files",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 384v448h768V384zm-32-64h832a32 32 0 0 1 32 32v512a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V352a32 32 0 0 1 32-32m64-128h704v64H160zm96-128h512v64H256z"})]))}}),pi=_i,hi=p({name:"Film",__name:"film",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 160v704h704V160zm-32-64h768a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H128a32 32 0 0 1-32-32V128a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M320 288V128h64v352h256V128h64v160h160v64H704v128h160v64H704v128h160v64H704v160h-64V544H384v352h-64V736H128v-64h192V544H128v-64h192V352H128v-64z"})]))}}),fi=hi,vi=p({name:"Filter",__name:"filter",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M384 523.392V928a32 32 0 0 0 46.336 28.608l192-96A32 32 0 0 0 640 832V523.392l280.768-343.104a32 32 0 1 0-49.536-40.576l-288 352A32 32 0 0 0 576 512v300.224l-128 64V512a32 32 0 0 0-7.232-20.288L195.52 192H704a32 32 0 1 0 0-64H128a32 32 0 0 0-24.768 52.288z"})]))}}),di=vi,mi=p({name:"Finished",__name:"finished",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M280.768 753.728 691.456 167.04a32 32 0 1 1 52.416 36.672L314.24 817.472a32 32 0 0 1-45.44 7.296l-230.4-172.8a32 32 0 0 1 38.4-51.2l203.968 152.96zM736 448a32 32 0 1 1 0-64h192a32 32 0 1 1 0 64zM608 640a32 32 0 0 1 0-64h319.936a32 32 0 1 1 0 64zM480 832a32 32 0 1 1 0-64h447.936a32 32 0 1 1 0 64z"})]))}}),gi=mi,wi=p({name:"FirstAidKit",__name:"first-aid-kit",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M192 256a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V320a64 64 0 0 0-64-64zm0-64h640a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H192A128 128 0 0 1 64 768V320a128 128 0 0 1 128-128"}),o("path",{fill:"currentColor",d:"M544 512h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96v-96a32 32 0 0 1 64 0zM352 128v64h320v-64zm-32-64h384a32 32 0 0 1 32 32v128a32 32 0 0 1-32 32H320a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32"})]))}}),xi=wi,yi=p({name:"Flag",__name:"flag",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M288 128h608L736 384l160 256H288v320h-96V64h96z"})]))}}),Ci=yi,zi=p({name:"Fold",__name:"fold",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M896 192H128v128h768zm0 256H384v128h512zm0 256H128v128h768zM320 384 128 512l192 128z"})]))}}),Mi=zi,bi=p({name:"FolderAdd",__name:"folder-add",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32m384 416V416h64v128h128v64H544v128h-64V608H352v-64z"})]))}}),Hi=bi,Ei=p({name:"FolderChecked",__name:"folder-checked",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32m414.08 502.144 180.992-180.992L736.32 494.4 510.08 720.64l-158.4-158.336 45.248-45.312z"})]))}}),Vi=Ei,Bi=p({name:"FolderDelete",__name:"folder-delete",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32m370.752 448-90.496-90.496 45.248-45.248L512 530.752l90.496-90.496 45.248 45.248L557.248 576l90.496 90.496-45.248 45.248L512 621.248l-90.496 90.496-45.248-45.248z"})]))}}),Ai=Bi,Li=p({name:"FolderOpened",__name:"folder-opened",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M878.08 448H241.92l-96 384h636.16l96-384zM832 384v-64H485.76L357.504 192H128v448l57.92-231.744A32 32 0 0 1 216.96 384zm-24.96 512H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h287.872l128.384 128H864a32 32 0 0 1 32 32v96h23.04a32 32 0 0 1 31.04 39.744l-112 448A32 32 0 0 1 807.04 896"})]))}}),Si=Li,Fi=p({name:"FolderRemove",__name:"folder-remove",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32m256 416h320v64H352z"})]))}}),Pi=Fi,Di=p({name:"Folder",__name:"folder",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32"})]))}}),Ti=Di,Ri=p({name:"Food",__name:"food",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 352.576V352a288 288 0 0 1 491.072-204.224 192 192 0 0 1 274.24 204.48 64 64 0 0 1 57.216 74.24C921.6 600.512 850.048 710.656 736 756.992V800a96 96 0 0 1-96 96H384a96 96 0 0 1-96-96v-43.008c-114.048-46.336-185.6-156.48-214.528-330.496A64 64 0 0 1 128 352.64zm64-.576h64a160 160 0 0 1 320 0h64a224 224 0 0 0-448 0m128 0h192a96 96 0 0 0-192 0m439.424 0h68.544A128.256 128.256 0 0 0 704 192c-15.36 0-29.952 2.688-43.52 7.616 11.328 18.176 20.672 37.76 27.84 58.304A64.128 64.128 0 0 1 759.424 352M672 768H352v32a32 32 0 0 0 32 32h256a32 32 0 0 0 32-32zm-342.528-64h365.056c101.504-32.64 165.76-124.928 192.896-288H136.576c27.136 163.072 91.392 255.36 192.896 288"})]))}}),Oi=Ri,ki=p({name:"Football",__name:"football",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896m0-64a384 384 0 1 0 0-768 384 384 0 0 0 0 768"}),o("path",{fill:"currentColor",d:"M186.816 268.288c16-16.384 31.616-31.744 46.976-46.08 17.472 30.656 39.808 58.112 65.984 81.28l-32.512 56.448a385.984 385.984 0 0 1-80.448-91.648zm653.696-5.312a385.92 385.92 0 0 1-83.776 96.96l-32.512-56.384a322.923 322.923 0 0 0 68.48-85.76c15.552 14.08 31.488 29.12 47.808 45.184zM465.984 445.248l11.136-63.104a323.584 323.584 0 0 0 69.76 0l11.136 63.104a387.968 387.968 0 0 1-92.032 0m-62.72-12.8A381.824 381.824 0 0 1 320 396.544l32-55.424a319.885 319.885 0 0 0 62.464 27.712l-11.2 63.488zm300.8-35.84a381.824 381.824 0 0 1-83.328 35.84l-11.2-63.552A319.885 319.885 0 0 0 672 341.184l32 55.424zm-520.768 364.8a385.92 385.92 0 0 1 83.968-97.28l32.512 56.32c-26.88 23.936-49.856 52.352-67.52 84.032-16-13.44-32.32-27.712-48.96-43.072zm657.536.128a1442.759 1442.759 0 0 1-49.024 43.072 321.408 321.408 0 0 0-67.584-84.16l32.512-56.32c33.216 27.456 61.696 60.352 84.096 97.408zM465.92 578.752a387.968 387.968 0 0 1 92.032 0l-11.136 63.104a323.584 323.584 0 0 0-69.76 0zm-62.72 12.8 11.2 63.552a319.885 319.885 0 0 0-62.464 27.712L320 627.392a381.824 381.824 0 0 1 83.264-35.84zm300.8 35.84-32 55.424a318.272 318.272 0 0 0-62.528-27.712l11.2-63.488c29.44 8.64 57.28 20.736 83.264 35.776z"})]))}}),Ii=ki,Ni=p({name:"ForkSpoon",__name:"fork-spoon",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 410.304V96a32 32 0 0 1 64 0v314.304a96 96 0 0 0 64-90.56V96a32 32 0 0 1 64 0v223.744a160 160 0 0 1-128 156.8V928a32 32 0 1 1-64 0V476.544a160 160 0 0 1-128-156.8V96a32 32 0 0 1 64 0v223.744a96 96 0 0 0 64 90.56zM672 572.48C581.184 552.128 512 446.848 512 320c0-141.44 85.952-256 192-256s192 114.56 192 256c0 126.848-69.184 232.128-160 252.48V928a32 32 0 1 1-64 0zM704 512c66.048 0 128-82.56 128-192s-61.952-192-128-192-128 82.56-128 192 61.952 192 128 192"})]))}}),$i=Ni,qi=p({name:"Fries",__name:"fries",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M608 224v-64a32 32 0 0 0-64 0v336h26.88A64 64 0 0 0 608 484.096zm101.12 160A64 64 0 0 0 672 395.904V384h64V224a32 32 0 1 0-64 0v160zm74.88 0a92.928 92.928 0 0 1 91.328 110.08l-60.672 323.584A96 96 0 0 1 720.32 896H303.68a96 96 0 0 1-94.336-78.336L148.672 494.08A92.928 92.928 0 0 1 240 384h-16V224a96 96 0 0 1 188.608-25.28A95.744 95.744 0 0 1 480 197.44V160a96 96 0 0 1 188.608-25.28A96 96 0 0 1 800 224v160zM670.784 512a128 128 0 0 1-99.904 48H453.12a128 128 0 0 1-99.84-48H352v-1.536a128.128 128.128 0 0 1-9.984-14.976L314.88 448H240a28.928 28.928 0 0 0-28.48 34.304L241.088 640h541.824l29.568-157.696A28.928 28.928 0 0 0 784 448h-74.88l-27.136 47.488A132.405 132.405 0 0 1 672 510.464V512zM480 288a32 32 0 0 0-64 0v196.096A64 64 0 0 0 453.12 496H480zm-128 96V224a32 32 0 0 0-64 0v160zh-37.12A64 64 0 0 1 352 395.904zm-98.88 320 19.072 101.888A32 32 0 0 0 303.68 832h416.64a32 32 0 0 0 31.488-26.112L770.88 704z"})]))}}),ji=qi,Ki=p({name:"FullScreen",__name:"full-screen",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m160 96.064 192 .192a32 32 0 0 1 0 64l-192-.192V352a32 32 0 0 1-64 0V96h64zm0 831.872V928H96V672a32 32 0 1 1 64 0v191.936l192-.192a32 32 0 1 1 0 64zM864 96.064V96h64v256a32 32 0 1 1-64 0V160.064l-192 .192a32 32 0 1 1 0-64l192-.192zm0 831.872-192-.192a32 32 0 0 1 0-64l192 .192V672a32 32 0 1 1 64 0v256h-64z"})]))}}),Ui=Ki,Wi=p({name:"GobletFull",__name:"goblet-full",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 320h512c0-78.592-12.608-142.4-36.928-192h-434.24C269.504 192.384 256 256.256 256 320m503.936 64H264.064a256.128 256.128 0 0 0 495.872 0zM544 638.4V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.4A320 320 0 0 1 192 320c0-85.632 21.312-170.944 64-256h512c42.688 64.32 64 149.632 64 256a320 320 0 0 1-288 318.4"})]))}}),Gi=Wi,Ji=p({name:"GobletSquareFull",__name:"goblet-square-full",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 270.912c10.048 6.72 22.464 14.912 28.992 18.624a220.16 220.16 0 0 0 114.752 30.72c30.592 0 49.408-9.472 91.072-41.152l.64-.448c52.928-40.32 82.368-55.04 132.288-54.656 55.552.448 99.584 20.8 142.72 57.408l1.536 1.28V128H256v142.912zm.96 76.288C266.368 482.176 346.88 575.872 512 576c157.44.064 237.952-85.056 253.248-209.984a952.32 952.32 0 0 1-40.192-35.712c-32.704-27.776-63.36-41.92-101.888-42.24-31.552-.256-50.624 9.28-93.12 41.6l-.576.448c-52.096 39.616-81.024 54.208-129.792 54.208-54.784 0-100.48-13.376-142.784-37.056zM480 638.848C250.624 623.424 192 442.496 192 319.68V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v224c0 122.816-58.624 303.68-288 318.912V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96z"})]))}}),Zi=Ji,Yi=p({name:"GobletSquare",__name:"goblet-square",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M544 638.912V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.848C250.624 623.424 192 442.496 192 319.68V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v224c0 122.816-58.624 303.68-288 318.912M256 319.68c0 149.568 80 256.192 256 256.256C688.128 576 768 469.568 768 320V128H256z"})]))}}),Qi=Yi,Xi=p({name:"Goblet",__name:"goblet",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M544 638.4V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.4A320 320 0 0 1 192 320c0-85.632 21.312-170.944 64-256h512c42.688 64.32 64 149.632 64 256a320 320 0 0 1-288 318.4M256 320a256 256 0 1 0 512 0c0-78.592-12.608-142.4-36.928-192h-434.24C269.504 192.384 256 256.256 256 320"})]))}}),e5=Xi,t5=p({name:"GoldMedal",__name:"gold-medal",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m772.13 452.84 53.86-351.81c1.32-10.01-1.17-18.68-7.49-26.02S804.35 64 795.01 64H228.99v-.01h-.06c-9.33 0-17.15 3.67-23.49 11.01s-8.83 16.01-7.49 26.02l53.87 351.89C213.54 505.73 193.59 568.09 192 640c2 90.67 33.17 166.17 93.5 226.5S421.33 957.99 512 960c90.67-2 166.17-33.17 226.5-93.5 60.33-60.34 91.49-135.83 93.5-226.5-1.59-71.94-21.56-134.32-59.87-187.16zM640.01 128h117.02l-39.01 254.02c-20.75-10.64-40.74-19.73-59.94-27.28-5.92-3-11.95-5.8-18.08-8.41V128h.01zM576 128v198.76c-13.18-2.58-26.74-4.43-40.67-5.55-8.07-.8-15.85-1.2-23.33-1.2-10.54 0-21.09.66-31.64 1.96a359.844 359.844 0 0 0-32.36 4.79V128zm-192 0h.04v218.3c-6.22 2.66-12.34 5.5-18.36 8.56-19.13 7.54-39.02 16.6-59.66 27.16L267.01 128zm308.99 692.99c-48 48-108.33 73-180.99 75.01-72.66-2.01-132.99-27.01-180.99-75.01S258.01 712.66 256 640c2.01-72.66 27.01-132.99 75.01-180.99 19.67-19.67 41.41-35.47 65.22-47.41 38.33-15.04 71.15-23.92 98.44-26.65 5.07-.41 10.2-.7 15.39-.88.63-.01 1.28-.03 1.91-.03.66 0 1.35.03 2.02.04 5.11.17 10.15.46 15.13.86 27.4 2.71 60.37 11.65 98.91 26.79 23.71 11.93 45.36 27.69 64.96 47.29 48 48 73 108.33 75.01 180.99-2.01 72.65-27.01 132.98-75.01 180.98z"}),o("path",{fill:"currentColor",d:"M544 480H416v64h64v192h-64v64h192v-64h-64z"})]))}}),r5=t5,a5=p({name:"GoodsFilled",__name:"goods-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M192 352h640l64 544H128zm128 224h64V448h-64zm320 0h64V448h-64zM384 288h-64a192 192 0 1 1 384 0h-64a128 128 0 1 0-256 0"})]))}}),n5=a5,l5=p({name:"Goods",__name:"goods",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M320 288v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4h131.072a32 32 0 0 1 31.808 28.8l57.6 576a32 32 0 0 1-31.808 35.2H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320zm64 0h256v-22.336C640 189.248 582.272 128 512 128c-70.272 0-128 61.248-128 137.664v22.4zm-64 64H217.92l-51.2 512h690.56l-51.264-512H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0z"})]))}}),s5=l5,o5=p({name:"Grape",__name:"grape",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M544 195.2a160 160 0 0 1 96 60.8 160 160 0 1 1 146.24 254.976 160 160 0 0 1-128 224 160 160 0 1 1-292.48 0 160 160 0 0 1-128-224A160 160 0 1 1 384 256a160 160 0 0 1 96-60.8V128h-64a32 32 0 0 1 0-64h192a32 32 0 0 1 0 64h-64zM512 448a96 96 0 1 0 0-192 96 96 0 0 0 0 192m-256 0a96 96 0 1 0 0-192 96 96 0 0 0 0 192m128 224a96 96 0 1 0 0-192 96 96 0 0 0 0 192m128 224a96 96 0 1 0 0-192 96 96 0 0 0 0 192m128-224a96 96 0 1 0 0-192 96 96 0 0 0 0 192m128-224a96 96 0 1 0 0-192 96 96 0 0 0 0 192"})]))}}),u5=o5,c5=p({name:"Grid",__name:"grid",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M640 384v256H384V384zm64 0h192v256H704zm-64 512H384V704h256zm64 0V704h192v192zm-64-768v192H384V128zm64 0h192v192H704zM320 384v256H128V384zm0 512H128V704h192zm0-768v192H128V128z"})]))}}),i5=c5,_5=p({name:"Guide",__name:"guide",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M640 608h-64V416h64zm0 160v160a32 32 0 0 1-32 32H416a32 32 0 0 1-32-32V768h64v128h128V768zM384 608V416h64v192zm256-352h-64V128H448v128h-64V96a32 32 0 0 1 32-32h192a32 32 0 0 1 32 32z"}),o("path",{fill:"currentColor",d:"m220.8 256-71.232 80 71.168 80H768V256H220.8zm-14.4-64H800a32 32 0 0 1 32 32v224a32 32 0 0 1-32 32H206.4a32 32 0 0 1-23.936-10.752l-99.584-112a32 32 0 0 1 0-42.496l99.584-112A32 32 0 0 1 206.4 192m678.784 496-71.104 80H266.816V608h547.2l71.168 80zm-56.768-144H234.88a32 32 0 0 0-32 32v224a32 32 0 0 0 32 32h593.6a32 32 0 0 0 23.936-10.752l99.584-112a32 32 0 0 0 0-42.496l-99.584-112A32 32 0 0 0 828.48 544z"})]))}}),p5=_5,h5=p({name:"Handbag",__name:"handbag",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M887.01 264.99c-6-5.99-13.67-8.99-23.01-8.99H704c-1.34-54.68-20.01-100.01-56-136s-81.32-54.66-136-56c-54.68 1.34-100.01 20.01-136 56s-54.66 81.32-56 136H160c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.67-8.99 23.01v640c0 9.35 2.99 17.02 8.99 23.01S150.66 960 160 960h704c9.35 0 17.02-2.99 23.01-8.99S896 937.34 896 928V288c0-9.35-2.99-17.02-8.99-23.01M421.5 165.5c24.32-24.34 54.49-36.84 90.5-37.5 35.99.68 66.16 13.18 90.5 37.5s36.84 54.49 37.5 90.5H384c.68-35.99 13.18-66.16 37.5-90.5M832 896H192V320h128v128h64V320h256v128h64V320h128z"})]))}}),f5=h5,v5=p({name:"Headset",__name:"headset",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M896 529.152V512a384 384 0 1 0-768 0v17.152A128 128 0 0 1 320 640v128a128 128 0 1 1-256 0V512a448 448 0 1 1 896 0v256a128 128 0 1 1-256 0V640a128 128 0 0 1 192-110.848M896 640a64 64 0 0 0-128 0v128a64 64 0 0 0 128 0zm-768 0v128a64 64 0 0 0 128 0V640a64 64 0 1 0-128 0"})]))}}),d5=v5,m5=p({name:"HelpFilled",__name:"help-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M926.784 480H701.312A192.512 192.512 0 0 0 544 322.688V97.216A416.064 416.064 0 0 1 926.784 480m0 64A416.064 416.064 0 0 1 544 926.784V701.312A192.512 192.512 0 0 0 701.312 544zM97.28 544h225.472A192.512 192.512 0 0 0 480 701.312v225.472A416.064 416.064 0 0 1 97.216 544zm0-64A416.064 416.064 0 0 1 480 97.216v225.472A192.512 192.512 0 0 0 322.688 480H97.216z"})]))}}),g5=m5,w5=p({name:"Help",__name:"help",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m759.936 805.248-90.944-91.008A254.912 254.912 0 0 1 512 768a254.912 254.912 0 0 1-156.992-53.76l-90.944 91.008A382.464 382.464 0 0 0 512 896c94.528 0 181.12-34.176 247.936-90.752m45.312-45.312A382.464 382.464 0 0 0 896 512c0-94.528-34.176-181.12-90.752-247.936l-91.008 90.944C747.904 398.4 768 452.864 768 512c0 59.136-20.096 113.6-53.76 156.992l91.008 90.944zm-45.312-541.184A382.464 382.464 0 0 0 512 128c-94.528 0-181.12 34.176-247.936 90.752l90.944 91.008A254.912 254.912 0 0 1 512 256c59.136 0 113.6 20.096 156.992 53.76l90.944-91.008zm-541.184 45.312A382.464 382.464 0 0 0 128 512c0 94.528 34.176 181.12 90.752 247.936l91.008-90.944A254.912 254.912 0 0 1 256 512c0-59.136 20.096-113.6 53.76-156.992zm417.28 394.496a194.56 194.56 0 0 0 22.528-22.528C686.912 602.56 704 559.232 704 512a191.232 191.232 0 0 0-67.968-146.56A191.296 191.296 0 0 0 512 320a191.232 191.232 0 0 0-146.56 67.968C337.088 421.44 320 464.768 320 512a191.232 191.232 0 0 0 67.968 146.56C421.44 686.912 464.768 704 512 704c47.296 0 90.56-17.088 124.032-45.44zM512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896"})]))}}),x5=w5,y5=p({name:"Hide",__name:"hide",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M876.8 156.8c0-9.6-3.2-16-9.6-22.4-6.4-6.4-12.8-9.6-22.4-9.6-9.6 0-16 3.2-22.4 9.6L736 220.8c-64-32-137.6-51.2-224-60.8-160 16-288 73.6-377.6 176C44.8 438.4 0 496 0 512s48 73.6 134.4 176c22.4 25.6 44.8 48 73.6 67.2l-86.4 89.6c-6.4 6.4-9.6 12.8-9.6 22.4 0 9.6 3.2 16 9.6 22.4 6.4 6.4 12.8 9.6 22.4 9.6 9.6 0 16-3.2 22.4-9.6l704-710.4c3.2-6.4 6.4-12.8 6.4-22.4Zm-646.4 528c-76.8-70.4-128-128-153.6-172.8 28.8-48 80-105.6 153.6-172.8C304 272 400 230.4 512 224c64 3.2 124.8 19.2 176 44.8l-54.4 54.4C598.4 300.8 560 288 512 288c-64 0-115.2 22.4-160 64s-64 96-64 160c0 48 12.8 89.6 35.2 124.8L256 707.2c-9.6-6.4-19.2-16-25.6-22.4Zm140.8-96c-12.8-22.4-19.2-48-19.2-76.8 0-44.8 16-83.2 48-112 32-28.8 67.2-48 112-48 28.8 0 54.4 6.4 73.6 19.2zM889.599 336c-12.8-16-28.8-28.8-41.6-41.6l-48 48c73.6 67.2 124.8 124.8 150.4 169.6-28.8 48-80 105.6-153.6 172.8-73.6 67.2-172.8 108.8-284.8 115.2-51.2-3.2-99.2-12.8-140.8-28.8l-48 48c57.6 22.4 118.4 38.4 188.8 44.8 160-16 288-73.6 377.6-176C979.199 585.6 1024 528 1024 512s-48.001-73.6-134.401-176Z"}),o("path",{fill:"currentColor",d:"M511.998 672c-12.8 0-25.6-3.2-38.4-6.4l-51.2 51.2c28.8 12.8 57.6 19.2 89.6 19.2 64 0 115.2-22.4 160-64 41.6-41.6 64-96 64-160 0-32-6.4-64-19.2-89.6l-51.2 51.2c3.2 12.8 6.4 25.6 6.4 38.4 0 44.8-16 83.2-48 112-32 28.8-67.2 48-112 48Z"})]))}}),C5=y5,z5=p({name:"Histogram",__name:"histogram",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M416 896V128h192v768zm-288 0V448h192v448zm576 0V320h192v576z"})]))}}),M5=z5,b5=p({name:"HomeFilled",__name:"home-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 128 128 447.936V896h255.936V640H640v256h255.936V447.936z"})]))}}),H5=b5,E5=p({name:"HotWater",__name:"hot-water",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M273.067 477.867h477.866V409.6H273.067zm0 68.266v51.2A187.733 187.733 0 0 0 460.8 785.067h102.4a187.733 187.733 0 0 0 187.733-187.734v-51.2H273.067zm-34.134-204.8h546.134a34.133 34.133 0 0 1 34.133 34.134v221.866a256 256 0 0 1-256 256H460.8a256 256 0 0 1-256-256V375.467a34.133 34.133 0 0 1 34.133-34.134zM512 34.133a34.133 34.133 0 0 1 34.133 34.134v170.666a34.133 34.133 0 0 1-68.266 0V68.267A34.133 34.133 0 0 1 512 34.133zM375.467 102.4a34.133 34.133 0 0 1 34.133 34.133v102.4a34.133 34.133 0 0 1-68.267 0v-102.4a34.133 34.133 0 0 1 34.134-34.133m273.066 0a34.133 34.133 0 0 1 34.134 34.133v102.4a34.133 34.133 0 1 1-68.267 0v-102.4a34.133 34.133 0 0 1 34.133-34.133M170.667 921.668h682.666a34.133 34.133 0 1 1 0 68.267H170.667a34.133 34.133 0 1 1 0-68.267z"})]))}}),V5=E5,B5=p({name:"House",__name:"house",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M192 413.952V896h640V413.952L512 147.328zM139.52 374.4l352-293.312a32 32 0 0 1 40.96 0l352 293.312A32 32 0 0 1 896 398.976V928a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V398.976a32 32 0 0 1 11.52-24.576"})]))}}),A5=B5,L5=p({name:"IceCreamRound",__name:"ice-cream-round",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m308.352 489.344 226.304 226.304a32 32 0 0 0 45.248 0L783.552 512A192 192 0 1 0 512 240.448L308.352 444.16a32 32 0 0 0 0 45.248zm135.744 226.304L308.352 851.392a96 96 0 0 1-135.744-135.744l135.744-135.744-45.248-45.248a96 96 0 0 1 0-135.808L466.752 195.2A256 256 0 0 1 828.8 557.248L625.152 760.96a96 96 0 0 1-135.808 0l-45.248-45.248zM398.848 670.4 353.6 625.152 217.856 760.896a32 32 0 0 0 45.248 45.248zm248.96-384.64a32 32 0 0 1 0 45.248L466.624 512a32 32 0 1 1-45.184-45.248l180.992-181.056a32 32 0 0 1 45.248 0zm90.496 90.496a32 32 0 0 1 0 45.248L557.248 602.496A32 32 0 1 1 512 557.248l180.992-180.992a32 32 0 0 1 45.312 0z"})]))}}),S5=L5,F5=p({name:"IceCreamSquare",__name:"ice-cream-square",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M416 640h256a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32H352a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32zm192 64v160a96 96 0 0 1-192 0V704h-64a96 96 0 0 1-96-96V160a96 96 0 0 1 96-96h320a96 96 0 0 1 96 96v448a96 96 0 0 1-96 96zm-64 0h-64v160a32 32 0 1 0 64 0z"})]))}}),P5=F5,D5=p({name:"IceCream",__name:"ice-cream",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128.64 448a208 208 0 0 1 193.536-191.552 224 224 0 0 1 445.248 15.488A208.128 208.128 0 0 1 894.784 448H896L548.8 983.68a32 32 0 0 1-53.248.704L128 448zm64.256 0h286.208a144 144 0 0 0-286.208 0zm351.36 0h286.272a144 144 0 0 0-286.272 0zm-294.848 64 271.808 396.608L778.24 512H249.408zM511.68 352.64a207.872 207.872 0 0 1 189.184-96.192 160 160 0 0 0-314.752 5.632c52.608 12.992 97.28 46.08 125.568 90.56"})]))}}),T5=D5,R5=p({name:"IceDrink",__name:"ice-drink",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 448v128h239.68l16.064-128zm-64 0H256.256l16.064 128H448zm64-255.36V384h247.744A256.128 256.128 0 0 0 512 192.64m-64 8.064A256.448 256.448 0 0 0 264.256 384H448zm64-72.064A320.128 320.128 0 0 1 825.472 384H896a32 32 0 1 1 0 64h-64v1.92l-56.96 454.016A64 64 0 0 1 711.552 960H312.448a64 64 0 0 1-63.488-56.064L192 449.92V448h-64a32 32 0 0 1 0-64h70.528A320.384 320.384 0 0 1 448 135.04V96a96 96 0 0 1 96-96h128a32 32 0 1 1 0 64H544a32 32 0 0 0-32 32zM743.68 640H280.32l32.128 256h399.104z"})]))}}),O5=R5,k5=p({name:"IceTea",__name:"ice-tea",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M197.696 259.648a320.128 320.128 0 0 1 628.608 0A96 96 0 0 1 896 352v64a96 96 0 0 1-71.616 92.864l-49.408 395.072A64 64 0 0 1 711.488 960H312.512a64 64 0 0 1-63.488-56.064l-49.408-395.072A96 96 0 0 1 128 416v-64a96 96 0 0 1 69.696-92.352M264.064 256h495.872a256.128 256.128 0 0 0-495.872 0m495.424 256H264.512l48 384h398.976zM224 448h576a32 32 0 0 0 32-32v-64a32 32 0 0 0-32-32H224a32 32 0 0 0-32 32v64a32 32 0 0 0 32 32m160 192h64v64h-64zm192 64h64v64h-64zm-128 64h64v64h-64zm64-192h64v64h-64z"})]))}}),I5=k5,N5=p({name:"InfoFilled",__name:"info-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896.064A448 448 0 0 1 512 64m67.2 275.072c33.28 0 60.288-23.104 60.288-57.344s-27.072-57.344-60.288-57.344c-33.28 0-60.16 23.104-60.16 57.344s26.88 57.344 60.16 57.344M590.912 699.2c0-6.848 2.368-24.64 1.024-34.752l-52.608 60.544c-10.88 11.456-24.512 19.392-30.912 17.28a12.992 12.992 0 0 1-8.256-14.72l87.68-276.992c7.168-35.136-12.544-67.2-54.336-71.296-44.096 0-108.992 44.736-148.48 101.504 0 6.784-1.28 23.68.064 33.792l52.544-60.608c10.88-11.328 23.552-19.328 29.952-17.152a12.8 12.8 0 0 1 7.808 16.128L388.48 728.576c-10.048 32.256 8.96 63.872 55.04 71.04 67.84 0 107.904-43.648 147.456-100.416z"})]))}}),$5=N5,q5=p({name:"Iphone",__name:"iphone",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M224 768v96.064a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64V768zm0-64h576V160a64 64 0 0 0-64-64H288a64 64 0 0 0-64 64zm32 288a96 96 0 0 1-96-96V128a96 96 0 0 1 96-96h512a96 96 0 0 1 96 96v768a96 96 0 0 1-96 96zm304-144a48 48 0 1 1-96 0 48 48 0 0 1 96 0"})]))}}),j5=q5,K5=p({name:"Key",__name:"key",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M448 456.064V96a32 32 0 0 1 32-32.064L672 64a32 32 0 0 1 0 64H512v128h160a32 32 0 0 1 0 64H512v128a256 256 0 1 1-64 8.064M512 896a192 192 0 1 0 0-384 192 192 0 0 0 0 384"})]))}}),U5=K5,W5=p({name:"KnifeFork",__name:"knife-fork",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 410.56V96a32 32 0 0 1 64 0v314.56A96 96 0 0 0 384 320V96a32 32 0 0 1 64 0v224a160 160 0 0 1-128 156.8V928a32 32 0 1 1-64 0V476.8A160 160 0 0 1 128 320V96a32 32 0 0 1 64 0v224a96 96 0 0 0 64 90.56m384-250.24V544h126.72c-3.328-78.72-12.928-147.968-28.608-207.744-14.336-54.528-46.848-113.344-98.112-175.872zM640 608v320a32 32 0 1 1-64 0V64h64c85.312 89.472 138.688 174.848 160 256 21.312 81.152 32 177.152 32 288z"})]))}}),G5=W5,J5=p({name:"Lightning",__name:"lightning",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M288 671.36v64.128A239.808 239.808 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 736 734.016v-64.768a192 192 0 0 0 3.328-377.92l-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 91.968 70.464 167.36 160.256 175.232z"}),o("path",{fill:"currentColor",d:"M416 736a32 32 0 0 1-27.776-47.872l128-224a32 32 0 1 1 55.552 31.744L471.168 672H608a32 32 0 0 1 27.776 47.872l-128 224a32 32 0 1 1-55.68-31.744L552.96 736z"})]))}}),Z5=J5,Y5=p({name:"Link",__name:"link",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M715.648 625.152 670.4 579.904l90.496-90.56c75.008-74.944 85.12-186.368 22.656-248.896-62.528-62.464-173.952-52.352-248.96 22.656L444.16 353.6l-45.248-45.248 90.496-90.496c100.032-99.968 251.968-110.08 339.456-22.656 87.488 87.488 77.312 239.424-22.656 339.456l-90.496 90.496zm-90.496 90.496-90.496 90.496C434.624 906.112 282.688 916.224 195.2 828.8c-87.488-87.488-77.312-239.424 22.656-339.456l90.496-90.496 45.248 45.248-90.496 90.56c-75.008 74.944-85.12 186.368-22.656 248.896 62.528 62.464 173.952 52.352 248.96-22.656l90.496-90.496zm0-362.048 45.248 45.248L398.848 670.4 353.6 625.152z"})]))}}),Q5=Y5,X5=p({name:"List",__name:"list",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M704 192h160v736H160V192h160v64h384zM288 512h448v-64H288zm0 256h448v-64H288zm96-576V96h256v96z"})]))}}),e9=X5,t9=p({name:"Loading",__name:"loading",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a32 32 0 0 1 32 32v192a32 32 0 0 1-64 0V96a32 32 0 0 1 32-32m0 640a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V736a32 32 0 0 1 32-32m448-192a32 32 0 0 1-32 32H736a32 32 0 1 1 0-64h192a32 32 0 0 1 32 32m-640 0a32 32 0 0 1-32 32H96a32 32 0 0 1 0-64h192a32 32 0 0 1 32 32M195.2 195.2a32 32 0 0 1 45.248 0L376.32 331.008a32 32 0 0 1-45.248 45.248L195.2 240.448a32 32 0 0 1 0-45.248zm452.544 452.544a32 32 0 0 1 45.248 0L828.8 783.552a32 32 0 0 1-45.248 45.248L647.744 692.992a32 32 0 0 1 0-45.248zM828.8 195.264a32 32 0 0 1 0 45.184L692.992 376.32a32 32 0 0 1-45.248-45.248l135.808-135.808a32 32 0 0 1 45.248 0m-452.544 452.48a32 32 0 0 1 0 45.248L240.448 828.8a32 32 0 0 1-45.248-45.248l135.808-135.808a32 32 0 0 1 45.248 0z"})]))}}),r9=t9,a9=p({name:"LocationFilled",__name:"location-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 928c23.936 0 117.504-68.352 192.064-153.152C803.456 661.888 864 535.808 864 416c0-189.632-155.84-320-352-320S160 226.368 160 416c0 120.32 60.544 246.4 159.936 359.232C394.432 859.84 488 928 512 928m0-435.2a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 140.8a204.8 204.8 0 1 1 0-409.6 204.8 204.8 0 0 1 0 409.6"})]))}}),n9=a9,l9=p({name:"LocationInformation",__name:"location-information",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32"}),o("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416M512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544"}),o("path",{fill:"currentColor",d:"M512 512a96 96 0 1 0 0-192 96 96 0 0 0 0 192m0 64a160 160 0 1 1 0-320 160 160 0 0 1 0 320"})]))}}),s9=l9,o9=p({name:"Location",__name:"location",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416M512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544"}),o("path",{fill:"currentColor",d:"M512 512a96 96 0 1 0 0-192 96 96 0 0 0 0 192m0 64a160 160 0 1 1 0-320 160 160 0 0 1 0 320"})]))}}),u9=o9,c9=p({name:"Lock",__name:"lock",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M224 448a32 32 0 0 0-32 32v384a32 32 0 0 0 32 32h576a32 32 0 0 0 32-32V480a32 32 0 0 0-32-32zm0-64h576a96 96 0 0 1 96 96v384a96 96 0 0 1-96 96H224a96 96 0 0 1-96-96V480a96 96 0 0 1 96-96"}),o("path",{fill:"currentColor",d:"M512 544a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V576a32 32 0 0 1 32-32m192-160v-64a192 192 0 1 0-384 0v64zM512 64a256 256 0 0 1 256 256v128H256V320A256 256 0 0 1 512 64"})]))}}),i9=c9,_9=p({name:"Lollipop",__name:"lollipop",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M513.28 448a64 64 0 1 1 76.544 49.728A96 96 0 0 0 768 448h64a160 160 0 0 1-320 0zm-126.976-29.696a256 256 0 1 0 43.52-180.48A256 256 0 0 1 832 448h-64a192 192 0 0 0-381.696-29.696m105.664 249.472L285.696 874.048a96 96 0 0 1-135.68-135.744l206.208-206.272a320 320 0 1 1 135.744 135.744zm-54.464-36.032a321.92 321.92 0 0 1-45.248-45.248L195.2 783.552a32 32 0 1 0 45.248 45.248l197.056-197.12z"})]))}}),p9=_9,h9=p({name:"MagicStick",__name:"magic-stick",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64h64v192h-64zm0 576h64v192h-64zM160 480v-64h192v64zm576 0v-64h192v64zM249.856 199.04l45.248-45.184L430.848 289.6 385.6 334.848 249.856 199.104zM657.152 606.4l45.248-45.248 135.744 135.744-45.248 45.248zM114.048 923.2 68.8 877.952l316.8-316.8 45.248 45.248zM702.4 334.848 657.152 289.6l135.744-135.744 45.248 45.248z"})]))}}),f9=h9,v9=p({name:"Magnet",__name:"magnet",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M832 320V192H704v320a192 192 0 1 1-384 0V192H192v128h128v64H192v128a320 320 0 0 0 640 0V384H704v-64zM640 512V128h256v384a384 384 0 1 1-768 0V128h256v384a128 128 0 1 0 256 0"})]))}}),d9=v9,m9=p({name:"Male",__name:"male",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M399.5 849.5a225 225 0 1 0 0-450 225 225 0 0 0 0 450m0 56.25a281.25 281.25 0 1 1 0-562.5 281.25 281.25 0 0 1 0 562.5m253.125-787.5h225q28.125 0 28.125 28.125T877.625 174.5h-225q-28.125 0-28.125-28.125t28.125-28.125"}),o("path",{fill:"currentColor",d:"M877.625 118.25q28.125 0 28.125 28.125v225q0 28.125-28.125 28.125T849.5 371.375v-225q0-28.125 28.125-28.125"}),o("path",{fill:"currentColor",d:"M604.813 458.9 565.1 419.131l292.613-292.668 39.825 39.824z"})]))}}),g9=m9,w9=p({name:"Management",__name:"management",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M576 128v288l96-96 96 96V128h128v768H320V128zm-448 0h128v768H128z"})]))}}),x9=w9,y9=p({name:"MapLocation",__name:"map-location",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416M512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544"}),o("path",{fill:"currentColor",d:"M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256m345.6 192L960 960H672v-64H352v64H64l102.4-256zm-68.928 0H235.328l-76.8 192h706.944z"})]))}}),C9=y9,z9=p({name:"Medal",__name:"medal",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 896a256 256 0 1 0 0-512 256 256 0 0 0 0 512m0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640"}),o("path",{fill:"currentColor",d:"M576 128H448v200a286.72 286.72 0 0 1 64-8c19.52 0 40.832 2.688 64 8zm64 0v219.648c24.448 9.088 50.56 20.416 78.4 33.92L757.44 128zm-256 0H266.624l39.04 253.568c27.84-13.504 53.888-24.832 78.336-33.92V128zM229.312 64h565.376a32 32 0 0 1 31.616 36.864L768 480c-113.792-64-199.104-96-256-96-56.896 0-142.208 32-256 96l-58.304-379.136A32 32 0 0 1 229.312 64"})]))}}),M9=z9,b9=p({name:"Memo",__name:"memo",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M480 320h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32"}),o("path",{fill:"currentColor",d:"M887.01 72.99C881.01 67 873.34 64 864 64H160c-9.35 0-17.02 3-23.01 8.99C131 78.99 128 86.66 128 96v832c0 9.35 2.99 17.02 8.99 23.01S150.66 960 160 960h704c9.35 0 17.02-2.99 23.01-8.99S896 937.34 896 928V96c0-9.35-3-17.02-8.99-23.01M192 896V128h96v768zm640 0H352V128h480z"}),o("path",{fill:"currentColor",d:"M480 512h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32m0 192h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32"})]))}}),H9=b9,E9=p({name:"Menu",__name:"menu",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 448a32 32 0 0 1-32-32V160.064a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V416a32 32 0 0 1-32 32zm448 0a32 32 0 0 1-32-32V160.064a32 32 0 0 1 32-32h255.936a32 32 0 0 1 32 32V416a32 32 0 0 1-32 32zM160 896a32 32 0 0 1-32-32V608a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32zm448 0a32 32 0 0 1-32-32V608a32 32 0 0 1 32-32h255.936a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32z"})]))}}),V9=E9,B9=p({name:"MessageBox",__name:"message-box",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M288 384h448v64H288zm96-128h256v64H384zM131.456 512H384v128h256V512h252.544L721.856 192H302.144zM896 576H704v128H320V576H128v256h768zM275.776 128h472.448a32 32 0 0 1 28.608 17.664l179.84 359.552A32 32 0 0 1 960 519.552V864a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V519.552a32 32 0 0 1 3.392-14.336l179.776-359.552A32 32 0 0 1 275.776 128z"})]))}}),A9=B9,L9=p({name:"Message",__name:"message",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 224v512a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V224zm0-64h768a64 64 0 0 1 64 64v512a128 128 0 0 1-128 128H192A128 128 0 0 1 64 736V224a64 64 0 0 1 64-64"}),o("path",{fill:"currentColor",d:"M904 224 656.512 506.88a192 192 0 0 1-289.024 0L120 224zm-698.944 0 210.56 240.704a128 128 0 0 0 192.704 0L818.944 224H205.056"})]))}}),S9=L9,F9=p({name:"Mic",__name:"mic",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M480 704h160a64 64 0 0 0 64-64v-32h-96a32 32 0 0 1 0-64h96v-96h-96a32 32 0 0 1 0-64h96v-96h-96a32 32 0 0 1 0-64h96v-32a64 64 0 0 0-64-64H384a64 64 0 0 0-64 64v32h96a32 32 0 0 1 0 64h-96v96h96a32 32 0 0 1 0 64h-96v96h96a32 32 0 0 1 0 64h-96v32a64 64 0 0 0 64 64zm64 64v128h192a32 32 0 1 1 0 64H288a32 32 0 1 1 0-64h192V768h-96a128 128 0 0 1-128-128V192A128 128 0 0 1 384 64h256a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128z"})]))}}),P9=F9,D9=p({name:"Microphone",__name:"microphone",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 128a128 128 0 0 0-128 128v256a128 128 0 1 0 256 0V256a128 128 0 0 0-128-128m0-64a192 192 0 0 1 192 192v256a192 192 0 1 1-384 0V256A192 192 0 0 1 512 64m-32 832v-64a288 288 0 0 1-288-288v-32a32 32 0 0 1 64 0v32a224 224 0 0 0 224 224h64a224 224 0 0 0 224-224v-32a32 32 0 1 1 64 0v32a288 288 0 0 1-288 288v64h64a32 32 0 1 1 0 64H416a32 32 0 1 1 0-64z"})]))}}),T9=D9,R9=p({name:"MilkTea",__name:"milk-tea",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M416 128V96a96 96 0 0 1 96-96h128a32 32 0 1 1 0 64H512a32 32 0 0 0-32 32v32h320a96 96 0 0 1 11.712 191.296l-39.68 581.056A64 64 0 0 1 708.224 960H315.776a64 64 0 0 1-63.872-59.648l-39.616-581.056A96 96 0 0 1 224 128zM276.48 320l39.296 576h392.448l4.8-70.784a224.064 224.064 0 0 1 30.016-439.808L747.52 320zM224 256h576a32 32 0 1 0 0-64H224a32 32 0 0 0 0 64m493.44 503.872 21.12-309.12a160 160 0 0 0-21.12 309.12"})]))}}),O9=R9,k9=p({name:"Minus",__name:"minus",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 544h768a32 32 0 1 0 0-64H128a32 32 0 0 0 0 64"})]))}}),I9=k9,N9=p({name:"Money",__name:"money",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 640v192h640V384H768v-64h150.976c14.272 0 19.456 1.472 24.64 4.288a29.056 29.056 0 0 1 12.16 12.096c2.752 5.184 4.224 10.368 4.224 24.64v493.952c0 14.272-1.472 19.456-4.288 24.64a29.056 29.056 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H233.024c-14.272 0-19.456-1.472-24.64-4.288a29.056 29.056 0 0 1-12.16-12.096c-2.688-5.184-4.224-10.368-4.224-24.576V640z"}),o("path",{fill:"currentColor",d:"M768 192H128v448h640zm64-22.976v493.952c0 14.272-1.472 19.456-4.288 24.64a29.056 29.056 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H105.024c-14.272 0-19.456-1.472-24.64-4.288a29.056 29.056 0 0 1-12.16-12.096C65.536 682.432 64 677.248 64 663.04V169.024c0-14.272 1.472-19.456 4.288-24.64a29.056 29.056 0 0 1 12.096-12.16C85.568 129.536 90.752 128 104.96 128h685.952c14.272 0 19.456 1.472 24.64 4.288a29.056 29.056 0 0 1 12.16 12.096c2.752 5.184 4.224 10.368 4.224 24.64z"}),o("path",{fill:"currentColor",d:"M448 576a160 160 0 1 1 0-320 160 160 0 0 1 0 320m0-64a96 96 0 1 0 0-192 96 96 0 0 0 0 192"})]))}}),$9=N9,q9=p({name:"Monitor",__name:"monitor",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M544 768v128h192a32 32 0 1 1 0 64H288a32 32 0 1 1 0-64h192V768H192A128 128 0 0 1 64 640V256a128 128 0 0 1 128-128h640a128 128 0 0 1 128 128v384a128 128 0 0 1-128 128zM192 192a64 64 0 0 0-64 64v384a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64z"})]))}}),j9=q9,K9=p({name:"MoonNight",__name:"moon-night",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M384 512a448 448 0 0 1 215.872-383.296A384 384 0 0 0 213.76 640h188.8A448.256 448.256 0 0 1 384 512M171.136 704a448 448 0 0 1 636.992-575.296A384 384 0 0 0 499.328 704h-328.32z"}),o("path",{fill:"currentColor",d:"M32 640h960q32 0 32 32t-32 32H32q-32 0-32-32t32-32m128 128h384a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64m160 127.68 224 .256a32 32 0 0 1 32 32V928a32 32 0 0 1-32 32l-224-.384a32 32 0 0 1-32-32v-.064a32 32 0 0 1 32-32z"})]))}}),U9=K9,W9=p({name:"Moon",__name:"moon",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M240.448 240.448a384 384 0 1 0 559.424 525.696 448 448 0 0 1-542.016-542.08 390.592 390.592 0 0 0-17.408 16.384zm181.056 362.048a384 384 0 0 0 525.632 16.384A448 448 0 1 1 405.056 76.8a384 384 0 0 0 16.448 525.696"})]))}}),G9=W9,J9=p({name:"MoreFilled",__name:"more-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M176 416a112 112 0 1 1 0 224 112 112 0 0 1 0-224m336 0a112 112 0 1 1 0 224 112 112 0 0 1 0-224m336 0a112 112 0 1 1 0 224 112 112 0 0 1 0-224"})]))}}),Z9=J9,Y9=p({name:"More",__name:"more",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M176 416a112 112 0 1 0 0 224 112 112 0 0 0 0-224m0 64a48 48 0 1 1 0 96 48 48 0 0 1 0-96m336-64a112 112 0 1 1 0 224 112 112 0 0 1 0-224m0 64a48 48 0 1 0 0 96 48 48 0 0 0 0-96m336-64a112 112 0 1 1 0 224 112 112 0 0 1 0-224m0 64a48 48 0 1 0 0 96 48 48 0 0 0 0-96"})]))}}),Q9=Y9,X9=p({name:"MostlyCloudy",__name:"mostly-cloudy",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M737.216 357.952 704 349.824l-11.776-32a192.064 192.064 0 0 0-367.424 23.04l-8.96 39.04-39.04 8.96A192.064 192.064 0 0 0 320 768h368a207.808 207.808 0 0 0 207.808-208 208.32 208.32 0 0 0-158.592-202.048m15.168-62.208A272.32 272.32 0 0 1 959.744 560a271.808 271.808 0 0 1-271.552 272H320a256 256 0 0 1-57.536-505.536 256.128 256.128 0 0 1 489.92-30.72"})]))}}),e_=X9,t_=p({name:"Mouse",__name:"mouse",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M438.144 256c-68.352 0-92.736 4.672-117.76 18.112-20.096 10.752-35.52 26.176-46.272 46.272C260.672 345.408 256 369.792 256 438.144v275.712c0 68.352 4.672 92.736 18.112 117.76 10.752 20.096 26.176 35.52 46.272 46.272C345.408 891.328 369.792 896 438.144 896h147.712c68.352 0 92.736-4.672 117.76-18.112 20.096-10.752 35.52-26.176 46.272-46.272C763.328 806.592 768 782.208 768 713.856V438.144c0-68.352-4.672-92.736-18.112-117.76a110.464 110.464 0 0 0-46.272-46.272C678.592 260.672 654.208 256 585.856 256zm0-64h147.712c85.568 0 116.608 8.96 147.904 25.6 31.36 16.768 55.872 41.344 72.576 72.64C823.104 321.536 832 352.576 832 438.08v275.84c0 85.504-8.96 116.544-25.6 147.84a174.464 174.464 0 0 1-72.64 72.576C702.464 951.104 671.424 960 585.92 960H438.08c-85.504 0-116.544-8.96-147.84-25.6a174.464 174.464 0 0 1-72.64-72.704c-16.768-31.296-25.664-62.336-25.664-147.84v-275.84c0-85.504 8.96-116.544 25.6-147.84a174.464 174.464 0 0 1 72.768-72.576c31.232-16.704 62.272-25.6 147.776-25.6z"}),o("path",{fill:"currentColor",d:"M512 320q32 0 32 32v128q0 32-32 32t-32-32V352q0-32 32-32m32-96a32 32 0 0 1-64 0v-64a32 32 0 0 0-32-32h-96a32 32 0 0 1 0-64h96a96 96 0 0 1 96 96z"})]))}}),r_=t_,a_=p({name:"Mug",__name:"mug",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M736 800V160H160v640a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64m64-544h63.552a96 96 0 0 1 96 96v224a96 96 0 0 1-96 96H800v128a128 128 0 0 1-128 128H224A128 128 0 0 1 96 800V128a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32zm0 64v288h63.552a32 32 0 0 0 32-32V352a32 32 0 0 0-32-32z"})]))}}),n_=a_,l_=p({name:"MuteNotification",__name:"mute-notification",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m241.216 832 63.616-64H768V448c0-42.368-10.24-82.304-28.48-117.504l46.912-47.232C815.36 331.392 832 387.84 832 448v320h96a32 32 0 1 1 0 64zm-90.24 0H96a32 32 0 1 1 0-64h96V448a320.128 320.128 0 0 1 256-313.6V128a64 64 0 1 1 128 0v6.4a319.552 319.552 0 0 1 171.648 97.088l-45.184 45.44A256 256 0 0 0 256 448v278.336L151.04 832zM448 896h128a64 64 0 0 1-128 0"}),o("path",{fill:"currentColor",d:"M150.72 859.072a32 32 0 0 1-45.44-45.056l704-708.544a32 32 0 0 1 45.44 45.056l-704 708.544z"})]))}}),s_=l_,o_=p({name:"Mute",__name:"mute",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m412.16 592.128-45.44 45.44A191.232 191.232 0 0 1 320 512V256a192 192 0 1 1 384 0v44.352l-64 64V256a128 128 0 1 0-256 0v256c0 30.336 10.56 58.24 28.16 80.128m51.968 38.592A128 128 0 0 0 640 512v-57.152l64-64V512a192 192 0 0 1-287.68 166.528zM314.88 779.968l46.144-46.08A222.976 222.976 0 0 0 480 768h64a224 224 0 0 0 224-224v-32a32 32 0 1 1 64 0v32a288 288 0 0 1-288 288v64h64a32 32 0 1 1 0 64H416a32 32 0 1 1 0-64h64v-64c-61.44 0-118.4-19.2-165.12-52.032M266.752 737.6A286.976 286.976 0 0 1 192 544v-32a32 32 0 0 1 64 0v32c0 56.832 21.184 108.8 56.064 148.288z"}),o("path",{fill:"currentColor",d:"M150.72 859.072a32 32 0 0 1-45.44-45.056l704-708.544a32 32 0 0 1 45.44 45.056l-704 708.544z"})]))}}),u_=o_,c_=p({name:"NoSmoking",__name:"no-smoking",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M440.256 576H256v128h56.256l-64 64H224a32 32 0 0 1-32-32V544a32 32 0 0 1 32-32h280.256zm143.488 128H704V583.744L775.744 512H928a32 32 0 0 1 32 32v192a32 32 0 0 1-32 32H519.744zM768 576v128h128V576zm-29.696-207.552 45.248 45.248-497.856 497.856-45.248-45.248zM256 64h64v320h-64zM128 192h64v192h-64zM64 512h64v256H64z"})]))}}),i_=c_,__=p({name:"Notebook",__name:"notebook",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M192 128v768h640V128zm-32-64h704a32 32 0 0 1 32 32v832a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M672 128h64v768h-64zM96 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32m0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32m0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32m0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32"})]))}}),p_=__,h_=p({name:"Notification",__name:"notification",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 128v64H256a64 64 0 0 0-64 64v512a64 64 0 0 0 64 64h512a64 64 0 0 0 64-64V512h64v256a128 128 0 0 1-128 128H256a128 128 0 0 1-128-128V256a128 128 0 0 1 128-128z"}),o("path",{fill:"currentColor",d:"M768 384a128 128 0 1 0 0-256 128 128 0 0 0 0 256m0 64a192 192 0 1 1 0-384 192 192 0 0 1 0 384"})]))}}),f_=h_,v_=p({name:"Odometer",__name:"odometer",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"}),o("path",{fill:"currentColor",d:"M192 512a320 320 0 1 1 640 0 32 32 0 1 1-64 0 256 256 0 1 0-512 0 32 32 0 0 1-64 0"}),o("path",{fill:"currentColor",d:"M570.432 627.84A96 96 0 1 1 509.568 608l60.992-187.776A32 32 0 1 1 631.424 440l-60.992 187.776zM502.08 734.464a32 32 0 1 0 19.84-60.928 32 32 0 0 0-19.84 60.928"})]))}}),d_=v_,m_=p({name:"OfficeBuilding",__name:"office-building",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M192 128v704h384V128zm-32-64h448a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M256 256h256v64H256zm0 192h256v64H256zm0 192h256v64H256zm384-128h128v64H640zm0 128h128v64H640zM64 832h896v64H64z"}),o("path",{fill:"currentColor",d:"M640 384v448h192V384zm-32-64h256a32 32 0 0 1 32 32v512a32 32 0 0 1-32 32H608a32 32 0 0 1-32-32V352a32 32 0 0 1 32-32"})]))}}),g_=m_,w_=p({name:"Open",__name:"open",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M329.956 257.138a254.862 254.862 0 0 0 0 509.724h364.088a254.862 254.862 0 0 0 0-509.724zm0-72.818h364.088a327.68 327.68 0 1 1 0 655.36H329.956a327.68 327.68 0 1 1 0-655.36z"}),o("path",{fill:"currentColor",d:"M694.044 621.227a109.227 109.227 0 1 0 0-218.454 109.227 109.227 0 0 0 0 218.454m0 72.817a182.044 182.044 0 1 1 0-364.088 182.044 182.044 0 0 1 0 364.088"})]))}}),x_=w_,y_=p({name:"Operation",__name:"operation",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M389.44 768a96.064 96.064 0 0 1 181.12 0H896v64H570.56a96.064 96.064 0 0 1-181.12 0H128v-64zm192-288a96.064 96.064 0 0 1 181.12 0H896v64H762.56a96.064 96.064 0 0 1-181.12 0H128v-64zm-320-288a96.064 96.064 0 0 1 181.12 0H896v64H442.56a96.064 96.064 0 0 1-181.12 0H128v-64z"})]))}}),C_=y_,z_=p({name:"Opportunity",__name:"opportunity",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M384 960v-64h192.064v64zm448-544a350.656 350.656 0 0 1-128.32 271.424C665.344 719.04 640 763.776 640 813.504V832H320v-14.336c0-48-19.392-95.36-57.216-124.992a351.552 351.552 0 0 1-128.448-344.256c25.344-136.448 133.888-248.128 269.76-276.48A352.384 352.384 0 0 1 832 416m-544 32c0-132.288 75.904-224 192-224v-64c-154.432 0-256 122.752-256 288z"})]))}}),M_=z_,b_=p({name:"Orange",__name:"orange",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M544 894.72a382.336 382.336 0 0 0 215.936-89.472L577.024 622.272c-10.24 6.016-21.248 10.688-33.024 13.696v258.688zm261.248-134.784A382.336 382.336 0 0 0 894.656 544H635.968c-3.008 11.776-7.68 22.848-13.696 33.024l182.976 182.912zM894.656 480a382.336 382.336 0 0 0-89.408-215.936L622.272 446.976c6.016 10.24 10.688 21.248 13.696 33.024h258.688zm-134.72-261.248A382.336 382.336 0 0 0 544 129.344v258.688c11.776 3.008 22.848 7.68 33.024 13.696zM480 129.344a382.336 382.336 0 0 0-215.936 89.408l182.912 182.976c10.24-6.016 21.248-10.688 33.024-13.696zm-261.248 134.72A382.336 382.336 0 0 0 129.344 480h258.688c3.008-11.776 7.68-22.848 13.696-33.024zM129.344 544a382.336 382.336 0 0 0 89.408 215.936l182.976-182.912A127.232 127.232 0 0 1 388.032 544zm134.72 261.248A382.336 382.336 0 0 0 480 894.656V635.968a127.232 127.232 0 0 1-33.024-13.696zM512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896m0-384a64 64 0 1 0 0-128 64 64 0 0 0 0 128"})]))}}),H_=b_,E_=p({name:"Paperclip",__name:"paperclip",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M602.496 240.448A192 192 0 1 1 874.048 512l-316.8 316.8A256 256 0 0 1 195.2 466.752L602.496 59.456l45.248 45.248L240.448 512A192 192 0 0 0 512 783.552l316.8-316.8a128 128 0 1 0-181.056-181.056L353.6 579.904a32 32 0 1 0 45.248 45.248l294.144-294.144 45.312 45.248L444.096 670.4a96 96 0 1 1-135.744-135.744l294.144-294.208z"})]))}}),V_=E_,B_=p({name:"PartlyCloudy",__name:"partly-cloudy",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M598.4 895.872H328.192a256 256 0 0 1-34.496-510.528A352 352 0 1 1 598.4 895.872m-271.36-64h272.256a288 288 0 1 0-248.512-417.664L335.04 445.44l-34.816 3.584a192 192 0 0 0 26.88 382.848z"}),o("path",{fill:"currentColor",d:"M139.84 501.888a256 256 0 1 1 417.856-277.12c-17.728 2.176-38.208 8.448-61.504 18.816A192 192 0 1 0 189.12 460.48a6003.84 6003.84 0 0 0-49.28 41.408z"})]))}}),A_=B_,L_=p({name:"Pear",__name:"pear",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M542.336 258.816a443.255 443.255 0 0 0-9.024 25.088 32 32 0 1 1-60.8-20.032l1.088-3.328a162.688 162.688 0 0 0-122.048 131.392l-17.088 102.72-20.736 15.36C256.192 552.704 224 610.88 224 672c0 120.576 126.4 224 288 224s288-103.424 288-224c0-61.12-32.192-119.296-89.728-161.92l-20.736-15.424-17.088-102.72a162.688 162.688 0 0 0-130.112-133.12zm-40.128-66.56c7.936-15.552 16.576-30.08 25.92-43.776 23.296-33.92 49.408-59.776 78.528-77.12a32 32 0 1 1 32.704 55.04c-20.544 12.224-40.064 31.552-58.432 58.304a316.608 316.608 0 0 0-9.792 15.104 226.688 226.688 0 0 1 164.48 181.568l12.8 77.248C819.456 511.36 864 587.392 864 672c0 159.04-157.568 288-352 288S160 831.04 160 672c0-84.608 44.608-160.64 115.584-213.376l12.8-77.248a226.624 226.624 0 0 1 213.76-189.184z"})]))}}),S_=L_,F_=p({name:"PhoneFilled",__name:"phone-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M199.232 125.568 90.624 379.008a32 32 0 0 0 6.784 35.2l512.384 512.384a32 32 0 0 0 35.2 6.784l253.44-108.608a32 32 0 0 0 10.048-52.032L769.6 633.92a32 32 0 0 0-36.928-5.952l-130.176 65.088-271.488-271.552 65.024-130.176a32 32 0 0 0-5.952-36.928L251.2 115.52a32 32 0 0 0-51.968 10.048z"})]))}}),P_=F_,D_=p({name:"Phone",__name:"phone",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M79.36 432.256 591.744 944.64a32 32 0 0 0 35.2 6.784l253.44-108.544a32 32 0 0 0 9.984-52.032l-153.856-153.92a32 32 0 0 0-36.928-6.016l-69.888 34.944L358.08 394.24l35.008-69.888a32 32 0 0 0-5.952-36.928L233.152 133.568a32 32 0 0 0-52.032 10.048L72.512 397.056a32 32 0 0 0 6.784 35.2zm60.48-29.952 81.536-190.08L325.568 316.48l-24.64 49.216-20.608 41.216 32.576 32.64 271.552 271.552 32.64 32.64 41.216-20.672 49.28-24.576 104.192 104.128-190.08 81.472L139.84 402.304zM512 320v-64a256 256 0 0 1 256 256h-64a192 192 0 0 0-192-192m0-192V64a448 448 0 0 1 448 448h-64a384 384 0 0 0-384-384"})]))}}),T_=D_,R_=p({name:"PictureFilled",__name:"picture-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M96 896a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h832a32 32 0 0 1 32 32v704a32 32 0 0 1-32 32zm315.52-228.48-68.928-68.928a32 32 0 0 0-45.248 0L128 768.064h778.688l-242.112-290.56a32 32 0 0 0-49.216 0L458.752 665.408a32 32 0 0 1-47.232 2.112M256 384a96 96 0 1 0 192.064-.064A96 96 0 0 0 256 384"})]))}}),O_=R_,k_=p({name:"PictureRounded",__name:"picture-rounded",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 128a384 384 0 1 0 0 768 384 384 0 0 0 0-768m0-64a448 448 0 1 1 0 896 448 448 0 0 1 0-896"}),o("path",{fill:"currentColor",d:"M640 288q64 0 64 64t-64 64q-64 0-64-64t64-64M214.656 790.656l-45.312-45.312 185.664-185.6a96 96 0 0 1 123.712-10.24l138.24 98.688a32 32 0 0 0 39.872-2.176L906.688 422.4l42.624 47.744L699.52 693.696a96 96 0 0 1-119.808 6.592l-138.24-98.752a32 32 0 0 0-41.152 3.456l-185.664 185.6z"})]))}}),I_=k_,N_=p({name:"Picture",__name:"picture",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 160v704h704V160zm-32-64h768a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H128a32 32 0 0 1-32-32V128a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M384 288q64 0 64 64t-64 64q-64 0-64-64t64-64M185.408 876.992l-50.816-38.912L350.72 556.032a96 96 0 0 1 134.592-17.856l1.856 1.472 122.88 99.136a32 32 0 0 0 44.992-4.864l216-269.888 49.92 39.936-215.808 269.824-.256.32a96 96 0 0 1-135.04 14.464l-122.88-99.072-.64-.512a32 32 0 0 0-44.8 5.952z"})]))}}),$_=N_,q_=p({name:"PieChart",__name:"pie-chart",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M448 68.48v64.832A384.128 384.128 0 0 0 512 896a384.128 384.128 0 0 0 378.688-320h64.768A448.128 448.128 0 0 1 64 512 448.128 448.128 0 0 1 448 68.48z"}),o("path",{fill:"currentColor",d:"M576 97.28V448h350.72A384.064 384.064 0 0 0 576 97.28zM512 64V33.152A448 448 0 0 1 990.848 512H512z"})]))}}),j_=q_,K_=p({name:"Place",__name:"place",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 512a192 192 0 1 0 0-384 192 192 0 0 0 0 384m0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512"}),o("path",{fill:"currentColor",d:"M512 512a32 32 0 0 1 32 32v256a32 32 0 1 1-64 0V544a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M384 649.088v64.96C269.76 732.352 192 771.904 192 800c0 37.696 139.904 96 320 96s320-58.304 320-96c0-28.16-77.76-67.648-192-85.952v-64.96C789.12 671.04 896 730.368 896 800c0 88.32-171.904 160-384 160s-384-71.68-384-160c0-69.696 106.88-128.96 256-150.912"})]))}}),U_=K_,W_=p({name:"Platform",__name:"platform",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M448 832v-64h128v64h192v64H256v-64zM128 704V128h768v576z"})]))}}),G_=W_,J_=p({name:"Plus",__name:"plus",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M480 480V128a32 32 0 0 1 64 0v352h352a32 32 0 1 1 0 64H544v352a32 32 0 1 1-64 0V544H128a32 32 0 0 1 0-64z"})]))}}),Z_=J_,Y_=p({name:"Pointer",__name:"pointer",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M511.552 128c-35.584 0-64.384 28.8-64.384 64.448v516.48L274.048 570.88a94.272 94.272 0 0 0-112.896-3.456 44.416 44.416 0 0 0-8.96 62.208L332.8 870.4A64 64 0 0 0 384 896h512V575.232a64 64 0 0 0-45.632-61.312l-205.952-61.76A96 96 0 0 1 576 360.192V192.448C576 156.8 547.2 128 511.552 128M359.04 556.8l24.128 19.2V192.448a128.448 128.448 0 1 1 256.832 0v167.744a32 32 0 0 0 22.784 30.656l206.016 61.76A128 128 0 0 1 960 575.232V896a64 64 0 0 1-64 64H384a128 128 0 0 1-102.4-51.2L101.056 668.032A108.416 108.416 0 0 1 128 512.512a158.272 158.272 0 0 1 185.984 8.32z"})]))}}),Q_=Y_,X_=p({name:"Position",__name:"position",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m249.6 417.088 319.744 43.072 39.168 310.272L845.12 178.88 249.6 417.088zm-129.024 47.168a32 32 0 0 1-7.68-61.44l777.792-311.04a32 32 0 0 1 41.6 41.6l-310.336 775.68a32 32 0 0 1-61.44-7.808L512 516.992l-391.424-52.736z"})]))}}),ep=X_,tp=p({name:"Postcard",__name:"postcard",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 224a32 32 0 0 0-32 32v512a32 32 0 0 0 32 32h704a32 32 0 0 0 32-32V256a32 32 0 0 0-32-32zm0-64h704a96 96 0 0 1 96 96v512a96 96 0 0 1-96 96H160a96 96 0 0 1-96-96V256a96 96 0 0 1 96-96"}),o("path",{fill:"currentColor",d:"M704 320a64 64 0 1 1 0 128 64 64 0 0 1 0-128M288 448h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32m0 128h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32"})]))}}),rp=tp,ap=p({name:"Pouring",__name:"pouring",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m739.328 291.328-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 97.28 78.72 175.936 175.808 175.936h400a192 192 0 0 0 35.776-380.672zM959.552 480a256 256 0 0 1-256 256h-400A239.808 239.808 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 959.552 480M224 800a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32m192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32m192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32m192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32"})]))}}),np=ap,lp=p({name:"Present",__name:"present",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M480 896V640H192v-64h288V320H192v576zm64 0h288V320H544v256h288v64H544zM128 256h768v672a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32z"}),o("path",{fill:"currentColor",d:"M96 256h832q32 0 32 32t-32 32H96q-32 0-32-32t32-32"}),o("path",{fill:"currentColor",d:"M416 256a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"}),o("path",{fill:"currentColor",d:"M608 256a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"})]))}}),sp=lp,op=p({name:"PriceTag",__name:"price-tag",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M224 318.336V896h576V318.336L552.512 115.84a64 64 0 0 0-81.024 0zM593.024 66.304l259.2 212.096A32 32 0 0 1 864 303.168V928a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V303.168a32 32 0 0 1 11.712-24.768l259.2-212.096a128 128 0 0 1 162.112 0z"}),o("path",{fill:"currentColor",d:"M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"})]))}}),up=op,cp=p({name:"Printer",__name:"printer",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 768H105.024c-14.272 0-19.456-1.472-24.64-4.288a29.056 29.056 0 0 1-12.16-12.096C65.536 746.432 64 741.248 64 727.04V379.072c0-42.816 4.48-58.304 12.8-73.984 8.384-15.616 20.672-27.904 36.288-36.288 15.68-8.32 31.168-12.8 73.984-12.8H256V64h512v192h68.928c42.816 0 58.304 4.48 73.984 12.8 15.616 8.384 27.904 20.672 36.288 36.288 8.32 15.68 12.8 31.168 12.8 73.984v347.904c0 14.272-1.472 19.456-4.288 24.64a29.056 29.056 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H768v192H256zm64-192v320h384V576zm-64 128V512h512v192h128V379.072c0-29.376-1.408-36.48-5.248-43.776a23.296 23.296 0 0 0-10.048-10.048c-7.232-3.84-14.4-5.248-43.776-5.248H187.072c-29.376 0-36.48 1.408-43.776 5.248a23.296 23.296 0 0 0-10.048 10.048c-3.84 7.232-5.248 14.4-5.248 43.776V704zm64-448h384V128H320zm-64 128h64v64h-64zm128 0h64v64h-64z"})]))}}),ip=cp,_p=p({name:"Promotion",__name:"promotion",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m64 448 832-320-128 704-446.08-243.328L832 192 242.816 545.472zm256 512V657.024L512 768z"})]))}}),pp=_p,hp=p({name:"QuartzWatch",__name:"quartz-watch",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M422.02 602.01v-.03c-6.68-5.99-14.35-8.83-23.01-8.51-8.67.32-16.17 3.66-22.5 10.02-6.33 6.36-9.5 13.7-9.5 22.02s3 15.82 8.99 22.5c8.68 8.68 19.02 11.35 31.01 8s19.49-10.85 22.5-22.5c3.01-11.65.51-22.15-7.49-31.49zM384 512c0-9.35-3-17.02-8.99-23.01-6-5.99-13.66-8.99-23.01-8.99-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.66 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.67 8.99-23.01m6.53-82.49c11.65 3.01 22.15.51 31.49-7.49h.04c5.99-6.68 8.83-14.34 8.51-23.01-.32-8.67-3.66-16.16-10.02-22.5-6.36-6.33-13.7-9.5-22.02-9.5s-15.82 3-22.5 8.99c-8.68 8.69-11.35 19.02-8 31.01 3.35 11.99 10.85 19.49 22.5 22.5zm242.94 0c11.67-3.03 19.01-10.37 22.02-22.02 3.01-11.65.51-22.15-7.49-31.49h.01c-6.68-5.99-14.18-8.99-22.5-8.99s-15.66 3.16-22.02 9.5c-6.36 6.34-9.7 13.84-10.02 22.5-.32 8.66 2.52 16.33 8.51 23.01 9.32 8.02 19.82 10.52 31.49 7.49M512 640c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.67 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.66 8.99-23.01s-3-17.02-8.99-23.01c-6-5.99-13.66-8.99-23.01-8.99m183.01-151.01c-6-5.99-13.66-8.99-23.01-8.99s-17.02 3-23.01 8.99c-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.66 8.99 23.01 8.99s17.02-3 23.01-8.99c5.99-6 8.99-13.67 8.99-23.01 0-9.35-3-17.02-8.99-23.01"}),o("path",{fill:"currentColor",d:"M832 512c-2-90.67-33.17-166.17-93.5-226.5-20.43-20.42-42.6-37.49-66.5-51.23V64H352v170.26c-23.9 13.74-46.07 30.81-66.5 51.24-60.33 60.33-91.49 135.83-93.5 226.5 2 90.67 33.17 166.17 93.5 226.5 20.43 20.43 42.6 37.5 66.5 51.24V960h320V789.74c23.9-13.74 46.07-30.81 66.5-51.24 60.33-60.34 91.49-135.83 93.5-226.5M416 128h192v78.69c-29.85-9.03-61.85-13.93-96-14.69-34.15.75-66.15 5.65-96 14.68zm192 768H416v-78.68c29.85 9.03 61.85 13.93 96 14.68 34.15-.75 66.15-5.65 96-14.68zm-96-128c-72.66-2.01-132.99-27.01-180.99-75.01S258.01 584.66 256 512c2.01-72.66 27.01-132.99 75.01-180.99S439.34 258.01 512 256c72.66 2.01 132.99 27.01 180.99 75.01S765.99 439.34 768 512c-2.01 72.66-27.01 132.99-75.01 180.99S584.66 765.99 512 768"}),o("path",{fill:"currentColor",d:"M512 320c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01 0 9.35 3 17.02 8.99 23.01 6 5.99 13.67 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.66 8.99-23.01 0-9.35-3-17.02-8.99-23.01-6-5.99-13.66-8.99-23.01-8.99m112.99 273.5c-8.66-.32-16.33 2.52-23.01 8.51-7.98 9.32-10.48 19.82-7.49 31.49s10.49 19.17 22.5 22.5 22.35.66 31.01-8v.04c5.99-6.68 8.99-14.18 8.99-22.5s-3.16-15.66-9.5-22.02-13.84-9.7-22.5-10.02"})]))}}),fp=hp,vp=p({name:"QuestionFilled",__name:"question-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m23.744 191.488c-52.096 0-92.928 14.784-123.2 44.352-30.976 29.568-45.76 70.4-45.76 122.496h80.256c0-29.568 5.632-52.8 17.6-68.992 13.376-19.712 35.2-28.864 66.176-28.864 23.936 0 42.944 6.336 56.32 19.712 12.672 13.376 19.712 31.68 19.712 54.912 0 17.6-6.336 34.496-19.008 49.984l-8.448 9.856c-45.76 40.832-73.216 70.4-82.368 89.408-9.856 19.008-14.08 42.24-14.08 68.992v9.856h80.96v-9.856c0-16.896 3.52-31.68 10.56-45.76 6.336-12.672 15.488-24.64 28.16-35.2 33.792-29.568 54.208-48.576 60.544-55.616 16.896-22.528 26.048-51.392 26.048-86.592 0-42.944-14.08-76.736-42.24-101.376-28.16-25.344-65.472-37.312-111.232-37.312zm-12.672 406.208a54.272 54.272 0 0 0-38.72 14.784 49.408 49.408 0 0 0-15.488 38.016c0 15.488 4.928 28.16 15.488 38.016A54.848 54.848 0 0 0 523.072 768c15.488 0 28.16-4.928 38.72-14.784a51.52 51.52 0 0 0 16.192-38.72 51.968 51.968 0 0 0-15.488-38.016 55.936 55.936 0 0 0-39.424-14.784z"})]))}}),dp=vp,mp=p({name:"Rank",__name:"rank",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m186.496 544 41.408 41.344a32 32 0 1 1-45.248 45.312l-96-96a32 32 0 0 1 0-45.312l96-96a32 32 0 1 1 45.248 45.312L186.496 480h290.816V186.432l-41.472 41.472a32 32 0 1 1-45.248-45.184l96-96.128a32 32 0 0 1 45.312 0l96 96.064a32 32 0 0 1-45.248 45.184l-41.344-41.28V480H832l-41.344-41.344a32 32 0 0 1 45.248-45.312l96 96a32 32 0 0 1 0 45.312l-96 96a32 32 0 0 1-45.248-45.312L832 544H541.312v293.44l41.344-41.28a32 32 0 1 1 45.248 45.248l-96 96a32 32 0 0 1-45.312 0l-96-96a32 32 0 1 1 45.312-45.248l41.408 41.408V544H186.496z"})]))}}),gp=mp,wp=p({name:"ReadingLamp",__name:"reading-lamp",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M352 896h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32m-44.672-768-99.52 448h608.384l-99.52-448zm-25.6-64h460.608a32 32 0 0 1 31.232 25.088l113.792 512A32 32 0 0 1 856.128 640H167.872a32 32 0 0 1-31.232-38.912l113.792-512A32 32 0 0 1 281.664 64z"}),o("path",{fill:"currentColor",d:"M672 576q32 0 32 32v128q0 32-32 32t-32-32V608q0-32 32-32m-192-.064h64V960h-64z"})]))}}),xp=wp,yp=p({name:"Reading",__name:"reading",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m512 863.36 384-54.848v-638.72L525.568 222.72a96 96 0 0 1-27.136 0L128 169.792v638.72zM137.024 106.432l370.432 52.928a32 32 0 0 0 9.088 0l370.432-52.928A64 64 0 0 1 960 169.792v638.72a64 64 0 0 1-54.976 63.36l-388.48 55.488a32 32 0 0 1-9.088 0l-388.48-55.488A64 64 0 0 1 64 808.512v-638.72a64 64 0 0 1 73.024-63.36z"}),o("path",{fill:"currentColor",d:"M480 192h64v704h-64z"})]))}}),Cp=yp,zp=p({name:"RefreshLeft",__name:"refresh-left",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M289.088 296.704h92.992a32 32 0 0 1 0 64H232.96a32 32 0 0 1-32-32V179.712a32 32 0 0 1 64 0v50.56a384 384 0 0 1 643.84 282.88 384 384 0 0 1-383.936 384 384 384 0 0 1-384-384h64a320 320 0 1 0 640 0 320 320 0 0 0-555.712-216.448z"})]))}}),Mp=zp,bp=p({name:"RefreshRight",__name:"refresh-right",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M784.512 230.272v-50.56a32 32 0 1 1 64 0v149.056a32 32 0 0 1-32 32H667.52a32 32 0 1 1 0-64h92.992A320 320 0 1 0 524.8 833.152a320 320 0 0 0 320-320h64a384 384 0 0 1-384 384 384 384 0 0 1-384-384 384 384 0 0 1 643.712-282.88z"})]))}}),Hp=bp,Ep=p({name:"Refresh",__name:"refresh",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M771.776 794.88A384 384 0 0 1 128 512h64a320 320 0 0 0 555.712 216.448H654.72a32 32 0 1 1 0-64h149.056a32 32 0 0 1 32 32v148.928a32 32 0 1 1-64 0v-50.56zM276.288 295.616h92.992a32 32 0 0 1 0 64H220.16a32 32 0 0 1-32-32V178.56a32 32 0 0 1 64 0v50.56A384 384 0 0 1 896.128 512h-64a320 320 0 0 0-555.776-216.384z"})]))}}),Vp=Ep,Bp=p({name:"Refrigerator",__name:"refrigerator",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 448h512V160a32 32 0 0 0-32-32H288a32 32 0 0 0-32 32zm0 64v352a32 32 0 0 0 32 32h448a32 32 0 0 0 32-32V512zm32-448h448a96 96 0 0 1 96 96v704a96 96 0 0 1-96 96H288a96 96 0 0 1-96-96V160a96 96 0 0 1 96-96m32 224h64v96h-64zm0 288h64v96h-64z"})]))}}),Ap=Bp,Lp=p({name:"RemoveFilled",__name:"remove-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896M288 512a38.4 38.4 0 0 0 38.4 38.4h371.2a38.4 38.4 0 0 0 0-76.8H326.4A38.4 38.4 0 0 0 288 512"})]))}}),Sp=Lp,Fp=p({name:"Remove",__name:"remove",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M352 480h320a32 32 0 1 1 0 64H352a32 32 0 0 1 0-64"}),o("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"})]))}}),Pp=Fp,Dp=p({name:"Right",__name:"right",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M754.752 480H160a32 32 0 1 0 0 64h594.752L521.344 777.344a32 32 0 0 0 45.312 45.312l288-288a32 32 0 0 0 0-45.312l-288-288a32 32 0 1 0-45.312 45.312z"})]))}}),Tp=Dp,Rp=p({name:"ScaleToOriginal",__name:"scale-to-original",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M813.176 180.706a60.235 60.235 0 0 1 60.236 60.235v481.883a60.235 60.235 0 0 1-60.236 60.235H210.824a60.235 60.235 0 0 1-60.236-60.235V240.94a60.235 60.235 0 0 1 60.236-60.235h602.352zm0-60.235H210.824A120.47 120.47 0 0 0 90.353 240.94v481.883a120.47 120.47 0 0 0 120.47 120.47h602.353a120.47 120.47 0 0 0 120.471-120.47V240.94a120.47 120.47 0 0 0-120.47-120.47zm-120.47 180.705a30.118 30.118 0 0 0-30.118 30.118v301.177a30.118 30.118 0 0 0 60.236 0V331.294a30.118 30.118 0 0 0-30.118-30.118zm-361.412 0a30.118 30.118 0 0 0-30.118 30.118v301.177a30.118 30.118 0 1 0 60.236 0V331.294a30.118 30.118 0 0 0-30.118-30.118M512 361.412a30.118 30.118 0 0 0-30.118 30.117v30.118a30.118 30.118 0 0 0 60.236 0V391.53A30.118 30.118 0 0 0 512 361.412M512 512a30.118 30.118 0 0 0-30.118 30.118v30.117a30.118 30.118 0 0 0 60.236 0v-30.117A30.118 30.118 0 0 0 512 512"})]))}}),Op=Rp,kp=p({name:"School",__name:"school",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M224 128v704h576V128zm-32-64h640a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M64 832h896v64H64zm256-640h128v96H320z"}),o("path",{fill:"currentColor",d:"M384 832h256v-64a128 128 0 1 0-256 0zm128-256a192 192 0 0 1 192 192v128H320V768a192 192 0 0 1 192-192M320 384h128v96H320zm256-192h128v96H576zm0 192h128v96H576z"})]))}}),Ip=kp,Np=p({name:"Scissor",__name:"scissor",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m512.064 578.368-106.88 152.768a160 160 0 1 1-23.36-78.208L472.96 522.56 196.864 128.256a32 32 0 1 1 52.48-36.736l393.024 561.344a160 160 0 1 1-23.36 78.208l-106.88-152.704zm54.4-189.248 208.384-297.6a32 32 0 0 1 52.48 36.736l-221.76 316.672-39.04-55.808zm-376.32 425.856a96 96 0 1 0 110.144-157.248 96 96 0 0 0-110.08 157.248zm643.84 0a96 96 0 1 0-110.08-157.248 96 96 0 0 0 110.08 157.248"})]))}}),$p=Np,qp=p({name:"Search",__name:"search",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704"})]))}}),jp=qp,Kp=p({name:"Select",__name:"select",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M77.248 415.04a64 64 0 0 1 90.496 0l226.304 226.304L846.528 188.8a64 64 0 1 1 90.56 90.496l-543.04 543.04-316.8-316.8a64 64 0 0 1 0-90.496z"})]))}}),Up=Kp,Wp=p({name:"Sell",__name:"sell",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M704 288h131.072a32 32 0 0 1 31.808 28.8L886.4 512h-64.384l-16-160H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0v-96H217.92l-51.2 512H512v64H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4zm-64 0v-22.336C640 189.248 582.272 128 512 128c-70.272 0-128 61.248-128 137.664v22.4h256zm201.408 483.84L768 698.496V928a32 32 0 1 1-64 0V698.496l-73.344 73.344a32 32 0 1 1-45.248-45.248l128-128a32 32 0 0 1 45.248 0l128 128a32 32 0 1 1-45.248 45.248z"})]))}}),Gp=Wp,Jp=p({name:"SemiSelect",__name:"semi-select",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 448h768q64 0 64 64t-64 64H128q-64 0-64-64t64-64"})]))}}),Zp=Jp,Yp=p({name:"Service",__name:"service",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M864 409.6a192 192 0 0 1-37.888 349.44A256.064 256.064 0 0 1 576 960h-96a32 32 0 1 1 0-64h96a192.064 192.064 0 0 0 181.12-128H736a32 32 0 0 1-32-32V416a32 32 0 0 1 32-32h32c10.368 0 20.544.832 30.528 2.432a288 288 0 0 0-573.056 0A193.235 193.235 0 0 1 256 384h32a32 32 0 0 1 32 32v320a32 32 0 0 1-32 32h-32a192 192 0 0 1-96-358.4 352 352 0 0 1 704 0M256 448a128 128 0 1 0 0 256zm640 128a128 128 0 0 0-128-128v256a128 128 0 0 0 128-128"})]))}}),Qp=Yp,Xp=p({name:"SetUp",__name:"set-up",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M224 160a64 64 0 0 0-64 64v576a64 64 0 0 0 64 64h576a64 64 0 0 0 64-64V224a64 64 0 0 0-64-64zm0-64h576a128 128 0 0 1 128 128v576a128 128 0 0 1-128 128H224A128 128 0 0 1 96 800V224A128 128 0 0 1 224 96"}),o("path",{fill:"currentColor",d:"M384 416a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"}),o("path",{fill:"currentColor",d:"M480 320h256q32 0 32 32t-32 32H480q-32 0-32-32t32-32m160 416a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"}),o("path",{fill:"currentColor",d:"M288 640h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32"})]))}}),eh=Xp,th=p({name:"Setting",__name:"setting",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M600.704 64a32 32 0 0 1 30.464 22.208l35.2 109.376c14.784 7.232 28.928 15.36 42.432 24.512l112.384-24.192a32 32 0 0 1 34.432 15.36L944.32 364.8a32 32 0 0 1-4.032 37.504l-77.12 85.12a357.12 357.12 0 0 1 0 49.024l77.12 85.248a32 32 0 0 1 4.032 37.504l-88.704 153.6a32 32 0 0 1-34.432 15.296L708.8 803.904c-13.44 9.088-27.648 17.28-42.368 24.512l-35.264 109.376A32 32 0 0 1 600.704 960H423.296a32 32 0 0 1-30.464-22.208L357.696 828.48a351.616 351.616 0 0 1-42.56-24.64l-112.32 24.256a32 32 0 0 1-34.432-15.36L79.68 659.2a32 32 0 0 1 4.032-37.504l77.12-85.248a357.12 357.12 0 0 1 0-48.896l-77.12-85.248A32 32 0 0 1 79.68 364.8l88.704-153.6a32 32 0 0 1 34.432-15.296l112.32 24.256c13.568-9.152 27.776-17.408 42.56-24.64l35.2-109.312A32 32 0 0 1 423.232 64H600.64zm-23.424 64H446.72l-36.352 113.088-24.512 11.968a294.113 294.113 0 0 0-34.816 20.096l-22.656 15.36-116.224-25.088-65.28 113.152 79.68 88.192-1.92 27.136a293.12 293.12 0 0 0 0 40.192l1.92 27.136-79.808 88.192 65.344 113.152 116.224-25.024 22.656 15.296a294.113 294.113 0 0 0 34.816 20.096l24.512 11.968L446.72 896h130.688l36.48-113.152 24.448-11.904a288.282 288.282 0 0 0 34.752-20.096l22.592-15.296 116.288 25.024 65.28-113.152-79.744-88.192 1.92-27.136a293.12 293.12 0 0 0 0-40.256l-1.92-27.136 79.808-88.128-65.344-113.152-116.288 24.96-22.592-15.232a287.616 287.616 0 0 0-34.752-20.096l-24.448-11.904L577.344 128zM512 320a192 192 0 1 1 0 384 192 192 0 0 1 0-384m0 64a128 128 0 1 0 0 256 128 128 0 0 0 0-256"})]))}}),rh=th,ah=p({name:"Share",__name:"share",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m679.872 348.8-301.76 188.608a127.808 127.808 0 0 1 5.12 52.16l279.936 104.96a128 128 0 1 1-22.464 59.904l-279.872-104.96a128 128 0 1 1-16.64-166.272l301.696-188.608a128 128 0 1 1 33.92 54.272z"})]))}}),nh=ah,lh=p({name:"Ship",__name:"ship",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 386.88V448h405.568a32 32 0 0 1 30.72 40.768l-76.48 267.968A192 192 0 0 1 687.168 896H336.832a192 192 0 0 1-184.64-139.264L75.648 488.768A32 32 0 0 1 106.368 448H448V117.888a32 32 0 0 1 47.36-28.096l13.888 7.616L512 96v2.88l231.68 126.4a32 32 0 0 1-2.048 57.216zm0-70.272 144.768-65.792L512 171.84zM512 512H148.864l18.24 64H856.96l18.24-64zM185.408 640l28.352 99.2A128 128 0 0 0 336.832 832h350.336a128 128 0 0 0 123.072-92.8l28.352-99.2H185.408"})]))}}),sh=lh,oh=p({name:"Shop",__name:"shop",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M704 704h64v192H256V704h64v64h384zm188.544-152.192C894.528 559.616 896 567.616 896 576a96 96 0 1 1-192 0 96 96 0 1 1-192 0 96 96 0 1 1-192 0 96 96 0 1 1-192 0c0-8.384 1.408-16.384 3.392-24.192L192 128h640z"})]))}}),uh=oh,ch=p({name:"ShoppingBag",__name:"shopping-bag",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M704 320v96a32 32 0 0 1-32 32h-32V320H384v128h-32a32 32 0 0 1-32-32v-96H192v576h640V320zm-384-64a192 192 0 1 1 384 0h160a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32zm64 0h256a128 128 0 1 0-256 0"}),o("path",{fill:"currentColor",d:"M192 704h640v64H192z"})]))}}),ih=ch,_h=p({name:"ShoppingCartFull",__name:"shopping-cart-full",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M432 928a48 48 0 1 1 0-96 48 48 0 0 1 0 96m320 0a48 48 0 1 1 0-96 48 48 0 0 1 0 96M96 128a32 32 0 0 1 0-64h160a32 32 0 0 1 31.36 25.728L320.64 256H928a32 32 0 0 1 31.296 38.72l-96 448A32 32 0 0 1 832 768H384a32 32 0 0 1-31.36-25.728L229.76 128zm314.24 576h395.904l82.304-384H333.44l76.8 384z"}),o("path",{fill:"currentColor",d:"M699.648 256 608 145.984 516.352 256h183.296zm-140.8-151.04a64 64 0 0 1 98.304 0L836.352 320H379.648l179.2-215.04"})]))}}),ph=_h,hh=p({name:"ShoppingCart",__name:"shopping-cart",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M432 928a48 48 0 1 1 0-96 48 48 0 0 1 0 96m320 0a48 48 0 1 1 0-96 48 48 0 0 1 0 96M96 128a32 32 0 0 1 0-64h160a32 32 0 0 1 31.36 25.728L320.64 256H928a32 32 0 0 1 31.296 38.72l-96 448A32 32 0 0 1 832 768H384a32 32 0 0 1-31.36-25.728L229.76 128zm314.24 576h395.904l82.304-384H333.44l76.8 384z"})]))}}),fh=hh,vh=p({name:"ShoppingTrolley",__name:"shopping-trolley",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M368 833c-13.3 0-24.5 4.5-33.5 13.5S321 866.7 321 880s4.5 24.5 13.5 33.5 20.2 13.8 33.5 14.5c13.3-.7 24.5-5.5 33.5-14.5S415 893.3 415 880s-4.5-24.5-13.5-33.5S381.3 833 368 833m439-193c7.4 0 13.8-2.2 19.5-6.5S836 623.3 838 616l112-448c2-10-.2-19.2-6.5-27.5S929 128 919 128H96c-9.3 0-17 3-23 9s-9 13.7-9 23 3 17 9 23 13.7 9 23 9h96v576h672c9.3 0 17-3 23-9s9-13.7 9-23-3-17-9-23-13.7-9-23-9H256v-64zM256 192h622l-96 384H256zm432 641c-13.3 0-24.5 4.5-33.5 13.5S641 866.7 641 880s4.5 24.5 13.5 33.5 20.2 13.8 33.5 14.5c13.3-.7 24.5-5.5 33.5-14.5S735 893.3 735 880s-4.5-24.5-13.5-33.5S701.3 833 688 833"})]))}}),dh=vh,mh=p({name:"Smoking",__name:"smoking",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 576v128h640V576zm-32-64h704a32 32 0 0 1 32 32v192a32 32 0 0 1-32 32H224a32 32 0 0 1-32-32V544a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M704 576h64v128h-64zM256 64h64v320h-64zM128 192h64v192h-64zM64 512h64v256H64z"})]))}}),gh=mh,wh=p({name:"Soccer",__name:"soccer",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M418.496 871.04 152.256 604.8c-16.512 94.016-2.368 178.624 42.944 224 44.928 44.928 129.344 58.752 223.296 42.24m72.32-18.176a573.056 573.056 0 0 0 224.832-137.216 573.12 573.12 0 0 0 137.216-224.832L533.888 171.84a578.56 578.56 0 0 0-227.52 138.496A567.68 567.68 0 0 0 170.432 532.48l320.384 320.384zM871.04 418.496c16.512-93.952 2.688-178.368-42.24-223.296-44.544-44.544-128.704-58.048-222.592-41.536zM149.952 874.048c-112.96-112.96-88.832-408.96 111.168-608.96C461.056 65.152 760.96 36.928 874.048 149.952c113.024 113.024 86.784 411.008-113.152 610.944-199.936 199.936-497.92 226.112-610.944 113.152m452.544-497.792 22.656-22.656a32 32 0 0 1 45.248 45.248l-22.656 22.656 45.248 45.248A32 32 0 1 1 647.744 512l-45.248-45.248L557.248 512l45.248 45.248a32 32 0 1 1-45.248 45.248L512 557.248l-45.248 45.248L512 647.744a32 32 0 1 1-45.248 45.248l-45.248-45.248-22.656 22.656a32 32 0 1 1-45.248-45.248l22.656-22.656-45.248-45.248A32 32 0 1 1 376.256 512l45.248 45.248L466.752 512l-45.248-45.248a32 32 0 1 1 45.248-45.248L512 466.752l45.248-45.248L512 376.256a32 32 0 0 1 45.248-45.248l45.248 45.248z"})]))}}),xh=wh,yh=p({name:"SoldOut",__name:"sold-out",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M704 288h131.072a32 32 0 0 1 31.808 28.8L886.4 512h-64.384l-16-160H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0v-96H217.92l-51.2 512H512v64H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4zm-64 0v-22.336C640 189.248 582.272 128 512 128c-70.272 0-128 61.248-128 137.664v22.4h256zm201.408 476.16a32 32 0 1 1 45.248 45.184l-128 128a32 32 0 0 1-45.248 0l-128-128a32 32 0 1 1 45.248-45.248L704 837.504V608a32 32 0 1 1 64 0v229.504l73.408-73.408z"})]))}}),Ch=yh,zh=p({name:"SortDown",__name:"sort-down",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M576 96v709.568L333.312 562.816A32 32 0 1 0 288 608l297.408 297.344A32 32 0 0 0 640 882.688V96a32 32 0 0 0-64 0"})]))}}),Mh=zh,bh=p({name:"SortUp",__name:"sort-up",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M384 141.248V928a32 32 0 1 0 64 0V218.56l242.688 242.688A32 32 0 1 0 736 416L438.592 118.656A32 32 0 0 0 384 141.248"})]))}}),Hh=bh,Eh=p({name:"Sort",__name:"sort",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M384 96a32 32 0 0 1 64 0v786.752a32 32 0 0 1-54.592 22.656L95.936 608a32 32 0 0 1 0-45.312h.128a32 32 0 0 1 45.184 0L384 805.632zm192 45.248a32 32 0 0 1 54.592-22.592L928.064 416a32 32 0 0 1 0 45.312h-.128a32 32 0 0 1-45.184 0L640 218.496V928a32 32 0 1 1-64 0V141.248z"})]))}}),Vh=Eh,Bh=p({name:"Stamp",__name:"stamp",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M624 475.968V640h144a128 128 0 0 1 128 128H128a128 128 0 0 1 128-128h144V475.968a192 192 0 1 1 224 0M128 896v-64h768v64z"})]))}}),Ah=Bh,Lh=p({name:"StarFilled",__name:"star-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M283.84 867.84 512 747.776l228.16 119.936a6.4 6.4 0 0 0 9.28-6.72l-43.52-254.08 184.512-179.904a6.4 6.4 0 0 0-3.52-10.88l-255.104-37.12L517.76 147.904a6.4 6.4 0 0 0-11.52 0L392.192 379.072l-255.104 37.12a6.4 6.4 0 0 0-3.52 10.88L318.08 606.976l-43.584 254.08a6.4 6.4 0 0 0 9.28 6.72z"})]))}}),Sh=Lh,Fh=p({name:"Star",__name:"star",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m512 747.84 228.16 119.936a6.4 6.4 0 0 0 9.28-6.72l-43.52-254.08 184.512-179.904a6.4 6.4 0 0 0-3.52-10.88l-255.104-37.12L517.76 147.904a6.4 6.4 0 0 0-11.52 0L392.192 379.072l-255.104 37.12a6.4 6.4 0 0 0-3.52 10.88L318.08 606.976l-43.584 254.08a6.4 6.4 0 0 0 9.28 6.72zM313.6 924.48a70.4 70.4 0 0 1-102.144-74.24l37.888-220.928L88.96 472.96A70.4 70.4 0 0 1 128 352.896l221.76-32.256 99.2-200.96a70.4 70.4 0 0 1 126.208 0l99.2 200.96 221.824 32.256a70.4 70.4 0 0 1 39.04 120.064L774.72 629.376l37.888 220.928a70.4 70.4 0 0 1-102.144 74.24L512 820.096l-198.4 104.32z"})]))}}),Ph=Fh,Dh=p({name:"Stopwatch",__name:"stopwatch",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"}),o("path",{fill:"currentColor",d:"M672 234.88c-39.168 174.464-80 298.624-122.688 372.48-64 110.848-202.624 30.848-138.624-80C453.376 453.44 540.48 355.968 672 234.816z"})]))}}),Th=Dh,Rh=p({name:"SuccessFilled",__name:"success-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m-55.808 536.384-99.52-99.584a38.4 38.4 0 1 0-54.336 54.336l126.72 126.72a38.272 38.272 0 0 0 54.336 0l262.4-262.464a38.4 38.4 0 1 0-54.272-54.336z"})]))}}),Oh=Rh,kh=p({name:"Sugar",__name:"sugar",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m801.728 349.184 4.48 4.48a128 128 0 0 1 0 180.992L534.656 806.144a128 128 0 0 1-181.056 0l-4.48-4.48-19.392 109.696a64 64 0 0 1-108.288 34.176L78.464 802.56a64 64 0 0 1 34.176-108.288l109.76-19.328-4.544-4.544a128 128 0 0 1 0-181.056l271.488-271.488a128 128 0 0 1 181.056 0l4.48 4.48 19.392-109.504a64 64 0 0 1 108.352-34.048l142.592 143.04a64 64 0 0 1-34.24 108.16l-109.248 19.2zm-548.8 198.72h447.168v2.24l60.8-60.8a63.808 63.808 0 0 0 18.752-44.416h-426.88l-89.664 89.728a64.064 64.064 0 0 0-10.24 13.248zm0 64c2.752 4.736 6.144 9.152 10.176 13.248l135.744 135.744a64 64 0 0 0 90.496 0L638.4 611.904zm490.048-230.976L625.152 263.104a64 64 0 0 0-90.496 0L416.768 380.928zM123.712 757.312l142.976 142.976 24.32-137.6a25.6 25.6 0 0 0-29.696-29.632l-137.6 24.256zm633.6-633.344-24.32 137.472a25.6 25.6 0 0 0 29.632 29.632l137.28-24.064-142.656-143.04z"})]))}}),Ih=kh,Nh=p({name:"SuitcaseLine",__name:"suitcase-line",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M922.5 229.5c-24.32-24.34-54.49-36.84-90.5-37.5H704v-64c-.68-17.98-7.02-32.98-19.01-44.99S658.01 64.66 640 64H384c-17.98.68-32.98 7.02-44.99 19.01S320.66 110 320 128v64H192c-35.99.68-66.16 13.18-90.5 37.5C77.16 253.82 64.66 283.99 64 320v448c.68 35.99 13.18 66.16 37.5 90.5s54.49 36.84 90.5 37.5h640c35.99-.68 66.16-13.18 90.5-37.5s36.84-54.49 37.5-90.5V320c-.68-35.99-13.18-66.16-37.5-90.5M384 128h256v64H384zM256 832h-64c-17.98-.68-32.98-7.02-44.99-19.01S128.66 786.01 128 768V448h128zm448 0H320V448h384zm192-64c-.68 17.98-7.02 32.98-19.01 44.99S850.01 831.34 832 832h-64V448h128zm0-384H128v-64c.69-17.98 7.02-32.98 19.01-44.99S173.99 256.66 192 256h640c17.98.69 32.98 7.02 44.99 19.01S895.34 301.99 896 320z"})]))}}),$h=Nh,qh=p({name:"Suitcase",__name:"suitcase",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 384h768v-64a64 64 0 0 0-64-64H192a64 64 0 0 0-64 64zm0 64v320a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V448zm64-256h640a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H192A128 128 0 0 1 64 768V320a128 128 0 0 1 128-128"}),o("path",{fill:"currentColor",d:"M384 128v64h256v-64zm0-64h256a64 64 0 0 1 64 64v64a64 64 0 0 1-64 64H384a64 64 0 0 1-64-64v-64a64 64 0 0 1 64-64"})]))}}),jh=qh,Kh=p({name:"Sunny",__name:"sunny",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 704a192 192 0 1 0 0-384 192 192 0 0 0 0 384m0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512m0-704a32 32 0 0 1 32 32v64a32 32 0 0 1-64 0V96a32 32 0 0 1 32-32m0 768a32 32 0 0 1 32 32v64a32 32 0 1 1-64 0v-64a32 32 0 0 1 32-32M195.2 195.2a32 32 0 0 1 45.248 0l45.248 45.248a32 32 0 1 1-45.248 45.248L195.2 240.448a32 32 0 0 1 0-45.248zm543.104 543.104a32 32 0 0 1 45.248 0l45.248 45.248a32 32 0 0 1-45.248 45.248l-45.248-45.248a32 32 0 0 1 0-45.248M64 512a32 32 0 0 1 32-32h64a32 32 0 0 1 0 64H96a32 32 0 0 1-32-32m768 0a32 32 0 0 1 32-32h64a32 32 0 1 1 0 64h-64a32 32 0 0 1-32-32M195.2 828.8a32 32 0 0 1 0-45.248l45.248-45.248a32 32 0 0 1 45.248 45.248L240.448 828.8a32 32 0 0 1-45.248 0zm543.104-543.104a32 32 0 0 1 0-45.248l45.248-45.248a32 32 0 0 1 45.248 45.248l-45.248 45.248a32 32 0 0 1-45.248 0"})]))}}),Uh=Kh,Wh=p({name:"Sunrise",__name:"sunrise",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M32 768h960a32 32 0 1 1 0 64H32a32 32 0 1 1 0-64m129.408-96a352 352 0 0 1 701.184 0h-64.32a288 288 0 0 0-572.544 0h-64.32zM512 128a32 32 0 0 1 32 32v96a32 32 0 0 1-64 0v-96a32 32 0 0 1 32-32m407.296 168.704a32 32 0 0 1 0 45.248l-67.84 67.84a32 32 0 1 1-45.248-45.248l67.84-67.84a32 32 0 0 1 45.248 0zm-814.592 0a32 32 0 0 1 45.248 0l67.84 67.84a32 32 0 1 1-45.248 45.248l-67.84-67.84a32 32 0 0 1 0-45.248"})]))}}),Gh=Wh,Jh=p({name:"Sunset",__name:"sunset",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M82.56 640a448 448 0 1 1 858.88 0h-67.2a384 384 0 1 0-724.288 0zM32 704h960q32 0 32 32t-32 32H32q-32 0-32-32t32-32m256 128h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32"})]))}}),Zh=Jh,Yh=p({name:"SwitchButton",__name:"switch-button",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M352 159.872V230.4a352 352 0 1 0 320 0v-70.528A416.128 416.128 0 0 1 512 960a416 416 0 0 1-160-800.128z"}),o("path",{fill:"currentColor",d:"M512 64q32 0 32 32v320q0 32-32 32t-32-32V96q0-32 32-32"})]))}}),Qh=Yh,Xh=p({name:"SwitchFilled",__name:"switch-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M247.47 358.4v.04c.07 19.17 7.72 37.53 21.27 51.09s31.92 21.2 51.09 21.27c39.86 0 72.41-32.6 72.41-72.4s-32.6-72.36-72.41-72.36-72.36 32.55-72.36 72.36z"}),o("path",{fill:"currentColor",d:"M492.38 128H324.7c-52.16 0-102.19 20.73-139.08 57.61a196.655 196.655 0 0 0-57.61 139.08V698.7c-.01 25.84 5.08 51.42 14.96 75.29s24.36 45.56 42.63 63.83 39.95 32.76 63.82 42.65a196.67 196.67 0 0 0 75.28 14.98h167.68c3.03 0 5.46-2.43 5.46-5.42V133.42c.6-2.99-1.83-5.42-5.46-5.42zm-56.11 705.88H324.7c-17.76.13-35.36-3.33-51.75-10.18s-31.22-16.94-43.61-29.67c-25.3-25.35-39.81-59.1-39.81-95.32V324.69c-.13-17.75 3.33-35.35 10.17-51.74a131.695 131.695 0 0 1 29.64-43.62c25.39-25.3 59.14-39.81 95.36-39.81h111.57zm402.12-647.67a196.655 196.655 0 0 0-139.08-57.61H580.48c-3.03 0-4.82 2.43-4.82 4.82v757.16c-.6 2.99 1.79 5.42 5.42 5.42h118.23a196.69 196.69 0 0 0 139.08-57.61A196.655 196.655 0 0 0 896 699.31V325.29a196.69 196.69 0 0 0-57.61-139.08zm-111.3 441.92c-42.83 0-77.82-34.99-77.82-77.82s34.98-77.82 77.82-77.82c42.83 0 77.82 34.99 77.82 77.82s-34.99 77.82-77.82 77.82z"})]))}}),e7=Xh,t7=p({name:"Switch",__name:"switch",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M118.656 438.656a32 32 0 0 1 0-45.248L416 96l4.48-3.776A32 32 0 0 1 461.248 96l3.712 4.48a32.064 32.064 0 0 1-3.712 40.832L218.56 384H928a32 32 0 1 1 0 64H141.248a32 32 0 0 1-22.592-9.344zM64 608a32 32 0 0 1 32-32h786.752a32 32 0 0 1 22.656 54.592L608 928l-4.48 3.776a32.064 32.064 0 0 1-40.832-49.024L805.632 640H96a32 32 0 0 1-32-32"})]))}}),r7=t7,a7=p({name:"TakeawayBox",__name:"takeaway-box",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M832 384H192v448h640zM96 320h832V128H96zm800 64v480a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V384H64a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32h896a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32zM416 512h192a32 32 0 0 1 0 64H416a32 32 0 0 1 0-64"})]))}}),n7=a7,l7=p({name:"Ticket",__name:"ticket",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M640 832H64V640a128 128 0 1 0 0-256V192h576v160h64V192h256v192a128 128 0 1 0 0 256v192H704V672h-64zm0-416v192h64V416z"})]))}}),s7=l7,o7=p({name:"Tickets",__name:"tickets",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M192 128v768h640V128zm-32-64h704a32 32 0 0 1 32 32v832a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m160 448h384v64H320zm0-192h192v64H320zm0 384h384v64H320z"})]))}}),u7=o7,c7=p({name:"Timer",__name:"timer",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 896a320 320 0 1 0 0-640 320 320 0 0 0 0 640m0 64a384 384 0 1 1 0-768 384 384 0 0 1 0 768"}),o("path",{fill:"currentColor",d:"M512 320a32 32 0 0 1 32 32l-.512 224a32 32 0 1 1-64 0L480 352a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M448 576a64 64 0 1 0 128 0 64 64 0 1 0-128 0m96-448v128h-64V128h-96a32 32 0 0 1 0-64h256a32 32 0 1 1 0 64z"})]))}}),i7=c7,_7=p({name:"ToiletPaper",__name:"toilet-paper",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M595.2 128H320a192 192 0 0 0-192 192v576h384V352c0-90.496 32.448-171.2 83.2-224M736 64c123.712 0 224 128.96 224 288S859.712 640 736 640H576v320H64V320A256 256 0 0 1 320 64zM576 352v224h160c84.352 0 160-97.28 160-224s-75.648-224-160-224-160 97.28-160 224"}),o("path",{fill:"currentColor",d:"M736 448c-35.328 0-64-43.008-64-96s28.672-96 64-96 64 43.008 64 96-28.672 96-64 96"})]))}}),p7=_7,h7=p({name:"Tools",__name:"tools",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M764.416 254.72a351.68 351.68 0 0 1 86.336 149.184H960v192.064H850.752a351.68 351.68 0 0 1-86.336 149.312l54.72 94.72-166.272 96-54.592-94.72a352.64 352.64 0 0 1-172.48 0L371.136 936l-166.272-96 54.72-94.72a351.68 351.68 0 0 1-86.336-149.312H64v-192h109.248a351.68 351.68 0 0 1 86.336-149.312L204.8 160l166.208-96h.192l54.656 94.592a352.64 352.64 0 0 1 172.48 0L652.8 64h.128L819.2 160l-54.72 94.72zM704 499.968a192 192 0 1 0-384 0 192 192 0 0 0 384 0"})]))}}),f7=h7,v7=p({name:"TopLeft",__name:"top-left",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 256h416a32 32 0 1 0 0-64H224a32 32 0 0 0-32 32v448a32 32 0 0 0 64 0z"}),o("path",{fill:"currentColor",d:"M246.656 201.344a32 32 0 0 0-45.312 45.312l544 544a32 32 0 0 0 45.312-45.312l-544-544z"})]))}}),d7=v7,m7=p({name:"TopRight",__name:"top-right",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M768 256H353.6a32 32 0 1 1 0-64H800a32 32 0 0 1 32 32v448a32 32 0 0 1-64 0z"}),o("path",{fill:"currentColor",d:"M777.344 201.344a32 32 0 0 1 45.312 45.312l-544 544a32 32 0 0 1-45.312-45.312l544-544z"})]))}}),g7=m7,w7=p({name:"Top",__name:"top",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M572.235 205.282v600.365a30.118 30.118 0 1 1-60.235 0V205.282L292.382 438.633a28.913 28.913 0 0 1-42.646 0 33.43 33.43 0 0 1 0-45.236l271.058-288.045a28.913 28.913 0 0 1 42.647 0L834.5 393.397a33.43 33.43 0 0 1 0 45.176 28.913 28.913 0 0 1-42.647 0l-219.618-233.23z"})]))}}),x7=w7,y7=p({name:"TrendCharts",__name:"trend-charts",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 896V128h768v768zm291.712-327.296 128 102.4 180.16-201.792-47.744-42.624-139.84 156.608-128-102.4-180.16 201.792 47.744 42.624 139.84-156.608zM816 352a48 48 0 1 0-96 0 48 48 0 0 0 96 0"})]))}}),C7=y7,z7=p({name:"TrophyBase",__name:"trophy-base",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M918.4 201.6c-6.4-6.4-12.8-9.6-22.4-9.6H768V96c0-9.6-3.2-16-9.6-22.4C752 67.2 745.6 64 736 64H288c-9.6 0-16 3.2-22.4 9.6C259.2 80 256 86.4 256 96v96H128c-9.6 0-16 3.2-22.4 9.6-6.4 6.4-9.6 16-9.6 22.4 3.2 108.8 25.6 185.6 64 224 34.4 34.4 77.56 55.65 127.65 61.99 10.91 20.44 24.78 39.25 41.95 56.41 40.86 40.86 91 65.47 150.4 71.9V768h-96c-9.6 0-16 3.2-22.4 9.6-6.4 6.4-9.6 12.8-9.6 22.4s3.2 16 9.6 22.4c6.4 6.4 12.8 9.6 22.4 9.6h256c9.6 0 16-3.2 22.4-9.6 6.4-6.4 9.6-12.8 9.6-22.4s-3.2-16-9.6-22.4c-6.4-6.4-12.8-9.6-22.4-9.6h-96V637.26c59.4-7.71 109.54-30.01 150.4-70.86 17.2-17.2 31.51-36.06 42.81-56.55 48.93-6.51 90.02-27.7 126.79-61.85 38.4-38.4 60.8-112 64-224 0-6.4-3.2-16-9.6-22.4zM256 438.4c-19.2-6.4-35.2-19.2-51.2-35.2-22.4-22.4-35.2-70.4-41.6-147.2H256zm390.4 80C608 553.6 566.4 576 512 576s-99.2-19.2-134.4-57.6C342.4 480 320 438.4 320 384V128h384v256c0 54.4-19.2 99.2-57.6 134.4m172.8-115.2c-16 16-32 25.6-51.2 35.2V256h92.8c-6.4 76.8-19.2 124.8-41.6 147.2zM768 896H256c-9.6 0-16 3.2-22.4 9.6-6.4 6.4-9.6 12.8-9.6 22.4s3.2 16 9.6 22.4c6.4 6.4 12.8 9.6 22.4 9.6h512c9.6 0 16-3.2 22.4-9.6 6.4-6.4 9.6-12.8 9.6-22.4s-3.2-16-9.6-22.4c-6.4-6.4-12.8-9.6-22.4-9.6"})]))}}),M7=z7,b7=p({name:"Trophy",__name:"trophy",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M480 896V702.08A256.256 256.256 0 0 1 264.064 512h-32.64a96 96 0 0 1-91.968-68.416L93.632 290.88a76.8 76.8 0 0 1 73.6-98.88H256V96a32 32 0 0 1 32-32h448a32 32 0 0 1 32 32v96h88.768a76.8 76.8 0 0 1 73.6 98.88L884.48 443.52A96 96 0 0 1 792.576 512h-32.64A256.256 256.256 0 0 1 544 702.08V896h128a32 32 0 1 1 0 64H352a32 32 0 1 1 0-64zm224-448V128H320v320a192 192 0 1 0 384 0m64 0h24.576a32 32 0 0 0 30.656-22.784l45.824-152.768A12.8 12.8 0 0 0 856.768 256H768zm-512 0V256h-88.768a12.8 12.8 0 0 0-12.288 16.448l45.824 152.768A32 32 0 0 0 231.424 448z"})]))}}),H7=b7,E7=p({name:"TurnOff",__name:"turn-off",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M329.956 257.138a254.862 254.862 0 0 0 0 509.724h364.088a254.862 254.862 0 0 0 0-509.724zm0-72.818h364.088a327.68 327.68 0 1 1 0 655.36H329.956a327.68 327.68 0 1 1 0-655.36z"}),o("path",{fill:"currentColor",d:"M329.956 621.227a109.227 109.227 0 1 0 0-218.454 109.227 109.227 0 0 0 0 218.454m0 72.817a182.044 182.044 0 1 1 0-364.088 182.044 182.044 0 0 1 0 364.088"})]))}}),V7=E7,B7=p({name:"Umbrella",__name:"umbrella",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M320 768a32 32 0 1 1 64 0 64 64 0 0 0 128 0V512H64a448 448 0 1 1 896 0H576v256a128 128 0 1 1-256 0m570.688-320a384.128 384.128 0 0 0-757.376 0z"})]))}}),A7=B7,L7=p({name:"Unlock",__name:"unlock",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M224 448a32 32 0 0 0-32 32v384a32 32 0 0 0 32 32h576a32 32 0 0 0 32-32V480a32 32 0 0 0-32-32zm0-64h576a96 96 0 0 1 96 96v384a96 96 0 0 1-96 96H224a96 96 0 0 1-96-96V480a96 96 0 0 1 96-96"}),o("path",{fill:"currentColor",d:"M512 544a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V576a32 32 0 0 1 32-32m178.304-295.296A192.064 192.064 0 0 0 320 320v64h352l96 38.4V448H256V320a256 256 0 0 1 493.76-95.104z"})]))}}),S7=L7,F7=p({name:"UploadFilled",__name:"upload-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M544 864V672h128L512 480 352 672h128v192H320v-1.6c-5.376.32-10.496 1.6-16 1.6A240 240 0 0 1 64 624c0-123.136 93.12-223.488 212.608-237.248A239.808 239.808 0 0 1 512 192a239.872 239.872 0 0 1 235.456 194.752c119.488 13.76 212.48 114.112 212.48 237.248a240 240 0 0 1-240 240c-5.376 0-10.56-1.28-16-1.6v1.6z"})]))}}),P7=F7,D7=p({name:"Upload",__name:"upload",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 832h704a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64m384-578.304V704h-64V247.296L237.248 490.048 192 444.8 508.8 128l316.8 316.8-45.312 45.248z"})]))}}),T7=D7,R7=p({name:"UserFilled",__name:"user-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M288 320a224 224 0 1 0 448 0 224 224 0 1 0-448 0m544 608H160a32 32 0 0 1-32-32v-96a160 160 0 0 1 160-160h448a160 160 0 0 1 160 160v96a32 32 0 0 1-32 32z"})]))}}),O7=R7,k7=p({name:"User",__name:"user",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 512a192 192 0 1 0 0-384 192 192 0 0 0 0 384m0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512m320 320v-96a96 96 0 0 0-96-96H288a96 96 0 0 0-96 96v96a32 32 0 1 1-64 0v-96a160 160 0 0 1 160-160h448a160 160 0 0 1 160 160v96a32 32 0 1 1-64 0"})]))}}),I7=k7,N7=p({name:"Van",__name:"van",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128.896 736H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v96h164.544a32 32 0 0 1 31.616 27.136l54.144 352A32 32 0 0 1 922.688 736h-91.52a144 144 0 1 1-286.272 0H415.104a144 144 0 1 1-286.272 0zm23.36-64a143.872 143.872 0 0 1 239.488 0H568.32c17.088-25.6 42.24-45.376 71.744-55.808V256H128v416zm655.488 0h77.632l-19.648-128H704v64.896A144 144 0 0 1 807.744 672m48.128-192-14.72-96H704v96h151.872M688 832a80 80 0 1 0 0-160 80 80 0 0 0 0 160m-416 0a80 80 0 1 0 0-160 80 80 0 0 0 0 160"})]))}}),$7=N7,q7=p({name:"VideoCameraFilled",__name:"video-camera-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m768 576 192-64v320l-192-64v96a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V480a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32zM192 768v64h384v-64zm192-480a160 160 0 0 1 320 0 160 160 0 0 1-320 0m64 0a96 96 0 1 0 192.064-.064A96 96 0 0 0 448 288m-320 32a128 128 0 1 1 256.064.064A128 128 0 0 1 128 320m64 0a64 64 0 1 0 128 0 64 64 0 0 0-128 0"})]))}}),j7=q7,K7=p({name:"VideoCamera",__name:"video-camera",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M704 768V256H128v512zm64-416 192-96v512l-192-96v128a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32zm0 71.552v176.896l128 64V359.552zM192 320h192v64H192z"})]))}}),U7=K7,W7=p({name:"VideoPause",__name:"video-pause",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768m-96-544q32 0 32 32v256q0 32-32 32t-32-32V384q0-32 32-32m192 0q32 0 32 32v256q0 32-32 32t-32-32V384q0-32 32-32"})]))}}),G7=W7,J7=p({name:"VideoPlay",__name:"video-play",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768m-48-247.616L668.608 512 464 375.616zm10.624-342.656 249.472 166.336a48 48 0 0 1 0 79.872L474.624 718.272A48 48 0 0 1 400 678.336V345.6a48 48 0 0 1 74.624-39.936z"})]))}}),Z7=J7,Y7=p({name:"View",__name:"view",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 160c320 0 512 352 512 352S832 864 512 864 0 512 0 512s192-352 512-352m0 64c-225.28 0-384.128 208.064-436.8 288 52.608 79.872 211.456 288 436.8 288 225.28 0 384.128-208.064 436.8-288-52.608-79.872-211.456-288-436.8-288zm0 64a224 224 0 1 1 0 448 224 224 0 0 1 0-448m0 64a160.192 160.192 0 0 0-160 160c0 88.192 71.744 160 160 160s160-71.808 160-160-71.744-160-160-160"})]))}}),Q7=Y7,X7=p({name:"WalletFilled",__name:"wallet-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M688 512a112 112 0 1 0 0 224h208v160H128V352h768v160zm32 160h-32a48 48 0 0 1 0-96h32a48 48 0 0 1 0 96m-80-544 128 160H384z"})]))}}),ef=X7,tf=p({name:"Wallet",__name:"wallet",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M640 288h-64V128H128v704h384v32a32 32 0 0 0 32 32H96a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32h512a32 32 0 0 1 32 32z"}),o("path",{fill:"currentColor",d:"M128 320v512h768V320zm-32-64h832a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M704 640a64 64 0 1 1 0-128 64 64 0 0 1 0 128"})]))}}),rf=tf,af=p({name:"WarnTriangleFilled",__name:"warn-triangle-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M928.99 755.83 574.6 203.25c-12.89-20.16-36.76-32.58-62.6-32.58s-49.71 12.43-62.6 32.58L95.01 755.83c-12.91 20.12-12.9 44.91.01 65.03 12.92 20.12 36.78 32.51 62.59 32.49h708.78c25.82.01 49.68-12.37 62.59-32.49 12.91-20.12 12.92-44.91.01-65.03M554.67 768h-85.33v-85.33h85.33zm0-426.67v298.66h-85.33V341.32z"})]))}}),nf=af,lf=p({name:"WarningFilled",__name:"warning-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 192a58.432 58.432 0 0 0-58.24 63.744l23.36 256.384a35.072 35.072 0 0 0 69.76 0l23.296-256.384A58.432 58.432 0 0 0 512 256m0 512a51.2 51.2 0 1 0 0-102.4 51.2 51.2 0 0 0 0 102.4"})]))}}),sf=lf,of=p({name:"Warning",__name:"warning",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768m48-176a48 48 0 1 1-96 0 48 48 0 0 1 96 0m-48-464a32 32 0 0 1 32 32v288a32 32 0 0 1-64 0V288a32 32 0 0 1 32-32"})]))}}),uf=of,cf=p({name:"Watch",__name:"watch",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 768a256 256 0 1 0 0-512 256 256 0 0 0 0 512m0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640"}),o("path",{fill:"currentColor",d:"M480 352a32 32 0 0 1 32 32v160a32 32 0 0 1-64 0V384a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M480 512h128q32 0 32 32t-32 32H480q-32 0-32-32t32-32m128-256V128H416v128h-64V64h320v192zM416 768v128h192V768h64v192H352V768z"})]))}}),_f=cf,pf=p({name:"Watermelon",__name:"watermelon",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m683.072 600.32-43.648 162.816-61.824-16.512 53.248-198.528L576 493.248l-158.4 158.4-45.248-45.248 158.4-158.4-55.616-55.616-198.528 53.248-16.512-61.824 162.816-43.648L282.752 200A384 384 0 0 0 824 741.248zm231.552 141.056a448 448 0 1 1-632-632l632 632"})]))}}),hf=pf,ff=p({name:"WindPower",__name:"wind-power",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 64q32 0 32 32v832q0 32-32 32t-32-32V96q0-32 32-32m416 354.624 128-11.584V168.96l-128-11.52v261.12zm-64 5.824V151.552L320 134.08V160h-64V64l616.704 56.064A96 96 0 0 1 960 215.68v144.64a96 96 0 0 1-87.296 95.616L256 512V224h64v217.92zm256-23.232 98.88-8.96A32 32 0 0 0 896 360.32V215.68a32 32 0 0 0-29.12-31.872l-98.88-8.96z"})]))}}),vf=ff,df=p({name:"ZoomIn",__name:"zoom-in",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704m-32-384v-96a32 32 0 0 1 64 0v96h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64z"})]))}}),mf=df,gf=p({name:"ZoomOut",__name:"zoom-out",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704M352 448h256a32 32 0 0 1 0 64H352a32 32 0 0 1 0-64"})]))}}),wf=gf;const xf=Object.freeze(Object.defineProperty({__proto__:null,AddLocation:Es,Aim:Bs,AlarmClock:Ls,Apple:Fs,ArrowDown:Rs,ArrowDownBold:Ds,ArrowLeft:Ns,ArrowLeftBold:ks,ArrowRight:Ks,ArrowRightBold:qs,ArrowUp:Js,ArrowUpBold:Ws,Avatar:Ys,Back:Xs,Baseball:to,Basketball:ao,Bell:oo,BellFilled:lo,Bicycle:co,Bottom:vo,BottomLeft:_o,BottomRight:ho,Bowl:go,Box:xo,Briefcase:Co,Brush:Ho,BrushFilled:Mo,Burger:Vo,Calendar:Ao,Camera:Po,CameraFilled:So,CaretBottom:To,CaretLeft:Oo,CaretRight:Io,CaretTop:$o,Cellphone:jo,ChatDotRound:Uo,ChatDotSquare:Go,ChatLineRound:Zo,ChatLineSquare:Qo,ChatRound:eu,ChatSquare:ru,Check:nu,Checked:su,Cherry:uu,Chicken:iu,ChromeFilled:pu,CircleCheck:du,CircleCheckFilled:fu,CircleClose:xu,CircleCloseFilled:gu,CirclePlus:Mu,CirclePlusFilled:Cu,Clock:Hu,Close:Au,CloseBold:Vu,Cloudy:Su,Coffee:Tu,CoffeeCup:Pu,Coin:Ou,ColdDrink:Iu,Collection:ju,CollectionTag:$u,Comment:Uu,Compass:Gu,Connection:Zu,Coordinate:Qu,CopyDocument:ec,Cpu:rc,CreditCard:nc,Crop:sc,DArrowLeft:uc,DArrowRight:ic,DCaret:pc,DataAnalysis:fc,DataBoard:dc,DataLine:gc,Delete:Mc,DeleteFilled:xc,DeleteLocation:Cc,Dessert:Hc,Discount:Vc,Dish:Sc,DishDot:Ac,Document:jc,DocumentAdd:Pc,DocumentChecked:Tc,DocumentCopy:Oc,DocumentDelete:Ic,DocumentRemove:$c,Download:Uc,Drizzling:Gc,Edit:Qc,EditPen:Zc,Eleme:ri,ElemeFilled:ei,ElementPlus:ni,Expand:si,Failed:ui,Female:ii,Files:pi,Film:fi,Filter:di,Finished:gi,FirstAidKit:xi,Flag:Ci,Fold:Mi,Folder:Ti,FolderAdd:Hi,FolderChecked:Vi,FolderDelete:Ai,FolderOpened:Si,FolderRemove:Pi,Food:Oi,Football:Ii,ForkSpoon:$i,Fries:ji,FullScreen:Ui,Goblet:e5,GobletFull:Gi,GobletSquare:Qi,GobletSquareFull:Zi,GoldMedal:r5,Goods:s5,GoodsFilled:n5,Grape:u5,Grid:i5,Guide:p5,Handbag:f5,Headset:d5,Help:x5,HelpFilled:g5,Hide:C5,Histogram:M5,HomeFilled:H5,HotWater:V5,House:A5,IceCream:T5,IceCreamRound:S5,IceCreamSquare:P5,IceDrink:O5,IceTea:I5,InfoFilled:$5,Iphone:j5,Key:U5,KnifeFork:G5,Lightning:Z5,Link:Q5,List:e9,Loading:r9,Location:u9,LocationFilled:n9,LocationInformation:s9,Lock:i9,Lollipop:p9,MagicStick:f9,Magnet:d9,Male:g9,Management:x9,MapLocation:C9,Medal:M9,Memo:H9,Menu:V9,Message:S9,MessageBox:A9,Mic:P9,Microphone:T9,MilkTea:O9,Minus:I9,Money:$9,Monitor:j9,Moon:G9,MoonNight:U9,More:Q9,MoreFilled:Z9,MostlyCloudy:e_,Mouse:r_,Mug:n_,Mute:u_,MuteNotification:s_,NoSmoking:i_,Notebook:p_,Notification:f_,Odometer:d_,OfficeBuilding:g_,Open:x_,Operation:C_,Opportunity:M_,Orange:H_,Paperclip:V_,PartlyCloudy:A_,Pear:S_,Phone:T_,PhoneFilled:P_,Picture:$_,PictureFilled:O_,PictureRounded:I_,PieChart:j_,Place:U_,Platform:G_,Plus:Z_,Pointer:Q_,Position:ep,Postcard:rp,Pouring:np,Present:sp,PriceTag:up,Printer:ip,Promotion:pp,QuartzWatch:fp,QuestionFilled:dp,Rank:gp,Reading:Cp,ReadingLamp:xp,Refresh:Vp,RefreshLeft:Mp,RefreshRight:Hp,Refrigerator:Ap,Remove:Pp,RemoveFilled:Sp,Right:Tp,ScaleToOriginal:Op,School:Ip,Scissor:$p,Search:jp,Select:Up,Sell:Gp,SemiSelect:Zp,Service:Qp,SetUp:eh,Setting:rh,Share:nh,Ship:sh,Shop:uh,ShoppingBag:ih,ShoppingCart:fh,ShoppingCartFull:ph,ShoppingTrolley:dh,Smoking:gh,Soccer:xh,SoldOut:Ch,Sort:Vh,SortDown:Mh,SortUp:Hh,Stamp:Ah,Star:Ph,StarFilled:Sh,Stopwatch:Th,SuccessFilled:Oh,Sugar:Ih,Suitcase:jh,SuitcaseLine:$h,Sunny:Uh,Sunrise:Gh,Sunset:Zh,Switch:r7,SwitchButton:Qh,SwitchFilled:e7,TakeawayBox:n7,Ticket:s7,Tickets:u7,Timer:i7,ToiletPaper:p7,Tools:f7,Top:x7,TopLeft:d7,TopRight:g7,TrendCharts:C7,Trophy:H7,TrophyBase:M7,TurnOff:V7,Umbrella:A7,Unlock:S7,Upload:T7,UploadFilled:P7,User:I7,UserFilled:O7,Van:$7,VideoCamera:U7,VideoCameraFilled:j7,VideoPause:G7,VideoPlay:Z7,View:Q7,Wallet:rf,WalletFilled:ef,WarnTriangleFilled:nf,Warning:uf,WarningFilled:sf,Watch:_f,Watermelon:hf,WindPower:vf,ZoomIn:mf,ZoomOut:wf},Symbol.toStringTag,{value:"Module"})),yf=I3({a11y:{type:Boolean,default:!0},locale:{type:A1(Object)},size:ys,button:{type:A1(Object)},experimentalFeatures:{type:A1(Object)},keyboardNavigation:{type:Boolean,default:!0},message:{type:A1(Object)},zIndex:Number,namespace:{type:String,default:"el"},...zs}),Cf={},zf=p({name:"ElConfigProvider",props:yf,setup(e,{slots:t}){j2(()=>e.message,a=>{Object.assign(Cf,a??{})},{immediate:!0,deep:!0});const r=q3(e);return()=>Z8(t,"default",{config:r==null?void 0:r.value})}}),Mf=bs(zf);var bf={name:"zh-cn",el:{breadcrumb:{label:"面包屑"},colorpicker:{confirm:"确定",clear:"清空",defaultLabel:"颜色选择器",description:"当前颜色 {color},按 Enter 键选择新颜色",alphaLabel:"选择透明度的值"},datepicker:{now:"此刻",today:"今天",cancel:"取消",clear:"清空",confirm:"确定",dateTablePrompt:"使用方向键与 Enter 键可选择日期",monthTablePrompt:"使用方向键与 Enter 键可选择月份",yearTablePrompt:"使用方向键与 Enter 键可选择年份",selectedDate:"已选日期",selectDate:"选择日期",selectTime:"选择时间",startDate:"开始日期",startTime:"开始时间",endDate:"结束日期",endTime:"结束时间",prevYear:"前一年",nextYear:"后一年",prevMonth:"上个月",nextMonth:"下个月",year:"年",month1:"1 月",month2:"2 月",month3:"3 月",month4:"4 月",month5:"5 月",month6:"6 月",month7:"7 月",month8:"8 月",month9:"9 月",month10:"10 月",month11:"11 月",month12:"12 月",weeks:{sun:"日",mon:"一",tue:"二",wed:"三",thu:"四",fri:"五",sat:"六"},weeksFull:{sun:"星期日",mon:"星期一",tue:"星期二",wed:"星期三",thu:"星期四",fri:"星期五",sat:"星期六"},months:{jan:"一月",feb:"二月",mar:"三月",apr:"四月",may:"五月",jun:"六月",jul:"七月",aug:"八月",sep:"九月",oct:"十月",nov:"十一月",dec:"十二月"}},inputNumber:{decrease:"减少数值",increase:"增加数值"},select:{loading:"加载中",noMatch:"无匹配数据",noData:"无数据",placeholder:"请选择"},dropdown:{toggleDropdown:"切换下拉选项"},mention:{loading:"加载中"},cascader:{noMatch:"无匹配数据",loading:"加载中",placeholder:"请选择",noData:"暂无数据"},pagination:{goto:"前往",pagesize:"条/页",total:"共 {total} 条",pageClassifier:"页",page:"页",prev:"上一页",next:"下一页",currentPage:"第 {pager} 页",prevPages:"向前 {pager} 页",nextPages:"向后 {pager} 页",deprecationWarning:"你使用了一些已被废弃的用法,请参考 el-pagination 的官方文档"},dialog:{close:"关闭此对话框"},drawer:{close:"关闭此对话框"},messagebox:{title:"提示",confirm:"确定",cancel:"取消",error:"输入的数据不合法!",close:"关闭此对话框"},upload:{deleteTip:"按 delete 键可删除",delete:"删除",preview:"查看图片",continue:"继续上传"},slider:{defaultLabel:"滑块介于 {min} 至 {max}",defaultRangeStartLabel:"选择起始值",defaultRangeEndLabel:"选择结束值"},table:{emptyText:"暂无数据",confirmFilter:"筛选",resetFilter:"重置",clearFilter:"全部",sumText:"合计"},tour:{next:"下一步",previous:"上一步",finish:"结束导览"},tree:{emptyText:"暂无数据"},transfer:{noMatch:"无匹配数据",noData:"无数据",titles:["列表 1","列表 2"],filterPlaceholder:"请输入搜索内容",noCheckedFormat:"共 {total} 项",hasCheckedFormat:"已选 {checked}/{total} 项"},image:{error:"加载失败"},pageHeader:{title:"返回"},popconfirm:{confirmButtonText:"确定",cancelButtonText:"取消"},carousel:{leftArrow:"上一张幻灯片",rightArrow:"下一张幻灯片",indicator:"幻灯片切换至索引 {index}"}}};const Hf={__name:"App",setup(e){return(t,r)=>{const a=J8("router-view"),n=Mf;return i(),N1(n,{locale:M0(bf)},{default:d4(()=>[z0(a)]),_:1},8,["locale"])}}};window._iconfont_svg_string_4826982='',(e=>{var t=(r=(r=document.getElementsByTagName("script"))[r.length-1]).getAttribute("data-injectcss"),r=r.getAttribute("data-disable-injectsvg");if(!r){var a,n,l,s,u,c=function(v,g){g.parentNode.insertBefore(v,g)};if(t&&!e.__iconfont__svg__cssinject__){e.__iconfont__svg__cssinject__=!0;try{document.write("")}catch(v){console&&console.log(v)}}a=function(){var v,g=document.createElement("div");g.innerHTML=e._iconfont_svg_string_4826982,(g=g.getElementsByTagName("svg")[0])&&(g.setAttribute("aria-hidden","true"),g.style.position="absolute",g.style.width=0,g.style.height=0,g.style.overflow="hidden",g=g,(v=document.body).firstChild?c(g,v.firstChild):v.appendChild(g))},document.addEventListener?~["complete","loaded","interactive"].indexOf(document.readyState)?setTimeout(a,0):(n=function(){document.removeEventListener("DOMContentLoaded",n,!1),a()},document.addEventListener("DOMContentLoaded",n,!1)):document.attachEvent&&(l=a,s=e.document,u=!1,_(),s.onreadystatechange=function(){s.readyState=="complete"&&(s.onreadystatechange=null,f())})}function f(){u||(u=!0,l())}function _(){try{s.documentElement.doScroll("left")}catch{return void setTimeout(_,50)}f()}})(window);let w6=ga(Hf);for(const[e,t]of Object.entries(xf))w6.component(e,t);w6.use(b3);w6.mount("#app");export{s2 as $,u1 as A,X1 as B,I8 as C,s6 as D,a6 as E,S0 as F,V4 as G,Tf as H,Z8 as I,Lf as J,o0 as K,bs as L,S2 as M,k0 as N,g2 as O,le as P,B0 as Q,Uf as R,G2 as S,Rf as T,Ar as U,h0 as V,o4 as W,Ql as X,hs as Y,_s as Z,k3 as _,$n as a,Yl as a$,K as a0,Kf as a1,j as a2,Af as a3,q8 as a4,An as a5,ee as a6,N8 as a7,a8,_6 as a9,i7 as aA,P7 as aB,Ou as aC,xs as aD,Ef as aE,ev as aF,lv as aG,uv as aH,ga as aI,sv as aJ,w2 as aK,qf as aL,d6 as aM,h6 as aN,K1 as aO,Vt as aP,pl as aQ,vl as aR,Jn as aS,B3 as aT,Sn as aU,_l as aV,J2 as aW,Rl as aX,Xn as aY,S3 as aZ,F3 as a_,mr as aa,gs as ab,v0 as ac,l8 as ad,$3 as ae,P1 as af,rv as ag,Pf as ah,Ff as ai,dp as aj,Br as ak,sf as al,du as am,xu as an,nu as ao,Au as ap,Sf as aq,Nf as ar,If as as,jc as at,mf as au,Mc as av,kf as aw,It as ax,nv as ay,I7 as az,g6 as b,Xl as b0,Yf as b1,St as b2,tv as b3,Jf as b4,Zf as b5,Qf as b6,qe as b7,Xf as b8,N0 as b9,Wf as ba,jf as bb,r9 as bc,$5 as bd,gu as be,Oh as bf,ys as bg,Gf as bh,A4 as bi,av as bj,Df as bk,Q7 as bl,C5 as bm,m1 as bn,$f as bo,ov as bp,b3 as bq,I3 as c,p as d,L3 as e,x0 as f,l0 as g,N1 as h,v6 as i,i as j,Bf as k,o as l,M0 as m,Je as n,B4 as o,Ge as p,h as q,X0 as r,z0 as s,Vf as t,Ln as u,Of as v,d4 as w,ts as x,A1 as y,j2 as z}; diff --git a/dev-assistant-service/src/main/resources/static/index.html b/dev-assistant-service/src/main/resources/static/index.html new file mode 100644 index 0000000..4eea933 --- /dev/null +++ b/dev-assistant-service/src/main/resources/static/index.html @@ -0,0 +1,14 @@ + + + + + + + 开发助手 + + + + + + + diff --git a/dev-assistant-service/src/main/resources/static/logo.png b/dev-assistant-service/src/main/resources/static/logo.png new file mode 100644 index 0000000..2e9c59e Binary files /dev/null and b/dev-assistant-service/src/main/resources/static/logo.png differ diff --git a/dev-assistant-web/index.html b/dev-assistant-web/index.html index 3267bef..fd1b4df 100644 --- a/dev-assistant-web/index.html +++ b/dev-assistant-web/index.html @@ -2,7 +2,7 @@ - + 开发助手 diff --git a/dev-assistant-web/public/logo.png b/dev-assistant-web/public/logo.png new file mode 100644 index 0000000..2e9c59e Binary files /dev/null and b/dev-assistant-web/public/logo.png differ diff --git a/dev-assistant-web/src/App.vue b/dev-assistant-web/src/App.vue index 843adce..7db5bcb 100644 --- a/dev-assistant-web/src/App.vue +++ b/dev-assistant-web/src/App.vue @@ -11,6 +11,24 @@ import {zhCn} from "element-plus/es/locale/index"; diff --git a/dev-assistant-web/src/api/file.js b/dev-assistant-web/src/api/file.js new file mode 100644 index 0000000..8d30db1 --- /dev/null +++ b/dev-assistant-web/src/api/file.js @@ -0,0 +1,5 @@ +import http from '~/axios/index.js'; + +export const getFileListApi = data => http.post("/file/getFileList", data) +export const delFileApi = data => http.post("/file/delFile", data) +export const downloadFileApi = data => http.post("/note/downloadFile", data) \ No newline at end of file diff --git a/dev-assistant-web/src/api/login.js b/dev-assistant-web/src/api/login.js new file mode 100644 index 0000000..5e8940a --- /dev/null +++ b/dev-assistant-web/src/api/login.js @@ -0,0 +1,3 @@ +import http from '~/axios/index.js'; + +export const loginApi = data => http.post("/authentication/login", data) \ No newline at end of file diff --git a/dev-assistant-web/src/api/note.js b/dev-assistant-web/src/api/note.js new file mode 100644 index 0000000..f1a2fa7 --- /dev/null +++ b/dev-assistant-web/src/api/note.js @@ -0,0 +1,6 @@ +import http from '~/axios/index.js'; + +export const addNoteApi = data => http.post("/note/addNote", data) +export const updateNoteApi = data => http.post("/note/updateNote", data) +export const delNoteApi = data => http.post("/note/delNote", data) +export const getNoteListApi = data => http.post("/note/getNoteList", data) \ No newline at end of file diff --git a/dev-assistant-web/src/assets/background.svg b/dev-assistant-web/src/assets/background.svg new file mode 100644 index 0000000..bdfbb99 --- /dev/null +++ b/dev-assistant-web/src/assets/background.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dev-assistant-web/src/axios/index.js b/dev-assistant-web/src/axios/index.js new file mode 100644 index 0000000..7823a9b --- /dev/null +++ b/dev-assistant-web/src/axios/index.js @@ -0,0 +1,57 @@ +import axios from 'axios'; +import {ElNotification} from "element-plus"; +import router from "~/router"; + +const http = axios.create(); + +// 添加请求拦截器 +http.interceptors.request.use(function (config) { + return config; +}, function (error) { + console.log('error.response1', error.response) + return Promise.reject(error); +}); + +// 添加响应拦截器 +http.interceptors.response.use(function (response) { + if (response.data.code === 400) { + let content = response.data.message + ElNotification({ + title: '请求参数错误', + message: content, + position: 'top-right', + type: 'error', + }) + } + return response; +}, function (error) { + if (error.response.status === 401) { + ElNotification({ + title: '请重新登陆', + message: '请重新登陆', + position: 'top-right', + type: 'error', + }) + router.push({path: '/login'}) + } else if (error.response.status === 403) { + let content = error.response.data.message + ElNotification({ + title: '操作错误', + message: content, + position: 'top-right', + type: 'error', + }) + } else if (error.response.status === 500) { + let content = error.response.data.message + ElNotification({ + title: '系统错误', + message: content, + position: 'top-right', + type: 'error', + }) + } + return Promise.reject(error); +}); + +export default http + diff --git a/dev-assistant-web/src/views/Index.vue b/dev-assistant-web/src/views/Index.vue index 06d2239..936b6f4 100644 --- a/dev-assistant-web/src/views/Index.vue +++ b/dev-assistant-web/src/views/Index.vue @@ -1,8 +1,12 @@ + - - + + + + + 笔记 + + + + 新建笔记 + + + + + + + - - - - - - - - - - 新建笔记 - - - - - - - {{ note.content }} - - - - - - - - {{ note.updateIp }} - - - - - - {{ note.updateTime }} - - - - 修改 - 删除 - - - - - - - - - - - - - - - 拖动文件到这里 或 点击上传 - - - - - - - - - - - - {{ file.fileName }} - - - - - - - - - {{ file.uploadIp }} - - - - - - {{ file.uploadTime }} - - - - 下载 - 删除 - + + + + + {{ note.content }} + + + + + + + + + {{ note.updateIp }} + + + + + + {{ note.updateTime }} + - - - - - + + 修改 + + + 删除 + + + + + + + + + + + + + 文件 + + + + + + + + 拖动文件到这里 或 点击上传 + + + + + + + + + + + + + + + + + {{ file.fileName }} + + + + + + + + {{ formatFileSize(file.fileSize) }} + + + + + + + + {{ file.uploadIp }} + + + + + + + + + + + + {{ file.uploadTime }} + + + + 下载 + + + 删除 + + + + + + + + + + + - - + + - 取消 - 保存 + 保存 \ No newline at end of file diff --git a/dev-assistant-web/src/views/Login.vue b/dev-assistant-web/src/views/Login.vue index f79cdd8..5ca5bea 100644 --- a/dev-assistant-web/src/views/Login.vue +++ b/dev-assistant-web/src/views/Login.vue @@ -1,11 +1,125 @@ - + + + + + 通用登陆页 + + + + + + + 登录 + + + {{ message }} + + + + \ No newline at end of file diff --git a/dev-assistant-web/vite.config.js b/dev-assistant-web/vite.config.js index a07fde7..0d832f1 100644 --- a/dev-assistant-web/vite.config.js +++ b/dev-assistant-web/vite.config.js @@ -14,8 +14,16 @@ export default defineConfig({ '~/': `${path.resolve(__dirname, 'src')}/`, } }, server: { - host: '127.0.0.1', port: 80 - }, plugins: [vue(), AutoImport({ + host: '127.0.0.1', port: 80, + proxy: { + '/api': { + target: 'http://127.0.0.1:8080', + changeOrigin: true, + rewrite: (path) => path.replace(/^\/api/, '') + } + } + }, + plugins: [vue(), AutoImport({ imports: ['vue'], resolvers: [ElementPlusResolver(), IconsResolver({ prefix: 'Icon', })]
{const{el:M,type:L,transition:B,children:V,shapeFlag:E}=d;if(E&6){K0(d.component.subTree,m,x,C);return}if(E&128){d.suspense.move(m,x,C);return}if(E&64){L.move(d,m,x,I);return}if(L===S0){a(M,m,x);for(let F=0;FB.enter(M),b);else{const{leave:F,delayLeave:$,afterLeave:U}=B,Y=()=>a(M,m,x),i0=()=>{F(M,()=>{Y(),U&&U()})};$?$(M,Y,i0):i0()}else a(M,m,x)},A0=(d,m,x,C=!1,b=!1)=>{const{type:M,props:L,ref:B,children:V,dynamicChildren:E,shapeFlag:q,patchFlag:F,dirs:$,cacheIndex:U}=d;if(F===-2&&(b=!1),B!=null&&k1(B,null,x,d,!0),U!=null&&(m.renderCache[U]=void 0),q&256){m.ctx.deactivate(d);return}const Y=q&1&&$,i0=!$2(d);let n0;if(i0&&(n0=L&&L.onVnodeBeforeUnmount)&&J0(n0,m,d),q&6)M1(d.component,x,C);else{if(q&128){d.suspense.unmount(x,C);return}Y&&C2(d,null,m,"beforeUnmount"),q&64?d.type.remove(d,m,x,I,C):E&&!E.hasOnce&&(M!==S0||F>0&&F&64)?R0(E,m,x,!1,!0):(M===S0&&F&384||!b&&q&16)&&R0(V,m,x),C&&F2(d)}(i0&&(n0=L&&L.onVnodeUnmounted)||Y)&&H0(()=>{n0&&J0(n0,m,d),Y&&C2(d,null,m,"unmounted")},x)},F2=d=>{const{type:m,el:x,anchor:C,transition:b}=d;if(m===S0){P2(x,C);return}if(m===xe){T(d);return}const M=()=>{n(x),b&&!b.persisted&&b.afterLeave&&b.afterLeave()};if(d.shapeFlag&1&&b&&!b.persisted){const{leave:L,delayLeave:B}=b,V=()=>L(x,M);B?B(d.el,M,V):V()}else M()},P2=(d,m)=>{let x;for(;d!==m;)x=g(d),n(d),d=x;n(m)},M1=(d,m,x)=>{const{bum:C,scope:b,job:M,subTree:L,um:B,m:V,a:E}=d;T6(V),T6(E),C&&pe(C),b.stop(),M&&(M.flags|=8,A0(L,d,m,x)),B&&H0(B,m),H0(()=>{d.isUnmounted=!0},m),m&&m.pendingBranch&&!m.isUnmounted&&d.asyncDep&&!d.asyncResolved&&d.suspenseId===m.pendingId&&(m.deps--,m.deps===0&&m.resolve())},R0=(d,m,x,C=!1,b=!1,M=0)=>{for(let L=M;L{if(d.shapeFlag&6)return z(d.component.subTree);if(d.shapeFlag&128)return d.suspense.next();const m=g(d.anchor||d.el),x=m&&m[m4];return x?g(x):m};let D=!1;const S=(d,m,x)=>{d==null?m._vnode&&A0(m._vnode,null,null,!0):y(m._vnode||null,d,m,null,null,null,x),m._vnode=d,D||(D=!0,b6(),h4(),D=!1)},I={p:y,um:A0,m:K0,r:F2,mt:m0,mc:p0,pc:t0,pbc:G,n:z,o:e};return{render:S,hydrate:void 0,createApp:nr(S)}}function we({type:e,props:t},r){return r==="svg"&&e==="foreignObject"||r==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:r}function z2({effect:e,job:t},r){r?(e.flags|=32,t.flags|=4):(e.flags&=-33,t.flags&=-5)}function hr(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function u6(e,t,r=!1){const a=e.children,n=t.children;if(j(a)&&j(n))for(let l=0;l>1,e[r[u]]0&&(t[a]=r[l-1]),r[l]=a)}}for(l=r.length,s=r[l-1];l-- >0;)r[l]=s,s=t[s];return r}function G4(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:G4(t)}function T6(e){if(e)for(let t=0;tx0(vr);function mr(e,t){return c6(e,null,t)}function j2(e,t,r){return c6(e,t,r)}function c6(e,t,r=c0){const{immediate:a,deep:n,flush:l,once:s}=r,u=d0({},r),c=t&&a||!t&&l!=="post";let f;if(g1){if(l==="sync"){const w=dr();f=w.__watcherHandles||(w.__watcherHandles=[])}else if(!c){const w=()=>{};return w.stop=k0,w.resume=k0,w.pause=k0,w}}const _=w0;u.call=(w,H,y)=>q0(w,_,H,y);let v=!1;l==="post"?u.scheduler=w=>{H0(w,_&&_.suspense)}:l!=="sync"&&(v=!0,u.scheduler=(w,H)=>{H?w():n6(w)}),u.augmentJob=w=>{t&&(w.flags|=4),v&&(w.flags|=2,_&&(w.id=_.uid,w.i=_))};const g=F8(e,t,u);return g1&&(f?f.push(g):c&&g()),g}function gr(e,t,r){const a=this.proxy,n=h0(e)?e.includes(".")?J4(a,e):()=>a[e]:e.bind(a,a);let l;K(t)?l=t:(l=t.handler,r=t);const s=z1(this),u=c6(n,l.bind(a),r);return s(),u}function J4(e,t){const r=t.split(".");return()=>{let a=e;for(let n=0;nt==="modelValue"||t==="model-value"?e.modelModifiers:e[`${t}Modifiers`]||e[`${N0(t)}Modifiers`]||e[`${w2(t)}Modifiers`];function xr(e,t,...r){if(e.isUnmounted)return;const a=e.vnode.props||c0;let n=r;const l=t.startsWith("update:"),s=l&&wr(a,t.slice(7));s&&(s.trim&&(n=r.map(_=>h0(_)?_.trim():_)),s.number&&(n=r.map(J3)));let u,c=a[u=_e(t)]||a[u=_e(N0(t))];!c&&l&&(c=a[u=_e(w2(t))]),c&&q0(c,e,6,n);const f=a[u+"Once"];if(f){if(!e.emitted)e.emitted={};else if(e.emitted[u])return;e.emitted[u]=!0,q0(f,e,6,n)}}function Z4(e,t,r=!1){const a=t.emitsCache,n=a.get(e);if(n!==void 0)return n;const l=e.emits;let s={},u=!1;if(!K(e)){const c=f=>{const _=Z4(f,t,!0);_&&(u=!0,d0(s,_))};!r&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}return!l&&!u?(o0(e)&&a.set(e,null),null):(j(l)?l.forEach(c=>s[c]=null):d0(s,l),o0(e)&&a.set(e,s),s)}function ne(e,t){return!e||!W1(t)?!1:(t=t.slice(2).replace(/Once$/,""),X(e,t[0].toLowerCase()+t.slice(1))||X(e,w2(t))||X(e,t))}function R6(e){const{type:t,vnode:r,proxy:a,withProxy:n,propsOptions:[l],slots:s,attrs:u,emit:c,render:f,renderCache:_,props:v,data:g,setupState:w,ctx:H,inheritAttrs:y}=e,P=O1(e);let A,R;try{if(r.shapeFlag&4){const T=n||a,W=T;A=Q0(f.call(W,T,_,v,w,g,H)),R=u}else{const T=t;A=Q0(T.length>1?T(v,{attrs:u,slots:s,emit:c}):T(v,null)),R=t.props?u:yr(u)}}catch(T){c1.length=0,te(T,e,1),A=z0(B0)}let k=A;if(R&&y!==!1){const T=Object.keys(R),{shapeFlag:W}=k;T.length&&W&7&&(l&&T.some(Ke)&&(R=Cr(R,l)),k=g2(k,R,!1,!0))}return r.dirs&&(k=g2(k,null,!1,!0),k.dirs=k.dirs?k.dirs.concat(r.dirs):r.dirs),r.transition&&A2(k,r.transition),A=k,O1(P),A}const yr=e=>{let t;for(const r in e)(r==="class"||r==="style"||W1(r))&&((t||(t={}))[r]=e[r]);return t},Cr=(e,t)=>{const r={};for(const a in e)(!Ke(a)||!(a.slice(9)in t))&&(r[a]=e[a]);return r};function zr(e,t,r){const{props:a,children:n,component:l}=e,{props:s,children:u,patchFlag:c}=t,f=l.emitsOptions;if(t.dirs||t.transition)return!0;if(r&&c>=0){if(c&1024)return!0;if(c&16)return a?O6(a,s,f):!!s;if(c&8){const _=t.dynamicProps;for(let v=0;v<_.length;v++){const g=_[v];if(s[g]!==a[g]&&!ne(f,g))return!0}}}else return(n||u)&&(!u||!u.$stable)?!0:a===s?!1:a?s?O6(a,s,f):!0:!!s;return!1}function O6(e,t,r){const a=Object.keys(t);if(a.length!==Object.keys(e).length)return!0;for(let n=0;ne.__isSuspense;function br(e,t){t&&t.pendingBranch?j(e)?t.effects.push(...e):t.effects.push(e):T8(e)}const S0=Symbol.for("v-fgt"),le=Symbol.for("v-txt"),B0=Symbol.for("v-cmt"),xe=Symbol.for("v-stc"),c1=[];let T0=null;function i(e=!1){c1.push(T0=e?null:[])}function Hr(){c1.pop(),T0=c1[c1.length-1]||null}let d1=1;function k6(e,t=!1){d1+=e,e<0&&T0&&t&&(T0.hasOnce=!0)}function Q4(e){return e.dynamicChildren=d1>0?T0||O2:null,Hr(),d1>0&&T0&&T0.push(e),e}function h(e,t,r,a,n,l){return Q4(o(e,t,r,a,n,l,!0))}function N1(e,t,r,a,n){return Q4(z0(e,t,r,a,n,!0))}function m1(e){return e?e.__v_isVNode===!0:!1}function E2(e,t){return e.type===t.type&&e.key===t.key}const X4=({key:e})=>e??null,S1=({ref:e,ref_key:t,ref_for:r})=>(typeof e=="number"&&(e=""+e),e!=null?h0(e)||v0(e)||K(e)?{i:g0,r:e,k:t,f:!!r}:e:null);function o(e,t=null,r=null,a=0,n=null,l=e===S0?0:1,s=!1,u=!1){const c={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&X4(t),ref:t&&S1(t),scopeId:v4,slotScopeIds:null,children:r,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetStart:null,targetAnchor:null,staticCount:0,shapeFlag:l,patchFlag:a,dynamicProps:n,dynamicChildren:null,appContext:null,ctx:g0};return u?(i6(c,r),l&128&&e.normalize(c)):r&&(c.shapeFlag|=h0(r)?8:16),d1>0&&!s&&T0&&(c.patchFlag>0||l&6)&&c.patchFlag!==32&&T0.push(c),c}const z0=Er;function Er(e,t=null,r=null,a=0,n=null,l=!1){if((!e||e===S4)&&(e=B0),m1(e)){const u=g2(e,t,!0);return r&&i6(u,r),d1>0&&!l&&T0&&(u.shapeFlag&6?T0[T0.indexOf(e)]=u:T0.push(u)),u.patchFlag=-2,u}if(Or(e)&&(e=e.__vccOpts),t){t=Vr(t);let{class:u,style:c}=t;u&&!h0(u)&&(t.class=Je(u)),o0(c)&&(r6(c)&&!j(c)&&(c=d0({},c)),t.style=Ge(c))}const s=h0(e)?1:Y4(e)?128:g4(e)?64:o0(e)?4:K(e)?2:0;return o(e,t,r,a,n,s,l,!0)}function Vr(e){return e?r6(e)||N4(e)?d0({},e):e:null}function g2(e,t,r=!1,a=!1){const{props:n,ref:l,patchFlag:s,children:u,transition:c}=e,f=t?Ar(n||{},t):n,_={__v_isVNode:!0,__v_skip:!0,type:e.type,props:f,key:f&&X4(f),ref:t&&t.ref?r&&l?j(l)?l.concat(S1(t)):[l,S1(t)]:S1(t):l,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:u,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==S0?s===-1?16:s|16:s,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:c,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&g2(e.ssContent),ssFallback:e.ssFallback&&g2(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return c&&a&&A2(_,c.clone(_)),_}function Br(e=" ",t=0){return z0(le,null,e,t)}function Tf(e="",t=!1){return t?(i(),N1(B0,null,e)):z0(B0,null,e)}function Q0(e){return e==null||typeof e=="boolean"?z0(B0):j(e)?z0(S0,null,e.slice()):m1(e)?v2(e):z0(le,null,String(e))}function v2(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:g2(e)}function i6(e,t){let r=0;const{shapeFlag:a}=e;if(t==null)t=null;else if(j(t))r=16;else if(typeof t=="object")if(a&65){const n=t.default;n&&(n._c&&(n._d=!1),i6(e,n()),n._c&&(n._d=!0));return}else{r=32;const n=t._;!n&&!N4(t)?t._ctx=g0:n===3&&g0&&(g0.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else K(t)?(t={default:t,_ctx:g0},r=32):(t=String(t),a&64?(r=16,t=[Br(t)]):r=8);e.children=t,e.shapeFlag|=r}function Ar(...e){const t={};for(let r=0;rw0||g0;let $1,Re;{const e=Y1(),t=(r,a)=>{let n;return(n=e[r])||(n=e[r]=[]),n.push(a),l=>{n.length>1?n.forEach(s=>s(l)):n[0](l)}};$1=t("__VUE_INSTANCE_SETTERS__",r=>w0=r),Re=t("__VUE_SSR_SETTERS__",r=>g1=r)}const z1=e=>{const t=w0;return $1(e),e.scope.on(),()=>{e.scope.off(),$1(t)}},I6=()=>{w0&&w0.scope.off(),$1(null)};function e3(e){return e.vnode.shapeFlag&4}let g1=!1;function Pr(e,t=!1,r=!1){t&&Re(t);const{props:a,children:n}=e.vnode,l=e3(e);lr(e,a,l,t),cr(e,n,r);const s=l?Dr(e,t):void 0;return t&&Re(!1),s}function Dr(e,t){const r=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,Y8);const{setup:a}=r;if(a){x2();const n=e.setupContext=a.length>1?r3(e):null,l=z1(e),s=C1(a,e,0,[e.props,n]),u=Ot(s);if(y2(),l(),(u||e.sp)&&!$2(e)&&H4(e),u){if(s.then(I6,I6),t)return s.then(c=>{N6(e,c)}).catch(c=>{te(c,e,0)});e.asyncDep=s}else N6(e,s)}else t3(e)}function N6(e,t,r){K(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:o0(t)&&(e.setupState=c4(t)),t3(e)}function t3(e,t,r){const a=e.type;e.render||(e.render=a.render||k0);{const n=z1(e);x2();try{Q8(e)}finally{y2(),n()}}}const Tr={get(e,t){return y0(e,"get",""),e[t]}};function r3(e){const t=r=>{e.exposed=r||{}};return{attrs:new Proxy(e.attrs,Tr),slots:e.slots,emit:e.emit,expose:t}}function se(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(c4(b8(e.exposed)),{get(t,r){if(r in t)return t[r];if(r in o1)return o1[r](e)},has(t,r){return r in t||r in o1}})):e.proxy}function Rr(e,t=!0){return K(e)?e.displayName||e.name:e.name||t&&e.__name}function Or(e){return K(e)&&"__vccOpts"in e}const l0=(e,t)=>L8(e,t,g1);function _6(e,t,r){const a=arguments.length;return a===2?o0(t)&&!j(t)?m1(t)?z0(e,null,[t]):z0(e,t):z0(e,null,t):(a>3?r=Array.prototype.slice.call(arguments,2):a===3&&m1(r)&&(r=[r]),z0(e,t,r))}const kr="3.5.13",Ir=k0;/** +* @vue/runtime-dom v3.5.13 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/let Oe;const $6=typeof window<"u"&&window.trustedTypes;if($6)try{Oe=$6.createPolicy("vue",{createHTML:e=>e})}catch{}const a3=Oe?e=>Oe.createHTML(e):e=>e,Nr="http://www.w3.org/2000/svg",$r="http://www.w3.org/1998/Math/MathML",a2=typeof document<"u"?document:null,q6=a2&&a2.createElement("template"),qr={insert:(e,t,r)=>{t.insertBefore(e,r||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,r,a)=>{const n=t==="svg"?a2.createElementNS(Nr,e):t==="mathml"?a2.createElementNS($r,e):r?a2.createElement(e,{is:r}):a2.createElement(e);return e==="select"&&a&&a.multiple!=null&&n.setAttribute("multiple",a.multiple),n},createText:e=>a2.createTextNode(e),createComment:e=>a2.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>a2.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,r,a,n,l){const s=r?r.previousSibling:t.lastChild;if(n&&(n===l||n.nextSibling))for(;t.insertBefore(n.cloneNode(!0),r),!(n===l||!(n=n.nextSibling)););else{q6.innerHTML=a3(a==="svg"?`${e}`:a==="mathml"?`${e}`:e);const u=q6.content;if(a==="svg"||a==="mathml"){const c=u.firstChild;for(;c.firstChild;)u.appendChild(c.firstChild);u.removeChild(c)}t.insertBefore(u,r)}return[s?s.nextSibling:t.firstChild,r?r.previousSibling:t.lastChild]}},i2="transition",Q2="animation",K2=Symbol("_vtc"),n3={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},l3=d0({},C4,n3),jr=e=>(e.displayName="Transition",e.props=l3,e),Rf=jr((e,{slots:t})=>_6(k8,s3(e),t)),M2=(e,t=[])=>{j(e)?e.forEach(r=>r(...t)):e&&e(...t)},j6=e=>e?j(e)?e.some(t=>t.length>1):e.length>1:!1;function s3(e){const t={};for(const O in e)O in n3||(t[O]=e[O]);if(e.css===!1)return t;const{name:r="v",type:a,duration:n,enterFromClass:l=`${r}-enter-from`,enterActiveClass:s=`${r}-enter-active`,enterToClass:u=`${r}-enter-to`,appearFromClass:c=l,appearActiveClass:f=s,appearToClass:_=u,leaveFromClass:v=`${r}-leave-from`,leaveActiveClass:g=`${r}-leave-active`,leaveToClass:w=`${r}-leave-to`}=e,H=Kr(n),y=H&&H[0],P=H&&H[1],{onBeforeEnter:A,onEnter:R,onEnterCancelled:k,onLeave:T,onLeaveCancelled:W,onBeforeAppear:J=A,onAppear:Z=R,onAppearCancelled:p0=k}=t,N=(O,e0,m0,F0)=>{O._enterCancelled=F0,p2(O,e0?_:u),p2(O,e0?f:s),m0&&m0()},G=(O,e0)=>{O._isLeaving=!1,p2(O,v),p2(O,w),p2(O,g),e0&&e0()},a0=O=>(e0,m0)=>{const F0=O?Z:R,f0=()=>N(e0,O,m0);M2(F0,[e0,f0]),K6(()=>{p2(e0,O?c:l),Z0(e0,O?_:u),j6(F0)||U6(e0,a,y,f0)})};return d0(t,{onBeforeEnter(O){M2(A,[O]),Z0(O,l),Z0(O,s)},onBeforeAppear(O){M2(J,[O]),Z0(O,c),Z0(O,f)},onEnter:a0(!1),onAppear:a0(!0),onLeave(O,e0){O._isLeaving=!0;const m0=()=>G(O,e0);Z0(O,v),O._enterCancelled?(Z0(O,g),ke()):(ke(),Z0(O,g)),K6(()=>{O._isLeaving&&(p2(O,v),Z0(O,w),j6(T)||U6(O,a,P,m0))}),M2(T,[O,m0])},onEnterCancelled(O){N(O,!1,void 0,!0),M2(k,[O])},onAppearCancelled(O){N(O,!0,void 0,!0),M2(p0,[O])},onLeaveCancelled(O){G(O),M2(W,[O])}})}function Kr(e){if(e==null)return null;if(o0(e))return[ye(e.enter),ye(e.leave)];{const t=ye(e);return[t,t]}}function ye(e){return Z3(e)}function Z0(e,t){t.split(/\s+/).forEach(r=>r&&e.classList.add(r)),(e[K2]||(e[K2]=new Set)).add(t)}function p2(e,t){t.split(/\s+/).forEach(a=>a&&e.classList.remove(a));const r=e[K2];r&&(r.delete(t),r.size||(e[K2]=void 0))}function K6(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let Ur=0;function U6(e,t,r,a){const n=e._endId=++Ur,l=()=>{n===e._endId&&a()};if(r!=null)return setTimeout(l,r);const{type:s,timeout:u,propCount:c}=o3(e,t);if(!s)return a();const f=s+"end";let _=0;const v=()=>{e.removeEventListener(f,g),l()},g=w=>{w.target===e&&++_>=c&&v()};setTimeout(()=>{_(r[H]||"").split(", "),n=a(`${i2}Delay`),l=a(`${i2}Duration`),s=W6(n,l),u=a(`${Q2}Delay`),c=a(`${Q2}Duration`),f=W6(u,c);let _=null,v=0,g=0;t===i2?s>0&&(_=i2,v=s,g=l.length):t===Q2?f>0&&(_=Q2,v=f,g=c.length):(v=Math.max(s,f),_=v>0?s>f?i2:Q2:null,g=_?_===i2?l.length:c.length:0);const w=_===i2&&/\b(transform|all)(,|$)/.test(a(`${i2}Property`).toString());return{type:_,timeout:v,propCount:g,hasTransform:w}}function W6(e,t){for(;e.lengthG6(r)+G6(e[a])))}function G6(e){return e==="auto"?0:Number(e.slice(0,-1).replace(",","."))*1e3}function ke(){return document.body.offsetHeight}function Wr(e,t,r){const a=e[K2];a&&(t=(t?[t,...a]:[...a]).join(" ")),t==null?e.removeAttribute("class"):r?e.setAttribute("class",t):e.className=t}const q1=Symbol("_vod"),u3=Symbol("_vsh"),Of={beforeMount(e,{value:t},{transition:r}){e[q1]=e.style.display==="none"?"":e.style.display,r&&t?r.beforeEnter(e):X2(e,t)},mounted(e,{value:t},{transition:r}){r&&t&&r.enter(e)},updated(e,{value:t,oldValue:r},{transition:a}){!t!=!r&&(a?t?(a.beforeEnter(e),X2(e,!0),a.enter(e)):a.leave(e,()=>{X2(e,!1)}):X2(e,t))},beforeUnmount(e,{value:t}){X2(e,t)}};function X2(e,t){e.style.display=t?e[q1]:"none",e[u3]=!t}const Gr=Symbol(""),Jr=/(^|;)\s*display\s*:/;function Zr(e,t,r){const a=e.style,n=h0(r);let l=!1;if(r&&!n){if(t)if(h0(t))for(const s of t.split(";")){const u=s.slice(0,s.indexOf(":")).trim();r[u]==null&&F1(a,u,"")}else for(const s in t)r[s]==null&&F1(a,s,"");for(const s in r)s==="display"&&(l=!0),F1(a,s,r[s])}else if(n){if(t!==r){const s=a[Gr];s&&(r+=";"+s),a.cssText=r,l=Jr.test(r)}}else t&&e.removeAttribute("style");q1 in e&&(e[q1]=l?a.display:"",e[u3]&&(a.display="none"))}const J6=/\s*!important$/;function F1(e,t,r){if(j(r))r.forEach(a=>F1(e,t,a));else if(r==null&&(r=""),t.startsWith("--"))e.setProperty(t,r);else{const a=Yr(e,t);J6.test(r)?e.setProperty(w2(a),r.replace(J6,""),"important"):e[a]=r}}const Z6=["Webkit","Moz","ms"],Ce={};function Yr(e,t){const r=Ce[t];if(r)return r;let a=N0(t);if(a!=="filter"&&a in e)return Ce[t]=a;a=Z1(a);for(let n=0;nze||(ra.then(()=>ze=0),ze=Date.now());function na(e,t){const r=a=>{if(!a._vts)a._vts=Date.now();else if(a._vts<=r.attached)return;q0(la(a,r.value),t,5,[a])};return r.value=e,r.attached=aa(),r}function la(e,t){if(j(t)){const r=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{r.call(e),e._stopped=!0},t.map(a=>n=>!n._stopped&&a&&a(n))}else return t}const rt=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,sa=(e,t,r,a,n,l)=>{const s=n==="svg";t==="class"?Wr(e,a,s):t==="style"?Zr(e,r,a):W1(t)?Ke(t)||ea(e,t,r,a,l):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):oa(e,t,a,s))?(X6(e,t,a),!e.tagName.includes("-")&&(t==="value"||t==="checked"||t==="selected")&&Q6(e,t,a,s,l,t!=="value")):e._isVueCE&&(/[A-Z]/.test(t)||!h0(a))?X6(e,N0(t),a,l,t):(t==="true-value"?e._trueValue=a:t==="false-value"&&(e._falseValue=a),Q6(e,t,a,s))};function oa(e,t,r,a){if(a)return!!(t==="innerHTML"||t==="textContent"||t in e&&rt(t)&&K(r));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const n=e.tagName;if(n==="IMG"||n==="VIDEO"||n==="CANVAS"||n==="SOURCE")return!1}return rt(t)&&h0(r)?!1:t in e}const c3=new WeakMap,i3=new WeakMap,j1=Symbol("_moveCb"),at=Symbol("_enterCb"),ua=e=>(delete e.props.mode,e),ca=ua({name:"TransitionGroup",props:d0({},l3,{tag:String,moveClass:String}),setup(e,{slots:t}){const r=s2(),a=y4();let n,l;return V4(()=>{if(!n.length)return;const s=e.moveClass||`${e.name||"v"}-move`;if(!ha(n[0].el,r.vnode.el,s))return;n.forEach(ia),n.forEach(_a);const u=n.filter(pa);ke(),u.forEach(c=>{const f=c.el,_=f.style;Z0(f,s),_.transform=_.webkitTransform=_.transitionDuration="";const v=f[j1]=g=>{g&&g.target!==f||(!g||/transform$/.test(g.propertyName))&&(f.removeEventListener("transitionend",v),f[j1]=null,p2(f,s))};f.addEventListener("transitionend",v)})}),()=>{const s=Q(e),u=s3(s);let c=s.tag||S0;if(n=[],l)for(let f=0;f{u.split(/\s+/).forEach(c=>c&&a.classList.remove(c))}),r.split(/\s+/).forEach(u=>u&&a.classList.add(u)),a.style.display="none";const l=t.nodeType===1?t:t.parentNode;l.appendChild(a);const{hasTransform:s}=o3(a);return l.removeChild(a),s}const fa=["ctrl","shift","alt","meta"],va={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,t)=>fa.some(r=>e[`${r}Key`]&&!t.includes(r))},If=(e,t)=>{const r=e._withMods||(e._withMods={}),a=t.join(".");return r[a]||(r[a]=(n,...l)=>{for(let s=0;s{const r=e._withKeys||(e._withKeys={}),a=t.join(".");return r[a]||(r[a]=n=>{if(!("key"in n))return;const l=w2(n.key);if(t.some(s=>s===l||da[s]===l))return e(n)})},ma=d0({patchProp:sa},qr);let nt;function _3(){return nt||(nt=_r(ma))}const $f=(...e)=>{_3().render(...e)},ga=(...e)=>{const t=_3().createApp(...e),{mount:r}=t;return t.mount=a=>{const n=xa(a);if(!n)return;const l=t._component;!K(l)&&!l.render&&!l.template&&(l.template=n.innerHTML),n.nodeType===1&&(n.textContent="");const s=r(n,!1,wa(n));return n instanceof Element&&(n.removeAttribute("v-cloak"),n.setAttribute("data-v-app","")),s},t};function wa(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function xa(e){return h0(e)?document.querySelector(e):e}/*! + * vue-router v4.5.0 + * (c) 2024 Eduardo San Martin Morote + * @license MIT + */const R2=typeof document<"u";function p3(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function ya(e){return e.__esModule||e[Symbol.toStringTag]==="Module"||e.default&&p3(e.default)}const r0=Object.assign;function Me(e,t){const r={};for(const a in t){const n=t[a];r[a]=j0(n)?n.map(e):e(n)}return r}const i1=()=>{},j0=Array.isArray,h3=/#/g,Ca=/&/g,za=/\//g,Ma=/=/g,ba=/\?/g,f3=/\+/g,Ha=/%5B/g,Ea=/%5D/g,v3=/%5E/g,Va=/%60/g,d3=/%7B/g,Ba=/%7C/g,m3=/%7D/g,Aa=/%20/g;function p6(e){return encodeURI(""+e).replace(Ba,"|").replace(Ha,"[").replace(Ea,"]")}function La(e){return p6(e).replace(d3,"{").replace(m3,"}").replace(v3,"^")}function Ie(e){return p6(e).replace(f3,"%2B").replace(Aa,"+").replace(h3,"%23").replace(Ca,"%26").replace(Va,"`").replace(d3,"{").replace(m3,"}").replace(v3,"^")}function Sa(e){return Ie(e).replace(Ma,"%3D")}function Fa(e){return p6(e).replace(h3,"%23").replace(ba,"%3F")}function Pa(e){return e==null?"":Fa(e).replace(za,"%2F")}function w1(e){try{return decodeURIComponent(""+e)}catch{}return""+e}const Da=/\/$/,Ta=e=>e.replace(Da,"");function be(e,t,r="/"){let a,n={},l="",s="";const u=t.indexOf("#");let c=t.indexOf("?");return u=0&&(c=-1),c>-1&&(a=t.slice(0,c),l=t.slice(c+1,u>-1?u:t.length),n=e(l)),u>-1&&(a=a||t.slice(0,u),s=t.slice(u,t.length)),a=Ia(a??t,r),{fullPath:a+(l&&"?")+l+s,path:a,query:n,hash:w1(s)}}function Ra(e,t){const r=t.query?e(t.query):"";return t.path+(r&&"?")+r+(t.hash||"")}function lt(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function Oa(e,t,r){const a=t.matched.length-1,n=r.matched.length-1;return a>-1&&a===n&&U2(t.matched[a],r.matched[n])&&g3(t.params,r.params)&&e(t.query)===e(r.query)&&t.hash===r.hash}function U2(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function g3(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const r in e)if(!ka(e[r],t[r]))return!1;return!0}function ka(e,t){return j0(e)?st(e,t):j0(t)?st(t,e):e===t}function st(e,t){return j0(t)?e.length===t.length&&e.every((r,a)=>r===t[a]):e.length===1&&e[0]===t}function Ia(e,t){if(e.startsWith("/"))return e;if(!e)return t;const r=t.split("/"),a=e.split("/"),n=a[a.length-1];(n===".."||n===".")&&a.push("");let l=r.length-1,s,u;for(s=0;s1&&l--;else break;return r.slice(0,l).join("/")+"/"+a.slice(s).join("/")}const _2={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0};var x1;(function(e){e.pop="pop",e.push="push"})(x1||(x1={}));var _1;(function(e){e.back="back",e.forward="forward",e.unknown=""})(_1||(_1={}));function Na(e){if(!e)if(R2){const t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),Ta(e)}const $a=/^[^#]+#/;function qa(e,t){return e.replace($a,"#")+t}function ja(e,t){const r=document.documentElement.getBoundingClientRect(),a=e.getBoundingClientRect();return{behavior:t.behavior,left:a.left-r.left-(t.left||0),top:a.top-r.top-(t.top||0)}}const oe=()=>({left:window.scrollX,top:window.scrollY});function Ka(e){let t;if("el"in e){const r=e.el,a=typeof r=="string"&&r.startsWith("#"),n=typeof r=="string"?a?document.getElementById(r.slice(1)):document.querySelector(r):r;if(!n)return;t=ja(n,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.scrollX,t.top!=null?t.top:window.scrollY)}function ot(e,t){return(history.state?history.state.position-t:-1)+e}const Ne=new Map;function Ua(e,t){Ne.set(e,t)}function Wa(e){const t=Ne.get(e);return Ne.delete(e),t}let Ga=()=>location.protocol+"//"+location.host;function w3(e,t){const{pathname:r,search:a,hash:n}=t,l=e.indexOf("#");if(l>-1){let u=n.includes(e.slice(l))?e.slice(l).length:1,c=n.slice(u);return c[0]!=="/"&&(c="/"+c),lt(c,"")}return lt(r,e)+a+n}function Ja(e,t,r,a){let n=[],l=[],s=null;const u=({state:g})=>{const w=w3(e,location),H=r.value,y=t.value;let P=0;if(g){if(r.value=w,t.value=g,s&&s===H){s=null;return}P=y?g.position-y.position:0}else a(w);n.forEach(A=>{A(r.value,H,{delta:P,type:x1.pop,direction:P?P>0?_1.forward:_1.back:_1.unknown})})};function c(){s=r.value}function f(g){n.push(g);const w=()=>{const H=n.indexOf(g);H>-1&&n.splice(H,1)};return l.push(w),w}function _(){const{history:g}=window;g.state&&g.replaceState(r0({},g.state,{scroll:oe()}),"")}function v(){for(const g of l)g();l=[],window.removeEventListener("popstate",u),window.removeEventListener("beforeunload",_)}return window.addEventListener("popstate",u),window.addEventListener("beforeunload",_,{passive:!0}),{pauseListeners:c,listen:f,destroy:v}}function ut(e,t,r,a=!1,n=!1){return{back:e,current:t,forward:r,replaced:a,position:window.history.length,scroll:n?oe():null}}function Za(e){const{history:t,location:r}=window,a={value:w3(e,r)},n={value:t.state};n.value||l(a.value,{back:null,current:a.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0);function l(c,f,_){const v=e.indexOf("#"),g=v>-1?(r.host&&document.querySelector("base")?e:e.slice(v))+c:Ga()+e+c;try{t[_?"replaceState":"pushState"](f,"",g),n.value=f}catch(w){console.error(w),r[_?"replace":"assign"](g)}}function s(c,f){const _=r0({},t.state,ut(n.value.back,c,n.value.forward,!0),f,{position:n.value.position});l(c,_,!0),a.value=c}function u(c,f){const _=r0({},n.value,t.state,{forward:c,scroll:oe()});l(_.current,_,!0);const v=r0({},ut(a.value,c,null),{position:_.position+1},f);l(c,v,!1),a.value=c}return{location:a,state:n,push:u,replace:s}}function Ya(e){e=Na(e);const t=Za(e),r=Ja(e,t.state,t.location,t.replace);function a(l,s=!0){s||r.pauseListeners(),history.go(l)}const n=r0({location:"",base:e,go:a,createHref:qa.bind(null,e)},t,r);return Object.defineProperty(n,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(n,"state",{enumerable:!0,get:()=>t.state.value}),n}function Qa(e){return e=location.host?e||location.pathname+location.search:"",e.includes("#")||(e+="#"),Ya(e)}function Xa(e){return typeof e=="string"||e&&typeof e=="object"}function x3(e){return typeof e=="string"||typeof e=="symbol"}const y3=Symbol("");var ct;(function(e){e[e.aborted=4]="aborted",e[e.cancelled=8]="cancelled",e[e.duplicated=16]="duplicated"})(ct||(ct={}));function W2(e,t){return r0(new Error,{type:e,[y3]:!0},t)}function r2(e,t){return e instanceof Error&&y3 in e&&(t==null||!!(e.type&t))}const it="[^/]+?",en={sensitive:!1,strict:!1,start:!0,end:!0},tn=/[.+*?^${}()[\]/\\]/g;function rn(e,t){const r=r0({},en,t),a=[];let n=r.start?"^":"";const l=[];for(const f of e){const _=f.length?[]:[90];r.strict&&!f.length&&(n+="/");for(let v=0;vt.length?t.length===1&&t[0]===80?1:-1:0}function C3(e,t){let r=0;const a=e.score,n=t.score;for(;r0&&t[t.length-1]<0}const nn={type:0,value:""},ln=/[a-zA-Z0-9_]/;function sn(e){if(!e)return[[]];if(e==="/")return[[nn]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(w){throw new Error(`ERR (${r})/"${f}": ${w}`)}let r=0,a=r;const n=[];let l;function s(){l&&n.push(l),l=[]}let u=0,c,f="",_="";function v(){f&&(r===0?l.push({type:0,value:f}):r===1||r===2||r===3?(l.length>1&&(c==="*"||c==="+")&&t(`A repeatable param (${f}) must be alone in its segment. eg: '/:ids+.`),l.push({type:1,value:f,regexp:_,repeatable:c==="*"||c==="+",optional:c==="*"||c==="?"})):t("Invalid state to consume buffer"),f="")}function g(){f+=c}for(;u{s(k)}:i1}function s(v){if(x3(v)){const g=a.get(v);g&&(a.delete(v),r.splice(r.indexOf(g),1),g.children.forEach(s),g.alias.forEach(s))}else{const g=r.indexOf(v);g>-1&&(r.splice(g,1),v.record.name&&a.delete(v.record.name),v.children.forEach(s),v.alias.forEach(s))}}function u(){return r}function c(v){const g=pn(v,r);r.splice(g,0,v),v.record.name&&!ft(v)&&a.set(v.record.name,v)}function f(v,g){let w,H={},y,P;if("name"in v&&v.name){if(w=a.get(v.name),!w)throw W2(1,{location:v});P=w.record.name,H=r0(pt(g.params,w.keys.filter(k=>!k.optional).concat(w.parent?w.parent.keys.filter(k=>k.optional):[]).map(k=>k.name)),v.params&&pt(v.params,w.keys.map(k=>k.name))),y=w.stringify(H)}else if(v.path!=null)y=v.path,w=r.find(k=>k.re.test(y)),w&&(H=w.parse(y),P=w.record.name);else{if(w=g.name?a.get(g.name):r.find(k=>k.re.test(g.path)),!w)throw W2(1,{location:v,currentLocation:g});P=w.record.name,H=r0({},g.params,v.params),y=w.stringify(H)}const A=[];let R=w;for(;R;)A.unshift(R.record),R=R.parent;return{name:P,path:y,params:H,matched:A,meta:_n(A)}}e.forEach(v=>l(v));function _(){r.length=0,a.clear()}return{addRoute:l,resolve:f,removeRoute:s,clearRoutes:_,getRoutes:u,getRecordMatcher:n}}function pt(e,t){const r={};for(const a of t)a in e&&(r[a]=e[a]);return r}function ht(e){const t={path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:e.aliasOf,beforeEnter:e.beforeEnter,props:cn(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in e?e.components||null:e.component&&{default:e.component}};return Object.defineProperty(t,"mods",{value:{}}),t}function cn(e){const t={},r=e.props||!1;if("component"in e)t.default=r;else for(const a in e.components)t[a]=typeof r=="object"?r[a]:r;return t}function ft(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function _n(e){return e.reduce((t,r)=>r0(t,r.meta),{})}function vt(e,t){const r={};for(const a in e)r[a]=a in t?t[a]:e[a];return r}function pn(e,t){let r=0,a=t.length;for(;r!==a;){const l=r+a>>1;C3(e,t[l])<0?a=l:r=l+1}const n=hn(e);return n&&(a=t.lastIndexOf(n,a-1)),a}function hn(e){let t=e;for(;t=t.parent;)if(z3(t)&&C3(e,t)===0)return t}function z3({record:e}){return!!(e.name||e.components&&Object.keys(e.components).length||e.redirect)}function fn(e){const t={};if(e===""||e==="?")return t;const a=(e[0]==="?"?e.slice(1):e).split("&");for(let n=0;nl&&Ie(l)):[a&&Ie(a)]).forEach(l=>{l!==void 0&&(t+=(t.length?"&":"")+r,l!=null&&(t+="="+l))})}return t}function vn(e){const t={};for(const r in e){const a=e[r];a!==void 0&&(t[r]=j0(a)?a.map(n=>n==null?null:""+n):a==null?a:""+a)}return t}const dn=Symbol(""),mt=Symbol(""),ue=Symbol(""),M3=Symbol(""),$e=Symbol("");function e1(){let e=[];function t(a){return e.push(a),()=>{const n=e.indexOf(a);n>-1&&e.splice(n,1)}}function r(){e=[]}return{add:t,list:()=>e.slice(),reset:r}}function d2(e,t,r,a,n,l=s=>s()){const s=a&&(a.enterCallbacks[n]=a.enterCallbacks[n]||[]);return()=>new Promise((u,c)=>{const f=g=>{g===!1?c(W2(4,{from:r,to:t})):g instanceof Error?c(g):Xa(g)?c(W2(2,{from:t,to:g})):(s&&a.enterCallbacks[n]===s&&typeof g=="function"&&s.push(g),u())},_=l(()=>e.call(a&&a.instances[n],t,r,f));let v=Promise.resolve(_);e.length<3&&(v=v.then(f)),v.catch(g=>c(g))})}function He(e,t,r,a,n=l=>l()){const l=[];for(const s of e)for(const u in s.components){let c=s.components[u];if(!(t!=="beforeRouteEnter"&&!s.instances[u]))if(p3(c)){const _=(c.__vccOpts||c)[t];_&&l.push(d2(_,r,a,s,u,n))}else{let f=c();l.push(()=>f.then(_=>{if(!_)throw new Error(`Couldn't resolve component "${u}" at "${s.path}"`);const v=ya(_)?_.default:_;s.mods[u]=_,s.components[u]=v;const w=(v.__vccOpts||v)[t];return w&&d2(w,r,a,s,u,n)()}))}}return l}function gt(e){const t=x0(ue),r=x0(M3),a=l0(()=>{const c=M0(e.to);return t.resolve(c)}),n=l0(()=>{const{matched:c}=a.value,{length:f}=c,_=c[f-1],v=r.matched;if(!_||!v.length)return-1;const g=v.findIndex(U2.bind(null,_));if(g>-1)return g;const w=wt(c[f-2]);return f>1&&wt(_)===w&&v[v.length-1].path!==w?v.findIndex(U2.bind(null,c[f-2])):g}),l=l0(()=>n.value>-1&&yn(r.params,a.value.params)),s=l0(()=>n.value>-1&&n.value===r.matched.length-1&&g3(r.params,a.value.params));function u(c={}){if(xn(c)){const f=t[M0(e.replace)?"replace":"push"](M0(e.to)).catch(i1);return e.viewTransition&&typeof document<"u"&&"startViewTransition"in document&&document.startViewTransition(()=>f),f}return Promise.resolve()}return{route:a,href:l0(()=>a.value.href),isActive:l,isExactActive:s,navigate:u}}function mn(e){return e.length===1?e[0]:e}const gn=p({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:gt,setup(e,{slots:t}){const r=X1(gt(e)),{options:a}=x0(ue),n=l0(()=>({[xt(e.activeClass,a.linkActiveClass,"router-link-active")]:r.isActive,[xt(e.exactActiveClass,a.linkExactActiveClass,"router-link-exact-active")]:r.isExactActive}));return()=>{const l=t.default&&mn(t.default(r));return e.custom?l:_6("a",{"aria-current":r.isExactActive?e.ariaCurrentValue:null,href:r.href,onClick:r.navigate,class:n.value},l)}}}),wn=gn;function xn(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)){if(e.currentTarget&&e.currentTarget.getAttribute){const t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function yn(e,t){for(const r in t){const a=t[r],n=e[r];if(typeof a=="string"){if(a!==n)return!1}else if(!j0(n)||n.length!==a.length||a.some((l,s)=>l!==n[s]))return!1}return!0}function wt(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const xt=(e,t,r)=>e??t??r,Cn=p({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:r}){const a=x0($e),n=l0(()=>e.route||a.value),l=x0(mt,0),s=l0(()=>{let f=M0(l);const{matched:_}=n.value;let v;for(;(v=_[f])&&!v.components;)f++;return f}),u=l0(()=>n.value.matched[s.value]);u1(mt,l0(()=>s.value+1)),u1(dn,u),u1($e,n);const c=X0();return j2(()=>[c.value,u.value,e.name],([f,_,v],[g,w,H])=>{_&&(_.instances[v]=f,w&&w!==_&&f&&f===g&&(_.leaveGuards.size||(_.leaveGuards=w.leaveGuards),_.updateGuards.size||(_.updateGuards=w.updateGuards))),f&&_&&(!w||!U2(_,w)||!g)&&(_.enterCallbacks[v]||[]).forEach(y=>y(f))},{flush:"post"}),()=>{const f=n.value,_=e.name,v=u.value,g=v&&v.components[_];if(!g)return yt(r.default,{Component:g,route:f});const w=v.props[_],H=w?w===!0?f.params:typeof w=="function"?w(f):w:null,P=_6(g,r0({},H,t,{onVnodeUnmounted:A=>{A.component.isUnmounted&&(v.instances[_]=null)},ref:c}));return yt(r.default,{Component:P,route:f})||P}}});function yt(e,t){if(!e)return null;const r=e(t);return r.length===1?r[0]:r}const zn=Cn;function Mn(e){const t=un(e.routes,e),r=e.parseQuery||fn,a=e.stringifyQuery||dt,n=e.history,l=e1(),s=e1(),u=e1(),c=o4(_2);let f=_2;R2&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const _=Me.bind(null,z=>""+z),v=Me.bind(null,Pa),g=Me.bind(null,w1);function w(z,D){let S,I;return x3(z)?(S=t.getRecordMatcher(z),I=D):I=z,t.addRoute(I,S)}function H(z){const D=t.getRecordMatcher(z);D&&t.removeRoute(D)}function y(){return t.getRoutes().map(z=>z.record)}function P(z){return!!t.getRecordMatcher(z)}function A(z,D){if(D=r0({},D||c.value),typeof z=="string"){const x=be(r,z,D.path),C=t.resolve({path:x.path},D),b=n.createHref(x.fullPath);return r0(x,C,{params:g(C.params),hash:w1(x.hash),redirectedFrom:void 0,href:b})}let S;if(z.path!=null)S=r0({},z,{path:be(r,z.path,D.path).path});else{const x=r0({},z.params);for(const C in x)x[C]==null&&delete x[C];S=r0({},z,{params:v(x)}),D.params=v(D.params)}const I=t.resolve(S,D),u0=z.hash||"";I.params=_(g(I.params));const d=Ra(a,r0({},z,{hash:La(u0),path:I.path})),m=n.createHref(d);return r0({fullPath:d,hash:u0,query:a===dt?vn(z.query):z.query||{}},I,{redirectedFrom:void 0,href:m})}function R(z){return typeof z=="string"?be(r,z,c.value.path):r0({},z)}function k(z,D){if(f!==z)return W2(8,{from:D,to:z})}function T(z){return Z(z)}function W(z){return T(r0(R(z),{replace:!0}))}function J(z){const D=z.matched[z.matched.length-1];if(D&&D.redirect){const{redirect:S}=D;let I=typeof S=="function"?S(z):S;return typeof I=="string"&&(I=I.includes("?")||I.includes("#")?I=R(I):{path:I},I.params={}),r0({query:z.query,hash:z.hash,params:I.path!=null?{}:z.params},I)}}function Z(z,D){const S=f=A(z),I=c.value,u0=z.state,d=z.force,m=z.replace===!0,x=J(S);if(x)return Z(r0(R(x),{state:typeof x=="object"?r0({},u0,x.state):u0,force:d,replace:m}),D||S);const C=S;C.redirectedFrom=D;let b;return!d&&Oa(a,I,S)&&(b=W2(16,{to:C,from:I}),K0(I,I,!0,!1)),(b?Promise.resolve(b):G(C,I)).catch(M=>r2(M)?r2(M,2)?M:c2(M):t0(M,C,I)).then(M=>{if(M){if(r2(M,2))return Z(r0({replace:m},R(M.to),{state:typeof M.to=="object"?r0({},u0,M.to.state):u0,force:d}),D||C)}else M=O(C,I,!0,m,u0);return a0(C,I,M),M})}function p0(z,D){const S=k(z,D);return S?Promise.reject(S):Promise.resolve()}function N(z){const D=P2.values().next().value;return D&&typeof D.runWithContext=="function"?D.runWithContext(z):z()}function G(z,D){let S;const[I,u0,d]=bn(z,D);S=He(I.reverse(),"beforeRouteLeave",z,D);for(const x of I)x.leaveGuards.forEach(C=>{S.push(d2(C,z,D))});const m=p0.bind(null,z,D);return S.push(m),R0(S).then(()=>{S=[];for(const x of l.list())S.push(d2(x,z,D));return S.push(m),R0(S)}).then(()=>{S=He(u0,"beforeRouteUpdate",z,D);for(const x of u0)x.updateGuards.forEach(C=>{S.push(d2(C,z,D))});return S.push(m),R0(S)}).then(()=>{S=[];for(const x of d)if(x.beforeEnter)if(j0(x.beforeEnter))for(const C of x.beforeEnter)S.push(d2(C,z,D));else S.push(d2(x.beforeEnter,z,D));return S.push(m),R0(S)}).then(()=>(z.matched.forEach(x=>x.enterCallbacks={}),S=He(d,"beforeRouteEnter",z,D,N),S.push(m),R0(S))).then(()=>{S=[];for(const x of s.list())S.push(d2(x,z,D));return S.push(m),R0(S)}).catch(x=>r2(x,8)?x:Promise.reject(x))}function a0(z,D,S){u.list().forEach(I=>N(()=>I(z,D,S)))}function O(z,D,S,I,u0){const d=k(z,D);if(d)return d;const m=D===_2,x=R2?history.state:{};S&&(I||m?n.replace(z.fullPath,r0({scroll:m&&x&&x.scroll},u0)):n.push(z.fullPath,u0)),c.value=z,K0(z,D,S,m),c2()}let e0;function m0(){e0||(e0=n.listen((z,D,S)=>{if(!M1.listening)return;const I=A(z),u0=J(I);if(u0){Z(r0(u0,{replace:!0,force:!0}),I).catch(i1);return}f=I;const d=c.value;R2&&Ua(ot(d.fullPath,S.delta),oe()),G(I,d).catch(m=>r2(m,12)?m:r2(m,2)?(Z(r0(R(m.to),{force:!0}),I).then(x=>{r2(x,20)&&!S.delta&&S.type===x1.pop&&n.go(-1,!1)}).catch(i1),Promise.reject()):(S.delta&&n.go(-S.delta,!1),t0(m,I,d))).then(m=>{m=m||O(I,d,!1),m&&(S.delta&&!r2(m,8)?n.go(-S.delta,!1):S.type===x1.pop&&r2(m,20)&&n.go(-1,!1)),a0(I,d,m)}).catch(i1)}))}let F0=e1(),f0=e1(),s0;function t0(z,D,S){c2(z);const I=f0.list();return I.length?I.forEach(u0=>u0(z,D,S)):console.error(z),Promise.reject(z)}function e2(){return s0&&c.value!==_2?Promise.resolve():new Promise((z,D)=>{F0.add([z,D])})}function c2(z){return s0||(s0=!z,m0(),F0.list().forEach(([D,S])=>z?S(z):D()),F0.reset()),z}function K0(z,D,S,I){const{scrollBehavior:u0}=e;if(!R2||!u0)return Promise.resolve();const d=!S&&Wa(ot(z.fullPath,0))||(I||!S)&&history.state&&history.state.scroll||null;return a6().then(()=>u0(z,D,d)).then(m=>m&&Ka(m)).catch(m=>t0(m,z,D))}const A0=z=>n.go(z);let F2;const P2=new Set,M1={currentRoute:c,listening:!0,addRoute:w,removeRoute:H,clearRoutes:t.clearRoutes,hasRoute:P,getRoutes:y,resolve:A,options:e,push:T,replace:W,go:A0,back:()=>A0(-1),forward:()=>A0(1),beforeEach:l.add,beforeResolve:s.add,afterEach:u.add,onError:f0.add,isReady:e2,install(z){const D=this;z.component("RouterLink",wn),z.component("RouterView",zn),z.config.globalProperties.$router=D,Object.defineProperty(z.config.globalProperties,"$route",{enumerable:!0,get:()=>M0(c)}),R2&&!F2&&c.value===_2&&(F2=!0,T(n.location).catch(u0=>{}));const S={};for(const u0 in _2)Object.defineProperty(S,u0,{get:()=>c.value[u0],enumerable:!0});z.provide(ue,D),z.provide(M3,s4(S)),z.provide($e,c);const I=z.unmount;P2.add(z),z.unmount=function(){P2.delete(z),P2.size<1&&(f=_2,e0&&e0(),e0=null,c.value=_2,F2=!1,s0=!1),I()}}};function R0(z){return z.reduce((D,S)=>D.then(()=>N(S)),Promise.resolve())}return M1}function bn(e,t){const r=[],a=[],n=[],l=Math.max(t.matched.length,e.matched.length);for(let s=0;sU2(f,u))?a.push(u):r.push(u));const c=e.matched[s];c&&(t.matched.find(f=>U2(f,c))||n.push(c))}return[r,a,n]}function qf(){return x0(ue)}const Hn="modulepreload",En=function(e,t){return new URL(e,t).href},Ct={},zt=function(t,r,a){let n=Promise.resolve();if(r&&r.length>0){const s=document.getElementsByTagName("link"),u=document.querySelector("meta[property=csp-nonce]"),c=(u==null?void 0:u.nonce)||(u==null?void 0:u.getAttribute("nonce"));n=Promise.allSettled(r.map(f=>{if(f=En(f,a),f in Ct)return;Ct[f]=!0;const _=f.endsWith(".css"),v=_?'[rel="stylesheet"]':"";if(!!a)for(let H=s.length-1;H>=0;H--){const y=s[H];if(y.href===f&&(!_||y.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${f}"]${v}`))return;const w=document.createElement("link");if(w.rel=_?"stylesheet":Hn,_||(w.as="script"),w.crossOrigin="",w.href=f,c&&w.setAttribute("nonce",c),document.head.appendChild(w),_)return new Promise((H,y)=>{w.addEventListener("load",H),w.addEventListener("error",()=>y(new Error(`Unable to preload CSS for ${f}`)))})}))}function l(s){const u=new Event("vite:preloadError",{cancelable:!0});if(u.payload=s,window.dispatchEvent(u),!u.defaultPrevented)throw s}return n.then(s=>{for(const u of s||[])u.status==="rejected"&&l(u.reason);return t().catch(l)})},Vn=[{path:"/",name:"Index",component:()=>zt(()=>import("./Index-BkCaaeQ1.js"),__vite__mapDeps([0,1,2,3]),import.meta.url)},{path:"/login",name:"Login",meta:{login:!1,title:"登录"},component:()=>zt(()=>import("./Login-DDlQxOJa.js"),__vite__mapDeps([4,1,2,5]),import.meta.url)}],b3=Mn({history:Qa(),routes:Vn});b3.beforeEach(async(e,t,r)=>{r()});const H3=Symbol(),P1="el",Bn="is-",b2=(e,t,r,a,n)=>{let l=`${e}-${t}`;return r&&(l+=`-${r}`),a&&(l+=`__${a}`),n&&(l+=`--${n}`),l},E3=Symbol("namespaceContextKey"),An=e=>{const t=e||(s2()?x0(E3,X0(P1)):X0(P1));return l0(()=>M0(t)||P1)},Ln=(e,t)=>{const r=An(t);return{namespace:r,b:(y="")=>b2(r.value,e,y,"",""),e:y=>y?b2(r.value,e,"",y,""):"",m:y=>y?b2(r.value,e,"","",y):"",be:(y,P)=>y&&P?b2(r.value,e,y,P,""):"",em:(y,P)=>y&&P?b2(r.value,e,"",y,P):"",bm:(y,P)=>y&&P?b2(r.value,e,y,"",P):"",bem:(y,P,A)=>y&&P&&A?b2(r.value,e,y,P,A):"",is:(y,...P)=>{const A=P.length>=1?P[0]:!0;return y&&A?`${Bn}${y}`:""},cssVar:y=>{const P={};for(const A in y)y[A]&&(P[`--${r.value}-${A}`]=y[A]);return P},cssVarName:y=>`--${r.value}-${y}`,cssVarBlock:y=>{const P={};for(const A in y)y[A]&&(P[`--${r.value}-${e}-${A}`]=y[A]);return P},cssVarBlockName:y=>`--${r.value}-${e}-${y}`}};var Sn=typeof global=="object"&&global&&global.Object===Object&&global,Fn=typeof self=="object"&&self&&self.Object===Object&&self,h6=Sn||Fn||Function("return this")(),G2=h6.Symbol,V3=Object.prototype,Pn=V3.hasOwnProperty,Dn=V3.toString,t1=G2?G2.toStringTag:void 0;function Tn(e){var t=Pn.call(e,t1),r=e[t1];try{e[t1]=void 0;var a=!0}catch{}var n=Dn.call(e);return a&&(t?e[t1]=r:delete e[t1]),n}var Rn=Object.prototype,On=Rn.toString;function kn(e){return On.call(e)}var In="[object Null]",Nn="[object Undefined]",Mt=G2?G2.toStringTag:void 0;function B3(e){return e==null?e===void 0?Nn:In:Mt&&Mt in Object(e)?Tn(e):kn(e)}function $n(e){return e!=null&&typeof e=="object"}var qn="[object Symbol]";function f6(e){return typeof e=="symbol"||$n(e)&&B3(e)==qn}function jn(e,t){for(var r=-1,a=e==null?0:e.length,n=Array(a);++r-1&&e%1==0&&e-1}function Tl(e,t){var r=this.__data__,a=ce(r,e);return a<0?(++this.size,r.push([e,t])):r[a][1]=t,this}function J2(e){var t=-1,r=e==null?0:e.length;for(this.clear();++te===void 0,Kf=e=>typeof e=="boolean",ts=e=>typeof e=="number",Uf=e=>typeof Element>"u"?!1:e instanceof Element,Wf=e=>h0(e)?!Number.isNaN(Number(e)):!1;var rs=Object.defineProperty,as=Object.defineProperties,ns=Object.getOwnPropertyDescriptors,Bt=Object.getOwnPropertySymbols,ls=Object.prototype.hasOwnProperty,ss=Object.prototype.propertyIsEnumerable,At=(e,t,r)=>t in e?rs(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,os=(e,t)=>{for(var r in t||(t={}))ls.call(t,r)&&At(e,r,t[r]);if(Bt)for(var r of Bt(t))ss.call(t,r)&&At(e,r,t[r]);return e},us=(e,t)=>as(e,ns(t));function Gf(e,t){var r;const a=o4();return mr(()=>{a.value=e()},us(os({},t),{flush:(r=void 0)!=null?r:"sync"})),ee(a)}var Lt;const g6=typeof window<"u",Jf=e=>typeof e<"u",Zf=e=>typeof e=="function",Yf=e=>typeof e=="string",St=()=>{},Qf=g6&&((Lt=window==null?void 0:window.navigator)==null?void 0:Lt.userAgent)&&/iP(ad|hone|od)/.test(window.navigator.userAgent);function qe(e){return typeof e=="function"?e():M0(e)}function cs(e,t){function r(...a){return new Promise((n,l)=>{Promise.resolve(e(()=>t.apply(this,a),{fn:t,thisArg:this,args:a})).then(n).catch(l)})}return r}function is(e,t={}){let r,a,n=St;const l=u=>{clearTimeout(u),n(),n=St};return u=>{const c=qe(e),f=qe(t.maxWait);return r&&l(r),c<=0||f!==void 0&&f<=0?(a&&(l(a),a=null),Promise.resolve(u())):new Promise((_,v)=>{n=t.rejectOnCancel?v:_,f&&!a&&(a=setTimeout(()=>{r&&l(r),a=null,_(u())},f)),r=setTimeout(()=>{a&&l(a),a=null,_(u())},c)})}}function Xf(e){return e}function _s(e){return Kt()?(l8(e),!0):!1}function ps(e,t=200,r={}){return cs(is(t,r),e)}function ev(e,t=200,r={}){const a=X0(e.value),n=ps(()=>{a.value=e.value},t,r);return j2(e,()=>n()),a}function tv(e,t=!0){s2()?s6(e):t?e():a6(e)}function rv(e,t,r={}){const{immediate:a=!0}=r,n=X0(!1);let l=null;function s(){l&&(clearTimeout(l),l=null)}function u(){n.value=!1,s()}function c(...f){s(),n.value=!0,l=setTimeout(()=>{n.value=!1,l=null,e(...f)},qe(t))}return a&&(n.value=!0,g6&&c()),_s(u),{isPending:ee(n),start:c,stop:u}}const Ft={current:0},Pt=X0(0),D3=2e3,Dt=Symbol("elZIndexContextKey"),T3=Symbol("zIndexContextKey"),hs=e=>{const t=s2()?x0(Dt,Ft):Ft,r=e||(s2()?x0(T3,void 0):void 0),a=l0(()=>{const s=M0(r);return ts(s)?s:D3}),n=l0(()=>a.value+Pt.value),l=()=>(t.current++,Pt.value=t.current,n.value);return!g6&&x0(Dt),{initialZIndex:a,currentZIndex:n,nextZIndex:l}};var fs={name:"en",el:{breadcrumb:{label:"Breadcrumb"},colorpicker:{confirm:"OK",clear:"Clear",defaultLabel:"color picker",description:"current color is {color}. press enter to select a new color.",alphaLabel:"pick alpha value"},datepicker:{now:"Now",today:"Today",cancel:"Cancel",clear:"Clear",confirm:"OK",dateTablePrompt:"Use the arrow keys and enter to select the day of the month",monthTablePrompt:"Use the arrow keys and enter to select the month",yearTablePrompt:"Use the arrow keys and enter to select the year",selectedDate:"Selected date",selectDate:"Select date",selectTime:"Select time",startDate:"Start Date",startTime:"Start Time",endDate:"End Date",endTime:"End Time",prevYear:"Previous Year",nextYear:"Next Year",prevMonth:"Previous Month",nextMonth:"Next Month",year:"",month1:"January",month2:"February",month3:"March",month4:"April",month5:"May",month6:"June",month7:"July",month8:"August",month9:"September",month10:"October",month11:"November",month12:"December",week:"week",weeks:{sun:"Sun",mon:"Mon",tue:"Tue",wed:"Wed",thu:"Thu",fri:"Fri",sat:"Sat"},weeksFull:{sun:"Sunday",mon:"Monday",tue:"Tuesday",wed:"Wednesday",thu:"Thursday",fri:"Friday",sat:"Saturday"},months:{jan:"Jan",feb:"Feb",mar:"Mar",apr:"Apr",may:"May",jun:"Jun",jul:"Jul",aug:"Aug",sep:"Sep",oct:"Oct",nov:"Nov",dec:"Dec"}},inputNumber:{decrease:"decrease number",increase:"increase number"},select:{loading:"Loading",noMatch:"No matching data",noData:"No data",placeholder:"Select"},mention:{loading:"Loading"},dropdown:{toggleDropdown:"Toggle Dropdown"},cascader:{noMatch:"No matching data",loading:"Loading",placeholder:"Select",noData:"No data"},pagination:{goto:"Go to",pagesize:"/page",total:"Total {total}",pageClassifier:"",page:"Page",prev:"Go to previous page",next:"Go to next page",currentPage:"page {pager}",prevPages:"Previous {pager} pages",nextPages:"Next {pager} pages",deprecationWarning:"Deprecated usages detected, please refer to the el-pagination documentation for more details"},dialog:{close:"Close this dialog"},drawer:{close:"Close this dialog"},messagebox:{title:"Message",confirm:"OK",cancel:"Cancel",error:"Illegal input",close:"Close this dialog"},upload:{deleteTip:"press delete to remove",delete:"Delete",preview:"Preview",continue:"Continue"},slider:{defaultLabel:"slider between {min} and {max}",defaultRangeStartLabel:"pick start value",defaultRangeEndLabel:"pick end value"},table:{emptyText:"No Data",confirmFilter:"Confirm",resetFilter:"Reset",clearFilter:"All",sumText:"Sum"},tour:{next:"Next",previous:"Previous",finish:"Finish"},tree:{emptyText:"No Data"},transfer:{noMatch:"No matching data",noData:"No data",titles:["List 1","List 2"],filterPlaceholder:"Enter keyword",noCheckedFormat:"{total} items",hasCheckedFormat:"{checked}/{total} checked"},image:{error:"FAILED"},pageHeader:{title:"Back"},popconfirm:{confirmButtonText:"Yes",cancelButtonText:"No"},carousel:{leftArrow:"Carousel arrow left",rightArrow:"Carousel arrow right",indicator:"Carousel switch to index {index}"}}};const vs=e=>(t,r)=>ds(t,r,M0(e)),ds=(e,t,r)=>P3(r,e,e).replace(/\{(\w+)\}/g,(a,n)=>{var l;return`${(l=t==null?void 0:t[n])!=null?l:`{${n}}`}`}),ms=e=>{const t=l0(()=>M0(e).name),r=v0(e)?e:X0(e);return{lang:t,locale:r,t:vs(e)}},R3=Symbol("localeContextKey"),gs=e=>{const t=e||x0(R3,X0());return ms(l0(()=>t.value||fs))},O3="__epPropKey",A1=e=>e,ws=e=>o0(e)&&!!e[O3],k3=(e,t)=>{if(!o0(e)||ws(e))return e;const{values:r,required:a,default:n,type:l,validator:s}=e,c={type:l,required:!!a,validator:r||s?f=>{let _=!1,v=[];if(r&&(v=Array.from(r),X(e,"default")&&v.push(n),_||(_=v.includes(f))),s&&(_||(_=s(f))),!_&&v.length>0){const g=[...new Set(v)].map(w=>JSON.stringify(w)).join(", ");Ir(`Invalid prop: validation failed${t?` for prop "${t}"`:""}. Expected one of [${g}], got value ${JSON.stringify(f)}.`)}return _}:void 0,[O3]:!0};return X(e,"default")&&(c.default=n),c},I3=e=>Ql(Object.entries(e).map(([t,r])=>[t,k3(r,t)])),xs=["","default","small","large"],ys=k3({type:String,values:xs,required:!1}),N3=Symbol("size"),av=()=>{const e=x0(N3,{});return l0(()=>M0(e.size)||"")},Cs=Symbol("emptyValuesContextKey"),zs=I3({emptyValues:Array,valueOnClear:{type:[String,Number,Boolean,Function],default:void 0,validator:e=>K(e)?!e():!e}}),Tt=e=>Object.keys(e),nv=e=>Object.entries(e),lv=(e,t,r)=>({get value(){return P3(e,t,r)},set value(a){es(e,t,a)}}),U1=X0();function $3(e,t=void 0){const r=s2()?x0(H3,U1):U1;return e?l0(()=>{var a,n;return(n=(a=r.value)==null?void 0:a[e])!=null?n:t}):r}function sv(e,t){const r=$3(),a=Ln(e,l0(()=>{var u;return((u=r.value)==null?void 0:u.namespace)||P1})),n=gs(l0(()=>{var u;return(u=r.value)==null?void 0:u.locale})),l=hs(l0(()=>{var u;return((u=r.value)==null?void 0:u.zIndex)||D3})),s=l0(()=>{var u;return M0(t)||((u=r.value)==null?void 0:u.size)||""});return q3(l0(()=>M0(r)||{})),{ns:a,locale:n,zIndex:l,size:s}}const q3=(e,t,r=!1)=>{var a;const n=!!s2(),l=n?$3():void 0,s=(a=void 0)!=null?a:n?u1:void 0;if(!s)return;const u=l0(()=>{const c=M0(e);return l!=null&&l.value?Ms(l.value,c):c});return s(H3,u),s(R3,l0(()=>u.value.locale)),s(E3,l0(()=>u.value.namespace)),s(T3,l0(()=>u.value.zIndex)),s(N3,{size:l0(()=>u.value.size||"")}),s(Cs,l0(()=>({emptyValues:u.value.emptyValues,valueOnClear:u.value.valueOnClear}))),(r||!U1.value)&&(U1.value=u.value),u},Ms=(e,t)=>{const r=[...new Set([...Tt(e),...Tt(t)])],a={};for(const n of r)a[n]=t[n]!==void 0?t[n]:e[n];return a},bs=(e,t)=>{if(e.install=r=>{for(const a of[e,...Object.values(t??{})])r.component(a.name,a)},t)for(const[r,a]of Object.entries(t))e[r]=a;return e},ov=(e,t)=>(e.install=r=>{e._context=r._context,r.config.globalProperties[t]=e},e),uv=e=>(e.install=k0,e);/*! Element Plus Icons Vue v2.3.1 */var Hs=p({name:"AddLocation",__name:"add-location",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32"}),o("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416M512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544"}),o("path",{fill:"currentColor",d:"M544 384h96a32 32 0 1 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96v-96a32 32 0 0 1 64 0z"})]))}}),Es=Hs,Vs=p({name:"Aim",__name:"aim",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"}),o("path",{fill:"currentColor",d:"M512 96a32 32 0 0 1 32 32v192a32 32 0 0 1-64 0V128a32 32 0 0 1 32-32m0 576a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V704a32 32 0 0 1 32-32M96 512a32 32 0 0 1 32-32h192a32 32 0 0 1 0 64H128a32 32 0 0 1-32-32m576 0a32 32 0 0 1 32-32h192a32 32 0 1 1 0 64H704a32 32 0 0 1-32-32"})]))}}),Bs=Vs,As=p({name:"AlarmClock",__name:"alarm-clock",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 832a320 320 0 1 0 0-640 320 320 0 0 0 0 640m0 64a384 384 0 1 1 0-768 384 384 0 0 1 0 768"}),o("path",{fill:"currentColor",d:"m292.288 824.576 55.424 32-48 83.136a32 32 0 1 1-55.424-32zm439.424 0-55.424 32 48 83.136a32 32 0 1 0 55.424-32zM512 512h160a32 32 0 1 1 0 64H480a32 32 0 0 1-32-32V320a32 32 0 0 1 64 0zM90.496 312.256A160 160 0 0 1 312.32 90.496l-46.848 46.848a96 96 0 0 0-128 128L90.56 312.256zm835.264 0A160 160 0 0 0 704 90.496l46.848 46.848a96 96 0 0 1 128 128z"})]))}}),Ls=As,Ss=p({name:"Apple",__name:"apple",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M599.872 203.776a189.44 189.44 0 0 1 64.384-4.672l2.624.128c31.168 1.024 51.2 4.096 79.488 16.32 37.632 16.128 74.496 45.056 111.488 89.344 96.384 115.264 82.752 372.8-34.752 521.728-7.68 9.728-32 41.6-30.72 39.936a426.624 426.624 0 0 1-30.08 35.776c-31.232 32.576-65.28 49.216-110.08 50.048-31.36.64-53.568-5.312-84.288-18.752l-6.528-2.88c-20.992-9.216-30.592-11.904-47.296-11.904-18.112 0-28.608 2.88-51.136 12.672l-6.464 2.816c-28.416 12.224-48.32 18.048-76.16 19.2-74.112 2.752-116.928-38.08-180.672-132.16-96.64-142.08-132.608-349.312-55.04-486.4 46.272-81.92 129.92-133.632 220.672-135.04 32.832-.576 60.288 6.848 99.648 22.72 27.136 10.88 34.752 13.76 37.376 14.272 16.256-20.16 27.776-36.992 34.56-50.24 13.568-26.304 27.2-59.968 40.704-100.8a32 32 0 1 1 60.8 20.224c-12.608 37.888-25.408 70.4-38.528 97.664zm-51.52 78.08c-14.528 17.792-31.808 37.376-51.904 58.816a32 32 0 1 1-46.72-43.776l12.288-13.248c-28.032-11.2-61.248-26.688-95.68-26.112-70.4 1.088-135.296 41.6-171.648 105.792C121.6 492.608 176 684.16 247.296 788.992c34.816 51.328 76.352 108.992 130.944 106.944 52.48-2.112 72.32-34.688 135.872-34.688 63.552 0 81.28 34.688 136.96 33.536 56.448-1.088 75.776-39.04 126.848-103.872 107.904-136.768 107.904-362.752 35.776-449.088-72.192-86.272-124.672-84.096-151.68-85.12-41.472-4.288-81.6 12.544-113.664 25.152z"})]))}}),Fs=Ss,Ps=p({name:"ArrowDownBold",__name:"arrow-down-bold",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M104.704 338.752a64 64 0 0 1 90.496 0l316.8 316.8 316.8-316.8a64 64 0 0 1 90.496 90.496L557.248 791.296a64 64 0 0 1-90.496 0L104.704 429.248a64 64 0 0 1 0-90.496z"})]))}}),Ds=Ps,Ts=p({name:"ArrowDown",__name:"arrow-down",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M831.872 340.864 512 652.672 192.128 340.864a30.592 30.592 0 0 0-42.752 0 29.12 29.12 0 0 0 0 41.6L489.664 714.24a32 32 0 0 0 44.672 0l340.288-331.712a29.12 29.12 0 0 0 0-41.728 30.592 30.592 0 0 0-42.752 0z"})]))}}),Rs=Ts,Os=p({name:"ArrowLeftBold",__name:"arrow-left-bold",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M685.248 104.704a64 64 0 0 1 0 90.496L368.448 512l316.8 316.8a64 64 0 0 1-90.496 90.496L232.704 557.248a64 64 0 0 1 0-90.496l362.048-362.048a64 64 0 0 1 90.496 0z"})]))}}),ks=Os,Is=p({name:"ArrowLeft",__name:"arrow-left",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M609.408 149.376 277.76 489.6a32 32 0 0 0 0 44.672l331.648 340.352a29.12 29.12 0 0 0 41.728 0 30.592 30.592 0 0 0 0-42.752L339.264 511.936l311.872-319.872a30.592 30.592 0 0 0 0-42.688 29.12 29.12 0 0 0-41.728 0z"})]))}}),Ns=Is,$s=p({name:"ArrowRightBold",__name:"arrow-right-bold",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M338.752 104.704a64 64 0 0 0 0 90.496l316.8 316.8-316.8 316.8a64 64 0 0 0 90.496 90.496l362.048-362.048a64 64 0 0 0 0-90.496L429.248 104.704a64 64 0 0 0-90.496 0z"})]))}}),qs=$s,js=p({name:"ArrowRight",__name:"arrow-right",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M340.864 149.312a30.592 30.592 0 0 0 0 42.752L652.736 512 340.864 831.872a30.592 30.592 0 0 0 0 42.752 29.12 29.12 0 0 0 41.728 0L714.24 534.336a32 32 0 0 0 0-44.672L382.592 149.376a29.12 29.12 0 0 0-41.728 0z"})]))}}),Ks=js,Us=p({name:"ArrowUpBold",__name:"arrow-up-bold",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M104.704 685.248a64 64 0 0 0 90.496 0l316.8-316.8 316.8 316.8a64 64 0 0 0 90.496-90.496L557.248 232.704a64 64 0 0 0-90.496 0L104.704 594.752a64 64 0 0 0 0 90.496z"})]))}}),Ws=Us,Gs=p({name:"ArrowUp",__name:"arrow-up",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m488.832 344.32-339.84 356.672a32 32 0 0 0 0 44.16l.384.384a29.44 29.44 0 0 0 42.688 0l320-335.872 319.872 335.872a29.44 29.44 0 0 0 42.688 0l.384-.384a32 32 0 0 0 0-44.16L535.168 344.32a32 32 0 0 0-46.336 0"})]))}}),Js=Gs,Zs=p({name:"Avatar",__name:"avatar",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M628.736 528.896A416 416 0 0 1 928 928H96a415.872 415.872 0 0 1 299.264-399.104L512 704zM720 304a208 208 0 1 1-416 0 208 208 0 0 1 416 0"})]))}}),Ys=Zs,Qs=p({name:"Back",__name:"back",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M224 480h640a32 32 0 1 1 0 64H224a32 32 0 0 1 0-64"}),o("path",{fill:"currentColor",d:"m237.248 512 265.408 265.344a32 32 0 0 1-45.312 45.312l-288-288a32 32 0 0 1 0-45.312l288-288a32 32 0 1 1 45.312 45.312z"})]))}}),Xs=Qs,eo=p({name:"Baseball",__name:"baseball",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M195.2 828.8a448 448 0 1 1 633.6-633.6 448 448 0 0 1-633.6 633.6zm45.248-45.248a384 384 0 1 0 543.104-543.104 384 384 0 0 0-543.104 543.104"}),o("path",{fill:"currentColor",d:"M497.472 96.896c22.784 4.672 44.416 9.472 64.896 14.528a256.128 256.128 0 0 0 350.208 350.208c5.056 20.48 9.856 42.112 14.528 64.896A320.128 320.128 0 0 1 497.472 96.896zM108.48 491.904a320.128 320.128 0 0 1 423.616 423.68c-23.04-3.648-44.992-7.424-65.728-11.52a256.128 256.128 0 0 0-346.496-346.432 1736.64 1736.64 0 0 1-11.392-65.728z"})]))}}),to=eo,ro=p({name:"Basketball",__name:"basketball",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M778.752 788.224a382.464 382.464 0 0 0 116.032-245.632 256.512 256.512 0 0 0-241.728-13.952 762.88 762.88 0 0 1 125.696 259.584zm-55.04 44.224a699.648 699.648 0 0 0-125.056-269.632 256.128 256.128 0 0 0-56.064 331.968 382.72 382.72 0 0 0 181.12-62.336m-254.08 61.248A320.128 320.128 0 0 1 557.76 513.6a715.84 715.84 0 0 0-48.192-48.128 320.128 320.128 0 0 1-379.264 88.384 382.4 382.4 0 0 0 110.144 229.696 382.4 382.4 0 0 0 229.184 110.08zM129.28 481.088a256.128 256.128 0 0 0 331.072-56.448 699.648 699.648 0 0 0-268.8-124.352 382.656 382.656 0 0 0-62.272 180.8m106.56-235.84a762.88 762.88 0 0 1 258.688 125.056 256.512 256.512 0 0 0-13.44-241.088A382.464 382.464 0 0 0 235.84 245.248zm318.08-114.944c40.576 89.536 37.76 193.92-8.448 281.344a779.84 779.84 0 0 1 66.176 66.112 320.832 320.832 0 0 1 282.112-8.128 382.4 382.4 0 0 0-110.144-229.12 382.4 382.4 0 0 0-229.632-110.208zM828.8 828.8a448 448 0 1 1-633.6-633.6 448 448 0 0 1 633.6 633.6"})]))}}),ao=ro,no=p({name:"BellFilled",__name:"bell-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M640 832a128 128 0 0 1-256 0zm192-64H134.4a38.4 38.4 0 0 1 0-76.8H192V448c0-154.88 110.08-284.16 256.32-313.6a64 64 0 1 1 127.36 0A320.128 320.128 0 0 1 832 448v243.2h57.6a38.4 38.4 0 0 1 0 76.8z"})]))}}),lo=no,so=p({name:"Bell",__name:"bell",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a64 64 0 0 1 64 64v64H448v-64a64 64 0 0 1 64-64"}),o("path",{fill:"currentColor",d:"M256 768h512V448a256 256 0 1 0-512 0zm256-640a320 320 0 0 1 320 320v384H192V448a320 320 0 0 1 320-320"}),o("path",{fill:"currentColor",d:"M96 768h832q32 0 32 32t-32 32H96q-32 0-32-32t32-32m352 128h128a64 64 0 0 1-128 0"})]))}}),oo=so,uo=p({name:"Bicycle",__name:"bicycle",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 832a128 128 0 1 0 0-256 128 128 0 0 0 0 256m0 64a192 192 0 1 1 0-384 192 192 0 0 1 0 384"}),o("path",{fill:"currentColor",d:"M288 672h320q32 0 32 32t-32 32H288q-32 0-32-32t32-32"}),o("path",{fill:"currentColor",d:"M768 832a128 128 0 1 0 0-256 128 128 0 0 0 0 256m0 64a192 192 0 1 1 0-384 192 192 0 0 1 0 384"}),o("path",{fill:"currentColor",d:"M480 192a32 32 0 0 1 0-64h160a32 32 0 0 1 31.04 24.256l96 384a32 32 0 0 1-62.08 15.488L615.04 192zM96 384a32 32 0 0 1 0-64h128a32 32 0 0 1 30.336 21.888l64 192a32 32 0 1 1-60.672 20.224L200.96 384z"}),o("path",{fill:"currentColor",d:"m373.376 599.808-42.752-47.616 320-288 42.752 47.616z"})]))}}),co=uo,io=p({name:"BottomLeft",__name:"bottom-left",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 768h416a32 32 0 1 1 0 64H224a32 32 0 0 1-32-32V352a32 32 0 0 1 64 0z"}),o("path",{fill:"currentColor",d:"M246.656 822.656a32 32 0 0 1-45.312-45.312l544-544a32 32 0 0 1 45.312 45.312l-544 544z"})]))}}),_o=io,po=p({name:"BottomRight",__name:"bottom-right",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M352 768a32 32 0 1 0 0 64h448a32 32 0 0 0 32-32V352a32 32 0 0 0-64 0v416z"}),o("path",{fill:"currentColor",d:"M777.344 822.656a32 32 0 0 0 45.312-45.312l-544-544a32 32 0 0 0-45.312 45.312z"})]))}}),ho=po,fo=p({name:"Bottom",__name:"bottom",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M544 805.888V168a32 32 0 1 0-64 0v637.888L246.656 557.952a30.72 30.72 0 0 0-45.312 0 35.52 35.52 0 0 0 0 48.064l288 306.048a30.72 30.72 0 0 0 45.312 0l288-306.048a35.52 35.52 0 0 0 0-48 30.72 30.72 0 0 0-45.312 0L544 805.824z"})]))}}),vo=fo,mo=p({name:"Bowl",__name:"bowl",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M714.432 704a351.744 351.744 0 0 0 148.16-256H161.408a351.744 351.744 0 0 0 148.16 256zM288 766.592A415.68 415.68 0 0 1 96 416a32 32 0 0 1 32-32h768a32 32 0 0 1 32 32 415.68 415.68 0 0 1-192 350.592V832a64 64 0 0 1-64 64H352a64 64 0 0 1-64-64zM493.248 320h-90.496l254.4-254.4a32 32 0 1 1 45.248 45.248zm187.328 0h-128l269.696-155.712a32 32 0 0 1 32 55.424zM352 768v64h320v-64z"})]))}}),go=mo,wo=p({name:"Box",__name:"box",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M317.056 128 128 344.064V896h768V344.064L706.944 128zm-14.528-64h418.944a32 32 0 0 1 24.064 10.88l206.528 236.096A32 32 0 0 1 960 332.032V928a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V332.032a32 32 0 0 1 7.936-21.12L278.4 75.008A32 32 0 0 1 302.528 64z"}),o("path",{fill:"currentColor",d:"M64 320h896v64H64z"}),o("path",{fill:"currentColor",d:"M448 327.872V640h128V327.872L526.08 128h-28.16zM448 64h128l64 256v352a32 32 0 0 1-32 32H416a32 32 0 0 1-32-32V320z"})]))}}),xo=wo,yo=p({name:"Briefcase",__name:"briefcase",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M320 320V128h384v192h192v192H128V320zM128 576h768v320H128zm256-256h256.064V192H384z"})]))}}),Co=yo,zo=p({name:"BrushFilled",__name:"brush-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M608 704v160a96 96 0 0 1-192 0V704h-96a128 128 0 0 1-128-128h640a128 128 0 0 1-128 128zM192 512V128.064h640V512z"})]))}}),Mo=zo,bo=p({name:"Brush",__name:"brush",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M896 448H128v192a64 64 0 0 0 64 64h192v192h256V704h192a64 64 0 0 0 64-64zm-770.752-64c0-47.552 5.248-90.24 15.552-128 14.72-54.016 42.496-107.392 83.2-160h417.28l-15.36 70.336L736 96h211.2c-24.832 42.88-41.92 96.256-51.2 160a663.872 663.872 0 0 0-6.144 128H960v256a128 128 0 0 1-128 128H704v160a32 32 0 0 1-32 32H352a32 32 0 0 1-32-32V768H192A128 128 0 0 1 64 640V384h61.248zm64 0h636.544c-2.048-45.824.256-91.584 6.848-137.216 4.48-30.848 10.688-59.776 18.688-86.784h-96.64l-221.12 141.248L561.92 160H256.512c-25.856 37.888-43.776 75.456-53.952 112.832-8.768 32.064-13.248 69.12-13.312 111.168z"})]))}}),Ho=bo,Eo=p({name:"Burger",__name:"burger",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 512a32 32 0 0 0-32 32v64a32 32 0 0 0 30.08 32H864a32 32 0 0 0 32-32v-64a32 32 0 0 0-32-32zm736-58.56A96 96 0 0 1 960 544v64a96 96 0 0 1-51.968 85.312L855.36 833.6a96 96 0 0 1-89.856 62.272H258.496A96 96 0 0 1 168.64 833.6l-52.608-140.224A96 96 0 0 1 64 608v-64a96 96 0 0 1 64-90.56V448a384 384 0 1 1 768 5.44M832 448a320 320 0 0 0-640 0zM512 704H188.352l40.192 107.136a32 32 0 0 0 29.952 20.736h507.008a32 32 0 0 0 29.952-20.736L835.648 704z"})]))}}),Vo=Eo,Bo=p({name:"Calendar",__name:"calendar",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 384v512h768V192H768v32a32 32 0 1 1-64 0v-32H320v32a32 32 0 0 1-64 0v-32H128v128h768v64zm192-256h384V96a32 32 0 1 1 64 0v32h160a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h160V96a32 32 0 0 1 64 0zm-32 384h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64m0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64m192-192h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64m0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64m192-192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64m0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64"})]))}}),Ao=Bo,Lo=p({name:"CameraFilled",__name:"camera-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 224a64 64 0 0 0-64 64v512a64 64 0 0 0 64 64h704a64 64 0 0 0 64-64V288a64 64 0 0 0-64-64H748.416l-46.464-92.672A64 64 0 0 0 644.736 96H379.328a64 64 0 0 0-57.216 35.392L275.776 224zm352 435.2a115.2 115.2 0 1 0 0-230.4 115.2 115.2 0 0 0 0 230.4m0 140.8a256 256 0 1 1 0-512 256 256 0 0 1 0 512"})]))}}),So=Lo,Fo=p({name:"Camera",__name:"camera",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M896 256H128v576h768zm-199.424-64-32.064-64h-304.96l-32 64zM96 192h160l46.336-92.608A64 64 0 0 1 359.552 64h304.96a64 64 0 0 1 57.216 35.328L768.192 192H928a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32m416 512a160 160 0 1 0 0-320 160 160 0 0 0 0 320m0 64a224 224 0 1 1 0-448 224 224 0 0 1 0 448"})]))}}),Po=Fo,Do=p({name:"CaretBottom",__name:"caret-bottom",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m192 384 320 384 320-384z"})]))}}),To=Do,Ro=p({name:"CaretLeft",__name:"caret-left",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M672 192 288 511.936 672 832z"})]))}}),Oo=Ro,ko=p({name:"CaretRight",__name:"caret-right",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M384 192v640l384-320.064z"})]))}}),Io=ko,No=p({name:"CaretTop",__name:"caret-top",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 320 192 704h639.936z"})]))}}),$o=No,qo=p({name:"Cellphone",__name:"cellphone",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 128a64 64 0 0 0-64 64v640a64 64 0 0 0 64 64h512a64 64 0 0 0 64-64V192a64 64 0 0 0-64-64zm0-64h512a128 128 0 0 1 128 128v640a128 128 0 0 1-128 128H256a128 128 0 0 1-128-128V192A128 128 0 0 1 256 64m128 128h256a32 32 0 1 1 0 64H384a32 32 0 0 1 0-64m128 640a64 64 0 1 1 0-128 64 64 0 0 1 0 128"})]))}}),jo=qo,Ko=p({name:"ChatDotRound",__name:"chat-dot-round",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m174.72 855.68 135.296-45.12 23.68 11.84C388.096 849.536 448.576 864 512 864c211.84 0 384-166.784 384-352S723.84 160 512 160 128 326.784 128 512c0 69.12 24.96 139.264 70.848 199.232l22.08 28.8-46.272 115.584zm-45.248 82.56A32 32 0 0 1 89.6 896l58.368-145.92C94.72 680.32 64 596.864 64 512 64 299.904 256 96 512 96s448 203.904 448 416-192 416-448 416a461.056 461.056 0 0 1-206.912-48.384l-175.616 58.56z"}),o("path",{fill:"currentColor",d:"M512 563.2a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4m192 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4m-384 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4"})]))}}),Uo=Ko,Wo=p({name:"ChatDotSquare",__name:"chat-dot-square",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64v570.88zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128z"}),o("path",{fill:"currentColor",d:"M512 499.2a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4zm192 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4zm-384 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4z"})]))}}),Go=Wo,Jo=p({name:"ChatLineRound",__name:"chat-line-round",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m174.72 855.68 135.296-45.12 23.68 11.84C388.096 849.536 448.576 864 512 864c211.84 0 384-166.784 384-352S723.84 160 512 160 128 326.784 128 512c0 69.12 24.96 139.264 70.848 199.232l22.08 28.8-46.272 115.584zm-45.248 82.56A32 32 0 0 1 89.6 896l58.368-145.92C94.72 680.32 64 596.864 64 512 64 299.904 256 96 512 96s448 203.904 448 416-192 416-448 416a461.056 461.056 0 0 1-206.912-48.384l-175.616 58.56z"}),o("path",{fill:"currentColor",d:"M352 576h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32m32-192h256q32 0 32 32t-32 32H384q-32 0-32-32t32-32"})]))}}),Zo=Jo,Yo=p({name:"ChatLineSquare",__name:"chat-line-square",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 826.88 273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128z"}),o("path",{fill:"currentColor",d:"M352 512h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32m0-192h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32"})]))}}),Qo=Yo,Xo=p({name:"ChatRound",__name:"chat-round",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m174.72 855.68 130.048-43.392 23.424 11.392C382.4 849.984 444.352 864 512 864c223.744 0 384-159.872 384-352 0-192.832-159.104-352-384-352S128 319.168 128 512a341.12 341.12 0 0 0 69.248 204.288l21.632 28.8-44.16 110.528zm-45.248 82.56A32 32 0 0 1 89.6 896l56.512-141.248A405.12 405.12 0 0 1 64 512C64 299.904 235.648 96 512 96s448 203.904 448 416-173.44 416-448 416c-79.68 0-150.848-17.152-211.712-46.72l-170.88 56.96z"})]))}}),eu=Xo,tu=p({name:"ChatSquare",__name:"chat-square",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64v570.88zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128z"})]))}}),ru=tu,au=p({name:"Check",__name:"check",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M406.656 706.944 195.84 496.256a32 32 0 1 0-45.248 45.248l256 256 512-512a32 32 0 0 0-45.248-45.248L406.592 706.944z"})]))}}),nu=au,lu=p({name:"Checked",__name:"checked",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M704 192h160v736H160V192h160.064v64H704zM311.616 537.28l-45.312 45.248L447.36 763.52l316.8-316.8-45.312-45.184L447.36 673.024zM384 192V96h256v96z"})]))}}),su=lu,ou=p({name:"Cherry",__name:"cherry",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M261.056 449.6c13.824-69.696 34.88-128.96 63.36-177.728 23.744-40.832 61.12-88.64 112.256-143.872H320a32 32 0 0 1 0-64h384a32 32 0 1 1 0 64H554.752c14.912 39.168 41.344 86.592 79.552 141.76 47.36 68.48 84.8 106.752 106.304 114.304a224 224 0 1 1-84.992 14.784c-22.656-22.912-47.04-53.76-73.92-92.608-38.848-56.128-67.008-105.792-84.352-149.312-55.296 58.24-94.528 107.52-117.76 147.2-23.168 39.744-41.088 88.768-53.568 147.072a224.064 224.064 0 1 1-64.96-1.6zM288 832a160 160 0 1 0 0-320 160 160 0 0 0 0 320m448-64a160 160 0 1 0 0-320 160 160 0 0 0 0 320"})]))}}),uu=ou,cu=p({name:"Chicken",__name:"chicken",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M349.952 716.992 478.72 588.16a106.688 106.688 0 0 1-26.176-19.072 106.688 106.688 0 0 1-19.072-26.176L304.704 671.744c.768 3.072 1.472 6.144 2.048 9.216l2.048 31.936 31.872 1.984c3.136.64 6.208 1.28 9.28 2.112zm57.344 33.152a128 128 0 1 1-216.32 114.432l-1.92-32-32-1.92a128 128 0 1 1 114.432-216.32L416.64 469.248c-2.432-101.44 58.112-239.104 149.056-330.048 107.328-107.328 231.296-85.504 316.8 0 85.44 85.44 107.328 209.408 0 316.8-91.008 90.88-228.672 151.424-330.112 149.056L407.296 750.08zm90.496-226.304c49.536 49.536 233.344-7.04 339.392-113.088 78.208-78.208 63.232-163.072 0-226.304-63.168-63.232-148.032-78.208-226.24 0C504.896 290.496 448.32 474.368 497.792 523.84M244.864 708.928a64 64 0 1 0-59.84 59.84l56.32-3.52zm8.064 127.68a64 64 0 1 0 59.84-59.84l-56.32 3.52-3.52 56.32z"})]))}}),iu=cu,_u=p({name:"ChromeFilled",__name:"chrome-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M938.67 512.01c0-44.59-6.82-87.6-19.54-128H682.67a212.372 212.372 0 0 1 42.67 128c.06 38.71-10.45 76.7-30.42 109.87l-182.91 316.8c235.65-.01 426.66-191.02 426.66-426.67z"}),o("path",{fill:"currentColor",d:"M576.79 401.63a127.92 127.92 0 0 0-63.56-17.6c-22.36-.22-44.39 5.43-63.89 16.38s-35.79 26.82-47.25 46.02a128.005 128.005 0 0 0-2.16 127.44l1.24 2.13a127.906 127.906 0 0 0 46.36 46.61 127.907 127.907 0 0 0 63.38 17.44c22.29.2 44.24-5.43 63.68-16.33a127.94 127.94 0 0 0 47.16-45.79v-.01l1.11-1.92a127.984 127.984 0 0 0 .29-127.46 127.957 127.957 0 0 0-46.36-46.91"}),o("path",{fill:"currentColor",d:"M394.45 333.96A213.336 213.336 0 0 1 512 298.67h369.58A426.503 426.503 0 0 0 512 85.34a425.598 425.598 0 0 0-171.74 35.98 425.644 425.644 0 0 0-142.62 102.22l118.14 204.63a213.397 213.397 0 0 1 78.67-94.21m117.56 604.72H512zm-97.25-236.73a213.284 213.284 0 0 1-89.54-86.81L142.48 298.6c-36.35 62.81-57.13 135.68-57.13 213.42 0 203.81 142.93 374.22 333.95 416.55h.04l118.19-204.71a213.315 213.315 0 0 1-122.77-21.91z"})]))}}),pu=_u,hu=p({name:"CircleCheckFilled",__name:"circle-check-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m-55.808 536.384-99.52-99.584a38.4 38.4 0 1 0-54.336 54.336l126.72 126.72a38.272 38.272 0 0 0 54.336 0l262.4-262.464a38.4 38.4 0 1 0-54.272-54.336z"})]))}}),fu=hu,vu=p({name:"CircleCheck",__name:"circle-check",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"}),o("path",{fill:"currentColor",d:"M745.344 361.344a32 32 0 0 1 45.312 45.312l-288 288a32 32 0 0 1-45.312 0l-160-160a32 32 0 1 1 45.312-45.312L480 626.752l265.344-265.408z"})]))}}),du=vu,mu=p({name:"CircleCloseFilled",__name:"circle-close-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 393.664L407.936 353.6a38.4 38.4 0 1 0-54.336 54.336L457.664 512 353.6 616.064a38.4 38.4 0 1 0 54.336 54.336L512 566.336 616.064 670.4a38.4 38.4 0 1 0 54.336-54.336L566.336 512 670.4 407.936a38.4 38.4 0 1 0-54.336-54.336z"})]))}}),gu=mu,wu=p({name:"CircleClose",__name:"circle-close",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m466.752 512-90.496-90.496a32 32 0 0 1 45.248-45.248L512 466.752l90.496-90.496a32 32 0 1 1 45.248 45.248L557.248 512l90.496 90.496a32 32 0 1 1-45.248 45.248L512 557.248l-90.496 90.496a32 32 0 0 1-45.248-45.248z"}),o("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"})]))}}),xu=wu,yu=p({name:"CirclePlusFilled",__name:"circle-plus-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m-38.4 409.6H326.4a38.4 38.4 0 1 0 0 76.8h147.2v147.2a38.4 38.4 0 0 0 76.8 0V550.4h147.2a38.4 38.4 0 0 0 0-76.8H550.4V326.4a38.4 38.4 0 1 0-76.8 0v147.2z"})]))}}),Cu=yu,zu=p({name:"CirclePlus",__name:"circle-plus",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M352 480h320a32 32 0 1 1 0 64H352a32 32 0 0 1 0-64"}),o("path",{fill:"currentColor",d:"M480 672V352a32 32 0 1 1 64 0v320a32 32 0 0 1-64 0"}),o("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"})]))}}),Mu=zu,bu=p({name:"Clock",__name:"clock",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"}),o("path",{fill:"currentColor",d:"M480 256a32 32 0 0 1 32 32v256a32 32 0 0 1-64 0V288a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M480 512h256q32 0 32 32t-32 32H480q-32 0-32-32t32-32"})]))}}),Hu=bu,Eu=p({name:"CloseBold",__name:"close-bold",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M195.2 195.2a64 64 0 0 1 90.496 0L512 421.504 738.304 195.2a64 64 0 0 1 90.496 90.496L602.496 512 828.8 738.304a64 64 0 0 1-90.496 90.496L512 602.496 285.696 828.8a64 64 0 0 1-90.496-90.496L421.504 512 195.2 285.696a64 64 0 0 1 0-90.496z"})]))}}),Vu=Eu,Bu=p({name:"Close",__name:"close",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M764.288 214.592 512 466.88 259.712 214.592a31.936 31.936 0 0 0-45.12 45.12L466.752 512 214.528 764.224a31.936 31.936 0 1 0 45.12 45.184L512 557.184l252.288 252.288a31.936 31.936 0 0 0 45.12-45.12L557.12 512.064l252.288-252.352a31.936 31.936 0 1 0-45.12-45.184z"})]))}}),Au=Bu,Lu=p({name:"Cloudy",__name:"cloudy",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M598.4 831.872H328.192a256 256 0 0 1-34.496-510.528A352 352 0 1 1 598.4 831.872m-271.36-64h272.256a288 288 0 1 0-248.512-417.664L335.04 381.44l-34.816 3.584a192 192 0 0 0 26.88 382.848z"})]))}}),Su=Lu,Fu=p({name:"CoffeeCup",__name:"coffee-cup",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M768 192a192 192 0 1 1-8 383.808A256.128 256.128 0 0 1 512 768H320A256 256 0 0 1 64 512V160a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32zm0 64v256a128 128 0 1 0 0-256M96 832h640a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64m32-640v320a192 192 0 0 0 192 192h192a192 192 0 0 0 192-192V192z"})]))}}),Pu=Fu,Du=p({name:"Coffee",__name:"coffee",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M822.592 192h14.272a32 32 0 0 1 31.616 26.752l21.312 128A32 32 0 0 1 858.24 384h-49.344l-39.04 546.304A32 32 0 0 1 737.92 960H285.824a32 32 0 0 1-32-29.696L214.912 384H165.76a32 32 0 0 1-31.552-37.248l21.312-128A32 32 0 0 1 187.136 192h14.016l-6.72-93.696A32 32 0 0 1 226.368 64h571.008a32 32 0 0 1 31.936 34.304zm-64.128 0 4.544-64H260.736l4.544 64h493.184m-548.16 128H820.48l-10.688-64H214.208l-10.688 64h6.784m68.736 64 36.544 512H708.16l36.544-512z"})]))}}),Tu=Du,Ru=p({name:"Coin",__name:"coin",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m161.92 580.736 29.888 58.88C171.328 659.776 160 681.728 160 704c0 82.304 155.328 160 352 160s352-77.696 352-160c0-22.272-11.392-44.16-31.808-64.32l30.464-58.432C903.936 615.808 928 657.664 928 704c0 129.728-188.544 224-416 224S96 833.728 96 704c0-46.592 24.32-88.576 65.92-123.264z"}),o("path",{fill:"currentColor",d:"m161.92 388.736 29.888 58.88C171.328 467.84 160 489.792 160 512c0 82.304 155.328 160 352 160s352-77.696 352-160c0-22.272-11.392-44.16-31.808-64.32l30.464-58.432C903.936 423.808 928 465.664 928 512c0 129.728-188.544 224-416 224S96 641.728 96 512c0-46.592 24.32-88.576 65.92-123.264z"}),o("path",{fill:"currentColor",d:"M512 544c-227.456 0-416-94.272-416-224S284.544 96 512 96s416 94.272 416 224-188.544 224-416 224m0-64c196.672 0 352-77.696 352-160S708.672 160 512 160s-352 77.696-352 160 155.328 160 352 160"})]))}}),Ou=Ru,ku=p({name:"ColdDrink",__name:"cold-drink",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M768 64a192 192 0 1 1-69.952 370.88L480 725.376V896h96a32 32 0 1 1 0 64H320a32 32 0 1 1 0-64h96V725.376L76.8 273.536a64 64 0 0 1-12.8-38.4v-10.688a32 32 0 0 1 32-32h71.808l-65.536-83.84a32 32 0 0 1 50.432-39.424l96.256 123.264h337.728A192.064 192.064 0 0 1 768 64M656.896 192.448H800a32 32 0 0 1 32 32v10.624a64 64 0 0 1-12.8 38.4l-80.448 107.2a128 128 0 1 0-81.92-188.16v-.064zm-357.888 64 129.472 165.76a32 32 0 0 1-50.432 39.36l-160.256-205.12H144l304 404.928 304-404.928z"})]))}}),Iu=ku,Nu=p({name:"CollectionTag",__name:"collection-tag",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 128v698.88l196.032-156.864a96 96 0 0 1 119.936 0L768 826.816V128zm-32-64h576a32 32 0 0 1 32 32v797.44a32 32 0 0 1-51.968 24.96L531.968 720a32 32 0 0 0-39.936 0L243.968 918.4A32 32 0 0 1 192 893.44V96a32 32 0 0 1 32-32"})]))}}),$u=Nu,qu=p({name:"Collection",__name:"collection",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M192 736h640V128H256a64 64 0 0 0-64 64zm64-672h608a32 32 0 0 1 32 32v672a32 32 0 0 1-32 32H160l-32 57.536V192A128 128 0 0 1 256 64"}),o("path",{fill:"currentColor",d:"M240 800a48 48 0 1 0 0 96h592v-96zm0-64h656v160a64 64 0 0 1-64 64H240a112 112 0 0 1 0-224m144-608v250.88l96-76.8 96 76.8V128zm-64-64h320v381.44a32 32 0 0 1-51.968 24.96L480 384l-108.032 86.4A32 32 0 0 1 320 445.44z"})]))}}),ju=qu,Ku=p({name:"Comment",__name:"comment",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M736 504a56 56 0 1 1 0-112 56 56 0 0 1 0 112m-224 0a56 56 0 1 1 0-112 56 56 0 0 1 0 112m-224 0a56 56 0 1 1 0-112 56 56 0 0 1 0 112M128 128v640h192v160l224-160h352V128z"})]))}}),Uu=Ku,Wu=p({name:"Compass",__name:"compass",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"}),o("path",{fill:"currentColor",d:"M725.888 315.008C676.48 428.672 624 513.28 568.576 568.64c-55.424 55.424-139.968 107.904-253.568 157.312a12.8 12.8 0 0 1-16.896-16.832c49.536-113.728 102.016-198.272 157.312-253.632 55.36-55.296 139.904-107.776 253.632-157.312a12.8 12.8 0 0 1 16.832 16.832"})]))}}),Gu=Wu,Ju=p({name:"Connection",__name:"connection",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M640 384v64H448a128 128 0 0 0-128 128v128a128 128 0 0 0 128 128h320a128 128 0 0 0 128-128V576a128 128 0 0 0-64-110.848V394.88c74.56 26.368 128 97.472 128 181.056v128a192 192 0 0 1-192 192H448a192 192 0 0 1-192-192V576a192 192 0 0 1 192-192z"}),o("path",{fill:"currentColor",d:"M384 640v-64h192a128 128 0 0 0 128-128V320a128 128 0 0 0-128-128H256a128 128 0 0 0-128 128v128a128 128 0 0 0 64 110.848v70.272A192.064 192.064 0 0 1 64 448V320a192 192 0 0 1 192-192h320a192 192 0 0 1 192 192v128a192 192 0 0 1-192 192z"})]))}}),Zu=Ju,Yu=p({name:"Coordinate",__name:"coordinate",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M480 512h64v320h-64z"}),o("path",{fill:"currentColor",d:"M192 896h640a64 64 0 0 0-64-64H256a64 64 0 0 0-64 64m64-128h512a128 128 0 0 1 128 128v64H128v-64a128 128 0 0 1 128-128m256-256a192 192 0 1 0 0-384 192 192 0 0 0 0 384m0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512"})]))}}),Qu=Yu,Xu=p({name:"CopyDocument",__name:"copy-document",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M768 832a128 128 0 0 1-128 128H192A128 128 0 0 1 64 832V384a128 128 0 0 1 128-128v64a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64z"}),o("path",{fill:"currentColor",d:"M384 128a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64V192a64 64 0 0 0-64-64zm0-64h448a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H384a128 128 0 0 1-128-128V192A128 128 0 0 1 384 64"})]))}}),ec=Xu,tc=p({name:"Cpu",__name:"cpu",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M320 256a64 64 0 0 0-64 64v384a64 64 0 0 0 64 64h384a64 64 0 0 0 64-64V320a64 64 0 0 0-64-64zm0-64h384a128 128 0 0 1 128 128v384a128 128 0 0 1-128 128H320a128 128 0 0 1-128-128V320a128 128 0 0 1 128-128"}),o("path",{fill:"currentColor",d:"M512 64a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32m160 0a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32m-320 0a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32m160 896a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32m160 0a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32m-320 0a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32M64 512a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32m0-160a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32m0 320a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32m896-160a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32m0-160a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32m0 320a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32"})]))}}),rc=tc,ac=p({name:"CreditCard",__name:"credit-card",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M896 324.096c0-42.368-2.496-55.296-9.536-68.48a52.352 52.352 0 0 0-22.144-22.08c-13.12-7.04-26.048-9.536-68.416-9.536H228.096c-42.368 0-55.296 2.496-68.48 9.536a52.352 52.352 0 0 0-22.08 22.144c-7.04 13.12-9.536 26.048-9.536 68.416v375.808c0 42.368 2.496 55.296 9.536 68.48a52.352 52.352 0 0 0 22.144 22.08c13.12 7.04 26.048 9.536 68.416 9.536h567.808c42.368 0 55.296-2.496 68.48-9.536a52.352 52.352 0 0 0 22.08-22.144c7.04-13.12 9.536-26.048 9.536-68.416zm64 0v375.808c0 57.088-5.952 77.76-17.088 98.56-11.136 20.928-27.52 37.312-48.384 48.448-20.864 11.136-41.6 17.088-98.56 17.088H228.032c-57.088 0-77.76-5.952-98.56-17.088a116.288 116.288 0 0 1-48.448-48.384c-11.136-20.864-17.088-41.6-17.088-98.56V324.032c0-57.088 5.952-77.76 17.088-98.56 11.136-20.928 27.52-37.312 48.384-48.448 20.864-11.136 41.6-17.088 98.56-17.088H795.84c57.088 0 77.76 5.952 98.56 17.088 20.928 11.136 37.312 27.52 48.448 48.384 11.136 20.864 17.088 41.6 17.088 98.56z"}),o("path",{fill:"currentColor",d:"M64 320h896v64H64zm0 128h896v64H64zm128 192h256v64H192z"})]))}}),nc=ac,lc=p({name:"Crop",__name:"crop",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 768h672a32 32 0 1 1 0 64H224a32 32 0 0 1-32-32V96a32 32 0 0 1 64 0z"}),o("path",{fill:"currentColor",d:"M832 224v704a32 32 0 1 1-64 0V256H96a32 32 0 0 1 0-64h704a32 32 0 0 1 32 32"})]))}}),sc=lc,oc=p({name:"DArrowLeft",__name:"d-arrow-left",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M529.408 149.376a29.12 29.12 0 0 1 41.728 0 30.592 30.592 0 0 1 0 42.688L259.264 511.936l311.872 319.936a30.592 30.592 0 0 1-.512 43.264 29.12 29.12 0 0 1-41.216-.512L197.76 534.272a32 32 0 0 1 0-44.672l331.648-340.224zm256 0a29.12 29.12 0 0 1 41.728 0 30.592 30.592 0 0 1 0 42.688L515.264 511.936l311.872 319.936a30.592 30.592 0 0 1-.512 43.264 29.12 29.12 0 0 1-41.216-.512L453.76 534.272a32 32 0 0 1 0-44.672l331.648-340.224z"})]))}}),uc=oc,cc=p({name:"DArrowRight",__name:"d-arrow-right",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M452.864 149.312a29.12 29.12 0 0 1 41.728.064L826.24 489.664a32 32 0 0 1 0 44.672L494.592 874.624a29.12 29.12 0 0 1-41.728 0 30.592 30.592 0 0 1 0-42.752L764.736 512 452.864 192a30.592 30.592 0 0 1 0-42.688m-256 0a29.12 29.12 0 0 1 41.728.064L570.24 489.664a32 32 0 0 1 0 44.672L238.592 874.624a29.12 29.12 0 0 1-41.728 0 30.592 30.592 0 0 1 0-42.752L508.736 512 196.864 192a30.592 30.592 0 0 1 0-42.688z"})]))}}),ic=cc,_c=p({name:"DCaret",__name:"d-caret",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m512 128 288 320H224zM224 576h576L512 896z"})]))}}),pc=_c,hc=p({name:"DataAnalysis",__name:"data-analysis",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m665.216 768 110.848 192h-73.856L591.36 768H433.024L322.176 960H248.32l110.848-192H160a32 32 0 0 1-32-32V192H64a32 32 0 0 1 0-64h896a32 32 0 1 1 0 64h-64v544a32 32 0 0 1-32 32zM832 192H192v512h640zM352 448a32 32 0 0 1 32 32v64a32 32 0 0 1-64 0v-64a32 32 0 0 1 32-32m160-64a32 32 0 0 1 32 32v128a32 32 0 0 1-64 0V416a32 32 0 0 1 32-32m160-64a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V352a32 32 0 0 1 32-32"})]))}}),fc=hc,vc=p({name:"DataBoard",__name:"data-board",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M32 128h960v64H32z"}),o("path",{fill:"currentColor",d:"M192 192v512h640V192zm-64-64h768v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32z"}),o("path",{fill:"currentColor",d:"M322.176 960H248.32l144.64-250.56 55.424 32zm453.888 0h-73.856L576 741.44l55.424-32z"})]))}}),dc=vc,mc=p({name:"DataLine",__name:"data-line",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M359.168 768H160a32 32 0 0 1-32-32V192H64a32 32 0 0 1 0-64h896a32 32 0 1 1 0 64h-64v544a32 32 0 0 1-32 32H665.216l110.848 192h-73.856L591.36 768H433.024L322.176 960H248.32zM832 192H192v512h640zM342.656 534.656a32 32 0 1 1-45.312-45.312L444.992 341.76l125.44 94.08L679.04 300.032a32 32 0 1 1 49.92 39.936L581.632 524.224 451.008 426.24 342.656 534.592z"})]))}}),gc=mc,wc=p({name:"DeleteFilled",__name:"delete-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M352 192V95.936a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V192h256a32 32 0 1 1 0 64H96a32 32 0 0 1 0-64zm64 0h192v-64H416zM192 960a32 32 0 0 1-32-32V256h704v672a32 32 0 0 1-32 32zm224-192a32 32 0 0 0 32-32V416a32 32 0 0 0-64 0v320a32 32 0 0 0 32 32m192 0a32 32 0 0 0 32-32V416a32 32 0 0 0-64 0v320a32 32 0 0 0 32 32"})]))}}),xc=wc,yc=p({name:"DeleteLocation",__name:"delete-location",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32"}),o("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416M512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544"}),o("path",{fill:"currentColor",d:"M384 384h256q32 0 32 32t-32 32H384q-32 0-32-32t32-32"})]))}}),Cc=yc,zc=p({name:"Delete",__name:"delete",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 256H96a32 32 0 0 1 0-64h256V95.936a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V192h256a32 32 0 1 1 0 64h-64v672a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32zm448-64v-64H416v64zM224 896h576V256H224zm192-128a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32m192 0a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32"})]))}}),Mc=zc,bc=p({name:"Dessert",__name:"dessert",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 416v-48a144 144 0 0 1 168.64-141.888 224.128 224.128 0 0 1 430.72 0A144 144 0 0 1 896 368v48a384 384 0 0 1-352 382.72V896h-64v-97.28A384 384 0 0 1 128 416m287.104-32.064h193.792a143.808 143.808 0 0 1 58.88-132.736 160.064 160.064 0 0 0-311.552 0 143.808 143.808 0 0 1 58.88 132.8zm-72.896 0a72 72 0 1 0-140.48 0h140.48m339.584 0h140.416a72 72 0 1 0-140.48 0zM512 736a320 320 0 0 0 318.4-288.064H193.6A320 320 0 0 0 512 736M384 896.064h256a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64"})]))}}),Hc=bc,Ec=p({name:"Discount",__name:"discount",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M224 704h576V318.336L552.512 115.84a64 64 0 0 0-81.024 0L224 318.336zm0 64v128h576V768zM593.024 66.304l259.2 212.096A32 32 0 0 1 864 303.168V928a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V303.168a32 32 0 0 1 11.712-24.768l259.2-212.096a128 128 0 0 1 162.112 0"}),o("path",{fill:"currentColor",d:"M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"})]))}}),Vc=Ec,Bc=p({name:"DishDot",__name:"dish-dot",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m384.064 274.56.064-50.688A128 128 0 0 1 512.128 96c70.528 0 127.68 57.152 127.68 127.68v50.752A448.192 448.192 0 0 1 955.392 768H68.544A448.192 448.192 0 0 1 384 274.56zM96 832h832a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64m32-128h768a384 384 0 1 0-768 0m447.808-448v-32.32a63.68 63.68 0 0 0-63.68-63.68 64 64 0 0 0-64 63.936V256z"})]))}}),Ac=Bc,Lc=p({name:"Dish",__name:"dish",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M480 257.152V192h-96a32 32 0 0 1 0-64h256a32 32 0 1 1 0 64h-96v65.152A448 448 0 0 1 955.52 768H68.48A448 448 0 0 1 480 257.152M128 704h768a384 384 0 1 0-768 0M96 832h832a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64"})]))}}),Sc=Lc,Fc=p({name:"DocumentAdd",__name:"document-add",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M832 384H576V128H192v768h640zm-26.496-64L640 154.496V320zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m320 512V448h64v128h128v64H544v128h-64V640H352v-64z"})]))}}),Pc=Fc,Dc=p({name:"DocumentChecked",__name:"document-checked",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M805.504 320 640 154.496V320zM832 384H576V128H192v768h640zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m318.4 582.144 180.992-180.992L704.64 510.4 478.4 736.64 320 578.304l45.248-45.312z"})]))}}),Tc=Dc,Rc=p({name:"DocumentCopy",__name:"document-copy",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 320v576h576V320zm-32-64h640a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32M960 96v704a32 32 0 0 1-32 32h-96v-64h64V128H384v64h-64V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32M256 672h320v64H256zm0-192h320v64H256z"})]))}}),Oc=Rc,kc=p({name:"DocumentDelete",__name:"document-delete",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M805.504 320 640 154.496V320zM832 384H576V128H192v768h640zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m308.992 546.304-90.496-90.624 45.248-45.248 90.56 90.496 90.496-90.432 45.248 45.248-90.496 90.56 90.496 90.496-45.248 45.248-90.496-90.496-90.56 90.496-45.248-45.248 90.496-90.496z"})]))}}),Ic=kc,Nc=p({name:"DocumentRemove",__name:"document-remove",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M805.504 320 640 154.496V320zM832 384H576V128H192v768h640zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m192 512h320v64H352z"})]))}}),$c=Nc,qc=p({name:"Document",__name:"document",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M832 384H576V128H192v768h640zm-26.496-64L640 154.496V320zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m160 448h384v64H320zm0-192h160v64H320zm0 384h384v64H320z"})]))}}),jc=qc,Kc=p({name:"Download",__name:"download",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 832h704a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64m384-253.696 236.288-236.352 45.248 45.248L508.8 704 192 387.2l45.248-45.248L480 584.704V128h64z"})]))}}),Uc=Kc,Wc=p({name:"Drizzling",__name:"drizzling",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m739.328 291.328-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 97.28 78.72 175.936 175.808 175.936h400a192 192 0 0 0 35.776-380.672zM959.552 480a256 256 0 0 1-256 256h-400A239.808 239.808 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 959.552 480M288 800h64v64h-64zm192 0h64v64h-64zm-96 96h64v64h-64zm192 0h64v64h-64zm96-96h64v64h-64z"})]))}}),Gc=Wc,Jc=p({name:"EditPen",__name:"edit-pen",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m199.04 672.64 193.984 112 224-387.968-193.92-112-224 388.032zm-23.872 60.16 32.896 148.288 144.896-45.696zM455.04 229.248l193.92 112 56.704-98.112-193.984-112-56.64 98.112zM104.32 708.8l384-665.024 304.768 175.936L409.152 884.8h.064l-248.448 78.336zm384 254.272v-64h448v64h-448z"})]))}}),Zc=Jc,Yc=p({name:"Edit",__name:"edit",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M832 512a32 32 0 1 1 64 0v352a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h352a32 32 0 0 1 0 64H192v640h640z"}),o("path",{fill:"currentColor",d:"m469.952 554.24 52.8-7.552L847.104 222.4a32 32 0 1 0-45.248-45.248L477.44 501.44l-7.552 52.8zm422.4-422.4a96 96 0 0 1 0 135.808l-331.84 331.84a32 32 0 0 1-18.112 9.088L436.8 623.68a32 32 0 0 1-36.224-36.224l15.104-105.6a32 32 0 0 1 9.024-18.112l331.904-331.84a96 96 0 0 1 135.744 0z"})]))}}),Qc=Yc,Xc=p({name:"ElemeFilled",__name:"eleme-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M176 64h672c61.824 0 112 50.176 112 112v672a112 112 0 0 1-112 112H176A112 112 0 0 1 64 848V176c0-61.824 50.176-112 112-112m150.528 173.568c-152.896 99.968-196.544 304.064-97.408 456.96a330.688 330.688 0 0 0 456.96 96.64c9.216-5.888 17.6-11.776 25.152-18.56a18.24 18.24 0 0 0 4.224-24.32L700.352 724.8a47.552 47.552 0 0 0-65.536-14.272A234.56 234.56 0 0 1 310.592 641.6C240 533.248 271.104 387.968 379.456 316.48a234.304 234.304 0 0 1 276.352 15.168c1.664.832 2.56 2.56 3.392 4.224 5.888 8.384 3.328 19.328-5.12 25.216L456.832 489.6a47.552 47.552 0 0 0-14.336 65.472l16 24.384c5.888 8.384 16.768 10.88 25.216 5.056l308.224-199.936a19.584 19.584 0 0 0 6.72-23.488v-.896c-4.992-9.216-10.048-17.6-15.104-26.88-99.968-151.168-304.064-194.88-456.96-95.744zM786.88 504.704l-62.208 40.32c-8.32 5.888-10.88 16.768-4.992 25.216L760 632.32c5.888 8.448 16.768 11.008 25.152 5.12l31.104-20.16a55.36 55.36 0 0 0 16-76.48l-20.224-31.04a19.52 19.52 0 0 0-25.152-5.12z"})]))}}),ei=Xc,ti=p({name:"Eleme",__name:"eleme",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M300.032 188.8c174.72-113.28 408-63.36 522.24 109.44 5.76 10.56 11.52 20.16 17.28 30.72v.96a22.4 22.4 0 0 1-7.68 26.88l-352.32 228.48c-9.6 6.72-22.08 3.84-28.8-5.76l-18.24-27.84a54.336 54.336 0 0 1 16.32-74.88l225.6-146.88c9.6-6.72 12.48-19.2 5.76-28.8-.96-1.92-1.92-3.84-3.84-4.8a267.84 267.84 0 0 0-315.84-17.28c-123.84 81.6-159.36 247.68-78.72 371.52a268.096 268.096 0 0 0 370.56 78.72 54.336 54.336 0 0 1 74.88 16.32l17.28 26.88c5.76 9.6 3.84 21.12-4.8 27.84-8.64 7.68-18.24 14.4-28.8 21.12a377.92 377.92 0 0 1-522.24-110.4c-113.28-174.72-63.36-408 111.36-522.24zm526.08 305.28a22.336 22.336 0 0 1 28.8 5.76l23.04 35.52a63.232 63.232 0 0 1-18.24 87.36l-35.52 23.04c-9.6 6.72-22.08 3.84-28.8-5.76l-46.08-71.04c-6.72-9.6-3.84-22.08 5.76-28.8l71.04-46.08z"})]))}}),ri=ti,ai=p({name:"ElementPlus",__name:"element-plus",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M839.7 734.7c0 33.3-17.9 41-17.9 41S519.7 949.8 499.2 960c-10.2 5.1-20.5 5.1-30.7 0 0 0-314.9-184.3-325.1-192-5.1-5.1-10.2-12.8-12.8-20.5V368.6c0-17.9 20.5-28.2 20.5-28.2L466 158.6c12.8-5.1 25.6-5.1 38.4 0 0 0 279 161.3 309.8 179.2 17.9 7.7 28.2 25.6 25.6 46.1-.1-5-.1 317.5-.1 350.8M714.2 371.2c-64-35.8-217.6-125.4-217.6-125.4-7.7-5.1-20.5-5.1-30.7 0L217.6 389.1s-17.9 10.2-17.9 23v297c0 5.1 5.1 12.8 7.7 17.9 7.7 5.1 256 148.5 256 148.5 7.7 5.1 17.9 5.1 25.6 0 15.4-7.7 250.9-145.9 250.9-145.9s12.8-5.1 12.8-30.7v-74.2l-276.5 169v-64c0-17.9 7.7-30.7 20.5-46.1L745 535c5.1-7.7 10.2-20.5 10.2-30.7v-66.6l-279 169v-69.1c0-15.4 5.1-30.7 17.9-38.4l220.1-128zM919 135.7c0-5.1-5.1-7.7-7.7-7.7h-58.9V66.6c0-5.1-5.1-5.1-10.2-5.1l-30.7 5.1c-5.1 0-5.1 2.6-5.1 5.1V128h-56.3c-5.1 0-5.1 5.1-7.7 5.1v38.4h69.1v64c0 5.1 5.1 5.1 10.2 5.1l30.7-5.1c5.1 0 5.1-2.6 5.1-5.1v-56.3h64l-2.5-38.4z"})]))}}),ni=ai,li=p({name:"Expand",__name:"expand",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 192h768v128H128zm0 256h512v128H128zm0 256h768v128H128zm576-352 192 160-192 128z"})]))}}),si=li,oi=p({name:"Failed",__name:"failed",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m557.248 608 135.744-135.744-45.248-45.248-135.68 135.744-135.808-135.68-45.248 45.184L466.752 608l-135.68 135.68 45.184 45.312L512 653.248l135.744 135.744 45.248-45.248L557.312 608zM704 192h160v736H160V192h160v64h384zm-320 0V96h256v96z"})]))}}),ui=oi,ci=p({name:"Female",__name:"female",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 640a256 256 0 1 0 0-512 256 256 0 0 0 0 512m0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640"}),o("path",{fill:"currentColor",d:"M512 640q32 0 32 32v256q0 32-32 32t-32-32V672q0-32 32-32"}),o("path",{fill:"currentColor",d:"M352 800h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32"})]))}}),ii=ci,_i=p({name:"Files",__name:"files",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 384v448h768V384zm-32-64h832a32 32 0 0 1 32 32v512a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V352a32 32 0 0 1 32-32m64-128h704v64H160zm96-128h512v64H256z"})]))}}),pi=_i,hi=p({name:"Film",__name:"film",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 160v704h704V160zm-32-64h768a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H128a32 32 0 0 1-32-32V128a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M320 288V128h64v352h256V128h64v160h160v64H704v128h160v64H704v128h160v64H704v160h-64V544H384v352h-64V736H128v-64h192V544H128v-64h192V352H128v-64z"})]))}}),fi=hi,vi=p({name:"Filter",__name:"filter",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M384 523.392V928a32 32 0 0 0 46.336 28.608l192-96A32 32 0 0 0 640 832V523.392l280.768-343.104a32 32 0 1 0-49.536-40.576l-288 352A32 32 0 0 0 576 512v300.224l-128 64V512a32 32 0 0 0-7.232-20.288L195.52 192H704a32 32 0 1 0 0-64H128a32 32 0 0 0-24.768 52.288z"})]))}}),di=vi,mi=p({name:"Finished",__name:"finished",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M280.768 753.728 691.456 167.04a32 32 0 1 1 52.416 36.672L314.24 817.472a32 32 0 0 1-45.44 7.296l-230.4-172.8a32 32 0 0 1 38.4-51.2l203.968 152.96zM736 448a32 32 0 1 1 0-64h192a32 32 0 1 1 0 64zM608 640a32 32 0 0 1 0-64h319.936a32 32 0 1 1 0 64zM480 832a32 32 0 1 1 0-64h447.936a32 32 0 1 1 0 64z"})]))}}),gi=mi,wi=p({name:"FirstAidKit",__name:"first-aid-kit",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M192 256a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V320a64 64 0 0 0-64-64zm0-64h640a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H192A128 128 0 0 1 64 768V320a128 128 0 0 1 128-128"}),o("path",{fill:"currentColor",d:"M544 512h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96v-96a32 32 0 0 1 64 0zM352 128v64h320v-64zm-32-64h384a32 32 0 0 1 32 32v128a32 32 0 0 1-32 32H320a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32"})]))}}),xi=wi,yi=p({name:"Flag",__name:"flag",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M288 128h608L736 384l160 256H288v320h-96V64h96z"})]))}}),Ci=yi,zi=p({name:"Fold",__name:"fold",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M896 192H128v128h768zm0 256H384v128h512zm0 256H128v128h768zM320 384 128 512l192 128z"})]))}}),Mi=zi,bi=p({name:"FolderAdd",__name:"folder-add",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32m384 416V416h64v128h128v64H544v128h-64V608H352v-64z"})]))}}),Hi=bi,Ei=p({name:"FolderChecked",__name:"folder-checked",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32m414.08 502.144 180.992-180.992L736.32 494.4 510.08 720.64l-158.4-158.336 45.248-45.312z"})]))}}),Vi=Ei,Bi=p({name:"FolderDelete",__name:"folder-delete",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32m370.752 448-90.496-90.496 45.248-45.248L512 530.752l90.496-90.496 45.248 45.248L557.248 576l90.496 90.496-45.248 45.248L512 621.248l-90.496 90.496-45.248-45.248z"})]))}}),Ai=Bi,Li=p({name:"FolderOpened",__name:"folder-opened",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M878.08 448H241.92l-96 384h636.16l96-384zM832 384v-64H485.76L357.504 192H128v448l57.92-231.744A32 32 0 0 1 216.96 384zm-24.96 512H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h287.872l128.384 128H864a32 32 0 0 1 32 32v96h23.04a32 32 0 0 1 31.04 39.744l-112 448A32 32 0 0 1 807.04 896"})]))}}),Si=Li,Fi=p({name:"FolderRemove",__name:"folder-remove",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32m256 416h320v64H352z"})]))}}),Pi=Fi,Di=p({name:"Folder",__name:"folder",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32"})]))}}),Ti=Di,Ri=p({name:"Food",__name:"food",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 352.576V352a288 288 0 0 1 491.072-204.224 192 192 0 0 1 274.24 204.48 64 64 0 0 1 57.216 74.24C921.6 600.512 850.048 710.656 736 756.992V800a96 96 0 0 1-96 96H384a96 96 0 0 1-96-96v-43.008c-114.048-46.336-185.6-156.48-214.528-330.496A64 64 0 0 1 128 352.64zm64-.576h64a160 160 0 0 1 320 0h64a224 224 0 0 0-448 0m128 0h192a96 96 0 0 0-192 0m439.424 0h68.544A128.256 128.256 0 0 0 704 192c-15.36 0-29.952 2.688-43.52 7.616 11.328 18.176 20.672 37.76 27.84 58.304A64.128 64.128 0 0 1 759.424 352M672 768H352v32a32 32 0 0 0 32 32h256a32 32 0 0 0 32-32zm-342.528-64h365.056c101.504-32.64 165.76-124.928 192.896-288H136.576c27.136 163.072 91.392 255.36 192.896 288"})]))}}),Oi=Ri,ki=p({name:"Football",__name:"football",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896m0-64a384 384 0 1 0 0-768 384 384 0 0 0 0 768"}),o("path",{fill:"currentColor",d:"M186.816 268.288c16-16.384 31.616-31.744 46.976-46.08 17.472 30.656 39.808 58.112 65.984 81.28l-32.512 56.448a385.984 385.984 0 0 1-80.448-91.648zm653.696-5.312a385.92 385.92 0 0 1-83.776 96.96l-32.512-56.384a322.923 322.923 0 0 0 68.48-85.76c15.552 14.08 31.488 29.12 47.808 45.184zM465.984 445.248l11.136-63.104a323.584 323.584 0 0 0 69.76 0l11.136 63.104a387.968 387.968 0 0 1-92.032 0m-62.72-12.8A381.824 381.824 0 0 1 320 396.544l32-55.424a319.885 319.885 0 0 0 62.464 27.712l-11.2 63.488zm300.8-35.84a381.824 381.824 0 0 1-83.328 35.84l-11.2-63.552A319.885 319.885 0 0 0 672 341.184l32 55.424zm-520.768 364.8a385.92 385.92 0 0 1 83.968-97.28l32.512 56.32c-26.88 23.936-49.856 52.352-67.52 84.032-16-13.44-32.32-27.712-48.96-43.072zm657.536.128a1442.759 1442.759 0 0 1-49.024 43.072 321.408 321.408 0 0 0-67.584-84.16l32.512-56.32c33.216 27.456 61.696 60.352 84.096 97.408zM465.92 578.752a387.968 387.968 0 0 1 92.032 0l-11.136 63.104a323.584 323.584 0 0 0-69.76 0zm-62.72 12.8 11.2 63.552a319.885 319.885 0 0 0-62.464 27.712L320 627.392a381.824 381.824 0 0 1 83.264-35.84zm300.8 35.84-32 55.424a318.272 318.272 0 0 0-62.528-27.712l11.2-63.488c29.44 8.64 57.28 20.736 83.264 35.776z"})]))}}),Ii=ki,Ni=p({name:"ForkSpoon",__name:"fork-spoon",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 410.304V96a32 32 0 0 1 64 0v314.304a96 96 0 0 0 64-90.56V96a32 32 0 0 1 64 0v223.744a160 160 0 0 1-128 156.8V928a32 32 0 1 1-64 0V476.544a160 160 0 0 1-128-156.8V96a32 32 0 0 1 64 0v223.744a96 96 0 0 0 64 90.56zM672 572.48C581.184 552.128 512 446.848 512 320c0-141.44 85.952-256 192-256s192 114.56 192 256c0 126.848-69.184 232.128-160 252.48V928a32 32 0 1 1-64 0zM704 512c66.048 0 128-82.56 128-192s-61.952-192-128-192-128 82.56-128 192 61.952 192 128 192"})]))}}),$i=Ni,qi=p({name:"Fries",__name:"fries",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M608 224v-64a32 32 0 0 0-64 0v336h26.88A64 64 0 0 0 608 484.096zm101.12 160A64 64 0 0 0 672 395.904V384h64V224a32 32 0 1 0-64 0v160zm74.88 0a92.928 92.928 0 0 1 91.328 110.08l-60.672 323.584A96 96 0 0 1 720.32 896H303.68a96 96 0 0 1-94.336-78.336L148.672 494.08A92.928 92.928 0 0 1 240 384h-16V224a96 96 0 0 1 188.608-25.28A95.744 95.744 0 0 1 480 197.44V160a96 96 0 0 1 188.608-25.28A96 96 0 0 1 800 224v160zM670.784 512a128 128 0 0 1-99.904 48H453.12a128 128 0 0 1-99.84-48H352v-1.536a128.128 128.128 0 0 1-9.984-14.976L314.88 448H240a28.928 28.928 0 0 0-28.48 34.304L241.088 640h541.824l29.568-157.696A28.928 28.928 0 0 0 784 448h-74.88l-27.136 47.488A132.405 132.405 0 0 1 672 510.464V512zM480 288a32 32 0 0 0-64 0v196.096A64 64 0 0 0 453.12 496H480zm-128 96V224a32 32 0 0 0-64 0v160zh-37.12A64 64 0 0 1 352 395.904zm-98.88 320 19.072 101.888A32 32 0 0 0 303.68 832h416.64a32 32 0 0 0 31.488-26.112L770.88 704z"})]))}}),ji=qi,Ki=p({name:"FullScreen",__name:"full-screen",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m160 96.064 192 .192a32 32 0 0 1 0 64l-192-.192V352a32 32 0 0 1-64 0V96h64zm0 831.872V928H96V672a32 32 0 1 1 64 0v191.936l192-.192a32 32 0 1 1 0 64zM864 96.064V96h64v256a32 32 0 1 1-64 0V160.064l-192 .192a32 32 0 1 1 0-64l192-.192zm0 831.872-192-.192a32 32 0 0 1 0-64l192 .192V672a32 32 0 1 1 64 0v256h-64z"})]))}}),Ui=Ki,Wi=p({name:"GobletFull",__name:"goblet-full",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 320h512c0-78.592-12.608-142.4-36.928-192h-434.24C269.504 192.384 256 256.256 256 320m503.936 64H264.064a256.128 256.128 0 0 0 495.872 0zM544 638.4V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.4A320 320 0 0 1 192 320c0-85.632 21.312-170.944 64-256h512c42.688 64.32 64 149.632 64 256a320 320 0 0 1-288 318.4"})]))}}),Gi=Wi,Ji=p({name:"GobletSquareFull",__name:"goblet-square-full",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 270.912c10.048 6.72 22.464 14.912 28.992 18.624a220.16 220.16 0 0 0 114.752 30.72c30.592 0 49.408-9.472 91.072-41.152l.64-.448c52.928-40.32 82.368-55.04 132.288-54.656 55.552.448 99.584 20.8 142.72 57.408l1.536 1.28V128H256v142.912zm.96 76.288C266.368 482.176 346.88 575.872 512 576c157.44.064 237.952-85.056 253.248-209.984a952.32 952.32 0 0 1-40.192-35.712c-32.704-27.776-63.36-41.92-101.888-42.24-31.552-.256-50.624 9.28-93.12 41.6l-.576.448c-52.096 39.616-81.024 54.208-129.792 54.208-54.784 0-100.48-13.376-142.784-37.056zM480 638.848C250.624 623.424 192 442.496 192 319.68V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v224c0 122.816-58.624 303.68-288 318.912V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96z"})]))}}),Zi=Ji,Yi=p({name:"GobletSquare",__name:"goblet-square",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M544 638.912V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.848C250.624 623.424 192 442.496 192 319.68V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v224c0 122.816-58.624 303.68-288 318.912M256 319.68c0 149.568 80 256.192 256 256.256C688.128 576 768 469.568 768 320V128H256z"})]))}}),Qi=Yi,Xi=p({name:"Goblet",__name:"goblet",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M544 638.4V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.4A320 320 0 0 1 192 320c0-85.632 21.312-170.944 64-256h512c42.688 64.32 64 149.632 64 256a320 320 0 0 1-288 318.4M256 320a256 256 0 1 0 512 0c0-78.592-12.608-142.4-36.928-192h-434.24C269.504 192.384 256 256.256 256 320"})]))}}),e5=Xi,t5=p({name:"GoldMedal",__name:"gold-medal",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m772.13 452.84 53.86-351.81c1.32-10.01-1.17-18.68-7.49-26.02S804.35 64 795.01 64H228.99v-.01h-.06c-9.33 0-17.15 3.67-23.49 11.01s-8.83 16.01-7.49 26.02l53.87 351.89C213.54 505.73 193.59 568.09 192 640c2 90.67 33.17 166.17 93.5 226.5S421.33 957.99 512 960c90.67-2 166.17-33.17 226.5-93.5 60.33-60.34 91.49-135.83 93.5-226.5-1.59-71.94-21.56-134.32-59.87-187.16zM640.01 128h117.02l-39.01 254.02c-20.75-10.64-40.74-19.73-59.94-27.28-5.92-3-11.95-5.8-18.08-8.41V128h.01zM576 128v198.76c-13.18-2.58-26.74-4.43-40.67-5.55-8.07-.8-15.85-1.2-23.33-1.2-10.54 0-21.09.66-31.64 1.96a359.844 359.844 0 0 0-32.36 4.79V128zm-192 0h.04v218.3c-6.22 2.66-12.34 5.5-18.36 8.56-19.13 7.54-39.02 16.6-59.66 27.16L267.01 128zm308.99 692.99c-48 48-108.33 73-180.99 75.01-72.66-2.01-132.99-27.01-180.99-75.01S258.01 712.66 256 640c2.01-72.66 27.01-132.99 75.01-180.99 19.67-19.67 41.41-35.47 65.22-47.41 38.33-15.04 71.15-23.92 98.44-26.65 5.07-.41 10.2-.7 15.39-.88.63-.01 1.28-.03 1.91-.03.66 0 1.35.03 2.02.04 5.11.17 10.15.46 15.13.86 27.4 2.71 60.37 11.65 98.91 26.79 23.71 11.93 45.36 27.69 64.96 47.29 48 48 73 108.33 75.01 180.99-2.01 72.65-27.01 132.98-75.01 180.98z"}),o("path",{fill:"currentColor",d:"M544 480H416v64h64v192h-64v64h192v-64h-64z"})]))}}),r5=t5,a5=p({name:"GoodsFilled",__name:"goods-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M192 352h640l64 544H128zm128 224h64V448h-64zm320 0h64V448h-64zM384 288h-64a192 192 0 1 1 384 0h-64a128 128 0 1 0-256 0"})]))}}),n5=a5,l5=p({name:"Goods",__name:"goods",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M320 288v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4h131.072a32 32 0 0 1 31.808 28.8l57.6 576a32 32 0 0 1-31.808 35.2H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320zm64 0h256v-22.336C640 189.248 582.272 128 512 128c-70.272 0-128 61.248-128 137.664v22.4zm-64 64H217.92l-51.2 512h690.56l-51.264-512H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0z"})]))}}),s5=l5,o5=p({name:"Grape",__name:"grape",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M544 195.2a160 160 0 0 1 96 60.8 160 160 0 1 1 146.24 254.976 160 160 0 0 1-128 224 160 160 0 1 1-292.48 0 160 160 0 0 1-128-224A160 160 0 1 1 384 256a160 160 0 0 1 96-60.8V128h-64a32 32 0 0 1 0-64h192a32 32 0 0 1 0 64h-64zM512 448a96 96 0 1 0 0-192 96 96 0 0 0 0 192m-256 0a96 96 0 1 0 0-192 96 96 0 0 0 0 192m128 224a96 96 0 1 0 0-192 96 96 0 0 0 0 192m128 224a96 96 0 1 0 0-192 96 96 0 0 0 0 192m128-224a96 96 0 1 0 0-192 96 96 0 0 0 0 192m128-224a96 96 0 1 0 0-192 96 96 0 0 0 0 192"})]))}}),u5=o5,c5=p({name:"Grid",__name:"grid",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M640 384v256H384V384zm64 0h192v256H704zm-64 512H384V704h256zm64 0V704h192v192zm-64-768v192H384V128zm64 0h192v192H704zM320 384v256H128V384zm0 512H128V704h192zm0-768v192H128V128z"})]))}}),i5=c5,_5=p({name:"Guide",__name:"guide",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M640 608h-64V416h64zm0 160v160a32 32 0 0 1-32 32H416a32 32 0 0 1-32-32V768h64v128h128V768zM384 608V416h64v192zm256-352h-64V128H448v128h-64V96a32 32 0 0 1 32-32h192a32 32 0 0 1 32 32z"}),o("path",{fill:"currentColor",d:"m220.8 256-71.232 80 71.168 80H768V256H220.8zm-14.4-64H800a32 32 0 0 1 32 32v224a32 32 0 0 1-32 32H206.4a32 32 0 0 1-23.936-10.752l-99.584-112a32 32 0 0 1 0-42.496l99.584-112A32 32 0 0 1 206.4 192m678.784 496-71.104 80H266.816V608h547.2l71.168 80zm-56.768-144H234.88a32 32 0 0 0-32 32v224a32 32 0 0 0 32 32h593.6a32 32 0 0 0 23.936-10.752l99.584-112a32 32 0 0 0 0-42.496l-99.584-112A32 32 0 0 0 828.48 544z"})]))}}),p5=_5,h5=p({name:"Handbag",__name:"handbag",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M887.01 264.99c-6-5.99-13.67-8.99-23.01-8.99H704c-1.34-54.68-20.01-100.01-56-136s-81.32-54.66-136-56c-54.68 1.34-100.01 20.01-136 56s-54.66 81.32-56 136H160c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.67-8.99 23.01v640c0 9.35 2.99 17.02 8.99 23.01S150.66 960 160 960h704c9.35 0 17.02-2.99 23.01-8.99S896 937.34 896 928V288c0-9.35-2.99-17.02-8.99-23.01M421.5 165.5c24.32-24.34 54.49-36.84 90.5-37.5 35.99.68 66.16 13.18 90.5 37.5s36.84 54.49 37.5 90.5H384c.68-35.99 13.18-66.16 37.5-90.5M832 896H192V320h128v128h64V320h256v128h64V320h128z"})]))}}),f5=h5,v5=p({name:"Headset",__name:"headset",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M896 529.152V512a384 384 0 1 0-768 0v17.152A128 128 0 0 1 320 640v128a128 128 0 1 1-256 0V512a448 448 0 1 1 896 0v256a128 128 0 1 1-256 0V640a128 128 0 0 1 192-110.848M896 640a64 64 0 0 0-128 0v128a64 64 0 0 0 128 0zm-768 0v128a64 64 0 0 0 128 0V640a64 64 0 1 0-128 0"})]))}}),d5=v5,m5=p({name:"HelpFilled",__name:"help-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M926.784 480H701.312A192.512 192.512 0 0 0 544 322.688V97.216A416.064 416.064 0 0 1 926.784 480m0 64A416.064 416.064 0 0 1 544 926.784V701.312A192.512 192.512 0 0 0 701.312 544zM97.28 544h225.472A192.512 192.512 0 0 0 480 701.312v225.472A416.064 416.064 0 0 1 97.216 544zm0-64A416.064 416.064 0 0 1 480 97.216v225.472A192.512 192.512 0 0 0 322.688 480H97.216z"})]))}}),g5=m5,w5=p({name:"Help",__name:"help",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m759.936 805.248-90.944-91.008A254.912 254.912 0 0 1 512 768a254.912 254.912 0 0 1-156.992-53.76l-90.944 91.008A382.464 382.464 0 0 0 512 896c94.528 0 181.12-34.176 247.936-90.752m45.312-45.312A382.464 382.464 0 0 0 896 512c0-94.528-34.176-181.12-90.752-247.936l-91.008 90.944C747.904 398.4 768 452.864 768 512c0 59.136-20.096 113.6-53.76 156.992l91.008 90.944zm-45.312-541.184A382.464 382.464 0 0 0 512 128c-94.528 0-181.12 34.176-247.936 90.752l90.944 91.008A254.912 254.912 0 0 1 512 256c59.136 0 113.6 20.096 156.992 53.76l90.944-91.008zm-541.184 45.312A382.464 382.464 0 0 0 128 512c0 94.528 34.176 181.12 90.752 247.936l91.008-90.944A254.912 254.912 0 0 1 256 512c0-59.136 20.096-113.6 53.76-156.992zm417.28 394.496a194.56 194.56 0 0 0 22.528-22.528C686.912 602.56 704 559.232 704 512a191.232 191.232 0 0 0-67.968-146.56A191.296 191.296 0 0 0 512 320a191.232 191.232 0 0 0-146.56 67.968C337.088 421.44 320 464.768 320 512a191.232 191.232 0 0 0 67.968 146.56C421.44 686.912 464.768 704 512 704c47.296 0 90.56-17.088 124.032-45.44zM512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896"})]))}}),x5=w5,y5=p({name:"Hide",__name:"hide",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M876.8 156.8c0-9.6-3.2-16-9.6-22.4-6.4-6.4-12.8-9.6-22.4-9.6-9.6 0-16 3.2-22.4 9.6L736 220.8c-64-32-137.6-51.2-224-60.8-160 16-288 73.6-377.6 176C44.8 438.4 0 496 0 512s48 73.6 134.4 176c22.4 25.6 44.8 48 73.6 67.2l-86.4 89.6c-6.4 6.4-9.6 12.8-9.6 22.4 0 9.6 3.2 16 9.6 22.4 6.4 6.4 12.8 9.6 22.4 9.6 9.6 0 16-3.2 22.4-9.6l704-710.4c3.2-6.4 6.4-12.8 6.4-22.4Zm-646.4 528c-76.8-70.4-128-128-153.6-172.8 28.8-48 80-105.6 153.6-172.8C304 272 400 230.4 512 224c64 3.2 124.8 19.2 176 44.8l-54.4 54.4C598.4 300.8 560 288 512 288c-64 0-115.2 22.4-160 64s-64 96-64 160c0 48 12.8 89.6 35.2 124.8L256 707.2c-9.6-6.4-19.2-16-25.6-22.4Zm140.8-96c-12.8-22.4-19.2-48-19.2-76.8 0-44.8 16-83.2 48-112 32-28.8 67.2-48 112-48 28.8 0 54.4 6.4 73.6 19.2zM889.599 336c-12.8-16-28.8-28.8-41.6-41.6l-48 48c73.6 67.2 124.8 124.8 150.4 169.6-28.8 48-80 105.6-153.6 172.8-73.6 67.2-172.8 108.8-284.8 115.2-51.2-3.2-99.2-12.8-140.8-28.8l-48 48c57.6 22.4 118.4 38.4 188.8 44.8 160-16 288-73.6 377.6-176C979.199 585.6 1024 528 1024 512s-48.001-73.6-134.401-176Z"}),o("path",{fill:"currentColor",d:"M511.998 672c-12.8 0-25.6-3.2-38.4-6.4l-51.2 51.2c28.8 12.8 57.6 19.2 89.6 19.2 64 0 115.2-22.4 160-64 41.6-41.6 64-96 64-160 0-32-6.4-64-19.2-89.6l-51.2 51.2c3.2 12.8 6.4 25.6 6.4 38.4 0 44.8-16 83.2-48 112-32 28.8-67.2 48-112 48Z"})]))}}),C5=y5,z5=p({name:"Histogram",__name:"histogram",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M416 896V128h192v768zm-288 0V448h192v448zm576 0V320h192v576z"})]))}}),M5=z5,b5=p({name:"HomeFilled",__name:"home-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 128 128 447.936V896h255.936V640H640v256h255.936V447.936z"})]))}}),H5=b5,E5=p({name:"HotWater",__name:"hot-water",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M273.067 477.867h477.866V409.6H273.067zm0 68.266v51.2A187.733 187.733 0 0 0 460.8 785.067h102.4a187.733 187.733 0 0 0 187.733-187.734v-51.2H273.067zm-34.134-204.8h546.134a34.133 34.133 0 0 1 34.133 34.134v221.866a256 256 0 0 1-256 256H460.8a256 256 0 0 1-256-256V375.467a34.133 34.133 0 0 1 34.133-34.134zM512 34.133a34.133 34.133 0 0 1 34.133 34.134v170.666a34.133 34.133 0 0 1-68.266 0V68.267A34.133 34.133 0 0 1 512 34.133zM375.467 102.4a34.133 34.133 0 0 1 34.133 34.133v102.4a34.133 34.133 0 0 1-68.267 0v-102.4a34.133 34.133 0 0 1 34.134-34.133m273.066 0a34.133 34.133 0 0 1 34.134 34.133v102.4a34.133 34.133 0 1 1-68.267 0v-102.4a34.133 34.133 0 0 1 34.133-34.133M170.667 921.668h682.666a34.133 34.133 0 1 1 0 68.267H170.667a34.133 34.133 0 1 1 0-68.267z"})]))}}),V5=E5,B5=p({name:"House",__name:"house",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M192 413.952V896h640V413.952L512 147.328zM139.52 374.4l352-293.312a32 32 0 0 1 40.96 0l352 293.312A32 32 0 0 1 896 398.976V928a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V398.976a32 32 0 0 1 11.52-24.576"})]))}}),A5=B5,L5=p({name:"IceCreamRound",__name:"ice-cream-round",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m308.352 489.344 226.304 226.304a32 32 0 0 0 45.248 0L783.552 512A192 192 0 1 0 512 240.448L308.352 444.16a32 32 0 0 0 0 45.248zm135.744 226.304L308.352 851.392a96 96 0 0 1-135.744-135.744l135.744-135.744-45.248-45.248a96 96 0 0 1 0-135.808L466.752 195.2A256 256 0 0 1 828.8 557.248L625.152 760.96a96 96 0 0 1-135.808 0l-45.248-45.248zM398.848 670.4 353.6 625.152 217.856 760.896a32 32 0 0 0 45.248 45.248zm248.96-384.64a32 32 0 0 1 0 45.248L466.624 512a32 32 0 1 1-45.184-45.248l180.992-181.056a32 32 0 0 1 45.248 0zm90.496 90.496a32 32 0 0 1 0 45.248L557.248 602.496A32 32 0 1 1 512 557.248l180.992-180.992a32 32 0 0 1 45.312 0z"})]))}}),S5=L5,F5=p({name:"IceCreamSquare",__name:"ice-cream-square",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M416 640h256a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32H352a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32zm192 64v160a96 96 0 0 1-192 0V704h-64a96 96 0 0 1-96-96V160a96 96 0 0 1 96-96h320a96 96 0 0 1 96 96v448a96 96 0 0 1-96 96zm-64 0h-64v160a32 32 0 1 0 64 0z"})]))}}),P5=F5,D5=p({name:"IceCream",__name:"ice-cream",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128.64 448a208 208 0 0 1 193.536-191.552 224 224 0 0 1 445.248 15.488A208.128 208.128 0 0 1 894.784 448H896L548.8 983.68a32 32 0 0 1-53.248.704L128 448zm64.256 0h286.208a144 144 0 0 0-286.208 0zm351.36 0h286.272a144 144 0 0 0-286.272 0zm-294.848 64 271.808 396.608L778.24 512H249.408zM511.68 352.64a207.872 207.872 0 0 1 189.184-96.192 160 160 0 0 0-314.752 5.632c52.608 12.992 97.28 46.08 125.568 90.56"})]))}}),T5=D5,R5=p({name:"IceDrink",__name:"ice-drink",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 448v128h239.68l16.064-128zm-64 0H256.256l16.064 128H448zm64-255.36V384h247.744A256.128 256.128 0 0 0 512 192.64m-64 8.064A256.448 256.448 0 0 0 264.256 384H448zm64-72.064A320.128 320.128 0 0 1 825.472 384H896a32 32 0 1 1 0 64h-64v1.92l-56.96 454.016A64 64 0 0 1 711.552 960H312.448a64 64 0 0 1-63.488-56.064L192 449.92V448h-64a32 32 0 0 1 0-64h70.528A320.384 320.384 0 0 1 448 135.04V96a96 96 0 0 1 96-96h128a32 32 0 1 1 0 64H544a32 32 0 0 0-32 32zM743.68 640H280.32l32.128 256h399.104z"})]))}}),O5=R5,k5=p({name:"IceTea",__name:"ice-tea",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M197.696 259.648a320.128 320.128 0 0 1 628.608 0A96 96 0 0 1 896 352v64a96 96 0 0 1-71.616 92.864l-49.408 395.072A64 64 0 0 1 711.488 960H312.512a64 64 0 0 1-63.488-56.064l-49.408-395.072A96 96 0 0 1 128 416v-64a96 96 0 0 1 69.696-92.352M264.064 256h495.872a256.128 256.128 0 0 0-495.872 0m495.424 256H264.512l48 384h398.976zM224 448h576a32 32 0 0 0 32-32v-64a32 32 0 0 0-32-32H224a32 32 0 0 0-32 32v64a32 32 0 0 0 32 32m160 192h64v64h-64zm192 64h64v64h-64zm-128 64h64v64h-64zm64-192h64v64h-64z"})]))}}),I5=k5,N5=p({name:"InfoFilled",__name:"info-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896.064A448 448 0 0 1 512 64m67.2 275.072c33.28 0 60.288-23.104 60.288-57.344s-27.072-57.344-60.288-57.344c-33.28 0-60.16 23.104-60.16 57.344s26.88 57.344 60.16 57.344M590.912 699.2c0-6.848 2.368-24.64 1.024-34.752l-52.608 60.544c-10.88 11.456-24.512 19.392-30.912 17.28a12.992 12.992 0 0 1-8.256-14.72l87.68-276.992c7.168-35.136-12.544-67.2-54.336-71.296-44.096 0-108.992 44.736-148.48 101.504 0 6.784-1.28 23.68.064 33.792l52.544-60.608c10.88-11.328 23.552-19.328 29.952-17.152a12.8 12.8 0 0 1 7.808 16.128L388.48 728.576c-10.048 32.256 8.96 63.872 55.04 71.04 67.84 0 107.904-43.648 147.456-100.416z"})]))}}),$5=N5,q5=p({name:"Iphone",__name:"iphone",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M224 768v96.064a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64V768zm0-64h576V160a64 64 0 0 0-64-64H288a64 64 0 0 0-64 64zm32 288a96 96 0 0 1-96-96V128a96 96 0 0 1 96-96h512a96 96 0 0 1 96 96v768a96 96 0 0 1-96 96zm304-144a48 48 0 1 1-96 0 48 48 0 0 1 96 0"})]))}}),j5=q5,K5=p({name:"Key",__name:"key",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M448 456.064V96a32 32 0 0 1 32-32.064L672 64a32 32 0 0 1 0 64H512v128h160a32 32 0 0 1 0 64H512v128a256 256 0 1 1-64 8.064M512 896a192 192 0 1 0 0-384 192 192 0 0 0 0 384"})]))}}),U5=K5,W5=p({name:"KnifeFork",__name:"knife-fork",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 410.56V96a32 32 0 0 1 64 0v314.56A96 96 0 0 0 384 320V96a32 32 0 0 1 64 0v224a160 160 0 0 1-128 156.8V928a32 32 0 1 1-64 0V476.8A160 160 0 0 1 128 320V96a32 32 0 0 1 64 0v224a96 96 0 0 0 64 90.56m384-250.24V544h126.72c-3.328-78.72-12.928-147.968-28.608-207.744-14.336-54.528-46.848-113.344-98.112-175.872zM640 608v320a32 32 0 1 1-64 0V64h64c85.312 89.472 138.688 174.848 160 256 21.312 81.152 32 177.152 32 288z"})]))}}),G5=W5,J5=p({name:"Lightning",__name:"lightning",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M288 671.36v64.128A239.808 239.808 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 736 734.016v-64.768a192 192 0 0 0 3.328-377.92l-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 91.968 70.464 167.36 160.256 175.232z"}),o("path",{fill:"currentColor",d:"M416 736a32 32 0 0 1-27.776-47.872l128-224a32 32 0 1 1 55.552 31.744L471.168 672H608a32 32 0 0 1 27.776 47.872l-128 224a32 32 0 1 1-55.68-31.744L552.96 736z"})]))}}),Z5=J5,Y5=p({name:"Link",__name:"link",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M715.648 625.152 670.4 579.904l90.496-90.56c75.008-74.944 85.12-186.368 22.656-248.896-62.528-62.464-173.952-52.352-248.96 22.656L444.16 353.6l-45.248-45.248 90.496-90.496c100.032-99.968 251.968-110.08 339.456-22.656 87.488 87.488 77.312 239.424-22.656 339.456l-90.496 90.496zm-90.496 90.496-90.496 90.496C434.624 906.112 282.688 916.224 195.2 828.8c-87.488-87.488-77.312-239.424 22.656-339.456l90.496-90.496 45.248 45.248-90.496 90.56c-75.008 74.944-85.12 186.368-22.656 248.896 62.528 62.464 173.952 52.352 248.96-22.656l90.496-90.496zm0-362.048 45.248 45.248L398.848 670.4 353.6 625.152z"})]))}}),Q5=Y5,X5=p({name:"List",__name:"list",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M704 192h160v736H160V192h160v64h384zM288 512h448v-64H288zm0 256h448v-64H288zm96-576V96h256v96z"})]))}}),e9=X5,t9=p({name:"Loading",__name:"loading",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a32 32 0 0 1 32 32v192a32 32 0 0 1-64 0V96a32 32 0 0 1 32-32m0 640a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V736a32 32 0 0 1 32-32m448-192a32 32 0 0 1-32 32H736a32 32 0 1 1 0-64h192a32 32 0 0 1 32 32m-640 0a32 32 0 0 1-32 32H96a32 32 0 0 1 0-64h192a32 32 0 0 1 32 32M195.2 195.2a32 32 0 0 1 45.248 0L376.32 331.008a32 32 0 0 1-45.248 45.248L195.2 240.448a32 32 0 0 1 0-45.248zm452.544 452.544a32 32 0 0 1 45.248 0L828.8 783.552a32 32 0 0 1-45.248 45.248L647.744 692.992a32 32 0 0 1 0-45.248zM828.8 195.264a32 32 0 0 1 0 45.184L692.992 376.32a32 32 0 0 1-45.248-45.248l135.808-135.808a32 32 0 0 1 45.248 0m-452.544 452.48a32 32 0 0 1 0 45.248L240.448 828.8a32 32 0 0 1-45.248-45.248l135.808-135.808a32 32 0 0 1 45.248 0z"})]))}}),r9=t9,a9=p({name:"LocationFilled",__name:"location-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 928c23.936 0 117.504-68.352 192.064-153.152C803.456 661.888 864 535.808 864 416c0-189.632-155.84-320-352-320S160 226.368 160 416c0 120.32 60.544 246.4 159.936 359.232C394.432 859.84 488 928 512 928m0-435.2a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 140.8a204.8 204.8 0 1 1 0-409.6 204.8 204.8 0 0 1 0 409.6"})]))}}),n9=a9,l9=p({name:"LocationInformation",__name:"location-information",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32"}),o("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416M512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544"}),o("path",{fill:"currentColor",d:"M512 512a96 96 0 1 0 0-192 96 96 0 0 0 0 192m0 64a160 160 0 1 1 0-320 160 160 0 0 1 0 320"})]))}}),s9=l9,o9=p({name:"Location",__name:"location",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416M512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544"}),o("path",{fill:"currentColor",d:"M512 512a96 96 0 1 0 0-192 96 96 0 0 0 0 192m0 64a160 160 0 1 1 0-320 160 160 0 0 1 0 320"})]))}}),u9=o9,c9=p({name:"Lock",__name:"lock",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M224 448a32 32 0 0 0-32 32v384a32 32 0 0 0 32 32h576a32 32 0 0 0 32-32V480a32 32 0 0 0-32-32zm0-64h576a96 96 0 0 1 96 96v384a96 96 0 0 1-96 96H224a96 96 0 0 1-96-96V480a96 96 0 0 1 96-96"}),o("path",{fill:"currentColor",d:"M512 544a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V576a32 32 0 0 1 32-32m192-160v-64a192 192 0 1 0-384 0v64zM512 64a256 256 0 0 1 256 256v128H256V320A256 256 0 0 1 512 64"})]))}}),i9=c9,_9=p({name:"Lollipop",__name:"lollipop",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M513.28 448a64 64 0 1 1 76.544 49.728A96 96 0 0 0 768 448h64a160 160 0 0 1-320 0zm-126.976-29.696a256 256 0 1 0 43.52-180.48A256 256 0 0 1 832 448h-64a192 192 0 0 0-381.696-29.696m105.664 249.472L285.696 874.048a96 96 0 0 1-135.68-135.744l206.208-206.272a320 320 0 1 1 135.744 135.744zm-54.464-36.032a321.92 321.92 0 0 1-45.248-45.248L195.2 783.552a32 32 0 1 0 45.248 45.248l197.056-197.12z"})]))}}),p9=_9,h9=p({name:"MagicStick",__name:"magic-stick",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64h64v192h-64zm0 576h64v192h-64zM160 480v-64h192v64zm576 0v-64h192v64zM249.856 199.04l45.248-45.184L430.848 289.6 385.6 334.848 249.856 199.104zM657.152 606.4l45.248-45.248 135.744 135.744-45.248 45.248zM114.048 923.2 68.8 877.952l316.8-316.8 45.248 45.248zM702.4 334.848 657.152 289.6l135.744-135.744 45.248 45.248z"})]))}}),f9=h9,v9=p({name:"Magnet",__name:"magnet",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M832 320V192H704v320a192 192 0 1 1-384 0V192H192v128h128v64H192v128a320 320 0 0 0 640 0V384H704v-64zM640 512V128h256v384a384 384 0 1 1-768 0V128h256v384a128 128 0 1 0 256 0"})]))}}),d9=v9,m9=p({name:"Male",__name:"male",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M399.5 849.5a225 225 0 1 0 0-450 225 225 0 0 0 0 450m0 56.25a281.25 281.25 0 1 1 0-562.5 281.25 281.25 0 0 1 0 562.5m253.125-787.5h225q28.125 0 28.125 28.125T877.625 174.5h-225q-28.125 0-28.125-28.125t28.125-28.125"}),o("path",{fill:"currentColor",d:"M877.625 118.25q28.125 0 28.125 28.125v225q0 28.125-28.125 28.125T849.5 371.375v-225q0-28.125 28.125-28.125"}),o("path",{fill:"currentColor",d:"M604.813 458.9 565.1 419.131l292.613-292.668 39.825 39.824z"})]))}}),g9=m9,w9=p({name:"Management",__name:"management",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M576 128v288l96-96 96 96V128h128v768H320V128zm-448 0h128v768H128z"})]))}}),x9=w9,y9=p({name:"MapLocation",__name:"map-location",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416M512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544"}),o("path",{fill:"currentColor",d:"M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256m345.6 192L960 960H672v-64H352v64H64l102.4-256zm-68.928 0H235.328l-76.8 192h706.944z"})]))}}),C9=y9,z9=p({name:"Medal",__name:"medal",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 896a256 256 0 1 0 0-512 256 256 0 0 0 0 512m0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640"}),o("path",{fill:"currentColor",d:"M576 128H448v200a286.72 286.72 0 0 1 64-8c19.52 0 40.832 2.688 64 8zm64 0v219.648c24.448 9.088 50.56 20.416 78.4 33.92L757.44 128zm-256 0H266.624l39.04 253.568c27.84-13.504 53.888-24.832 78.336-33.92V128zM229.312 64h565.376a32 32 0 0 1 31.616 36.864L768 480c-113.792-64-199.104-96-256-96-56.896 0-142.208 32-256 96l-58.304-379.136A32 32 0 0 1 229.312 64"})]))}}),M9=z9,b9=p({name:"Memo",__name:"memo",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M480 320h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32"}),o("path",{fill:"currentColor",d:"M887.01 72.99C881.01 67 873.34 64 864 64H160c-9.35 0-17.02 3-23.01 8.99C131 78.99 128 86.66 128 96v832c0 9.35 2.99 17.02 8.99 23.01S150.66 960 160 960h704c9.35 0 17.02-2.99 23.01-8.99S896 937.34 896 928V96c0-9.35-3-17.02-8.99-23.01M192 896V128h96v768zm640 0H352V128h480z"}),o("path",{fill:"currentColor",d:"M480 512h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32m0 192h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32"})]))}}),H9=b9,E9=p({name:"Menu",__name:"menu",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 448a32 32 0 0 1-32-32V160.064a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V416a32 32 0 0 1-32 32zm448 0a32 32 0 0 1-32-32V160.064a32 32 0 0 1 32-32h255.936a32 32 0 0 1 32 32V416a32 32 0 0 1-32 32zM160 896a32 32 0 0 1-32-32V608a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32zm448 0a32 32 0 0 1-32-32V608a32 32 0 0 1 32-32h255.936a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32z"})]))}}),V9=E9,B9=p({name:"MessageBox",__name:"message-box",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M288 384h448v64H288zm96-128h256v64H384zM131.456 512H384v128h256V512h252.544L721.856 192H302.144zM896 576H704v128H320V576H128v256h768zM275.776 128h472.448a32 32 0 0 1 28.608 17.664l179.84 359.552A32 32 0 0 1 960 519.552V864a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V519.552a32 32 0 0 1 3.392-14.336l179.776-359.552A32 32 0 0 1 275.776 128z"})]))}}),A9=B9,L9=p({name:"Message",__name:"message",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 224v512a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V224zm0-64h768a64 64 0 0 1 64 64v512a128 128 0 0 1-128 128H192A128 128 0 0 1 64 736V224a64 64 0 0 1 64-64"}),o("path",{fill:"currentColor",d:"M904 224 656.512 506.88a192 192 0 0 1-289.024 0L120 224zm-698.944 0 210.56 240.704a128 128 0 0 0 192.704 0L818.944 224H205.056"})]))}}),S9=L9,F9=p({name:"Mic",__name:"mic",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M480 704h160a64 64 0 0 0 64-64v-32h-96a32 32 0 0 1 0-64h96v-96h-96a32 32 0 0 1 0-64h96v-96h-96a32 32 0 0 1 0-64h96v-32a64 64 0 0 0-64-64H384a64 64 0 0 0-64 64v32h96a32 32 0 0 1 0 64h-96v96h96a32 32 0 0 1 0 64h-96v96h96a32 32 0 0 1 0 64h-96v32a64 64 0 0 0 64 64zm64 64v128h192a32 32 0 1 1 0 64H288a32 32 0 1 1 0-64h192V768h-96a128 128 0 0 1-128-128V192A128 128 0 0 1 384 64h256a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128z"})]))}}),P9=F9,D9=p({name:"Microphone",__name:"microphone",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 128a128 128 0 0 0-128 128v256a128 128 0 1 0 256 0V256a128 128 0 0 0-128-128m0-64a192 192 0 0 1 192 192v256a192 192 0 1 1-384 0V256A192 192 0 0 1 512 64m-32 832v-64a288 288 0 0 1-288-288v-32a32 32 0 0 1 64 0v32a224 224 0 0 0 224 224h64a224 224 0 0 0 224-224v-32a32 32 0 1 1 64 0v32a288 288 0 0 1-288 288v64h64a32 32 0 1 1 0 64H416a32 32 0 1 1 0-64z"})]))}}),T9=D9,R9=p({name:"MilkTea",__name:"milk-tea",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M416 128V96a96 96 0 0 1 96-96h128a32 32 0 1 1 0 64H512a32 32 0 0 0-32 32v32h320a96 96 0 0 1 11.712 191.296l-39.68 581.056A64 64 0 0 1 708.224 960H315.776a64 64 0 0 1-63.872-59.648l-39.616-581.056A96 96 0 0 1 224 128zM276.48 320l39.296 576h392.448l4.8-70.784a224.064 224.064 0 0 1 30.016-439.808L747.52 320zM224 256h576a32 32 0 1 0 0-64H224a32 32 0 0 0 0 64m493.44 503.872 21.12-309.12a160 160 0 0 0-21.12 309.12"})]))}}),O9=R9,k9=p({name:"Minus",__name:"minus",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 544h768a32 32 0 1 0 0-64H128a32 32 0 0 0 0 64"})]))}}),I9=k9,N9=p({name:"Money",__name:"money",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 640v192h640V384H768v-64h150.976c14.272 0 19.456 1.472 24.64 4.288a29.056 29.056 0 0 1 12.16 12.096c2.752 5.184 4.224 10.368 4.224 24.64v493.952c0 14.272-1.472 19.456-4.288 24.64a29.056 29.056 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H233.024c-14.272 0-19.456-1.472-24.64-4.288a29.056 29.056 0 0 1-12.16-12.096c-2.688-5.184-4.224-10.368-4.224-24.576V640z"}),o("path",{fill:"currentColor",d:"M768 192H128v448h640zm64-22.976v493.952c0 14.272-1.472 19.456-4.288 24.64a29.056 29.056 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H105.024c-14.272 0-19.456-1.472-24.64-4.288a29.056 29.056 0 0 1-12.16-12.096C65.536 682.432 64 677.248 64 663.04V169.024c0-14.272 1.472-19.456 4.288-24.64a29.056 29.056 0 0 1 12.096-12.16C85.568 129.536 90.752 128 104.96 128h685.952c14.272 0 19.456 1.472 24.64 4.288a29.056 29.056 0 0 1 12.16 12.096c2.752 5.184 4.224 10.368 4.224 24.64z"}),o("path",{fill:"currentColor",d:"M448 576a160 160 0 1 1 0-320 160 160 0 0 1 0 320m0-64a96 96 0 1 0 0-192 96 96 0 0 0 0 192"})]))}}),$9=N9,q9=p({name:"Monitor",__name:"monitor",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M544 768v128h192a32 32 0 1 1 0 64H288a32 32 0 1 1 0-64h192V768H192A128 128 0 0 1 64 640V256a128 128 0 0 1 128-128h640a128 128 0 0 1 128 128v384a128 128 0 0 1-128 128zM192 192a64 64 0 0 0-64 64v384a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64z"})]))}}),j9=q9,K9=p({name:"MoonNight",__name:"moon-night",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M384 512a448 448 0 0 1 215.872-383.296A384 384 0 0 0 213.76 640h188.8A448.256 448.256 0 0 1 384 512M171.136 704a448 448 0 0 1 636.992-575.296A384 384 0 0 0 499.328 704h-328.32z"}),o("path",{fill:"currentColor",d:"M32 640h960q32 0 32 32t-32 32H32q-32 0-32-32t32-32m128 128h384a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64m160 127.68 224 .256a32 32 0 0 1 32 32V928a32 32 0 0 1-32 32l-224-.384a32 32 0 0 1-32-32v-.064a32 32 0 0 1 32-32z"})]))}}),U9=K9,W9=p({name:"Moon",__name:"moon",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M240.448 240.448a384 384 0 1 0 559.424 525.696 448 448 0 0 1-542.016-542.08 390.592 390.592 0 0 0-17.408 16.384zm181.056 362.048a384 384 0 0 0 525.632 16.384A448 448 0 1 1 405.056 76.8a384 384 0 0 0 16.448 525.696"})]))}}),G9=W9,J9=p({name:"MoreFilled",__name:"more-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M176 416a112 112 0 1 1 0 224 112 112 0 0 1 0-224m336 0a112 112 0 1 1 0 224 112 112 0 0 1 0-224m336 0a112 112 0 1 1 0 224 112 112 0 0 1 0-224"})]))}}),Z9=J9,Y9=p({name:"More",__name:"more",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M176 416a112 112 0 1 0 0 224 112 112 0 0 0 0-224m0 64a48 48 0 1 1 0 96 48 48 0 0 1 0-96m336-64a112 112 0 1 1 0 224 112 112 0 0 1 0-224m0 64a48 48 0 1 0 0 96 48 48 0 0 0 0-96m336-64a112 112 0 1 1 0 224 112 112 0 0 1 0-224m0 64a48 48 0 1 0 0 96 48 48 0 0 0 0-96"})]))}}),Q9=Y9,X9=p({name:"MostlyCloudy",__name:"mostly-cloudy",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M737.216 357.952 704 349.824l-11.776-32a192.064 192.064 0 0 0-367.424 23.04l-8.96 39.04-39.04 8.96A192.064 192.064 0 0 0 320 768h368a207.808 207.808 0 0 0 207.808-208 208.32 208.32 0 0 0-158.592-202.048m15.168-62.208A272.32 272.32 0 0 1 959.744 560a271.808 271.808 0 0 1-271.552 272H320a256 256 0 0 1-57.536-505.536 256.128 256.128 0 0 1 489.92-30.72"})]))}}),e_=X9,t_=p({name:"Mouse",__name:"mouse",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M438.144 256c-68.352 0-92.736 4.672-117.76 18.112-20.096 10.752-35.52 26.176-46.272 46.272C260.672 345.408 256 369.792 256 438.144v275.712c0 68.352 4.672 92.736 18.112 117.76 10.752 20.096 26.176 35.52 46.272 46.272C345.408 891.328 369.792 896 438.144 896h147.712c68.352 0 92.736-4.672 117.76-18.112 20.096-10.752 35.52-26.176 46.272-46.272C763.328 806.592 768 782.208 768 713.856V438.144c0-68.352-4.672-92.736-18.112-117.76a110.464 110.464 0 0 0-46.272-46.272C678.592 260.672 654.208 256 585.856 256zm0-64h147.712c85.568 0 116.608 8.96 147.904 25.6 31.36 16.768 55.872 41.344 72.576 72.64C823.104 321.536 832 352.576 832 438.08v275.84c0 85.504-8.96 116.544-25.6 147.84a174.464 174.464 0 0 1-72.64 72.576C702.464 951.104 671.424 960 585.92 960H438.08c-85.504 0-116.544-8.96-147.84-25.6a174.464 174.464 0 0 1-72.64-72.704c-16.768-31.296-25.664-62.336-25.664-147.84v-275.84c0-85.504 8.96-116.544 25.6-147.84a174.464 174.464 0 0 1 72.768-72.576c31.232-16.704 62.272-25.6 147.776-25.6z"}),o("path",{fill:"currentColor",d:"M512 320q32 0 32 32v128q0 32-32 32t-32-32V352q0-32 32-32m32-96a32 32 0 0 1-64 0v-64a32 32 0 0 0-32-32h-96a32 32 0 0 1 0-64h96a96 96 0 0 1 96 96z"})]))}}),r_=t_,a_=p({name:"Mug",__name:"mug",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M736 800V160H160v640a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64m64-544h63.552a96 96 0 0 1 96 96v224a96 96 0 0 1-96 96H800v128a128 128 0 0 1-128 128H224A128 128 0 0 1 96 800V128a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32zm0 64v288h63.552a32 32 0 0 0 32-32V352a32 32 0 0 0-32-32z"})]))}}),n_=a_,l_=p({name:"MuteNotification",__name:"mute-notification",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m241.216 832 63.616-64H768V448c0-42.368-10.24-82.304-28.48-117.504l46.912-47.232C815.36 331.392 832 387.84 832 448v320h96a32 32 0 1 1 0 64zm-90.24 0H96a32 32 0 1 1 0-64h96V448a320.128 320.128 0 0 1 256-313.6V128a64 64 0 1 1 128 0v6.4a319.552 319.552 0 0 1 171.648 97.088l-45.184 45.44A256 256 0 0 0 256 448v278.336L151.04 832zM448 896h128a64 64 0 0 1-128 0"}),o("path",{fill:"currentColor",d:"M150.72 859.072a32 32 0 0 1-45.44-45.056l704-708.544a32 32 0 0 1 45.44 45.056l-704 708.544z"})]))}}),s_=l_,o_=p({name:"Mute",__name:"mute",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m412.16 592.128-45.44 45.44A191.232 191.232 0 0 1 320 512V256a192 192 0 1 1 384 0v44.352l-64 64V256a128 128 0 1 0-256 0v256c0 30.336 10.56 58.24 28.16 80.128m51.968 38.592A128 128 0 0 0 640 512v-57.152l64-64V512a192 192 0 0 1-287.68 166.528zM314.88 779.968l46.144-46.08A222.976 222.976 0 0 0 480 768h64a224 224 0 0 0 224-224v-32a32 32 0 1 1 64 0v32a288 288 0 0 1-288 288v64h64a32 32 0 1 1 0 64H416a32 32 0 1 1 0-64h64v-64c-61.44 0-118.4-19.2-165.12-52.032M266.752 737.6A286.976 286.976 0 0 1 192 544v-32a32 32 0 0 1 64 0v32c0 56.832 21.184 108.8 56.064 148.288z"}),o("path",{fill:"currentColor",d:"M150.72 859.072a32 32 0 0 1-45.44-45.056l704-708.544a32 32 0 0 1 45.44 45.056l-704 708.544z"})]))}}),u_=o_,c_=p({name:"NoSmoking",__name:"no-smoking",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M440.256 576H256v128h56.256l-64 64H224a32 32 0 0 1-32-32V544a32 32 0 0 1 32-32h280.256zm143.488 128H704V583.744L775.744 512H928a32 32 0 0 1 32 32v192a32 32 0 0 1-32 32H519.744zM768 576v128h128V576zm-29.696-207.552 45.248 45.248-497.856 497.856-45.248-45.248zM256 64h64v320h-64zM128 192h64v192h-64zM64 512h64v256H64z"})]))}}),i_=c_,__=p({name:"Notebook",__name:"notebook",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M192 128v768h640V128zm-32-64h704a32 32 0 0 1 32 32v832a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M672 128h64v768h-64zM96 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32m0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32m0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32m0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32"})]))}}),p_=__,h_=p({name:"Notification",__name:"notification",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 128v64H256a64 64 0 0 0-64 64v512a64 64 0 0 0 64 64h512a64 64 0 0 0 64-64V512h64v256a128 128 0 0 1-128 128H256a128 128 0 0 1-128-128V256a128 128 0 0 1 128-128z"}),o("path",{fill:"currentColor",d:"M768 384a128 128 0 1 0 0-256 128 128 0 0 0 0 256m0 64a192 192 0 1 1 0-384 192 192 0 0 1 0 384"})]))}}),f_=h_,v_=p({name:"Odometer",__name:"odometer",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"}),o("path",{fill:"currentColor",d:"M192 512a320 320 0 1 1 640 0 32 32 0 1 1-64 0 256 256 0 1 0-512 0 32 32 0 0 1-64 0"}),o("path",{fill:"currentColor",d:"M570.432 627.84A96 96 0 1 1 509.568 608l60.992-187.776A32 32 0 1 1 631.424 440l-60.992 187.776zM502.08 734.464a32 32 0 1 0 19.84-60.928 32 32 0 0 0-19.84 60.928"})]))}}),d_=v_,m_=p({name:"OfficeBuilding",__name:"office-building",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M192 128v704h384V128zm-32-64h448a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M256 256h256v64H256zm0 192h256v64H256zm0 192h256v64H256zm384-128h128v64H640zm0 128h128v64H640zM64 832h896v64H64z"}),o("path",{fill:"currentColor",d:"M640 384v448h192V384zm-32-64h256a32 32 0 0 1 32 32v512a32 32 0 0 1-32 32H608a32 32 0 0 1-32-32V352a32 32 0 0 1 32-32"})]))}}),g_=m_,w_=p({name:"Open",__name:"open",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M329.956 257.138a254.862 254.862 0 0 0 0 509.724h364.088a254.862 254.862 0 0 0 0-509.724zm0-72.818h364.088a327.68 327.68 0 1 1 0 655.36H329.956a327.68 327.68 0 1 1 0-655.36z"}),o("path",{fill:"currentColor",d:"M694.044 621.227a109.227 109.227 0 1 0 0-218.454 109.227 109.227 0 0 0 0 218.454m0 72.817a182.044 182.044 0 1 1 0-364.088 182.044 182.044 0 0 1 0 364.088"})]))}}),x_=w_,y_=p({name:"Operation",__name:"operation",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M389.44 768a96.064 96.064 0 0 1 181.12 0H896v64H570.56a96.064 96.064 0 0 1-181.12 0H128v-64zm192-288a96.064 96.064 0 0 1 181.12 0H896v64H762.56a96.064 96.064 0 0 1-181.12 0H128v-64zm-320-288a96.064 96.064 0 0 1 181.12 0H896v64H442.56a96.064 96.064 0 0 1-181.12 0H128v-64z"})]))}}),C_=y_,z_=p({name:"Opportunity",__name:"opportunity",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M384 960v-64h192.064v64zm448-544a350.656 350.656 0 0 1-128.32 271.424C665.344 719.04 640 763.776 640 813.504V832H320v-14.336c0-48-19.392-95.36-57.216-124.992a351.552 351.552 0 0 1-128.448-344.256c25.344-136.448 133.888-248.128 269.76-276.48A352.384 352.384 0 0 1 832 416m-544 32c0-132.288 75.904-224 192-224v-64c-154.432 0-256 122.752-256 288z"})]))}}),M_=z_,b_=p({name:"Orange",__name:"orange",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M544 894.72a382.336 382.336 0 0 0 215.936-89.472L577.024 622.272c-10.24 6.016-21.248 10.688-33.024 13.696v258.688zm261.248-134.784A382.336 382.336 0 0 0 894.656 544H635.968c-3.008 11.776-7.68 22.848-13.696 33.024l182.976 182.912zM894.656 480a382.336 382.336 0 0 0-89.408-215.936L622.272 446.976c6.016 10.24 10.688 21.248 13.696 33.024h258.688zm-134.72-261.248A382.336 382.336 0 0 0 544 129.344v258.688c11.776 3.008 22.848 7.68 33.024 13.696zM480 129.344a382.336 382.336 0 0 0-215.936 89.408l182.912 182.976c10.24-6.016 21.248-10.688 33.024-13.696zm-261.248 134.72A382.336 382.336 0 0 0 129.344 480h258.688c3.008-11.776 7.68-22.848 13.696-33.024zM129.344 544a382.336 382.336 0 0 0 89.408 215.936l182.976-182.912A127.232 127.232 0 0 1 388.032 544zm134.72 261.248A382.336 382.336 0 0 0 480 894.656V635.968a127.232 127.232 0 0 1-33.024-13.696zM512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896m0-384a64 64 0 1 0 0-128 64 64 0 0 0 0 128"})]))}}),H_=b_,E_=p({name:"Paperclip",__name:"paperclip",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M602.496 240.448A192 192 0 1 1 874.048 512l-316.8 316.8A256 256 0 0 1 195.2 466.752L602.496 59.456l45.248 45.248L240.448 512A192 192 0 0 0 512 783.552l316.8-316.8a128 128 0 1 0-181.056-181.056L353.6 579.904a32 32 0 1 0 45.248 45.248l294.144-294.144 45.312 45.248L444.096 670.4a96 96 0 1 1-135.744-135.744l294.144-294.208z"})]))}}),V_=E_,B_=p({name:"PartlyCloudy",__name:"partly-cloudy",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M598.4 895.872H328.192a256 256 0 0 1-34.496-510.528A352 352 0 1 1 598.4 895.872m-271.36-64h272.256a288 288 0 1 0-248.512-417.664L335.04 445.44l-34.816 3.584a192 192 0 0 0 26.88 382.848z"}),o("path",{fill:"currentColor",d:"M139.84 501.888a256 256 0 1 1 417.856-277.12c-17.728 2.176-38.208 8.448-61.504 18.816A192 192 0 1 0 189.12 460.48a6003.84 6003.84 0 0 0-49.28 41.408z"})]))}}),A_=B_,L_=p({name:"Pear",__name:"pear",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M542.336 258.816a443.255 443.255 0 0 0-9.024 25.088 32 32 0 1 1-60.8-20.032l1.088-3.328a162.688 162.688 0 0 0-122.048 131.392l-17.088 102.72-20.736 15.36C256.192 552.704 224 610.88 224 672c0 120.576 126.4 224 288 224s288-103.424 288-224c0-61.12-32.192-119.296-89.728-161.92l-20.736-15.424-17.088-102.72a162.688 162.688 0 0 0-130.112-133.12zm-40.128-66.56c7.936-15.552 16.576-30.08 25.92-43.776 23.296-33.92 49.408-59.776 78.528-77.12a32 32 0 1 1 32.704 55.04c-20.544 12.224-40.064 31.552-58.432 58.304a316.608 316.608 0 0 0-9.792 15.104 226.688 226.688 0 0 1 164.48 181.568l12.8 77.248C819.456 511.36 864 587.392 864 672c0 159.04-157.568 288-352 288S160 831.04 160 672c0-84.608 44.608-160.64 115.584-213.376l12.8-77.248a226.624 226.624 0 0 1 213.76-189.184z"})]))}}),S_=L_,F_=p({name:"PhoneFilled",__name:"phone-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M199.232 125.568 90.624 379.008a32 32 0 0 0 6.784 35.2l512.384 512.384a32 32 0 0 0 35.2 6.784l253.44-108.608a32 32 0 0 0 10.048-52.032L769.6 633.92a32 32 0 0 0-36.928-5.952l-130.176 65.088-271.488-271.552 65.024-130.176a32 32 0 0 0-5.952-36.928L251.2 115.52a32 32 0 0 0-51.968 10.048z"})]))}}),P_=F_,D_=p({name:"Phone",__name:"phone",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M79.36 432.256 591.744 944.64a32 32 0 0 0 35.2 6.784l253.44-108.544a32 32 0 0 0 9.984-52.032l-153.856-153.92a32 32 0 0 0-36.928-6.016l-69.888 34.944L358.08 394.24l35.008-69.888a32 32 0 0 0-5.952-36.928L233.152 133.568a32 32 0 0 0-52.032 10.048L72.512 397.056a32 32 0 0 0 6.784 35.2zm60.48-29.952 81.536-190.08L325.568 316.48l-24.64 49.216-20.608 41.216 32.576 32.64 271.552 271.552 32.64 32.64 41.216-20.672 49.28-24.576 104.192 104.128-190.08 81.472L139.84 402.304zM512 320v-64a256 256 0 0 1 256 256h-64a192 192 0 0 0-192-192m0-192V64a448 448 0 0 1 448 448h-64a384 384 0 0 0-384-384"})]))}}),T_=D_,R_=p({name:"PictureFilled",__name:"picture-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M96 896a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h832a32 32 0 0 1 32 32v704a32 32 0 0 1-32 32zm315.52-228.48-68.928-68.928a32 32 0 0 0-45.248 0L128 768.064h778.688l-242.112-290.56a32 32 0 0 0-49.216 0L458.752 665.408a32 32 0 0 1-47.232 2.112M256 384a96 96 0 1 0 192.064-.064A96 96 0 0 0 256 384"})]))}}),O_=R_,k_=p({name:"PictureRounded",__name:"picture-rounded",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 128a384 384 0 1 0 0 768 384 384 0 0 0 0-768m0-64a448 448 0 1 1 0 896 448 448 0 0 1 0-896"}),o("path",{fill:"currentColor",d:"M640 288q64 0 64 64t-64 64q-64 0-64-64t64-64M214.656 790.656l-45.312-45.312 185.664-185.6a96 96 0 0 1 123.712-10.24l138.24 98.688a32 32 0 0 0 39.872-2.176L906.688 422.4l42.624 47.744L699.52 693.696a96 96 0 0 1-119.808 6.592l-138.24-98.752a32 32 0 0 0-41.152 3.456l-185.664 185.6z"})]))}}),I_=k_,N_=p({name:"Picture",__name:"picture",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 160v704h704V160zm-32-64h768a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H128a32 32 0 0 1-32-32V128a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M384 288q64 0 64 64t-64 64q-64 0-64-64t64-64M185.408 876.992l-50.816-38.912L350.72 556.032a96 96 0 0 1 134.592-17.856l1.856 1.472 122.88 99.136a32 32 0 0 0 44.992-4.864l216-269.888 49.92 39.936-215.808 269.824-.256.32a96 96 0 0 1-135.04 14.464l-122.88-99.072-.64-.512a32 32 0 0 0-44.8 5.952z"})]))}}),$_=N_,q_=p({name:"PieChart",__name:"pie-chart",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M448 68.48v64.832A384.128 384.128 0 0 0 512 896a384.128 384.128 0 0 0 378.688-320h64.768A448.128 448.128 0 0 1 64 512 448.128 448.128 0 0 1 448 68.48z"}),o("path",{fill:"currentColor",d:"M576 97.28V448h350.72A384.064 384.064 0 0 0 576 97.28zM512 64V33.152A448 448 0 0 1 990.848 512H512z"})]))}}),j_=q_,K_=p({name:"Place",__name:"place",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 512a192 192 0 1 0 0-384 192 192 0 0 0 0 384m0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512"}),o("path",{fill:"currentColor",d:"M512 512a32 32 0 0 1 32 32v256a32 32 0 1 1-64 0V544a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M384 649.088v64.96C269.76 732.352 192 771.904 192 800c0 37.696 139.904 96 320 96s320-58.304 320-96c0-28.16-77.76-67.648-192-85.952v-64.96C789.12 671.04 896 730.368 896 800c0 88.32-171.904 160-384 160s-384-71.68-384-160c0-69.696 106.88-128.96 256-150.912"})]))}}),U_=K_,W_=p({name:"Platform",__name:"platform",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M448 832v-64h128v64h192v64H256v-64zM128 704V128h768v576z"})]))}}),G_=W_,J_=p({name:"Plus",__name:"plus",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M480 480V128a32 32 0 0 1 64 0v352h352a32 32 0 1 1 0 64H544v352a32 32 0 1 1-64 0V544H128a32 32 0 0 1 0-64z"})]))}}),Z_=J_,Y_=p({name:"Pointer",__name:"pointer",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M511.552 128c-35.584 0-64.384 28.8-64.384 64.448v516.48L274.048 570.88a94.272 94.272 0 0 0-112.896-3.456 44.416 44.416 0 0 0-8.96 62.208L332.8 870.4A64 64 0 0 0 384 896h512V575.232a64 64 0 0 0-45.632-61.312l-205.952-61.76A96 96 0 0 1 576 360.192V192.448C576 156.8 547.2 128 511.552 128M359.04 556.8l24.128 19.2V192.448a128.448 128.448 0 1 1 256.832 0v167.744a32 32 0 0 0 22.784 30.656l206.016 61.76A128 128 0 0 1 960 575.232V896a64 64 0 0 1-64 64H384a128 128 0 0 1-102.4-51.2L101.056 668.032A108.416 108.416 0 0 1 128 512.512a158.272 158.272 0 0 1 185.984 8.32z"})]))}}),Q_=Y_,X_=p({name:"Position",__name:"position",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m249.6 417.088 319.744 43.072 39.168 310.272L845.12 178.88 249.6 417.088zm-129.024 47.168a32 32 0 0 1-7.68-61.44l777.792-311.04a32 32 0 0 1 41.6 41.6l-310.336 775.68a32 32 0 0 1-61.44-7.808L512 516.992l-391.424-52.736z"})]))}}),ep=X_,tp=p({name:"Postcard",__name:"postcard",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 224a32 32 0 0 0-32 32v512a32 32 0 0 0 32 32h704a32 32 0 0 0 32-32V256a32 32 0 0 0-32-32zm0-64h704a96 96 0 0 1 96 96v512a96 96 0 0 1-96 96H160a96 96 0 0 1-96-96V256a96 96 0 0 1 96-96"}),o("path",{fill:"currentColor",d:"M704 320a64 64 0 1 1 0 128 64 64 0 0 1 0-128M288 448h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32m0 128h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32"})]))}}),rp=tp,ap=p({name:"Pouring",__name:"pouring",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m739.328 291.328-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 97.28 78.72 175.936 175.808 175.936h400a192 192 0 0 0 35.776-380.672zM959.552 480a256 256 0 0 1-256 256h-400A239.808 239.808 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 959.552 480M224 800a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32m192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32m192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32m192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32"})]))}}),np=ap,lp=p({name:"Present",__name:"present",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M480 896V640H192v-64h288V320H192v576zm64 0h288V320H544v256h288v64H544zM128 256h768v672a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32z"}),o("path",{fill:"currentColor",d:"M96 256h832q32 0 32 32t-32 32H96q-32 0-32-32t32-32"}),o("path",{fill:"currentColor",d:"M416 256a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"}),o("path",{fill:"currentColor",d:"M608 256a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"})]))}}),sp=lp,op=p({name:"PriceTag",__name:"price-tag",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M224 318.336V896h576V318.336L552.512 115.84a64 64 0 0 0-81.024 0zM593.024 66.304l259.2 212.096A32 32 0 0 1 864 303.168V928a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V303.168a32 32 0 0 1 11.712-24.768l259.2-212.096a128 128 0 0 1 162.112 0z"}),o("path",{fill:"currentColor",d:"M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"})]))}}),up=op,cp=p({name:"Printer",__name:"printer",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 768H105.024c-14.272 0-19.456-1.472-24.64-4.288a29.056 29.056 0 0 1-12.16-12.096C65.536 746.432 64 741.248 64 727.04V379.072c0-42.816 4.48-58.304 12.8-73.984 8.384-15.616 20.672-27.904 36.288-36.288 15.68-8.32 31.168-12.8 73.984-12.8H256V64h512v192h68.928c42.816 0 58.304 4.48 73.984 12.8 15.616 8.384 27.904 20.672 36.288 36.288 8.32 15.68 12.8 31.168 12.8 73.984v347.904c0 14.272-1.472 19.456-4.288 24.64a29.056 29.056 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H768v192H256zm64-192v320h384V576zm-64 128V512h512v192h128V379.072c0-29.376-1.408-36.48-5.248-43.776a23.296 23.296 0 0 0-10.048-10.048c-7.232-3.84-14.4-5.248-43.776-5.248H187.072c-29.376 0-36.48 1.408-43.776 5.248a23.296 23.296 0 0 0-10.048 10.048c-3.84 7.232-5.248 14.4-5.248 43.776V704zm64-448h384V128H320zm-64 128h64v64h-64zm128 0h64v64h-64z"})]))}}),ip=cp,_p=p({name:"Promotion",__name:"promotion",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m64 448 832-320-128 704-446.08-243.328L832 192 242.816 545.472zm256 512V657.024L512 768z"})]))}}),pp=_p,hp=p({name:"QuartzWatch",__name:"quartz-watch",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M422.02 602.01v-.03c-6.68-5.99-14.35-8.83-23.01-8.51-8.67.32-16.17 3.66-22.5 10.02-6.33 6.36-9.5 13.7-9.5 22.02s3 15.82 8.99 22.5c8.68 8.68 19.02 11.35 31.01 8s19.49-10.85 22.5-22.5c3.01-11.65.51-22.15-7.49-31.49zM384 512c0-9.35-3-17.02-8.99-23.01-6-5.99-13.66-8.99-23.01-8.99-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.66 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.67 8.99-23.01m6.53-82.49c11.65 3.01 22.15.51 31.49-7.49h.04c5.99-6.68 8.83-14.34 8.51-23.01-.32-8.67-3.66-16.16-10.02-22.5-6.36-6.33-13.7-9.5-22.02-9.5s-15.82 3-22.5 8.99c-8.68 8.69-11.35 19.02-8 31.01 3.35 11.99 10.85 19.49 22.5 22.5zm242.94 0c11.67-3.03 19.01-10.37 22.02-22.02 3.01-11.65.51-22.15-7.49-31.49h.01c-6.68-5.99-14.18-8.99-22.5-8.99s-15.66 3.16-22.02 9.5c-6.36 6.34-9.7 13.84-10.02 22.5-.32 8.66 2.52 16.33 8.51 23.01 9.32 8.02 19.82 10.52 31.49 7.49M512 640c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.67 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.66 8.99-23.01s-3-17.02-8.99-23.01c-6-5.99-13.66-8.99-23.01-8.99m183.01-151.01c-6-5.99-13.66-8.99-23.01-8.99s-17.02 3-23.01 8.99c-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.66 8.99 23.01 8.99s17.02-3 23.01-8.99c5.99-6 8.99-13.67 8.99-23.01 0-9.35-3-17.02-8.99-23.01"}),o("path",{fill:"currentColor",d:"M832 512c-2-90.67-33.17-166.17-93.5-226.5-20.43-20.42-42.6-37.49-66.5-51.23V64H352v170.26c-23.9 13.74-46.07 30.81-66.5 51.24-60.33 60.33-91.49 135.83-93.5 226.5 2 90.67 33.17 166.17 93.5 226.5 20.43 20.43 42.6 37.5 66.5 51.24V960h320V789.74c23.9-13.74 46.07-30.81 66.5-51.24 60.33-60.34 91.49-135.83 93.5-226.5M416 128h192v78.69c-29.85-9.03-61.85-13.93-96-14.69-34.15.75-66.15 5.65-96 14.68zm192 768H416v-78.68c29.85 9.03 61.85 13.93 96 14.68 34.15-.75 66.15-5.65 96-14.68zm-96-128c-72.66-2.01-132.99-27.01-180.99-75.01S258.01 584.66 256 512c2.01-72.66 27.01-132.99 75.01-180.99S439.34 258.01 512 256c72.66 2.01 132.99 27.01 180.99 75.01S765.99 439.34 768 512c-2.01 72.66-27.01 132.99-75.01 180.99S584.66 765.99 512 768"}),o("path",{fill:"currentColor",d:"M512 320c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01 0 9.35 3 17.02 8.99 23.01 6 5.99 13.67 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.66 8.99-23.01 0-9.35-3-17.02-8.99-23.01-6-5.99-13.66-8.99-23.01-8.99m112.99 273.5c-8.66-.32-16.33 2.52-23.01 8.51-7.98 9.32-10.48 19.82-7.49 31.49s10.49 19.17 22.5 22.5 22.35.66 31.01-8v.04c5.99-6.68 8.99-14.18 8.99-22.5s-3.16-15.66-9.5-22.02-13.84-9.7-22.5-10.02"})]))}}),fp=hp,vp=p({name:"QuestionFilled",__name:"question-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m23.744 191.488c-52.096 0-92.928 14.784-123.2 44.352-30.976 29.568-45.76 70.4-45.76 122.496h80.256c0-29.568 5.632-52.8 17.6-68.992 13.376-19.712 35.2-28.864 66.176-28.864 23.936 0 42.944 6.336 56.32 19.712 12.672 13.376 19.712 31.68 19.712 54.912 0 17.6-6.336 34.496-19.008 49.984l-8.448 9.856c-45.76 40.832-73.216 70.4-82.368 89.408-9.856 19.008-14.08 42.24-14.08 68.992v9.856h80.96v-9.856c0-16.896 3.52-31.68 10.56-45.76 6.336-12.672 15.488-24.64 28.16-35.2 33.792-29.568 54.208-48.576 60.544-55.616 16.896-22.528 26.048-51.392 26.048-86.592 0-42.944-14.08-76.736-42.24-101.376-28.16-25.344-65.472-37.312-111.232-37.312zm-12.672 406.208a54.272 54.272 0 0 0-38.72 14.784 49.408 49.408 0 0 0-15.488 38.016c0 15.488 4.928 28.16 15.488 38.016A54.848 54.848 0 0 0 523.072 768c15.488 0 28.16-4.928 38.72-14.784a51.52 51.52 0 0 0 16.192-38.72 51.968 51.968 0 0 0-15.488-38.016 55.936 55.936 0 0 0-39.424-14.784z"})]))}}),dp=vp,mp=p({name:"Rank",__name:"rank",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m186.496 544 41.408 41.344a32 32 0 1 1-45.248 45.312l-96-96a32 32 0 0 1 0-45.312l96-96a32 32 0 1 1 45.248 45.312L186.496 480h290.816V186.432l-41.472 41.472a32 32 0 1 1-45.248-45.184l96-96.128a32 32 0 0 1 45.312 0l96 96.064a32 32 0 0 1-45.248 45.184l-41.344-41.28V480H832l-41.344-41.344a32 32 0 0 1 45.248-45.312l96 96a32 32 0 0 1 0 45.312l-96 96a32 32 0 0 1-45.248-45.312L832 544H541.312v293.44l41.344-41.28a32 32 0 1 1 45.248 45.248l-96 96a32 32 0 0 1-45.312 0l-96-96a32 32 0 1 1 45.312-45.248l41.408 41.408V544H186.496z"})]))}}),gp=mp,wp=p({name:"ReadingLamp",__name:"reading-lamp",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M352 896h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32m-44.672-768-99.52 448h608.384l-99.52-448zm-25.6-64h460.608a32 32 0 0 1 31.232 25.088l113.792 512A32 32 0 0 1 856.128 640H167.872a32 32 0 0 1-31.232-38.912l113.792-512A32 32 0 0 1 281.664 64z"}),o("path",{fill:"currentColor",d:"M672 576q32 0 32 32v128q0 32-32 32t-32-32V608q0-32 32-32m-192-.064h64V960h-64z"})]))}}),xp=wp,yp=p({name:"Reading",__name:"reading",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m512 863.36 384-54.848v-638.72L525.568 222.72a96 96 0 0 1-27.136 0L128 169.792v638.72zM137.024 106.432l370.432 52.928a32 32 0 0 0 9.088 0l370.432-52.928A64 64 0 0 1 960 169.792v638.72a64 64 0 0 1-54.976 63.36l-388.48 55.488a32 32 0 0 1-9.088 0l-388.48-55.488A64 64 0 0 1 64 808.512v-638.72a64 64 0 0 1 73.024-63.36z"}),o("path",{fill:"currentColor",d:"M480 192h64v704h-64z"})]))}}),Cp=yp,zp=p({name:"RefreshLeft",__name:"refresh-left",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M289.088 296.704h92.992a32 32 0 0 1 0 64H232.96a32 32 0 0 1-32-32V179.712a32 32 0 0 1 64 0v50.56a384 384 0 0 1 643.84 282.88 384 384 0 0 1-383.936 384 384 384 0 0 1-384-384h64a320 320 0 1 0 640 0 320 320 0 0 0-555.712-216.448z"})]))}}),Mp=zp,bp=p({name:"RefreshRight",__name:"refresh-right",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M784.512 230.272v-50.56a32 32 0 1 1 64 0v149.056a32 32 0 0 1-32 32H667.52a32 32 0 1 1 0-64h92.992A320 320 0 1 0 524.8 833.152a320 320 0 0 0 320-320h64a384 384 0 0 1-384 384 384 384 0 0 1-384-384 384 384 0 0 1 643.712-282.88z"})]))}}),Hp=bp,Ep=p({name:"Refresh",__name:"refresh",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M771.776 794.88A384 384 0 0 1 128 512h64a320 320 0 0 0 555.712 216.448H654.72a32 32 0 1 1 0-64h149.056a32 32 0 0 1 32 32v148.928a32 32 0 1 1-64 0v-50.56zM276.288 295.616h92.992a32 32 0 0 1 0 64H220.16a32 32 0 0 1-32-32V178.56a32 32 0 0 1 64 0v50.56A384 384 0 0 1 896.128 512h-64a320 320 0 0 0-555.776-216.384z"})]))}}),Vp=Ep,Bp=p({name:"Refrigerator",__name:"refrigerator",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 448h512V160a32 32 0 0 0-32-32H288a32 32 0 0 0-32 32zm0 64v352a32 32 0 0 0 32 32h448a32 32 0 0 0 32-32V512zm32-448h448a96 96 0 0 1 96 96v704a96 96 0 0 1-96 96H288a96 96 0 0 1-96-96V160a96 96 0 0 1 96-96m32 224h64v96h-64zm0 288h64v96h-64z"})]))}}),Ap=Bp,Lp=p({name:"RemoveFilled",__name:"remove-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896M288 512a38.4 38.4 0 0 0 38.4 38.4h371.2a38.4 38.4 0 0 0 0-76.8H326.4A38.4 38.4 0 0 0 288 512"})]))}}),Sp=Lp,Fp=p({name:"Remove",__name:"remove",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M352 480h320a32 32 0 1 1 0 64H352a32 32 0 0 1 0-64"}),o("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"})]))}}),Pp=Fp,Dp=p({name:"Right",__name:"right",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M754.752 480H160a32 32 0 1 0 0 64h594.752L521.344 777.344a32 32 0 0 0 45.312 45.312l288-288a32 32 0 0 0 0-45.312l-288-288a32 32 0 1 0-45.312 45.312z"})]))}}),Tp=Dp,Rp=p({name:"ScaleToOriginal",__name:"scale-to-original",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M813.176 180.706a60.235 60.235 0 0 1 60.236 60.235v481.883a60.235 60.235 0 0 1-60.236 60.235H210.824a60.235 60.235 0 0 1-60.236-60.235V240.94a60.235 60.235 0 0 1 60.236-60.235h602.352zm0-60.235H210.824A120.47 120.47 0 0 0 90.353 240.94v481.883a120.47 120.47 0 0 0 120.47 120.47h602.353a120.47 120.47 0 0 0 120.471-120.47V240.94a120.47 120.47 0 0 0-120.47-120.47zm-120.47 180.705a30.118 30.118 0 0 0-30.118 30.118v301.177a30.118 30.118 0 0 0 60.236 0V331.294a30.118 30.118 0 0 0-30.118-30.118zm-361.412 0a30.118 30.118 0 0 0-30.118 30.118v301.177a30.118 30.118 0 1 0 60.236 0V331.294a30.118 30.118 0 0 0-30.118-30.118M512 361.412a30.118 30.118 0 0 0-30.118 30.117v30.118a30.118 30.118 0 0 0 60.236 0V391.53A30.118 30.118 0 0 0 512 361.412M512 512a30.118 30.118 0 0 0-30.118 30.118v30.117a30.118 30.118 0 0 0 60.236 0v-30.117A30.118 30.118 0 0 0 512 512"})]))}}),Op=Rp,kp=p({name:"School",__name:"school",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M224 128v704h576V128zm-32-64h640a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M64 832h896v64H64zm256-640h128v96H320z"}),o("path",{fill:"currentColor",d:"M384 832h256v-64a128 128 0 1 0-256 0zm128-256a192 192 0 0 1 192 192v128H320V768a192 192 0 0 1 192-192M320 384h128v96H320zm256-192h128v96H576zm0 192h128v96H576z"})]))}}),Ip=kp,Np=p({name:"Scissor",__name:"scissor",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m512.064 578.368-106.88 152.768a160 160 0 1 1-23.36-78.208L472.96 522.56 196.864 128.256a32 32 0 1 1 52.48-36.736l393.024 561.344a160 160 0 1 1-23.36 78.208l-106.88-152.704zm54.4-189.248 208.384-297.6a32 32 0 0 1 52.48 36.736l-221.76 316.672-39.04-55.808zm-376.32 425.856a96 96 0 1 0 110.144-157.248 96 96 0 0 0-110.08 157.248zm643.84 0a96 96 0 1 0-110.08-157.248 96 96 0 0 0 110.08 157.248"})]))}}),$p=Np,qp=p({name:"Search",__name:"search",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704"})]))}}),jp=qp,Kp=p({name:"Select",__name:"select",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M77.248 415.04a64 64 0 0 1 90.496 0l226.304 226.304L846.528 188.8a64 64 0 1 1 90.56 90.496l-543.04 543.04-316.8-316.8a64 64 0 0 1 0-90.496z"})]))}}),Up=Kp,Wp=p({name:"Sell",__name:"sell",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M704 288h131.072a32 32 0 0 1 31.808 28.8L886.4 512h-64.384l-16-160H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0v-96H217.92l-51.2 512H512v64H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4zm-64 0v-22.336C640 189.248 582.272 128 512 128c-70.272 0-128 61.248-128 137.664v22.4h256zm201.408 483.84L768 698.496V928a32 32 0 1 1-64 0V698.496l-73.344 73.344a32 32 0 1 1-45.248-45.248l128-128a32 32 0 0 1 45.248 0l128 128a32 32 0 1 1-45.248 45.248z"})]))}}),Gp=Wp,Jp=p({name:"SemiSelect",__name:"semi-select",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 448h768q64 0 64 64t-64 64H128q-64 0-64-64t64-64"})]))}}),Zp=Jp,Yp=p({name:"Service",__name:"service",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M864 409.6a192 192 0 0 1-37.888 349.44A256.064 256.064 0 0 1 576 960h-96a32 32 0 1 1 0-64h96a192.064 192.064 0 0 0 181.12-128H736a32 32 0 0 1-32-32V416a32 32 0 0 1 32-32h32c10.368 0 20.544.832 30.528 2.432a288 288 0 0 0-573.056 0A193.235 193.235 0 0 1 256 384h32a32 32 0 0 1 32 32v320a32 32 0 0 1-32 32h-32a192 192 0 0 1-96-358.4 352 352 0 0 1 704 0M256 448a128 128 0 1 0 0 256zm640 128a128 128 0 0 0-128-128v256a128 128 0 0 0 128-128"})]))}}),Qp=Yp,Xp=p({name:"SetUp",__name:"set-up",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M224 160a64 64 0 0 0-64 64v576a64 64 0 0 0 64 64h576a64 64 0 0 0 64-64V224a64 64 0 0 0-64-64zm0-64h576a128 128 0 0 1 128 128v576a128 128 0 0 1-128 128H224A128 128 0 0 1 96 800V224A128 128 0 0 1 224 96"}),o("path",{fill:"currentColor",d:"M384 416a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"}),o("path",{fill:"currentColor",d:"M480 320h256q32 0 32 32t-32 32H480q-32 0-32-32t32-32m160 416a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"}),o("path",{fill:"currentColor",d:"M288 640h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32"})]))}}),eh=Xp,th=p({name:"Setting",__name:"setting",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M600.704 64a32 32 0 0 1 30.464 22.208l35.2 109.376c14.784 7.232 28.928 15.36 42.432 24.512l112.384-24.192a32 32 0 0 1 34.432 15.36L944.32 364.8a32 32 0 0 1-4.032 37.504l-77.12 85.12a357.12 357.12 0 0 1 0 49.024l77.12 85.248a32 32 0 0 1 4.032 37.504l-88.704 153.6a32 32 0 0 1-34.432 15.296L708.8 803.904c-13.44 9.088-27.648 17.28-42.368 24.512l-35.264 109.376A32 32 0 0 1 600.704 960H423.296a32 32 0 0 1-30.464-22.208L357.696 828.48a351.616 351.616 0 0 1-42.56-24.64l-112.32 24.256a32 32 0 0 1-34.432-15.36L79.68 659.2a32 32 0 0 1 4.032-37.504l77.12-85.248a357.12 357.12 0 0 1 0-48.896l-77.12-85.248A32 32 0 0 1 79.68 364.8l88.704-153.6a32 32 0 0 1 34.432-15.296l112.32 24.256c13.568-9.152 27.776-17.408 42.56-24.64l35.2-109.312A32 32 0 0 1 423.232 64H600.64zm-23.424 64H446.72l-36.352 113.088-24.512 11.968a294.113 294.113 0 0 0-34.816 20.096l-22.656 15.36-116.224-25.088-65.28 113.152 79.68 88.192-1.92 27.136a293.12 293.12 0 0 0 0 40.192l1.92 27.136-79.808 88.192 65.344 113.152 116.224-25.024 22.656 15.296a294.113 294.113 0 0 0 34.816 20.096l24.512 11.968L446.72 896h130.688l36.48-113.152 24.448-11.904a288.282 288.282 0 0 0 34.752-20.096l22.592-15.296 116.288 25.024 65.28-113.152-79.744-88.192 1.92-27.136a293.12 293.12 0 0 0 0-40.256l-1.92-27.136 79.808-88.128-65.344-113.152-116.288 24.96-22.592-15.232a287.616 287.616 0 0 0-34.752-20.096l-24.448-11.904L577.344 128zM512 320a192 192 0 1 1 0 384 192 192 0 0 1 0-384m0 64a128 128 0 1 0 0 256 128 128 0 0 0 0-256"})]))}}),rh=th,ah=p({name:"Share",__name:"share",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m679.872 348.8-301.76 188.608a127.808 127.808 0 0 1 5.12 52.16l279.936 104.96a128 128 0 1 1-22.464 59.904l-279.872-104.96a128 128 0 1 1-16.64-166.272l301.696-188.608a128 128 0 1 1 33.92 54.272z"})]))}}),nh=ah,lh=p({name:"Ship",__name:"ship",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 386.88V448h405.568a32 32 0 0 1 30.72 40.768l-76.48 267.968A192 192 0 0 1 687.168 896H336.832a192 192 0 0 1-184.64-139.264L75.648 488.768A32 32 0 0 1 106.368 448H448V117.888a32 32 0 0 1 47.36-28.096l13.888 7.616L512 96v2.88l231.68 126.4a32 32 0 0 1-2.048 57.216zm0-70.272 144.768-65.792L512 171.84zM512 512H148.864l18.24 64H856.96l18.24-64zM185.408 640l28.352 99.2A128 128 0 0 0 336.832 832h350.336a128 128 0 0 0 123.072-92.8l28.352-99.2H185.408"})]))}}),sh=lh,oh=p({name:"Shop",__name:"shop",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M704 704h64v192H256V704h64v64h384zm188.544-152.192C894.528 559.616 896 567.616 896 576a96 96 0 1 1-192 0 96 96 0 1 1-192 0 96 96 0 1 1-192 0 96 96 0 1 1-192 0c0-8.384 1.408-16.384 3.392-24.192L192 128h640z"})]))}}),uh=oh,ch=p({name:"ShoppingBag",__name:"shopping-bag",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M704 320v96a32 32 0 0 1-32 32h-32V320H384v128h-32a32 32 0 0 1-32-32v-96H192v576h640V320zm-384-64a192 192 0 1 1 384 0h160a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32zm64 0h256a128 128 0 1 0-256 0"}),o("path",{fill:"currentColor",d:"M192 704h640v64H192z"})]))}}),ih=ch,_h=p({name:"ShoppingCartFull",__name:"shopping-cart-full",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M432 928a48 48 0 1 1 0-96 48 48 0 0 1 0 96m320 0a48 48 0 1 1 0-96 48 48 0 0 1 0 96M96 128a32 32 0 0 1 0-64h160a32 32 0 0 1 31.36 25.728L320.64 256H928a32 32 0 0 1 31.296 38.72l-96 448A32 32 0 0 1 832 768H384a32 32 0 0 1-31.36-25.728L229.76 128zm314.24 576h395.904l82.304-384H333.44l76.8 384z"}),o("path",{fill:"currentColor",d:"M699.648 256 608 145.984 516.352 256h183.296zm-140.8-151.04a64 64 0 0 1 98.304 0L836.352 320H379.648l179.2-215.04"})]))}}),ph=_h,hh=p({name:"ShoppingCart",__name:"shopping-cart",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M432 928a48 48 0 1 1 0-96 48 48 0 0 1 0 96m320 0a48 48 0 1 1 0-96 48 48 0 0 1 0 96M96 128a32 32 0 0 1 0-64h160a32 32 0 0 1 31.36 25.728L320.64 256H928a32 32 0 0 1 31.296 38.72l-96 448A32 32 0 0 1 832 768H384a32 32 0 0 1-31.36-25.728L229.76 128zm314.24 576h395.904l82.304-384H333.44l76.8 384z"})]))}}),fh=hh,vh=p({name:"ShoppingTrolley",__name:"shopping-trolley",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M368 833c-13.3 0-24.5 4.5-33.5 13.5S321 866.7 321 880s4.5 24.5 13.5 33.5 20.2 13.8 33.5 14.5c13.3-.7 24.5-5.5 33.5-14.5S415 893.3 415 880s-4.5-24.5-13.5-33.5S381.3 833 368 833m439-193c7.4 0 13.8-2.2 19.5-6.5S836 623.3 838 616l112-448c2-10-.2-19.2-6.5-27.5S929 128 919 128H96c-9.3 0-17 3-23 9s-9 13.7-9 23 3 17 9 23 13.7 9 23 9h96v576h672c9.3 0 17-3 23-9s9-13.7 9-23-3-17-9-23-13.7-9-23-9H256v-64zM256 192h622l-96 384H256zm432 641c-13.3 0-24.5 4.5-33.5 13.5S641 866.7 641 880s4.5 24.5 13.5 33.5 20.2 13.8 33.5 14.5c13.3-.7 24.5-5.5 33.5-14.5S735 893.3 735 880s-4.5-24.5-13.5-33.5S701.3 833 688 833"})]))}}),dh=vh,mh=p({name:"Smoking",__name:"smoking",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 576v128h640V576zm-32-64h704a32 32 0 0 1 32 32v192a32 32 0 0 1-32 32H224a32 32 0 0 1-32-32V544a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M704 576h64v128h-64zM256 64h64v320h-64zM128 192h64v192h-64zM64 512h64v256H64z"})]))}}),gh=mh,wh=p({name:"Soccer",__name:"soccer",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M418.496 871.04 152.256 604.8c-16.512 94.016-2.368 178.624 42.944 224 44.928 44.928 129.344 58.752 223.296 42.24m72.32-18.176a573.056 573.056 0 0 0 224.832-137.216 573.12 573.12 0 0 0 137.216-224.832L533.888 171.84a578.56 578.56 0 0 0-227.52 138.496A567.68 567.68 0 0 0 170.432 532.48l320.384 320.384zM871.04 418.496c16.512-93.952 2.688-178.368-42.24-223.296-44.544-44.544-128.704-58.048-222.592-41.536zM149.952 874.048c-112.96-112.96-88.832-408.96 111.168-608.96C461.056 65.152 760.96 36.928 874.048 149.952c113.024 113.024 86.784 411.008-113.152 610.944-199.936 199.936-497.92 226.112-610.944 113.152m452.544-497.792 22.656-22.656a32 32 0 0 1 45.248 45.248l-22.656 22.656 45.248 45.248A32 32 0 1 1 647.744 512l-45.248-45.248L557.248 512l45.248 45.248a32 32 0 1 1-45.248 45.248L512 557.248l-45.248 45.248L512 647.744a32 32 0 1 1-45.248 45.248l-45.248-45.248-22.656 22.656a32 32 0 1 1-45.248-45.248l22.656-22.656-45.248-45.248A32 32 0 1 1 376.256 512l45.248 45.248L466.752 512l-45.248-45.248a32 32 0 1 1 45.248-45.248L512 466.752l45.248-45.248L512 376.256a32 32 0 0 1 45.248-45.248l45.248 45.248z"})]))}}),xh=wh,yh=p({name:"SoldOut",__name:"sold-out",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M704 288h131.072a32 32 0 0 1 31.808 28.8L886.4 512h-64.384l-16-160H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0v-96H217.92l-51.2 512H512v64H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4zm-64 0v-22.336C640 189.248 582.272 128 512 128c-70.272 0-128 61.248-128 137.664v22.4h256zm201.408 476.16a32 32 0 1 1 45.248 45.184l-128 128a32 32 0 0 1-45.248 0l-128-128a32 32 0 1 1 45.248-45.248L704 837.504V608a32 32 0 1 1 64 0v229.504l73.408-73.408z"})]))}}),Ch=yh,zh=p({name:"SortDown",__name:"sort-down",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M576 96v709.568L333.312 562.816A32 32 0 1 0 288 608l297.408 297.344A32 32 0 0 0 640 882.688V96a32 32 0 0 0-64 0"})]))}}),Mh=zh,bh=p({name:"SortUp",__name:"sort-up",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M384 141.248V928a32 32 0 1 0 64 0V218.56l242.688 242.688A32 32 0 1 0 736 416L438.592 118.656A32 32 0 0 0 384 141.248"})]))}}),Hh=bh,Eh=p({name:"Sort",__name:"sort",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M384 96a32 32 0 0 1 64 0v786.752a32 32 0 0 1-54.592 22.656L95.936 608a32 32 0 0 1 0-45.312h.128a32 32 0 0 1 45.184 0L384 805.632zm192 45.248a32 32 0 0 1 54.592-22.592L928.064 416a32 32 0 0 1 0 45.312h-.128a32 32 0 0 1-45.184 0L640 218.496V928a32 32 0 1 1-64 0V141.248z"})]))}}),Vh=Eh,Bh=p({name:"Stamp",__name:"stamp",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M624 475.968V640h144a128 128 0 0 1 128 128H128a128 128 0 0 1 128-128h144V475.968a192 192 0 1 1 224 0M128 896v-64h768v64z"})]))}}),Ah=Bh,Lh=p({name:"StarFilled",__name:"star-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M283.84 867.84 512 747.776l228.16 119.936a6.4 6.4 0 0 0 9.28-6.72l-43.52-254.08 184.512-179.904a6.4 6.4 0 0 0-3.52-10.88l-255.104-37.12L517.76 147.904a6.4 6.4 0 0 0-11.52 0L392.192 379.072l-255.104 37.12a6.4 6.4 0 0 0-3.52 10.88L318.08 606.976l-43.584 254.08a6.4 6.4 0 0 0 9.28 6.72z"})]))}}),Sh=Lh,Fh=p({name:"Star",__name:"star",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m512 747.84 228.16 119.936a6.4 6.4 0 0 0 9.28-6.72l-43.52-254.08 184.512-179.904a6.4 6.4 0 0 0-3.52-10.88l-255.104-37.12L517.76 147.904a6.4 6.4 0 0 0-11.52 0L392.192 379.072l-255.104 37.12a6.4 6.4 0 0 0-3.52 10.88L318.08 606.976l-43.584 254.08a6.4 6.4 0 0 0 9.28 6.72zM313.6 924.48a70.4 70.4 0 0 1-102.144-74.24l37.888-220.928L88.96 472.96A70.4 70.4 0 0 1 128 352.896l221.76-32.256 99.2-200.96a70.4 70.4 0 0 1 126.208 0l99.2 200.96 221.824 32.256a70.4 70.4 0 0 1 39.04 120.064L774.72 629.376l37.888 220.928a70.4 70.4 0 0 1-102.144 74.24L512 820.096l-198.4 104.32z"})]))}}),Ph=Fh,Dh=p({name:"Stopwatch",__name:"stopwatch",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"}),o("path",{fill:"currentColor",d:"M672 234.88c-39.168 174.464-80 298.624-122.688 372.48-64 110.848-202.624 30.848-138.624-80C453.376 453.44 540.48 355.968 672 234.816z"})]))}}),Th=Dh,Rh=p({name:"SuccessFilled",__name:"success-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m-55.808 536.384-99.52-99.584a38.4 38.4 0 1 0-54.336 54.336l126.72 126.72a38.272 38.272 0 0 0 54.336 0l262.4-262.464a38.4 38.4 0 1 0-54.272-54.336z"})]))}}),Oh=Rh,kh=p({name:"Sugar",__name:"sugar",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m801.728 349.184 4.48 4.48a128 128 0 0 1 0 180.992L534.656 806.144a128 128 0 0 1-181.056 0l-4.48-4.48-19.392 109.696a64 64 0 0 1-108.288 34.176L78.464 802.56a64 64 0 0 1 34.176-108.288l109.76-19.328-4.544-4.544a128 128 0 0 1 0-181.056l271.488-271.488a128 128 0 0 1 181.056 0l4.48 4.48 19.392-109.504a64 64 0 0 1 108.352-34.048l142.592 143.04a64 64 0 0 1-34.24 108.16l-109.248 19.2zm-548.8 198.72h447.168v2.24l60.8-60.8a63.808 63.808 0 0 0 18.752-44.416h-426.88l-89.664 89.728a64.064 64.064 0 0 0-10.24 13.248zm0 64c2.752 4.736 6.144 9.152 10.176 13.248l135.744 135.744a64 64 0 0 0 90.496 0L638.4 611.904zm490.048-230.976L625.152 263.104a64 64 0 0 0-90.496 0L416.768 380.928zM123.712 757.312l142.976 142.976 24.32-137.6a25.6 25.6 0 0 0-29.696-29.632l-137.6 24.256zm633.6-633.344-24.32 137.472a25.6 25.6 0 0 0 29.632 29.632l137.28-24.064-142.656-143.04z"})]))}}),Ih=kh,Nh=p({name:"SuitcaseLine",__name:"suitcase-line",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M922.5 229.5c-24.32-24.34-54.49-36.84-90.5-37.5H704v-64c-.68-17.98-7.02-32.98-19.01-44.99S658.01 64.66 640 64H384c-17.98.68-32.98 7.02-44.99 19.01S320.66 110 320 128v64H192c-35.99.68-66.16 13.18-90.5 37.5C77.16 253.82 64.66 283.99 64 320v448c.68 35.99 13.18 66.16 37.5 90.5s54.49 36.84 90.5 37.5h640c35.99-.68 66.16-13.18 90.5-37.5s36.84-54.49 37.5-90.5V320c-.68-35.99-13.18-66.16-37.5-90.5M384 128h256v64H384zM256 832h-64c-17.98-.68-32.98-7.02-44.99-19.01S128.66 786.01 128 768V448h128zm448 0H320V448h384zm192-64c-.68 17.98-7.02 32.98-19.01 44.99S850.01 831.34 832 832h-64V448h128zm0-384H128v-64c.69-17.98 7.02-32.98 19.01-44.99S173.99 256.66 192 256h640c17.98.69 32.98 7.02 44.99 19.01S895.34 301.99 896 320z"})]))}}),$h=Nh,qh=p({name:"Suitcase",__name:"suitcase",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 384h768v-64a64 64 0 0 0-64-64H192a64 64 0 0 0-64 64zm0 64v320a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V448zm64-256h640a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H192A128 128 0 0 1 64 768V320a128 128 0 0 1 128-128"}),o("path",{fill:"currentColor",d:"M384 128v64h256v-64zm0-64h256a64 64 0 0 1 64 64v64a64 64 0 0 1-64 64H384a64 64 0 0 1-64-64v-64a64 64 0 0 1 64-64"})]))}}),jh=qh,Kh=p({name:"Sunny",__name:"sunny",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 704a192 192 0 1 0 0-384 192 192 0 0 0 0 384m0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512m0-704a32 32 0 0 1 32 32v64a32 32 0 0 1-64 0V96a32 32 0 0 1 32-32m0 768a32 32 0 0 1 32 32v64a32 32 0 1 1-64 0v-64a32 32 0 0 1 32-32M195.2 195.2a32 32 0 0 1 45.248 0l45.248 45.248a32 32 0 1 1-45.248 45.248L195.2 240.448a32 32 0 0 1 0-45.248zm543.104 543.104a32 32 0 0 1 45.248 0l45.248 45.248a32 32 0 0 1-45.248 45.248l-45.248-45.248a32 32 0 0 1 0-45.248M64 512a32 32 0 0 1 32-32h64a32 32 0 0 1 0 64H96a32 32 0 0 1-32-32m768 0a32 32 0 0 1 32-32h64a32 32 0 1 1 0 64h-64a32 32 0 0 1-32-32M195.2 828.8a32 32 0 0 1 0-45.248l45.248-45.248a32 32 0 0 1 45.248 45.248L240.448 828.8a32 32 0 0 1-45.248 0zm543.104-543.104a32 32 0 0 1 0-45.248l45.248-45.248a32 32 0 0 1 45.248 45.248l-45.248 45.248a32 32 0 0 1-45.248 0"})]))}}),Uh=Kh,Wh=p({name:"Sunrise",__name:"sunrise",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M32 768h960a32 32 0 1 1 0 64H32a32 32 0 1 1 0-64m129.408-96a352 352 0 0 1 701.184 0h-64.32a288 288 0 0 0-572.544 0h-64.32zM512 128a32 32 0 0 1 32 32v96a32 32 0 0 1-64 0v-96a32 32 0 0 1 32-32m407.296 168.704a32 32 0 0 1 0 45.248l-67.84 67.84a32 32 0 1 1-45.248-45.248l67.84-67.84a32 32 0 0 1 45.248 0zm-814.592 0a32 32 0 0 1 45.248 0l67.84 67.84a32 32 0 1 1-45.248 45.248l-67.84-67.84a32 32 0 0 1 0-45.248"})]))}}),Gh=Wh,Jh=p({name:"Sunset",__name:"sunset",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M82.56 640a448 448 0 1 1 858.88 0h-67.2a384 384 0 1 0-724.288 0zM32 704h960q32 0 32 32t-32 32H32q-32 0-32-32t32-32m256 128h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32"})]))}}),Zh=Jh,Yh=p({name:"SwitchButton",__name:"switch-button",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M352 159.872V230.4a352 352 0 1 0 320 0v-70.528A416.128 416.128 0 0 1 512 960a416 416 0 0 1-160-800.128z"}),o("path",{fill:"currentColor",d:"M512 64q32 0 32 32v320q0 32-32 32t-32-32V96q0-32 32-32"})]))}}),Qh=Yh,Xh=p({name:"SwitchFilled",__name:"switch-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M247.47 358.4v.04c.07 19.17 7.72 37.53 21.27 51.09s31.92 21.2 51.09 21.27c39.86 0 72.41-32.6 72.41-72.4s-32.6-72.36-72.41-72.36-72.36 32.55-72.36 72.36z"}),o("path",{fill:"currentColor",d:"M492.38 128H324.7c-52.16 0-102.19 20.73-139.08 57.61a196.655 196.655 0 0 0-57.61 139.08V698.7c-.01 25.84 5.08 51.42 14.96 75.29s24.36 45.56 42.63 63.83 39.95 32.76 63.82 42.65a196.67 196.67 0 0 0 75.28 14.98h167.68c3.03 0 5.46-2.43 5.46-5.42V133.42c.6-2.99-1.83-5.42-5.46-5.42zm-56.11 705.88H324.7c-17.76.13-35.36-3.33-51.75-10.18s-31.22-16.94-43.61-29.67c-25.3-25.35-39.81-59.1-39.81-95.32V324.69c-.13-17.75 3.33-35.35 10.17-51.74a131.695 131.695 0 0 1 29.64-43.62c25.39-25.3 59.14-39.81 95.36-39.81h111.57zm402.12-647.67a196.655 196.655 0 0 0-139.08-57.61H580.48c-3.03 0-4.82 2.43-4.82 4.82v757.16c-.6 2.99 1.79 5.42 5.42 5.42h118.23a196.69 196.69 0 0 0 139.08-57.61A196.655 196.655 0 0 0 896 699.31V325.29a196.69 196.69 0 0 0-57.61-139.08zm-111.3 441.92c-42.83 0-77.82-34.99-77.82-77.82s34.98-77.82 77.82-77.82c42.83 0 77.82 34.99 77.82 77.82s-34.99 77.82-77.82 77.82z"})]))}}),e7=Xh,t7=p({name:"Switch",__name:"switch",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M118.656 438.656a32 32 0 0 1 0-45.248L416 96l4.48-3.776A32 32 0 0 1 461.248 96l3.712 4.48a32.064 32.064 0 0 1-3.712 40.832L218.56 384H928a32 32 0 1 1 0 64H141.248a32 32 0 0 1-22.592-9.344zM64 608a32 32 0 0 1 32-32h786.752a32 32 0 0 1 22.656 54.592L608 928l-4.48 3.776a32.064 32.064 0 0 1-40.832-49.024L805.632 640H96a32 32 0 0 1-32-32"})]))}}),r7=t7,a7=p({name:"TakeawayBox",__name:"takeaway-box",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M832 384H192v448h640zM96 320h832V128H96zm800 64v480a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V384H64a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32h896a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32zM416 512h192a32 32 0 0 1 0 64H416a32 32 0 0 1 0-64"})]))}}),n7=a7,l7=p({name:"Ticket",__name:"ticket",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M640 832H64V640a128 128 0 1 0 0-256V192h576v160h64V192h256v192a128 128 0 1 0 0 256v192H704V672h-64zm0-416v192h64V416z"})]))}}),s7=l7,o7=p({name:"Tickets",__name:"tickets",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M192 128v768h640V128zm-32-64h704a32 32 0 0 1 32 32v832a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m160 448h384v64H320zm0-192h192v64H320zm0 384h384v64H320z"})]))}}),u7=o7,c7=p({name:"Timer",__name:"timer",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 896a320 320 0 1 0 0-640 320 320 0 0 0 0 640m0 64a384 384 0 1 1 0-768 384 384 0 0 1 0 768"}),o("path",{fill:"currentColor",d:"M512 320a32 32 0 0 1 32 32l-.512 224a32 32 0 1 1-64 0L480 352a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M448 576a64 64 0 1 0 128 0 64 64 0 1 0-128 0m96-448v128h-64V128h-96a32 32 0 0 1 0-64h256a32 32 0 1 1 0 64z"})]))}}),i7=c7,_7=p({name:"ToiletPaper",__name:"toilet-paper",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M595.2 128H320a192 192 0 0 0-192 192v576h384V352c0-90.496 32.448-171.2 83.2-224M736 64c123.712 0 224 128.96 224 288S859.712 640 736 640H576v320H64V320A256 256 0 0 1 320 64zM576 352v224h160c84.352 0 160-97.28 160-224s-75.648-224-160-224-160 97.28-160 224"}),o("path",{fill:"currentColor",d:"M736 448c-35.328 0-64-43.008-64-96s28.672-96 64-96 64 43.008 64 96-28.672 96-64 96"})]))}}),p7=_7,h7=p({name:"Tools",__name:"tools",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M764.416 254.72a351.68 351.68 0 0 1 86.336 149.184H960v192.064H850.752a351.68 351.68 0 0 1-86.336 149.312l54.72 94.72-166.272 96-54.592-94.72a352.64 352.64 0 0 1-172.48 0L371.136 936l-166.272-96 54.72-94.72a351.68 351.68 0 0 1-86.336-149.312H64v-192h109.248a351.68 351.68 0 0 1 86.336-149.312L204.8 160l166.208-96h.192l54.656 94.592a352.64 352.64 0 0 1 172.48 0L652.8 64h.128L819.2 160l-54.72 94.72zM704 499.968a192 192 0 1 0-384 0 192 192 0 0 0 384 0"})]))}}),f7=h7,v7=p({name:"TopLeft",__name:"top-left",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M256 256h416a32 32 0 1 0 0-64H224a32 32 0 0 0-32 32v448a32 32 0 0 0 64 0z"}),o("path",{fill:"currentColor",d:"M246.656 201.344a32 32 0 0 0-45.312 45.312l544 544a32 32 0 0 0 45.312-45.312l-544-544z"})]))}}),d7=v7,m7=p({name:"TopRight",__name:"top-right",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M768 256H353.6a32 32 0 1 1 0-64H800a32 32 0 0 1 32 32v448a32 32 0 0 1-64 0z"}),o("path",{fill:"currentColor",d:"M777.344 201.344a32 32 0 0 1 45.312 45.312l-544 544a32 32 0 0 1-45.312-45.312l544-544z"})]))}}),g7=m7,w7=p({name:"Top",__name:"top",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M572.235 205.282v600.365a30.118 30.118 0 1 1-60.235 0V205.282L292.382 438.633a28.913 28.913 0 0 1-42.646 0 33.43 33.43 0 0 1 0-45.236l271.058-288.045a28.913 28.913 0 0 1 42.647 0L834.5 393.397a33.43 33.43 0 0 1 0 45.176 28.913 28.913 0 0 1-42.647 0l-219.618-233.23z"})]))}}),x7=w7,y7=p({name:"TrendCharts",__name:"trend-charts",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128 896V128h768v768zm291.712-327.296 128 102.4 180.16-201.792-47.744-42.624-139.84 156.608-128-102.4-180.16 201.792 47.744 42.624 139.84-156.608zM816 352a48 48 0 1 0-96 0 48 48 0 0 0 96 0"})]))}}),C7=y7,z7=p({name:"TrophyBase",__name:"trophy-base",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M918.4 201.6c-6.4-6.4-12.8-9.6-22.4-9.6H768V96c0-9.6-3.2-16-9.6-22.4C752 67.2 745.6 64 736 64H288c-9.6 0-16 3.2-22.4 9.6C259.2 80 256 86.4 256 96v96H128c-9.6 0-16 3.2-22.4 9.6-6.4 6.4-9.6 16-9.6 22.4 3.2 108.8 25.6 185.6 64 224 34.4 34.4 77.56 55.65 127.65 61.99 10.91 20.44 24.78 39.25 41.95 56.41 40.86 40.86 91 65.47 150.4 71.9V768h-96c-9.6 0-16 3.2-22.4 9.6-6.4 6.4-9.6 12.8-9.6 22.4s3.2 16 9.6 22.4c6.4 6.4 12.8 9.6 22.4 9.6h256c9.6 0 16-3.2 22.4-9.6 6.4-6.4 9.6-12.8 9.6-22.4s-3.2-16-9.6-22.4c-6.4-6.4-12.8-9.6-22.4-9.6h-96V637.26c59.4-7.71 109.54-30.01 150.4-70.86 17.2-17.2 31.51-36.06 42.81-56.55 48.93-6.51 90.02-27.7 126.79-61.85 38.4-38.4 60.8-112 64-224 0-6.4-3.2-16-9.6-22.4zM256 438.4c-19.2-6.4-35.2-19.2-51.2-35.2-22.4-22.4-35.2-70.4-41.6-147.2H256zm390.4 80C608 553.6 566.4 576 512 576s-99.2-19.2-134.4-57.6C342.4 480 320 438.4 320 384V128h384v256c0 54.4-19.2 99.2-57.6 134.4m172.8-115.2c-16 16-32 25.6-51.2 35.2V256h92.8c-6.4 76.8-19.2 124.8-41.6 147.2zM768 896H256c-9.6 0-16 3.2-22.4 9.6-6.4 6.4-9.6 12.8-9.6 22.4s3.2 16 9.6 22.4c6.4 6.4 12.8 9.6 22.4 9.6h512c9.6 0 16-3.2 22.4-9.6 6.4-6.4 9.6-12.8 9.6-22.4s-3.2-16-9.6-22.4c-6.4-6.4-12.8-9.6-22.4-9.6"})]))}}),M7=z7,b7=p({name:"Trophy",__name:"trophy",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M480 896V702.08A256.256 256.256 0 0 1 264.064 512h-32.64a96 96 0 0 1-91.968-68.416L93.632 290.88a76.8 76.8 0 0 1 73.6-98.88H256V96a32 32 0 0 1 32-32h448a32 32 0 0 1 32 32v96h88.768a76.8 76.8 0 0 1 73.6 98.88L884.48 443.52A96 96 0 0 1 792.576 512h-32.64A256.256 256.256 0 0 1 544 702.08V896h128a32 32 0 1 1 0 64H352a32 32 0 1 1 0-64zm224-448V128H320v320a192 192 0 1 0 384 0m64 0h24.576a32 32 0 0 0 30.656-22.784l45.824-152.768A12.8 12.8 0 0 0 856.768 256H768zm-512 0V256h-88.768a12.8 12.8 0 0 0-12.288 16.448l45.824 152.768A32 32 0 0 0 231.424 448z"})]))}}),H7=b7,E7=p({name:"TurnOff",__name:"turn-off",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M329.956 257.138a254.862 254.862 0 0 0 0 509.724h364.088a254.862 254.862 0 0 0 0-509.724zm0-72.818h364.088a327.68 327.68 0 1 1 0 655.36H329.956a327.68 327.68 0 1 1 0-655.36z"}),o("path",{fill:"currentColor",d:"M329.956 621.227a109.227 109.227 0 1 0 0-218.454 109.227 109.227 0 0 0 0 218.454m0 72.817a182.044 182.044 0 1 1 0-364.088 182.044 182.044 0 0 1 0 364.088"})]))}}),V7=E7,B7=p({name:"Umbrella",__name:"umbrella",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M320 768a32 32 0 1 1 64 0 64 64 0 0 0 128 0V512H64a448 448 0 1 1 896 0H576v256a128 128 0 1 1-256 0m570.688-320a384.128 384.128 0 0 0-757.376 0z"})]))}}),A7=B7,L7=p({name:"Unlock",__name:"unlock",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M224 448a32 32 0 0 0-32 32v384a32 32 0 0 0 32 32h576a32 32 0 0 0 32-32V480a32 32 0 0 0-32-32zm0-64h576a96 96 0 0 1 96 96v384a96 96 0 0 1-96 96H224a96 96 0 0 1-96-96V480a96 96 0 0 1 96-96"}),o("path",{fill:"currentColor",d:"M512 544a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V576a32 32 0 0 1 32-32m178.304-295.296A192.064 192.064 0 0 0 320 320v64h352l96 38.4V448H256V320a256 256 0 0 1 493.76-95.104z"})]))}}),S7=L7,F7=p({name:"UploadFilled",__name:"upload-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M544 864V672h128L512 480 352 672h128v192H320v-1.6c-5.376.32-10.496 1.6-16 1.6A240 240 0 0 1 64 624c0-123.136 93.12-223.488 212.608-237.248A239.808 239.808 0 0 1 512 192a239.872 239.872 0 0 1 235.456 194.752c119.488 13.76 212.48 114.112 212.48 237.248a240 240 0 0 1-240 240c-5.376 0-10.56-1.28-16-1.6v1.6z"})]))}}),P7=F7,D7=p({name:"Upload",__name:"upload",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 832h704a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64m384-578.304V704h-64V247.296L237.248 490.048 192 444.8 508.8 128l316.8 316.8-45.312 45.248z"})]))}}),T7=D7,R7=p({name:"UserFilled",__name:"user-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M288 320a224 224 0 1 0 448 0 224 224 0 1 0-448 0m544 608H160a32 32 0 0 1-32-32v-96a160 160 0 0 1 160-160h448a160 160 0 0 1 160 160v96a32 32 0 0 1-32 32z"})]))}}),O7=R7,k7=p({name:"User",__name:"user",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 512a192 192 0 1 0 0-384 192 192 0 0 0 0 384m0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512m320 320v-96a96 96 0 0 0-96-96H288a96 96 0 0 0-96 96v96a32 32 0 1 1-64 0v-96a160 160 0 0 1 160-160h448a160 160 0 0 1 160 160v96a32 32 0 1 1-64 0"})]))}}),I7=k7,N7=p({name:"Van",__name:"van",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M128.896 736H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v96h164.544a32 32 0 0 1 31.616 27.136l54.144 352A32 32 0 0 1 922.688 736h-91.52a144 144 0 1 1-286.272 0H415.104a144 144 0 1 1-286.272 0zm23.36-64a143.872 143.872 0 0 1 239.488 0H568.32c17.088-25.6 42.24-45.376 71.744-55.808V256H128v416zm655.488 0h77.632l-19.648-128H704v64.896A144 144 0 0 1 807.744 672m48.128-192-14.72-96H704v96h151.872M688 832a80 80 0 1 0 0-160 80 80 0 0 0 0 160m-416 0a80 80 0 1 0 0-160 80 80 0 0 0 0 160"})]))}}),$7=N7,q7=p({name:"VideoCameraFilled",__name:"video-camera-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m768 576 192-64v320l-192-64v96a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V480a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32zM192 768v64h384v-64zm192-480a160 160 0 0 1 320 0 160 160 0 0 1-320 0m64 0a96 96 0 1 0 192.064-.064A96 96 0 0 0 448 288m-320 32a128 128 0 1 1 256.064.064A128 128 0 0 1 128 320m64 0a64 64 0 1 0 128 0 64 64 0 0 0-128 0"})]))}}),j7=q7,K7=p({name:"VideoCamera",__name:"video-camera",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M704 768V256H128v512zm64-416 192-96v512l-192-96v128a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32zm0 71.552v176.896l128 64V359.552zM192 320h192v64H192z"})]))}}),U7=K7,W7=p({name:"VideoPause",__name:"video-pause",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768m-96-544q32 0 32 32v256q0 32-32 32t-32-32V384q0-32 32-32m192 0q32 0 32 32v256q0 32-32 32t-32-32V384q0-32 32-32"})]))}}),G7=W7,J7=p({name:"VideoPlay",__name:"video-play",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768m-48-247.616L668.608 512 464 375.616zm10.624-342.656 249.472 166.336a48 48 0 0 1 0 79.872L474.624 718.272A48 48 0 0 1 400 678.336V345.6a48 48 0 0 1 74.624-39.936z"})]))}}),Z7=J7,Y7=p({name:"View",__name:"view",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 160c320 0 512 352 512 352S832 864 512 864 0 512 0 512s192-352 512-352m0 64c-225.28 0-384.128 208.064-436.8 288 52.608 79.872 211.456 288 436.8 288 225.28 0 384.128-208.064 436.8-288-52.608-79.872-211.456-288-436.8-288zm0 64a224 224 0 1 1 0 448 224 224 0 0 1 0-448m0 64a160.192 160.192 0 0 0-160 160c0 88.192 71.744 160 160 160s160-71.808 160-160-71.744-160-160-160"})]))}}),Q7=Y7,X7=p({name:"WalletFilled",__name:"wallet-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M688 512a112 112 0 1 0 0 224h208v160H128V352h768v160zm32 160h-32a48 48 0 0 1 0-96h32a48 48 0 0 1 0 96m-80-544 128 160H384z"})]))}}),ef=X7,tf=p({name:"Wallet",__name:"wallet",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M640 288h-64V128H128v704h384v32a32 32 0 0 0 32 32H96a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32h512a32 32 0 0 1 32 32z"}),o("path",{fill:"currentColor",d:"M128 320v512h768V320zm-32-64h832a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M704 640a64 64 0 1 1 0-128 64 64 0 0 1 0 128"})]))}}),rf=tf,af=p({name:"WarnTriangleFilled",__name:"warn-triangle-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg","xml:space":"preserve",style:{"enable-background":"new 0 0 1024 1024"},viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M928.99 755.83 574.6 203.25c-12.89-20.16-36.76-32.58-62.6-32.58s-49.71 12.43-62.6 32.58L95.01 755.83c-12.91 20.12-12.9 44.91.01 65.03 12.92 20.12 36.78 32.51 62.59 32.49h708.78c25.82.01 49.68-12.37 62.59-32.49 12.91-20.12 12.92-44.91.01-65.03M554.67 768h-85.33v-85.33h85.33zm0-426.67v298.66h-85.33V341.32z"})]))}}),nf=af,lf=p({name:"WarningFilled",__name:"warning-filled",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 192a58.432 58.432 0 0 0-58.24 63.744l23.36 256.384a35.072 35.072 0 0 0 69.76 0l23.296-256.384A58.432 58.432 0 0 0 512 256m0 512a51.2 51.2 0 1 0 0-102.4 51.2 51.2 0 0 0 0 102.4"})]))}}),sf=lf,of=p({name:"Warning",__name:"warning",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768m48-176a48 48 0 1 1-96 0 48 48 0 0 1 96 0m-48-464a32 32 0 0 1 32 32v288a32 32 0 0 1-64 0V288a32 32 0 0 1 32-32"})]))}}),uf=of,cf=p({name:"Watch",__name:"watch",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M512 768a256 256 0 1 0 0-512 256 256 0 0 0 0 512m0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640"}),o("path",{fill:"currentColor",d:"M480 352a32 32 0 0 1 32 32v160a32 32 0 0 1-64 0V384a32 32 0 0 1 32-32"}),o("path",{fill:"currentColor",d:"M480 512h128q32 0 32 32t-32 32H480q-32 0-32-32t32-32m128-256V128H416v128h-64V64h320v192zM416 768v128h192V768h64v192H352V768z"})]))}}),_f=cf,pf=p({name:"Watermelon",__name:"watermelon",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m683.072 600.32-43.648 162.816-61.824-16.512 53.248-198.528L576 493.248l-158.4 158.4-45.248-45.248 158.4-158.4-55.616-55.616-198.528 53.248-16.512-61.824 162.816-43.648L282.752 200A384 384 0 0 0 824 741.248zm231.552 141.056a448 448 0 1 1-632-632l632 632"})]))}}),hf=pf,ff=p({name:"WindPower",__name:"wind-power",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"M160 64q32 0 32 32v832q0 32-32 32t-32-32V96q0-32 32-32m416 354.624 128-11.584V168.96l-128-11.52v261.12zm-64 5.824V151.552L320 134.08V160h-64V64l616.704 56.064A96 96 0 0 1 960 215.68v144.64a96 96 0 0 1-87.296 95.616L256 512V224h64v217.92zm256-23.232 98.88-8.96A32 32 0 0 0 896 360.32V215.68a32 32 0 0 0-29.12-31.872l-98.88-8.96z"})]))}}),vf=ff,df=p({name:"ZoomIn",__name:"zoom-in",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704m-32-384v-96a32 32 0 0 1 64 0v96h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64z"})]))}}),mf=df,gf=p({name:"ZoomOut",__name:"zoom-out",setup(e){return(t,r)=>(i(),h("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[o("path",{fill:"currentColor",d:"m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704M352 448h256a32 32 0 0 1 0 64H352a32 32 0 0 1 0-64"})]))}}),wf=gf;const xf=Object.freeze(Object.defineProperty({__proto__:null,AddLocation:Es,Aim:Bs,AlarmClock:Ls,Apple:Fs,ArrowDown:Rs,ArrowDownBold:Ds,ArrowLeft:Ns,ArrowLeftBold:ks,ArrowRight:Ks,ArrowRightBold:qs,ArrowUp:Js,ArrowUpBold:Ws,Avatar:Ys,Back:Xs,Baseball:to,Basketball:ao,Bell:oo,BellFilled:lo,Bicycle:co,Bottom:vo,BottomLeft:_o,BottomRight:ho,Bowl:go,Box:xo,Briefcase:Co,Brush:Ho,BrushFilled:Mo,Burger:Vo,Calendar:Ao,Camera:Po,CameraFilled:So,CaretBottom:To,CaretLeft:Oo,CaretRight:Io,CaretTop:$o,Cellphone:jo,ChatDotRound:Uo,ChatDotSquare:Go,ChatLineRound:Zo,ChatLineSquare:Qo,ChatRound:eu,ChatSquare:ru,Check:nu,Checked:su,Cherry:uu,Chicken:iu,ChromeFilled:pu,CircleCheck:du,CircleCheckFilled:fu,CircleClose:xu,CircleCloseFilled:gu,CirclePlus:Mu,CirclePlusFilled:Cu,Clock:Hu,Close:Au,CloseBold:Vu,Cloudy:Su,Coffee:Tu,CoffeeCup:Pu,Coin:Ou,ColdDrink:Iu,Collection:ju,CollectionTag:$u,Comment:Uu,Compass:Gu,Connection:Zu,Coordinate:Qu,CopyDocument:ec,Cpu:rc,CreditCard:nc,Crop:sc,DArrowLeft:uc,DArrowRight:ic,DCaret:pc,DataAnalysis:fc,DataBoard:dc,DataLine:gc,Delete:Mc,DeleteFilled:xc,DeleteLocation:Cc,Dessert:Hc,Discount:Vc,Dish:Sc,DishDot:Ac,Document:jc,DocumentAdd:Pc,DocumentChecked:Tc,DocumentCopy:Oc,DocumentDelete:Ic,DocumentRemove:$c,Download:Uc,Drizzling:Gc,Edit:Qc,EditPen:Zc,Eleme:ri,ElemeFilled:ei,ElementPlus:ni,Expand:si,Failed:ui,Female:ii,Files:pi,Film:fi,Filter:di,Finished:gi,FirstAidKit:xi,Flag:Ci,Fold:Mi,Folder:Ti,FolderAdd:Hi,FolderChecked:Vi,FolderDelete:Ai,FolderOpened:Si,FolderRemove:Pi,Food:Oi,Football:Ii,ForkSpoon:$i,Fries:ji,FullScreen:Ui,Goblet:e5,GobletFull:Gi,GobletSquare:Qi,GobletSquareFull:Zi,GoldMedal:r5,Goods:s5,GoodsFilled:n5,Grape:u5,Grid:i5,Guide:p5,Handbag:f5,Headset:d5,Help:x5,HelpFilled:g5,Hide:C5,Histogram:M5,HomeFilled:H5,HotWater:V5,House:A5,IceCream:T5,IceCreamRound:S5,IceCreamSquare:P5,IceDrink:O5,IceTea:I5,InfoFilled:$5,Iphone:j5,Key:U5,KnifeFork:G5,Lightning:Z5,Link:Q5,List:e9,Loading:r9,Location:u9,LocationFilled:n9,LocationInformation:s9,Lock:i9,Lollipop:p9,MagicStick:f9,Magnet:d9,Male:g9,Management:x9,MapLocation:C9,Medal:M9,Memo:H9,Menu:V9,Message:S9,MessageBox:A9,Mic:P9,Microphone:T9,MilkTea:O9,Minus:I9,Money:$9,Monitor:j9,Moon:G9,MoonNight:U9,More:Q9,MoreFilled:Z9,MostlyCloudy:e_,Mouse:r_,Mug:n_,Mute:u_,MuteNotification:s_,NoSmoking:i_,Notebook:p_,Notification:f_,Odometer:d_,OfficeBuilding:g_,Open:x_,Operation:C_,Opportunity:M_,Orange:H_,Paperclip:V_,PartlyCloudy:A_,Pear:S_,Phone:T_,PhoneFilled:P_,Picture:$_,PictureFilled:O_,PictureRounded:I_,PieChart:j_,Place:U_,Platform:G_,Plus:Z_,Pointer:Q_,Position:ep,Postcard:rp,Pouring:np,Present:sp,PriceTag:up,Printer:ip,Promotion:pp,QuartzWatch:fp,QuestionFilled:dp,Rank:gp,Reading:Cp,ReadingLamp:xp,Refresh:Vp,RefreshLeft:Mp,RefreshRight:Hp,Refrigerator:Ap,Remove:Pp,RemoveFilled:Sp,Right:Tp,ScaleToOriginal:Op,School:Ip,Scissor:$p,Search:jp,Select:Up,Sell:Gp,SemiSelect:Zp,Service:Qp,SetUp:eh,Setting:rh,Share:nh,Ship:sh,Shop:uh,ShoppingBag:ih,ShoppingCart:fh,ShoppingCartFull:ph,ShoppingTrolley:dh,Smoking:gh,Soccer:xh,SoldOut:Ch,Sort:Vh,SortDown:Mh,SortUp:Hh,Stamp:Ah,Star:Ph,StarFilled:Sh,Stopwatch:Th,SuccessFilled:Oh,Sugar:Ih,Suitcase:jh,SuitcaseLine:$h,Sunny:Uh,Sunrise:Gh,Sunset:Zh,Switch:r7,SwitchButton:Qh,SwitchFilled:e7,TakeawayBox:n7,Ticket:s7,Tickets:u7,Timer:i7,ToiletPaper:p7,Tools:f7,Top:x7,TopLeft:d7,TopRight:g7,TrendCharts:C7,Trophy:H7,TrophyBase:M7,TurnOff:V7,Umbrella:A7,Unlock:S7,Upload:T7,UploadFilled:P7,User:I7,UserFilled:O7,Van:$7,VideoCamera:U7,VideoCameraFilled:j7,VideoPause:G7,VideoPlay:Z7,View:Q7,Wallet:rf,WalletFilled:ef,WarnTriangleFilled:nf,Warning:uf,WarningFilled:sf,Watch:_f,Watermelon:hf,WindPower:vf,ZoomIn:mf,ZoomOut:wf},Symbol.toStringTag,{value:"Module"})),yf=I3({a11y:{type:Boolean,default:!0},locale:{type:A1(Object)},size:ys,button:{type:A1(Object)},experimentalFeatures:{type:A1(Object)},keyboardNavigation:{type:Boolean,default:!0},message:{type:A1(Object)},zIndex:Number,namespace:{type:String,default:"el"},...zs}),Cf={},zf=p({name:"ElConfigProvider",props:yf,setup(e,{slots:t}){j2(()=>e.message,a=>{Object.assign(Cf,a??{})},{immediate:!0,deep:!0});const r=q3(e);return()=>Z8(t,"default",{config:r==null?void 0:r.value})}}),Mf=bs(zf);var bf={name:"zh-cn",el:{breadcrumb:{label:"面包屑"},colorpicker:{confirm:"确定",clear:"清空",defaultLabel:"颜色选择器",description:"当前颜色 {color},按 Enter 键选择新颜色",alphaLabel:"选择透明度的值"},datepicker:{now:"此刻",today:"今天",cancel:"取消",clear:"清空",confirm:"确定",dateTablePrompt:"使用方向键与 Enter 键可选择日期",monthTablePrompt:"使用方向键与 Enter 键可选择月份",yearTablePrompt:"使用方向键与 Enter 键可选择年份",selectedDate:"已选日期",selectDate:"选择日期",selectTime:"选择时间",startDate:"开始日期",startTime:"开始时间",endDate:"结束日期",endTime:"结束时间",prevYear:"前一年",nextYear:"后一年",prevMonth:"上个月",nextMonth:"下个月",year:"年",month1:"1 月",month2:"2 月",month3:"3 月",month4:"4 月",month5:"5 月",month6:"6 月",month7:"7 月",month8:"8 月",month9:"9 月",month10:"10 月",month11:"11 月",month12:"12 月",weeks:{sun:"日",mon:"一",tue:"二",wed:"三",thu:"四",fri:"五",sat:"六"},weeksFull:{sun:"星期日",mon:"星期一",tue:"星期二",wed:"星期三",thu:"星期四",fri:"星期五",sat:"星期六"},months:{jan:"一月",feb:"二月",mar:"三月",apr:"四月",may:"五月",jun:"六月",jul:"七月",aug:"八月",sep:"九月",oct:"十月",nov:"十一月",dec:"十二月"}},inputNumber:{decrease:"减少数值",increase:"增加数值"},select:{loading:"加载中",noMatch:"无匹配数据",noData:"无数据",placeholder:"请选择"},dropdown:{toggleDropdown:"切换下拉选项"},mention:{loading:"加载中"},cascader:{noMatch:"无匹配数据",loading:"加载中",placeholder:"请选择",noData:"暂无数据"},pagination:{goto:"前往",pagesize:"条/页",total:"共 {total} 条",pageClassifier:"页",page:"页",prev:"上一页",next:"下一页",currentPage:"第 {pager} 页",prevPages:"向前 {pager} 页",nextPages:"向后 {pager} 页",deprecationWarning:"你使用了一些已被废弃的用法,请参考 el-pagination 的官方文档"},dialog:{close:"关闭此对话框"},drawer:{close:"关闭此对话框"},messagebox:{title:"提示",confirm:"确定",cancel:"取消",error:"输入的数据不合法!",close:"关闭此对话框"},upload:{deleteTip:"按 delete 键可删除",delete:"删除",preview:"查看图片",continue:"继续上传"},slider:{defaultLabel:"滑块介于 {min} 至 {max}",defaultRangeStartLabel:"选择起始值",defaultRangeEndLabel:"选择结束值"},table:{emptyText:"暂无数据",confirmFilter:"筛选",resetFilter:"重置",clearFilter:"全部",sumText:"合计"},tour:{next:"下一步",previous:"上一步",finish:"结束导览"},tree:{emptyText:"暂无数据"},transfer:{noMatch:"无匹配数据",noData:"无数据",titles:["列表 1","列表 2"],filterPlaceholder:"请输入搜索内容",noCheckedFormat:"共 {total} 项",hasCheckedFormat:"已选 {checked}/{total} 项"},image:{error:"加载失败"},pageHeader:{title:"返回"},popconfirm:{confirmButtonText:"确定",cancelButtonText:"取消"},carousel:{leftArrow:"上一张幻灯片",rightArrow:"下一张幻灯片",indicator:"幻灯片切换至索引 {index}"}}};const Hf={__name:"App",setup(e){return(t,r)=>{const a=J8("router-view"),n=Mf;return i(),N1(n,{locale:M0(bf)},{default:d4(()=>[z0(a)]),_:1},8,["locale"])}}};window._iconfont_svg_string_4826982='',(e=>{var t=(r=(r=document.getElementsByTagName("script"))[r.length-1]).getAttribute("data-injectcss"),r=r.getAttribute("data-disable-injectsvg");if(!r){var a,n,l,s,u,c=function(v,g){g.parentNode.insertBefore(v,g)};if(t&&!e.__iconfont__svg__cssinject__){e.__iconfont__svg__cssinject__=!0;try{document.write("")}catch(v){console&&console.log(v)}}a=function(){var v,g=document.createElement("div");g.innerHTML=e._iconfont_svg_string_4826982,(g=g.getElementsByTagName("svg")[0])&&(g.setAttribute("aria-hidden","true"),g.style.position="absolute",g.style.width=0,g.style.height=0,g.style.overflow="hidden",g=g,(v=document.body).firstChild?c(g,v.firstChild):v.appendChild(g))},document.addEventListener?~["complete","loaded","interactive"].indexOf(document.readyState)?setTimeout(a,0):(n=function(){document.removeEventListener("DOMContentLoaded",n,!1),a()},document.addEventListener("DOMContentLoaded",n,!1)):document.attachEvent&&(l=a,s=e.document,u=!1,_(),s.onreadystatechange=function(){s.readyState=="complete"&&(s.onreadystatechange=null,f())})}function f(){u||(u=!0,l())}function _(){try{s.documentElement.doScroll("left")}catch{return void setTimeout(_,50)}f()}})(window);let w6=ga(Hf);for(const[e,t]of Object.entries(xf))w6.component(e,t);w6.use(b3);w6.mount("#app");export{s2 as $,u1 as A,X1 as B,I8 as C,s6 as D,a6 as E,S0 as F,V4 as G,Tf as H,Z8 as I,Lf as J,o0 as K,bs as L,S2 as M,k0 as N,g2 as O,le as P,B0 as Q,Uf as R,G2 as S,Rf as T,Ar as U,h0 as V,o4 as W,Ql as X,hs as Y,_s as Z,k3 as _,$n as a,Yl as a$,K as a0,Kf as a1,j as a2,Af as a3,q8 as a4,An as a5,ee as a6,N8 as a7,a8,_6 as a9,i7 as aA,P7 as aB,Ou as aC,xs as aD,Ef as aE,ev as aF,lv as aG,uv as aH,ga as aI,sv as aJ,w2 as aK,qf as aL,d6 as aM,h6 as aN,K1 as aO,Vt as aP,pl as aQ,vl as aR,Jn as aS,B3 as aT,Sn as aU,_l as aV,J2 as aW,Rl as aX,Xn as aY,S3 as aZ,F3 as a_,mr as aa,gs as ab,v0 as ac,l8 as ad,$3 as ae,P1 as af,rv as ag,Pf as ah,Ff as ai,dp as aj,Br as ak,sf as al,du as am,xu as an,nu as ao,Au as ap,Sf as aq,Nf as ar,If as as,jc as at,mf as au,Mc as av,kf as aw,It as ax,nv as ay,I7 as az,g6 as b,Xl as b0,Yf as b1,St as b2,tv as b3,Jf as b4,Zf as b5,Qf as b6,qe as b7,Xf as b8,N0 as b9,Wf as ba,jf as bb,r9 as bc,$5 as bd,gu as be,Oh as bf,ys as bg,Gf as bh,A4 as bi,av as bj,Df as bk,Q7 as bl,C5 as bm,m1 as bn,$f as bo,ov as bp,b3 as bq,I3 as c,p as d,L3 as e,x0 as f,l0 as g,N1 as h,v6 as i,i as j,Bf as k,o as l,M0 as m,Je as n,B4 as o,Ge as p,h as q,X0 as r,z0 as s,Vf as t,Ln as u,Of as v,d4 as w,ts as x,A1 as y,j2 as z}; diff --git a/dev-assistant-service/src/main/resources/static/index.html b/dev-assistant-service/src/main/resources/static/index.html new file mode 100644 index 0000000..4eea933 --- /dev/null +++ b/dev-assistant-service/src/main/resources/static/index.html @@ -0,0 +1,14 @@ + + + + + + + 开发助手 + + + + + + + diff --git a/dev-assistant-service/src/main/resources/static/logo.png b/dev-assistant-service/src/main/resources/static/logo.png new file mode 100644 index 0000000..2e9c59e Binary files /dev/null and b/dev-assistant-service/src/main/resources/static/logo.png differ diff --git a/dev-assistant-web/index.html b/dev-assistant-web/index.html index 3267bef..fd1b4df 100644 --- a/dev-assistant-web/index.html +++ b/dev-assistant-web/index.html @@ -2,7 +2,7 @@ - + 开发助手 diff --git a/dev-assistant-web/public/logo.png b/dev-assistant-web/public/logo.png new file mode 100644 index 0000000..2e9c59e Binary files /dev/null and b/dev-assistant-web/public/logo.png differ diff --git a/dev-assistant-web/src/App.vue b/dev-assistant-web/src/App.vue index 843adce..7db5bcb 100644 --- a/dev-assistant-web/src/App.vue +++ b/dev-assistant-web/src/App.vue @@ -11,6 +11,24 @@ import {zhCn} from "element-plus/es/locale/index"; diff --git a/dev-assistant-web/src/api/file.js b/dev-assistant-web/src/api/file.js new file mode 100644 index 0000000..8d30db1 --- /dev/null +++ b/dev-assistant-web/src/api/file.js @@ -0,0 +1,5 @@ +import http from '~/axios/index.js'; + +export const getFileListApi = data => http.post("/file/getFileList", data) +export const delFileApi = data => http.post("/file/delFile", data) +export const downloadFileApi = data => http.post("/note/downloadFile", data) \ No newline at end of file diff --git a/dev-assistant-web/src/api/login.js b/dev-assistant-web/src/api/login.js new file mode 100644 index 0000000..5e8940a --- /dev/null +++ b/dev-assistant-web/src/api/login.js @@ -0,0 +1,3 @@ +import http from '~/axios/index.js'; + +export const loginApi = data => http.post("/authentication/login", data) \ No newline at end of file diff --git a/dev-assistant-web/src/api/note.js b/dev-assistant-web/src/api/note.js new file mode 100644 index 0000000..f1a2fa7 --- /dev/null +++ b/dev-assistant-web/src/api/note.js @@ -0,0 +1,6 @@ +import http from '~/axios/index.js'; + +export const addNoteApi = data => http.post("/note/addNote", data) +export const updateNoteApi = data => http.post("/note/updateNote", data) +export const delNoteApi = data => http.post("/note/delNote", data) +export const getNoteListApi = data => http.post("/note/getNoteList", data) \ No newline at end of file diff --git a/dev-assistant-web/src/assets/background.svg b/dev-assistant-web/src/assets/background.svg new file mode 100644 index 0000000..bdfbb99 --- /dev/null +++ b/dev-assistant-web/src/assets/background.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dev-assistant-web/src/axios/index.js b/dev-assistant-web/src/axios/index.js new file mode 100644 index 0000000..7823a9b --- /dev/null +++ b/dev-assistant-web/src/axios/index.js @@ -0,0 +1,57 @@ +import axios from 'axios'; +import {ElNotification} from "element-plus"; +import router from "~/router"; + +const http = axios.create(); + +// 添加请求拦截器 +http.interceptors.request.use(function (config) { + return config; +}, function (error) { + console.log('error.response1', error.response) + return Promise.reject(error); +}); + +// 添加响应拦截器 +http.interceptors.response.use(function (response) { + if (response.data.code === 400) { + let content = response.data.message + ElNotification({ + title: '请求参数错误', + message: content, + position: 'top-right', + type: 'error', + }) + } + return response; +}, function (error) { + if (error.response.status === 401) { + ElNotification({ + title: '请重新登陆', + message: '请重新登陆', + position: 'top-right', + type: 'error', + }) + router.push({path: '/login'}) + } else if (error.response.status === 403) { + let content = error.response.data.message + ElNotification({ + title: '操作错误', + message: content, + position: 'top-right', + type: 'error', + }) + } else if (error.response.status === 500) { + let content = error.response.data.message + ElNotification({ + title: '系统错误', + message: content, + position: 'top-right', + type: 'error', + }) + } + return Promise.reject(error); +}); + +export default http + diff --git a/dev-assistant-web/src/views/Index.vue b/dev-assistant-web/src/views/Index.vue index 06d2239..936b6f4 100644 --- a/dev-assistant-web/src/views/Index.vue +++ b/dev-assistant-web/src/views/Index.vue @@ -1,8 +1,12 @@ + - - + + + + + 笔记 + + + + 新建笔记 + + + + + + + - - - - - - - - - - 新建笔记 - - - - - - - {{ note.content }} - - - - - - - - {{ note.updateIp }} - - - - - - {{ note.updateTime }} - - - - 修改 - 删除 - - - - - - - - - - - - - - - 拖动文件到这里 或 点击上传 - - - - - - - - - - - - {{ file.fileName }} - - - - - - - - - {{ file.uploadIp }} - - - - - - {{ file.uploadTime }} - - - - 下载 - 删除 - + + + + + {{ note.content }} + + + + + + + + + {{ note.updateIp }} + + + + + + {{ note.updateTime }} + - - - - - + + 修改 + + + 删除 + + + + + + + + + + + + + 文件 + + + + + + + + 拖动文件到这里 或 点击上传 + + + + + + + + + + + + + + + + + {{ file.fileName }} + + + + + + + + {{ formatFileSize(file.fileSize) }} + + + + + + + + {{ file.uploadIp }} + + + + + + + + + + + + {{ file.uploadTime }} + + + + 下载 + + + 删除 + + + + + + + + + + + - - + + - 取消 - 保存 + 保存 \ No newline at end of file diff --git a/dev-assistant-web/src/views/Login.vue b/dev-assistant-web/src/views/Login.vue index f79cdd8..5ca5bea 100644 --- a/dev-assistant-web/src/views/Login.vue +++ b/dev-assistant-web/src/views/Login.vue @@ -1,11 +1,125 @@ - + + + + + 通用登陆页 + + + + + + + 登录 + + + {{ message }} + + + + \ No newline at end of file diff --git a/dev-assistant-web/vite.config.js b/dev-assistant-web/vite.config.js index a07fde7..0d832f1 100644 --- a/dev-assistant-web/vite.config.js +++ b/dev-assistant-web/vite.config.js @@ -14,8 +14,16 @@ export default defineConfig({ '~/': `${path.resolve(__dirname, 'src')}/`, } }, server: { - host: '127.0.0.1', port: 80 - }, plugins: [vue(), AutoImport({ + host: '127.0.0.1', port: 80, + proxy: { + '/api': { + target: 'http://127.0.0.1:8080', + changeOrigin: true, + rewrite: (path) => path.replace(/^\/api/, '') + } + } + }, + plugins: [vue(), AutoImport({ imports: ['vue'], resolvers: [ElementPlusResolver(), IconsResolver({ prefix: 'Icon', })]